diff --git a/docs/wiki/03-02-claim-2-explicitness.md b/docs/wiki/03-02-claim-2-explicitness.md
index ef3071647..1014ac232 100644
--- a/docs/wiki/03-02-claim-2-explicitness.md
+++ b/docs/wiki/03-02-claim-2-explicitness.md
@@ -15,10 +15,10 @@ Before the age of global travel, some isolated languages lacked words for concep
To ensure comparative fairness, we must normalize the "Material Properties" of the languages. We do not judge a Shell script for being "worse" than Go; we acknowledge that it is built from a more opaque material.
-* **The Steel Bridge (Go - Tier 1):** The structure is explicit. We can clearly see the bolts and the tension cables. If there are no visible cracks, we can be 99% sure the bridge is safe.
-* **The Stone Bridge (Shell - Tier 3):** The internal integrity is hidden inside the masonry. A visual inspection might show zero cracks, but the material might still be hiding faults.
+* **The Steel Bridge (Go — one strictness gap):** The structure is explicit. We can clearly see the bolts and the tension cables. If there are no visible cracks, we can be 99% sure the bridge is safe.
+* **The Stone Bridge (Shell — three strictness gaps):** The internal integrity is hidden inside the masonry. A visual inspection might show zero cracks, but the material might still be hiding faults.
-To make the comparison fair, GitGalaxy applies a Fidelity Tax (the Fidelity Coefficient $Fc$) and an Implicit Risk Correction ($Irc$). We assume a baseline level of hidden risk to correct for the opacity of the material. This ensures that a "Safe" rating in Shell requires significantly more defensive effort than in Go, reflecting the reality of the engineering challenge.
+To make the comparison fair, GitGalaxy applies two separate corrections (#2716). The Fidelity Coefficient $Fc$ is *measured*: keyword-rosetta plants identical defence in every language, and a rule that over-fires has each of its hits credited at the planted-to-measured ratio, so the same defence earns the same credit everywhere. The Implicit Risk Correction $Irc$ is *tabulated*: one point per thing the language lets you leave unsaid — static types, enforced error paths, memory safety, declared globals — from `analysis_lens.LANGUAGE_STRICTNESS`. A "Safe" rating in Shell still requires more defensive effort than in Go, but the amount is now written down per column rather than picked by bucket, and [08-03](08-03-transforming-regex-counts.md) renders both tables from the data the engine reads.
### 2.4.1.C. The Fidelity Matrix (40 Languages x 51 Signals)
@@ -33,7 +33,7 @@ This matrix maps the structural "Broadcast Power" of coding languages across his
* 🟧 **I (Implicit):** The concept exists, but must be inferred from context, conventions, or secondary logic.
* ⚪ **- (None):** The concept is not structurally applicable to the language.
-| Language (Year) | Tier | CF | Phys | Risk | Domain | Thermo |
+| Language (Year) | Tier (2025 buckets, retired by #2718 — see [08-03](08-03-transforming-regex-counts.md) for the live strictness rows) | CF | Phys | Risk | Domain | Thermo |
| :--- | :---: | :---: | :---: | :---: | :---: | :---: |
| MLIR (2019) | 1 | 🟦 **E** | 🟦 **E** | 🟦 **E** | ⚪ **-** | 🟦 **E** |
| Zig (2016) | 1 | 🟦 **E** | 🟦 **E** | 🟦 **E** | 🟦 **E** | 🟦 **E** |
@@ -100,7 +100,7 @@ By trading the microscope of an AST for the telescope of blAST, we accept a 5% m
### 2.4.1.D. Conclusion: Design for Scannability
-The progression from Tier 3 (Implicit) to Tier 1 (Explicit) suggests that Scannability, the trending towards explicitness is increase. The younger the language, the louder it "screams" its intent. The blAST engine attempts normalize this variation in explicitiness by applying the Fidelity Coefficient ($Fc$) to account for the silence of the ancients/the fog of war/the opaqueness of the language.
+The progression from implicit to explicit suggests that scannability — the trend towards explicitness — is increasing. The younger the language, the louder it "screams" its intent. The blAST engine normalises what it can *measure* of that variation with the per-signal Fidelity Coefficient ($Fc$), and writes down what it cannot measure — the silence of the ancients — as the strictness table's $Irc$, one point per thing the language leaves unsaid.
diff --git a/docs/wiki/08-03-transforming-regex-counts.md b/docs/wiki/08-03-transforming-regex-counts.md
index efe5ada60..fb060d136 100644
--- a/docs/wiki/08-03-transforming-regex-counts.md
+++ b/docs/wiki/08-03-transforming-regex-counts.md
@@ -20,9 +20,104 @@ Applies four stabilizing principles:
5. **Evidence-Mass Floor:** Every per-file density divides by $\max(LOC, 50)$, never by raw LOC. Below 50 coding lines a file is scored on its *counts* (a two-hit file is a two-hit file whether it is 5 or 49 lines long), so identical intent scores identically regardless of file length; at or above the floor the density regime is untouched. This is the per-file analog of the mass-weighted averaging used at directory scope, and it is the *only* small-file mechanism -- it replaced six independent guards (a `<15 LOC` cognitive-load cliff, two `+20` paddings, a `loc/15` dampener, an unbounded $Irc/LOC$ floor, a `max(total_loc, 10)` API guard) that each fired on a different LOC range and fought each other (#2655). Files below the floor carry `mass_floored: true` and their `evidence_mass` in telemetry. Two consistency rules follow from it: $Irc$ *corrects* measured risk and never creates it (zero measured evidence scores zero in every tier), and a file with no branches carries no cognitive load at any length.
The per-function descriptor has the same floor, derived the same way (#2705): `func_internal_density` $= \text{avg\_func\_complexity} / \max(\text{avg\_func\_loc},\ 12)$, where 12 is the golden-master median lines-per-function exactly as 50 is the median coding LOC per file. Below the floor the column is a pure rescale of `avg_func_complexity` -- it reports branch structure, and two files with the same branches per function read the same density however tersely one of them is written; at or above it the column is unchanged. That means for roughly half of real files the two columns say the same thing, by design.
-Language Confidence Tiers (1 to 3) apply Fidelity Coefficients ($Fc$) and Implicit Risk Corrections ($Irc$) based on language strictness.
General Risk Equation:
-$$RiskExposure = \left( \frac{((RiskHits + Irc) \times Weight) - (DefenseHits \times Fc)}{\max(LOC,\ 50)} \right) \times Mp$$
+$$RiskExposure = \left( \frac{((RiskHits + Irc) \times Weight) - \sum_{s}(DefenseHits_s \times Fc_s)}{\max(LOC,\ 50)} \right) \times Mp$$
+
+### Language corrections: three inputs, not one dial (#2716)
+
+A regex sees different amounts in different languages, so a raw count is not comparable across them and something has to correct for it. Until #2718 that "something" was one lookup on the language's name: two inline hand lists picked $Fc$ / $Irc$ / $Ot$ per language, with 45 of 59 defined languages falling through to the harshest setting. Measured on the language-crucible corpus that single term moved 78% of files and 18% of them by 25 points or more; it inverted the safety ordering above 6 attack hits (#2717); and `embedded_python` paid a tier-3 penalty for not being the literal string `"python"` (#2653). The lookup was doing three separable jobs, and each now has its own input sourced from where the truth about it lives:
+
+| what it corrects for | where the truth lives | the input | replaces |
+|---|---|---|---|
+| **Our rules catch less in some languages.** A `safety` rule that fires 3 times on 2 planted constructs over-credits every hit. | Measured. keyword-rosetta plants identical defence in every language and records what each rule found. | $Fc_s = \min(1,\ planted_s / measured_s)$ per language **and per signal**, generated into `gitgalaxy/standards/fidelity_table.py`. Under-firing stays at 1.0 — that is a rule to fix, and a coefficient that compensates for a fixable gap is a way to stop fixing it. | the single per-language $Fc$, and `_calc_safety`'s `systems_buffer_ratio` |
+| **This language lets you leave things unsaid.** Unenforced error paths, implicit globals, no memory safety, no static types. | The language specification — objective yes/no columns, checkable against documentation. | `analysis_lens.LANGUAGE_STRICTNESS`: one row per language; $Irc$ = number of gaps (0–4), $Ot = 1 + 0.1 \cdot Irc$. Data, markup and configuration formats have no runtime and carry **no** term. Dialects resolve through `LANGUAGE_FAMILY`. | the tier lists |
+| **This file does runtime-dynamic things a regex cannot follow.** `eval`, reflection, dynamic dispatch. | The file — these are already registry signals, counted per file. | Per-file dynamism replaces the flat $Irc$ term in the six equations that read it (#2719, in progress). | the flat $Irc$ |
+
+Two invariants bound the mechanism. $Irc$ *corrects* measured risk and never creates it: zero measured evidence scores zero in every language (#2655). And the weight on the strictness term is provisional — nothing in the system can validate a language-level shift yet (keyword-rosetta's null hypothesis *is* "no correction", the crucible has no risk labels), so #2720 pilots an outcome fixture before that weight is trusted with more than it carries now.
+
+The tables the engine actually reads are rendered below from the data files, never typed by hand — a hand-written copy is how the repo once carried two tier tables that disagreed for twenty languages.
+
+#### Language strictness
+
+
+| language | static types | enforced errors | memory safe | no implicit globals | Irc | Ot |
+|---|---|---|---|---|---|---|
+| `abap` | yes | **no** | yes | yes | 1 | 1.10 |
+| `ada` | yes | **no** | yes | yes | 1 | 1.10 |
+| `agc_assembly` | **no** | **no** | **no** | **no** | 4 | 1.40 |
+| `apex` | yes | **no** | yes | yes | 1 | 1.10 |
+| `assembly` | **no** | **no** | **no** | **no** | 4 | 1.40 |
+| `batch` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `blp` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `c` | yes | **no** | **no** | yes | 2 | 1.20 |
+| `cobol` | yes | **no** | yes | **no** | 2 | 1.20 |
+| `cpp` | yes | **no** | **no** | yes | 2 | 1.20 |
+| `csharp` | yes | **no** | yes | yes | 1 | 1.10 |
+| `css` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `csv` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `dart` | yes | **no** | yes | yes | 1 | 1.10 |
+| `dockerfile` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `fortran` | yes | **no** | **no** | **no** | 3 | 1.30 |
+| `glsl` | yes | **no** | yes | yes | 1 | 1.10 |
+| `go` | yes | **no** | yes | yes | 1 | 1.10 |
+| `groovy` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `haskell` | yes | yes | yes | yes | 0 | 1.00 |
+| `hlo` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `html` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `java` | yes | yes | yes | yes | 0 | 1.00 |
+| `javascript` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `jcl` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `json` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `kotlin` | yes | **no** | yes | yes | 1 | 1.10 |
+| `livecode` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `lua` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `m4` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `makefile` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `markdown` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `matlab` | **no** | **no** | yes | yes | 2 | 1.20 |
+| `mlir` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `nix` | **no** | **no** | yes | yes | 2 | 1.20 |
+| `objective-c` | yes | **no** | **no** | yes | 2 | 1.20 |
+| `pbtxt` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `perl` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `php` | **no** | **no** | yes | yes | 2 | 1.20 |
+| `plaintext` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `powershell` | **no** | **no** | yes | yes | 2 | 1.20 |
+| `proto` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `python` | **no** | **no** | yes | yes | 2 | 1.20 |
+| `ruby` | **no** | **no** | yes | yes | 2 | 1.20 |
+| `rust` | yes | yes | yes | yes | 0 | 1.00 |
+| `scala` | yes | **no** | yes | yes | 1 | 1.10 |
+| `scheme` | **no** | **no** | yes | yes | 2 | 1.20 |
+| `shell` | **no** | **no** | yes | **no** | 3 | 1.30 |
+| `solidity` | yes | **no** | yes | yes | 1 | 1.10 |
+| `sqlite` | **no** | **no** | yes | yes | 2 | 1.20 |
+| `swift` | yes | yes | yes | yes | 0 | 1.00 |
+| `tcl` | **no** | **no** | yes | yes | 2 | 1.20 |
+| `td` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `typescript` | yes | **no** | yes | yes | 1 | 1.10 |
+| `xml` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `yacc` | **no** | **no** | **no** | **no** | 4 | 1.40 |
+| `yaml` *(no runtime)* | — | — | — | — | 0 | 1.00 |
+| `zig` | yes | yes | **no** | yes | 1 | 1.10 |
+
+Dialects read their family's row: `embedded_python` → `python`, `micropython` → `python`.
+
+
+#### Fidelity coefficients the engine reads (signals below 1.00 only)
+
+
+| language | `safety` | `test` | `doc` | `ownership` |
+|---|---|---|---|---|
+| `c` | 1.00 | **0.67** | 1.00 | 1.00 |
+| `embedded_python` | **0.50** | **0.67** | 1.00 | 1.00 |
+| `haskell` | **0.67** | 1.00 | 1.00 | 1.00 |
+| `perl` | 1.00 | **0.67** | 1.00 | 1.00 |
+| `solidity` | 1.00 | 1.00 | 1.00 | **0.25** |
+| `typescript` | **0.67** | 1.00 | 1.00 | 1.00 |
+
+Every language and signal not listed reads 1.00. Source: keyword-rosetta `6377eb59` (46 languages), regenerated by `tests/tools/fidelity_table.py`.
+
## Pipeline Integration
- **Inputs:** Raw regex counts, LOC, language metadata.
@@ -32,7 +127,7 @@ $$RiskExposure = \left( \frac{((RiskHits + Irc) \times Weight) - (DefenseHits \t
Scanner Extraction -> Universal Exposure Framework -> Quantized Tier Output
## Tradeoffs
-The sigmoid gating principle aggressively suppresses minor risks in large files, intentionally sacrificing micro-level visibility to prevent "alert fatigue" on the macro level. Language confidence tiers generalize thousands of languages into three buckets, reducing precision for niche languages.
+The sigmoid gating principle aggressively suppresses minor risks in large files, intentionally sacrificing micro-level visibility to prevent "alert fatigue" on the macro level. The strictness table is four yes/no columns per language: enough to be reviewable, too coarse to rank two languages that share a row. That coarseness is deliberate until #2720 can say what finer resolution would be measuring.
## Limitations
- The 2.5x defensive multiplier is empirically derived and may not perfectly align with specific internal security postures.
@@ -42,7 +137,7 @@ The sigmoid gating principle aggressively suppresses minor risks in large files,
Processing utilizes constant-time floating-point math per file component, resulting in $O(1)$ metric transformation time per unit post-extraction.
## Future Work
-- Machine learning parameter tuning for Fidelity Coefficients based on historical vulnerability tracking.
+- Outcome calibration of the strictness weight against fix-commit history (#2720); the fidelity coefficients are already measured, not tuned.
- Configurable Breach Cap thresholds per repository.
## Related Components
diff --git a/docs/wiki/08-08-technical-debt.md b/docs/wiki/08-08-technical-debt.md
index ab5a0391e..69bf5f825 100644
--- a/docs/wiki/08-08-technical-debt.md
+++ b/docs/wiki/08-08-technical-debt.md
@@ -66,4 +66,4 @@ Currently, the system is strictly lexical and static. Future iterations plan to
## Related Components
- Static Analysis Engine
- Path Modifier ($Mp$)
-- Implicit Risk Correction ($Irc$)
+- Implicit Risk Correction ($Irc$) — one point per strictness gap of the language ([08-03](08-03-transforming-regex-counts.md)), 0 for data and markup formats
diff --git a/docs/wiki/08-09-documentation-risk.md b/docs/wiki/08-09-documentation-risk.md
index ca63dce85..c9ee52033 100644
--- a/docs/wiki/08-09-documentation-risk.md
+++ b/docs/wiki/08-09-documentation-risk.md
@@ -30,14 +30,14 @@ Evaluates four contextual dimensions:
**Mathematical Formulation**
1. **Knowledge Shield Defense:**
$$\text{UmbrellaDefense} = \text{doc\_umbrella} \times 50.0$$
-$$\text{DefenseHits} = \left( \text{InlineDocs} + (\text{Ownership} \times 0.5) + (\text{DocLOC} \times 0.33) + \text{UmbrellaDefense} \right) \times Fc$$
+$$\text{DefenseHits} = (\text{InlineDocs} \times Fc_{doc}) + (\text{Ownership} \times 0.5 \times Fc_{ownership}) + (\text{DocLOC} \times 0.33) + \text{UmbrellaDefense}$$
2. **Undocumented Risk Calculation:**
$$\text{UndocumentedRisk} = \sum_{\text{undocumented}} \left( 5.0 + \ln(\text{Impact}) \right)$$
$$\text{RiskHits} = \text{UndocumentedRisk} + (\text{API\_Exposure} \times 2.0) + Irc$$
3. **Net Exposure & Line Density:**
$$\text{NetExposure} = \max\left(0, \text{RiskHits} - \frac{\text{DefenseHits}}{2.0}\right)$$
$$\text{Density} = \left( \frac{\text{NetExposure}}{\max(\text{LOC}, 50) + 20} \right) \times 100.0$$
-The denominator is the UEF evidence-mass floor plus the equation's smoothing pad ([08-03](08-03-transforming-regex-counts.md)). $Irc$ corrects measured risk, it never creates it: when $\text{UndocumentedRisk} + \text{API\_Exposure} = 0$ the score is $0$ in every language tier (#2655).
+The denominator is the UEF evidence-mass floor plus the equation's smoothing pad ([08-03](08-03-transforming-regex-counts.md)). $Irc$ corrects measured risk, it never creates it: when $\text{UndocumentedRisk} + \text{API\_Exposure} = 0$ the score is $0$ in every language (#2655).
4. **Systemic Multipliers & Mapping:**
$$\text{FinalMultiplier} = \left(1.0 + \frac{\text{Pop}}{10}\right) \times \left(1.0 + \frac{\text{Silo}}{200}\right) \times Mp$$
$$\text{RawRisk} = \frac{100.0}{1 + e^{-0.2 \times (\text{Density} - 10.0)}}$$
@@ -62,7 +62,7 @@ flowchart LR
## Limitations
- Cannot semantically read comments to confirm they explain the code (a comment saying "stuff happens here" provides defense weight).
- Network multipliers (popularity) only track internal repository imports and cannot measure external library consumers.
-- Implicit languages with less rigid docstring structures might receive lower fidelity coefficients ($Fc$), unfairly elevating risk in Python or JavaScript projects lacking explicit type tags.
+- $Fc_{doc}$ and $Fc_{ownership}$ are measured per language on the keyword-rosetta corpus ([08-03](08-03-transforming-regex-counts.md)); a language whose doc rule reads exactly on plant carries 1.0, so the old flat 0.60 for "implicit" languages no longer exists. $Irc$ comes from the strictness table.
## Performance Notes
Calculating the undocumented risk loop requires iterating over all functions within the file ($O(F)$ where $F$ is function count). Since $F$ is typically small, execution remains exceptionally fast and bounded.
diff --git a/docs/wiki/08-15-concurrency-exposure.md b/docs/wiki/08-15-concurrency-exposure.md
index 87963f1ec..aa5b707d7 100644
--- a/docs/wiki/08-15-concurrency-exposure.md
+++ b/docs/wiki/08-15-concurrency-exposure.md
@@ -19,7 +19,7 @@ The static analysis engine extracts concurrency keywords and synchronization pri
| `raw_concurrency` | Keywords | **1.0x** | Asynchronous and threading constructs: `async`, `await`, `Promise`, `thread`, `spawn`, `go`, `chan`, `synchronized`. |
| `sync_locks` | Mitigations | **-1.5x** | Synchronization primitives (mutexes, locks, semaphores). Each lock mitigates 1.5 thread spawns. |
| `loc` | Denominator | **Base Density** | Meaningful lines of code, padded by `loc_padding` (default 150). |
-| `irc` | Language Modifier | **0.1x** | Implicit Risk Correction for dynamically typed or implicit concurrency models. |
+| `irc` | Language Modifier | **0.1x** | Implicit Risk Correction: the language's strictness-gap count (0–4) from `analysis_lens.LANGUAGE_STRICTNESS` ([08-03](08-03-transforming-regex-counts.md)); 0 for data and markup formats. |
| `mp` | Path Modifier | **Threshold Modifier** | Context-specific modifier (e.g., `0.5` for UI components where race conditions trigger UI defects). |
The calculation balances raw concurrency against synchronization locks and applies a sigmoid transformation.
diff --git a/docs/wiki/08-16-state-flux-exposure.md b/docs/wiki/08-16-state-flux-exposure.md
index 94b2d3cbd..be5b383ee 100644
--- a/docs/wiki/08-16-state-flux-exposure.md
+++ b/docs/wiki/08-16-state-flux-exposure.md
@@ -19,7 +19,7 @@ The static analysis engine counts mutation keywords and immutability controls:
| `raw_flux` | `state_mutation` | **1.0x** | Reassignment and mutation keywords: `let`, `var`, `mut`, `setState`, `push`, `pop`, `+=`, `=`. |
| `freeze_hits` | `immutability_locks` | **-0.5x** | Immutability enforcements (`Object.freeze`, const locks). Subtracts 0.5 per hit from raw mutation. |
| `loc` | Denominator | **Base Density** | Meaningful lines of code (`loc_padding` defaults to 0 to ensure mutations immediately impact density). |
-| `irc` | Language Modifier | **0.15x** | Implicit Risk Correction (accounts for implicit mutability defaults in languages like JavaScript or Python). |
+| `irc` | Language Modifier | **0.15x** | Implicit Risk Correction: the language's strictness-gap count (0–4) from `analysis_lens.LANGUAGE_STRICTNESS` ([08-03](08-03-transforming-regex-counts.md)); 0 for data and markup formats. |
| `mp` | Path Modifier | **Threshold Modifier** | Context modifier (e.g., `0.8` for UI components where state spaghetti introduces UI state bugs). |
### 1. Net Volatility Calculation
diff --git a/gitgalaxy/metrics/signal_processor.py b/gitgalaxy/metrics/signal_processor.py
index 8c58828a2..84d07ab78 100644
--- a/gitgalaxy/metrics/signal_processor.py
+++ b/gitgalaxy/metrics/signal_processor.py
@@ -15,10 +15,12 @@
import math
import re
import statistics
+from collections.abc import Mapping
from typing import Any, Optional, TypedDict
from gitgalaxy.standards import analysis_lens
from gitgalaxy.standards import analysis_lens as config
+from gitgalaxy.standards.fidelity_table import FIDELITY_TABLE
class DirectoryGroupData(TypedDict):
@@ -96,14 +98,10 @@ def __init__(
physics = getattr(config, "ENGINE_CONSTANTS", {})
self.WEIGHT_RISK = physics.get("WEIGHT_RISK", 2.5)
self.WEIGHT_DEFENSE = physics.get("WEIGHT_DEFENSE", 1.0)
- self.TIER_VARS = physics.get(
- "TIER_VARS",
- {
- "tier1": {"fc": 1.0, "irc": 0},
- "tier2": {"fc": 0.85, "irc": 2},
- "tier3": {"fc": 0.60, "irc": 5},
- },
- )
+ # Per-language scoring constants (#2716 / #2718): Irc/Ot come from the
+ # language-strictness table, the per-signal Fidelity Coefficient from the
+ # corpus-generated fidelity table. See _language_constants().
+ self.FIDELITY_SIGNALS = ("safety", "test", "doc", "ownership")
self.MASSIVE_FILE_THRESHOLD = physics.get("MASSIVE_FILE_THRESHOLD", 300)
self.TESTING_RISK_FLOOR = physics.get("TESTING_RISK_FLOOR", 15.0)
# Evidence-mass floor (#2655) -- see _mass_loc().
@@ -481,10 +479,7 @@ def calculate_risk_vector(
# ==================================================================
# 1. ACTIVE SIGNAL PROCESSING ENGINE (For normal executable code)
# ==================================================================
- tier = self._get_tier(lang_id)
- fc = self.TIER_VARS[tier]["fc"]
- irc = self.TIER_VARS[tier]["irc"]
- ot = self.TIER_VARS[tier].get("ot", 1.0)
+ irc, ot, fid = self._language_constants(lang_id)
# Environmental Context (Path-based overrides)
mp_map = self._get_locational_multipliers(rel_path)
@@ -498,7 +493,8 @@ def calculate_risk_vector(
mp_map.setdefault(mp_key, mp_value)
self.logger.debug(
- f"[{rel_path}] Structural Calc | Lang: {lang_id} (Fc: {fc:.2f}, Irc: {irc}, Ot: {ot:.2f})"
+ f"[{rel_path}] Structural Calc | Lang: {lang_id} (Irc: {irc}, Ot: {ot:.2f}, "
+ f"Fc: {', '.join(f'{k}={v:.2f}' for k, v in fid.items())})"
)
hit_vector = [raw_signals.get(key, 0) for key in self.SIGNAL_SCHEMA]
@@ -719,9 +715,9 @@ def calculate_risk_vector(
# The OOM Bomb heuristic has been phased out of the probabilistic model.
# Spatial correlation is now handled natively upstream in detector.py.
- cog_score, cog_raw = self._calc_cog_load(loc, raw_signals, irc, fc, mp_map.get("cog", 1.0), func_gini)
+ cog_score, cog_raw = self._calc_cog_load(loc, raw_signals, irc, fid, mp_map.get("cog", 1.0), func_gini)
saf_score = self._calc_safety(
- loc, raw_signals, irc, fc, mp_map.get("safety", 1.0), mp_map.get("memory", 1.0)
+ loc, raw_signals, irc, fid, mp_map.get("safety", 1.0), mp_map.get("memory", 1.0)
)
debt_score = self._calc_tech_debt(loc, raw_signals, irc, mp_map.get("debt", 1.0))
@@ -730,7 +726,7 @@ def calculate_risk_vector(
meta.get("is_protected", False),
raw_signals,
ot,
- fc,
+ fid,
mp_map.get("test", 1.0),
functions,
meta.get("test_coverage_map", {}),
@@ -745,7 +741,7 @@ def calculate_risk_vector(
loc,
doc_lines,
raw_signals,
- fc,
+ fid,
irc,
mp_map.get("doc", 1.0),
functions,
@@ -1352,7 +1348,7 @@ def _calc_cog_load(
loc: int,
raw_signals: dict[str, int],
irc: int,
- fc: float,
+ fid: Mapping[str, float],
mp: float,
func_gini: float = 0.0,
) -> tuple[float, float]:
@@ -1397,12 +1393,18 @@ def _calc_cog_load(
raw_score = 100.0 if total_density > t.get("sigmoid_offset", 0.75) else 0.0
doc_coverage = (raw_signals.get("doc", 0) * t.get("doc_mult", 10.0)) / mass_loc
- cooling = max(0.5, 1.0 - (doc_coverage * fc))
+ cooling = max(0.5, 1.0 - (doc_coverage * fid.get("doc", 1.0)))
return min(raw_score * cooling * mp, 100.0), total_density
def _calc_safety(
- self, loc: int, raw_signals: dict[str, int], irc: int, fc: float, mp: float, mem_mp: float = 1.0
+ self,
+ loc: int,
+ raw_signals: dict[str, int],
+ irc: int,
+ fid: Mapping[str, float],
+ mp: float,
+ mem_mp: float = 1.0,
) -> float:
mass_loc = self._mass_loc(loc)
t = self.risk_tuning.get("safety", {})
@@ -1412,10 +1414,12 @@ def _calc_safety(
+ (raw_signals.get("safety_bypasses", 0) * t.get("safety_neg_weight", 1.5))
+ (raw_signals.get("state_mutation", 0) * t.get("flux_weight", 0.5))
)
+ # Each defence signal is credited at its own measured fidelity (#2718): a rule
+ # that fires 3 times on 2 planted constructs credits each hit at 2/3.
defense_hits = (
- (raw_signals.get("safety", 0) * self.WEIGHT_DEFENSE)
- + (raw_signals.get("test", 0) * t.get("test_weight", 0.5))
- + (raw_signals.get("doc", 0) * t.get("doc_weight", 0.1))
+ (raw_signals.get("safety", 0) * self.WEIGHT_DEFENSE * fid.get("safety", 1.0))
+ + (raw_signals.get("test", 0) * t.get("test_weight", 0.5) * fid.get("test", 1.0))
+ + (raw_signals.get("doc", 0) * t.get("doc_weight", 0.1) * fid.get("doc", 1.0))
)
if attack_hits == 0:
@@ -1424,13 +1428,12 @@ def _calc_safety(
# Laplace padding is kept ON TOP of the evidence-mass floor so that files at
# or above the floor score exactly as before (#2655).
smoothed_loc = mass_loc + t.get("laplace_smoothing", 20.0)
- # Tier2/tier3 languages (fc < 1.0) get a proportional discount on the
- # attack signal rather than a flat subtraction: a flat subtraction of
- # a value larger than net_exposure's typical range wipes out small-
- # but-real attack density instead of merely tempering it (#1055).
- systems_buffer_ratio = t.get("systems_buffer_ratio", 0.75) if fc < 1.0 else 1.0
- attack = ((attack_hits + irc) / smoothed_loc) * mp * mem_mp * systems_buffer_ratio
- defense = (defense_hits / smoothed_loc) * fc
+ # The #1055 `systems_buffer_ratio` (a 0.75 attack discount for every non-tier-1
+ # language) is gone (#2717): keyed on `fc < 1.0` it made tier-2/3 files score
+ # SAFER than tier 1 above 6/15 attack-weighted hits. The over-firing it was
+ # compensating for is now scaled at the source by the per-signal fidelity.
+ attack = ((attack_hits + irc) / smoothed_loc) * mp * mem_mp
+ defense = defense_hits / smoothed_loc
net_exposure = attack - defense
@@ -1490,7 +1493,7 @@ def _calc_documentation(
loc: int,
doc_loc: int,
raw_signals: dict[str, int],
- fc: float,
+ fid: Mapping[str, float],
irc: int,
mp: float,
functions: Optional[list[dict[str, Any]]] = None,
@@ -1504,12 +1507,14 @@ def _calc_documentation(
# GuideStar Umbrella projection: 1.0 shield = 50 lines of virtual documentation
umbrella_defense = doc_umbrella * 50.0
+ # Per-signal fidelity (#2718): doc_loc and the umbrella are structural, not
+ # rule hits, so they carry no coefficient.
defense_hits = (
- (raw_signals.get("doc", 0) * t.get("doc_weight", 1.0))
- + (raw_signals.get("ownership", 0) * t.get("ownership_weight", 0.5))
+ (raw_signals.get("doc", 0) * t.get("doc_weight", 1.0) * fid.get("doc", 1.0))
+ + (raw_signals.get("ownership", 0) * t.get("ownership_weight", 0.5) * fid.get("ownership", 1.0))
+ (doc_loc * t.get("doc_loc_weight", 0.33))
+ umbrella_defense
- ) * fc
+ )
# 2. THE RISK (Opaque Execution Risk)
opaque_execution = 0.0
@@ -1568,7 +1573,7 @@ def _calc_verification(
is_protected: bool,
raw_signals: dict[str, int],
ot: float,
- fc: float,
+ fid: Mapping[str, float],
mp: float,
functions: list[dict[str, Any]],
test_coverage_map: dict[str, list[dict[str, Any]]],
@@ -1600,7 +1605,9 @@ def _calc_verification(
safety = float(hit_vector.get("safety", 0))
bypassed = float(hit_vector.get("test_skip", 0))
- internal_defenses = (verification + safety - (bypassed * 2.0)) * fc
+ internal_defenses = (
+ verification * fid.get("test", 1.0) + safety * fid.get("safety", 1.0) - (bypassed * 2.0)
+ )
base_impact = max(func_impact - internal_defenses, 0.0)
# Step B: The Defensive Ratio (Effective Mass)
@@ -2064,14 +2071,24 @@ def _generate_function_rankings(self, parsed_files: list[dict[str, Any]]) -> dic
"lowest": all_funcs[-3:] if len(all_funcs) >= 3 else all_funcs,
}
- def _get_tier(self, lang_id: str) -> str:
- explicit = {"rust", "go", "swift", "java", "typescript", "csharp", "dart"}
- structured = {"python", "javascript", "cpp", "c", "ruby", "kotlin", "php"}
- if lang_id in explicit:
- return "tier1"
- if lang_id in structured:
- return "tier2"
- return "tier3"
+ def _language_constants(self, lang_id: str) -> tuple[int, float, dict[str, float]]:
+ """(Irc, Ot, per-signal Fc) for a language (#2716 / #2718).
+
+ Irc and Ot come from `analysis_lens.LANGUAGE_STRICTNESS` (one Irc per strictness
+ gap, `None` rows and unknown languages get none); the Fidelity Coefficients from
+ the keyword-rosetta-generated `fidelity_table` (1.0 wherever the corpus has no
+ measurement). Dialects resolve through LANGUAGE_FAMILY first, so
+ `embedded_python` reads python's rows -- the fall-through to a harsh default
+ that opened #2653 no longer exists.
+ """
+ family = analysis_lens.resolve_language_family(lang_id)
+ irc, ot = analysis_lens.strictness_constants(family)
+ # Strictness is a property of the language family; fidelity is a property of
+ # the RULE SET, and a dialect with its own registry entry (embedded_python has
+ # 51 rules to python's 61) was measured on its own -- read its own row first.
+ row = FIDELITY_TABLE.get(lang_id) or FIDELITY_TABLE.get(family, {})
+ fid = {sig: float(row.get(sig, 1.0)) for sig in self.FIDELITY_SIGNALS}
+ return irc, ot, fid
def _get_dominant_lang(self, composition: dict[str, dict[str, Any]]) -> str:
if not composition:
diff --git a/gitgalaxy/standards/analysis_lens.py b/gitgalaxy/standards/analysis_lens.py
index 0ad626118..1c43a9412 100644
--- a/gitgalaxy/standards/analysis_lens.py
+++ b/gitgalaxy/standards/analysis_lens.py
@@ -11,7 +11,7 @@
# galaxyscope:ignore sec_hardcoded_secrets, secrets_risk
import re
-from typing import ClassVar, TypedDict
+from typing import ClassVar, Optional, TypedDict
"""
analysis_lens.py
@@ -61,12 +61,9 @@ def get_policy(mode="baseline"):
ENGINE_CONSTANTS = {
"WEIGHT_RISK": 2.5,
"WEIGHT_DEFENSE": 1.0,
- # Trust Dampeners & Opacity Taxes
- "TIER_VARS": {
- "tier1": {"fc": 1.0, "ot": 1.00, "irc": 0}, # Explicit (Rust, Go, Java)
- "tier2": {"fc": 0.85, "ot": 1.15, "irc": 2}, # Structured (Python, TS)
- "tier3": {"fc": 0.60, "ot": 1.40, "irc": 5}, # Implicit (Shell, Groovy)
- },
+ # The per-language scoring constants (Irc / Ot / Fc) no longer live here: see
+ # LANGUAGE_STRICTNESS + strictness_constants() below for Irc/Ot, and the generated
+ # gitgalaxy/standards/fidelity_table.py for the per-signal Fc (#2716 / #2718).
# Math constraints
"TESTING_RISK_FLOOR": 15.0,
"MASSIVE_FILE_THRESHOLD": 300, # Lines of code where tests lose efficacy
@@ -91,47 +88,133 @@ def get_policy(mode="baseline"):
"FUNC_EVIDENCE_MASS_FLOOR": 12,
}
-FIDELITY_TIERS = {
- # Tier 1: Highly Explicit (0% Ambiguity Tax)
- "java": 1,
- "csharp": 1,
- "go": 1,
- "rust": 1,
- "kotlin": 1,
- "swift": 1,
- "python": 1,
- "sqlite": 1,
- "micropython": 1,
- "haskell": 1,
- "apex": 1,
- "abap": 1,
- "scala": 1,
- "zig": 1,
- "dart": 1,
- "powershell": 1,
- "dockerfile": 1,
- # Tier 2: Explicit with some Implicit (15% Ambiguity Tax)
- "javascript": 2,
- "typescript": 2,
- "c": 2,
- "cpp": 2,
- "php": 2,
- "objective-c": 2,
- "lua": 2,
- "cobol": 2,
- "fortran": 2,
- "matlab": 2,
- # Tier 3: Mostly Implicit (40% Ambiguity Tax)
- "shell": 3,
- "ruby": 3,
- "perl": 3,
- "html": 3,
- "css": 3,
- "assembly": 3,
- "agc_assembly": 3,
- "livecode": 3,
+# ------------------------------------------------------------------------------
+# 2b. LANGUAGE STRICTNESS (#2716 / #2718 -- replaces the three-bucket language tiers)
+# Consumed by: signal_processor.py via strictness_constants()
+#
+# The old `_get_tier` picked fc/irc/ot per language from two inline hand lists, with 45
+# of 59 languages falling through to the harshest setting. That one lookup was doing
+# three separable jobs: how much of a language our RULES can see (now measured per
+# signal in fidelity_table.py), how much runtime-dynamic behaviour a FILE contains
+# (a per-file count, #2719), and what a LANGUAGE lets you leave unsaid. Only the last
+# is a property of the language, and this table is it: four yes/no columns, each
+# checkable against the language's own documentation.
+#
+# static_types the implementation rejects type-mismatched programs before they
+# run (gradual/optional typing that is off by default counts as no)
+# enforced_errors the caller is FORCED to acknowledge a failure path -- checked
+# exceptions, Result/Option that must be matched, Zig error unions,
+# Swift `try`. Merely having exceptions is not enforcement.
+# memory_safe no raw pointer arithmetic / manual free in the default dialect
+# no_implicit_globals an undeclared name is an error, not a new global (shell, lua,
+# sloppy-mode JS, perl without `use strict`, COBOL WORKING-STORAGE
+# and Fortran implicit typing all say no)
+#
+# `None` = no runtime: data, markup and configuration formats carry no language-level
+# risk term at all. Dialects resolve through LANGUAGE_FAMILY (embedded_python -> python)
+# so a family member can never fall through to a default again.
+#
+# Irc = number of `False` columns (0-4); Ot = 1 + 0.1 * Irc. These weights are
+# provisional -- the magnitude of a language-level term is exactly what no fixture can
+# validate yet (#2720 is the pilot that will). #2655's invariant stays in force in every
+# equation that reads them: Irc corrects measured risk, it never creates it.
+# ------------------------------------------------------------------------------
+
+STRICTNESS_COLUMNS = ("static_types", "enforced_errors", "memory_safe", "no_implicit_globals")
+
+LANGUAGE_STRICTNESS: dict[str, Optional[tuple[bool, bool, bool, bool]]] = {
+ # static enforced memory no-implicit
+ # types errors safe globals
+ "abap": (True, False, True, True), # class-based exceptions unenforced at call sites
+ "ada": (True, False, True, True), # runtime checks on by default; exceptions unchecked
+ "agc_assembly": (False, False, False, False),
+ "apex": (True, False, True, True),
+ "assembly": (False, False, False, False),
+ "batch": (False, False, True, False), # every variable is the environment
+ "blp": None, # Blueprint UI markup
+ "c": (True, False, False, True),
+ "cobol": (True, False, True, False), # PIC-typed; WORKING-STORAGE is program-global by design
+ "cpp": (True, False, False, True),
+ "csharp": (True, False, True, True), # `unsafe` is opt-in
+ "css": None,
+ "csv": None,
+ "dart": (True, False, True, True),
+ "dockerfile": (False, False, True, False), # RUN lines are shell; ARG/ENV are global
+ "fortran": (True, False, False, False), # IMPLICIT NONE is not the default; bounds unchecked
+ "glsl": (True, False, True, True),
+ "go": (True, False, True, True), # errors are values; ignoring one is legal
+ "groovy": (False, False, True, False), # dynamic by default; script bindings are implicit globals
+ "haskell": (True, True, True, True),
+ "hlo": None,
+ "html": None,
+ "java": (True, True, True, True), # checked exceptions
+ "javascript": (False, False, True, False), # sloppy mode is the default
+ "jcl": (False, False, True, False), # DD names are job-global
+ "json": None,
+ "kotlin": (True, False, True, True), # no checked exceptions
+ "livecode": (False, False, True, False),
+ "lua": (False, False, True, False), # assignment without `local` is a global
+ "m4": (False, False, True, False), # macro expansion is the definition of implicit
+ "makefile": (False, False, True, False),
+ "markdown": None,
+ "matlab": (False, False, True, True), # `global` must be declared
+ "mlir": None,
+ "nix": (False, False, True, True),
+ "objective-c": (True, False, False, True), # C memory model under dynamic dispatch
+ "pbtxt": None,
+ "perl": (False, False, True, False), # `use strict` is not the default
+ "php": (False, False, True, True), # function scope needs `global`
+ "plaintext": None,
+ "powershell": (False, False, True, True), # non-terminating errors continue by default
+ "proto": None,
+ "python": (False, False, True, True),
+ "ruby": (False, False, True, True),
+ "rust": (True, True, True, True),
+ "scala": (True, False, True, True),
+ "scheme": (False, False, True, True), # `set!` on an unbound name is an error
+ "shell": (False, False, True, False),
+ "solidity": (True, False, True, True), # low-level `call` returns a bool that can be ignored
+ "sqlite": (False, False, True, True), # type affinity, not types
+ "swift": (True, True, True, True), # `throws` must be `try`-ed
+ "tcl": (False, False, True, True), # procs need `global`
+ "td": None, # TableGen
+ "typescript": (True, False, True, True),
+ "xml": None,
+ "yacc": (False, False, False, False), # untyped $$/$N; actions are C; yylval/yytext are global
+ "yaml": None,
+ "zig": (True, True, False, True), # error unions must be handled; manual memory
}
+# Dialects: resolved before the strictness and fidelity lookups so a family member
+# takes its parent's row rather than a default (#2653 opened on embedded_python
+# landing tier 3 because it was not the literal string "python").
+LANGUAGE_FAMILY: dict[str, str] = {
+ "embedded_python": "python",
+ "micropython": "python",
+}
+
+STRICTNESS_IRC_PER_GAP = 1 # Irc = gaps * this
+STRICTNESS_OT_PER_GAP = 0.10 # Ot = 1 + gaps * this
+
+
+def resolve_language_family(lang_id: str) -> str:
+ """The row a language reads strictness and fidelity from (itself unless a dialect)."""
+ return LANGUAGE_FAMILY.get(lang_id, lang_id)
+
+
+def strictness_constants(lang_id: str) -> tuple[int, float]:
+ """(Irc, Ot) for a language: one Irc per `False` strictness column, Ot scaled with it.
+
+ No row, or an explicit `None` row (data / markup / config), yields (0, 1.0): an
+ unknown language gets NO language-level risk term, the opposite of the old
+ fall-through-to-tier-3 default.
+ """
+ row = LANGUAGE_STRICTNESS.get(resolve_language_family(lang_id))
+ if not row:
+ return 0, 1.0
+ gaps = sum(1 for flag in row if not flag)
+ return gaps * STRICTNESS_IRC_PER_GAP, 1.0 + gaps * STRICTNESS_OT_PER_GAP
+
# ------------------------------------------------------------------------------
# 3. STRUCTURAL ASSET MASKS
@@ -775,7 +858,6 @@ def get_policy(mode="baseline"):
"test_weight": 0.5,
"doc_weight": 0.1,
"laplace_smoothing": 20.0,
- "systems_buffer_ratio": 0.75,
"sigmoid_slope": 12.0,
"breach_density_min": 0.03,
"breach_floor_mult": 500.0,
diff --git a/gitgalaxy/standards/fidelity_table.py b/gitgalaxy/standards/fidelity_table.py
new file mode 100644
index 000000000..9640805c1
--- /dev/null
+++ b/gitgalaxy/standards/fidelity_table.py
@@ -0,0 +1,100 @@
+# ==============================================================================
+# GitGalaxy
+# Copyright (c) 2026 Joe Esquibel
+#
+# This source code is licensed under the PolyForm Noncommercial License 1.0.0.
+# You may not use this file except in compliance with the License.
+# A copy of the license can be found in the LICENSE file in the root directory
+# of this project, or at https://polyformproject.org/licenses/noncommercial/1.0.0/
+# ==============================================================================
+# GENERATED by tests/tools/fidelity_table.py from the keyword-rosetta control corpus.
+# Do not edit by hand -- rerun the tool; `--check` fails CI when this is stale.
+# corpus: keyword-rosetta 6377eb5973b06ce91d35c18659e7bf584f7cef2e | engine_mode: full-precision
+# generated: 2026-09-04
+"""Per-language, per-signal Fidelity Coefficients: fc = min(1, planted / measured).
+
+Scales the credit a detected hit earns so that identical planted defence earns identical
+credit in every language (#2716). 1.0 means the rule reads exactly on plant, under-fires
+(a rule to fix, never compensated), or the signal is ledgered n/a for the language.
+"""
+
+from __future__ import annotations
+
+FIDELITY_PROVENANCE: dict[str, str] = {
+ "corpus": "keyword-rosetta",
+ "corpus_sha": "6377eb5973b06ce91d35c18659e7bf584f7cef2e",
+ "engine_mode": "full-precision",
+ "languages": "46",
+ "signals": "19",
+}
+
+FIDELITY_SIGNALS: tuple[str, ...] = (
+ "args",
+ "branch",
+ "class_start",
+ "cleanup",
+ "dead_code",
+ "doc",
+ "fragile_debt",
+ "func_start",
+ "globals",
+ "high_risk_execution",
+ "import",
+ "io",
+ "ownership",
+ "planned_debt",
+ "safety",
+ "safety_bypasses",
+ "state_mutation",
+ "telemetry",
+ "test",
+)
+
+FIDELITY_TABLE: dict[str, dict[str, float]] = {
+ "abap": {},
+ "ada": {"branch": 0.75},
+ "agc_assembly": {"branch": 0.75},
+ "apex": {"args": 0.7222, "state_mutation": 0.6667},
+ "assembly": {"branch": 0.125, "state_mutation": 0.3333},
+ "c": {"io": 0.75, "state_mutation": 0.4, "test": 0.6667},
+ "cobol": {"globals": 0.6667},
+ "cpp": {"branch": 0.75, "state_mutation": 0.6667},
+ "csharp": {"branch": 0.75, "globals": 0.6667},
+ "css": {},
+ "dart": {},
+ "dockerfile": {"func_start": 0.7647, "import": 0.75, "state_mutation": 0.5},
+ "embedded_python": {"import": 0.4286, "safety": 0.5, "test": 0.6667},
+ "fortran": {"branch": 0.75, "safety_bypasses": 0.6667, "state_mutation": 0.6667},
+ "go": {"state_mutation": 0.4},
+ "groovy": {"args": 0.6842},
+ "haskell": {"args": 0.8667, "func_start": 0.8667, "safety": 0.6667, "safety_bypasses": 0.5, "state_mutation": 0.5},
+ "html": {},
+ "java": {},
+ "javascript": {"io": 0.75},
+ "jcl": {},
+ "kotlin": {},
+ "livecode": {"branch": 0.6, "state_mutation": 0.6667},
+ "lua": {"io": 0.75},
+ "m4": {"args": 0.7222, "state_mutation": 0.5},
+ "makefile": {"branch": 0.75, "cleanup": 0.6667, "func_start": 0.9286},
+ "markdown": {},
+ "matlab": {"cleanup": 0.5, "state_mutation": 0.5},
+ "objective-c": {"args": 0.619, "state_mutation": 0.6667},
+ "perl": {"state_mutation": 0.5, "test": 0.6667},
+ "php": {},
+ "powershell": {"branch": 0.6, "state_mutation": 0.6667},
+ "python": {},
+ "ruby": {"branch": 0.75},
+ "rust": {},
+ "scala": {},
+ "scheme": {"state_mutation": 0.6667},
+ "shell": {"branch": 0.6, "globals": 0.6667},
+ "solidity": {"ownership": 0.25, "state_mutation": 0.6667},
+ "sqlite": {"branch": 0.6, "io": 0.3333},
+ "swift": {"branch": 0.75},
+ "tcl": {"branch": 0.75, "io": 0.4286, "state_mutation": 0.6667},
+ "typescript": {"args": 0.8667, "safety": 0.6667},
+ "yacc": {},
+ "yaml": {},
+ "zig": {},
+}
diff --git a/tests/core_engine/test_language_strictness.py b/tests/core_engine/test_language_strictness.py
new file mode 100644
index 000000000..22434d3c6
--- /dev/null
+++ b/tests/core_engine/test_language_strictness.py
@@ -0,0 +1,135 @@
+# ==============================================================================
+# GitGalaxy
+# Copyright (c) 2026 Joe Esquibel
+#
+# This source code is licensed under the PolyForm Noncommercial License 1.0.0.
+# You may not use this file except in compliance with the License.
+# A copy of the license can be found in the LICENSE file in the root directory
+# of this project, or at https://polyformproject.org/licenses/noncommercial/1.0.0/
+# ==============================================================================
+"""#2716 / #2718: the language-strictness table and the corpus-generated fidelity table
+that replaced SignalProcessor._get_tier's three-bucket lookup.
+
+Two properties the old mechanism lacked and these tests pin:
+ * COMPLETENESS -- every language the registry defines has a strictness row (or resolves
+ to one through LANGUAGE_FAMILY), so nothing can fall through to a default again.
+ * BOUNDEDNESS -- Irc is 0..4 and Ot 1.0..1.4 from the column count; an unknown or
+ no-runtime language gets NO language-level term; every fidelity coefficient is in
+ (0, 1] and is 1.0 for a signal the corpus never planted.
+"""
+
+import os
+import subprocess
+import sys
+from pathlib import Path
+
+import pytest
+
+from gitgalaxy.metrics.signal_processor import SignalProcessor
+from gitgalaxy.standards import analysis_lens as al
+from gitgalaxy.standards.fidelity_table import FIDELITY_PROVENANCE, FIDELITY_SIGNALS, FIDELITY_TABLE
+from gitgalaxy.standards.language_standards import LANGUAGE_DEFINITIONS
+
+REPO_ROOT = Path(__file__).resolve().parents[2]
+CORPUS = Path(os.environ.get("KEYWORD_ROSETTA_PATH", REPO_ROOT.parent / "keyword-rosetta"))
+
+
+# ---------------------------------------------------------------- strictness table
+def test_every_registry_language_has_a_strictness_row():
+ missing = [lang for lang in LANGUAGE_DEFINITIONS if al.resolve_language_family(lang) not in al.LANGUAGE_STRICTNESS]
+ assert not missing, f"add rows to analysis_lens.LANGUAGE_STRICTNESS (or LANGUAGE_FAMILY) for: {missing}"
+
+
+def test_strictness_rows_are_well_formed():
+ for lang, row in al.LANGUAGE_STRICTNESS.items():
+ if row is None:
+ continue
+ assert len(row) == len(al.STRICTNESS_COLUMNS), lang
+ assert all(isinstance(flag, bool) for flag in row), lang
+
+
+def test_family_members_resolve_to_a_defined_parent():
+ for member, parent in al.LANGUAGE_FAMILY.items():
+ assert parent in al.LANGUAGE_STRICTNESS, (member, parent)
+ assert parent not in al.LANGUAGE_FAMILY, f"{member} -> {parent} chains; families are one level"
+
+
+@pytest.mark.parametrize(
+ ("lang", "expected"),
+ [
+ ("rust", (0, 1.0)), # all four columns True
+ ("haskell", (0, 1.0)), # used to fall through to tier 3
+ ("go", (1, 1.1)), # unenforced errors
+ ("python", (2, 1.2)),
+ ("embedded_python", (2, 1.2)), # #2653: reads python's row by family
+ ("shell", (3, 1.3)),
+ ("yacc", (4, 1.4)),
+ ("yaml", (0, 1.0)), # no runtime -> no language-level term
+ ("no-such-language", (0, 1.0)), # unknown -> none, not the harshest bucket
+ ],
+)
+def test_strictness_constants(lang, expected):
+ irc, ot = al.strictness_constants(lang)
+ assert (irc, round(ot, 6)) == expected
+
+
+def test_irc_and_ot_are_bounded_by_the_column_count():
+ n = len(al.STRICTNESS_COLUMNS)
+ for lang in al.LANGUAGE_STRICTNESS:
+ irc, ot = al.strictness_constants(lang)
+ assert 0 <= irc <= n * al.STRICTNESS_IRC_PER_GAP
+ assert 1.0 <= ot <= 1.0 + n * al.STRICTNESS_OT_PER_GAP + 1e-9
+
+
+def test_no_runtime_languages_carry_no_term():
+ for lang in ("yaml", "json", "xml", "css", "html", "markdown", "csv", "proto"):
+ assert al.LANGUAGE_STRICTNESS[lang] is None, lang
+ assert al.strictness_constants(lang) == (0, 1.0), lang
+
+
+# ---------------------------------------------------------------- fidelity table
+def test_fidelity_coefficients_are_in_unit_interval():
+ for lang, row in FIDELITY_TABLE.items():
+ for sig, fc in row.items():
+ assert 0.0 < fc <= 1.0, (lang, sig, fc)
+ assert sig in FIDELITY_SIGNALS, (lang, sig)
+
+
+def test_engine_reads_only_signals_the_corpus_plants():
+ p = SignalProcessor()
+ assert set(p.FIDELITY_SIGNALS) <= set(FIDELITY_SIGNALS), (
+ "SignalProcessor scales a signal the corpus never plants -- it would always read 1.0"
+ )
+
+
+def test_language_constants_resolve_families_and_unknowns():
+ p = SignalProcessor()
+ # strictness follows the family; fidelity follows the dialect's OWN measured rule set
+ irc_e, ot_e, fid_e = p._language_constants("embedded_python")
+ irc_p, ot_p, _fid_p = p._language_constants("python")
+ assert (irc_e, ot_e) == (irc_p, ot_p)
+ assert fid_e == {sig: float(FIDELITY_TABLE["embedded_python"].get(sig, 1.0)) for sig in p.FIDELITY_SIGNALS}
+ irc, ot, fid = p._language_constants("no-such-language")
+ assert (irc, ot) == (0, 1.0)
+ assert fid == dict.fromkeys(p.FIDELITY_SIGNALS, 1.0)
+
+
+def test_fidelity_provenance_names_the_corpus():
+ assert FIDELITY_PROVENANCE["corpus"] == "keyword-rosetta"
+ assert int(FIDELITY_PROVENANCE["languages"]) >= 40
+
+
+@pytest.mark.skipif(
+ not (CORPUS / "docs" / "bias_data.json").exists(),
+ reason="keyword-rosetta corpus not checked out as a sibling (set KEYWORD_ROSETTA_PATH)",
+)
+def test_committed_fidelity_table_is_fresh_against_the_corpus():
+ """The table is generated data; a stale copy is the two-tables-that-disagree failure
+ #2653 found in FIDELITY_TIERS all over again. Same bar as the audit runners: the
+ tool exits 2 (not 0) when it could not actually check."""
+ res = subprocess.run( # noqa: S603 -- fixed args
+ [sys.executable, str(REPO_ROOT / "tests" / "tools" / "fidelity_table.py"), "--check", "--corpus", str(CORPUS)],
+ capture_output=True,
+ text=True,
+ )
+ assert res.returncode == 0, res.stdout + res.stderr
diff --git a/tests/core_engine/test_signal_processor.py b/tests/core_engine/test_signal_processor.py
index 8e3a41d5e..d02b4573b 100644
--- a/tests/core_engine/test_signal_processor.py
+++ b/tests/core_engine/test_signal_processor.py
@@ -125,9 +125,7 @@ def test_signal_processor_empty_tiny_file_scores_true_zero(processor):
zero signals was still forced to 5.0.
"""
meta, sig = create_synthetic_star(processor, "blank_init", 2)
- meta["lang_id"] = "rust" # tier1 (irc=0) -- tier2/3 languages carry a nonzero
- # irc floor that keeps total_density above 0 even with no raw signals, so this
- # carve-out can only ever fire for tier1 languages. See _get_tier().
+ meta["lang_id"] = "rust" # zero strictness gaps (irc=0); see analysis_lens.LANGUAGE_STRICTNESS
res = processor.calculate_risk_vector(meta, sig)
idx_cog = processor.RISK_SCHEMA.index("cognitive_load")
@@ -1188,16 +1186,21 @@ def test_signal_processor_darkness_ratio(processor):
# ==============================================================================
# TEST 47: TIER 3 LANGUAGE FALLBACK
# ==============================================================================
-def test_signal_processor_tier_3_language(processor):
- """Ensures esoteric/unstructured languages trigger Tier 3 physics modifiers."""
- m_t3, sig_t3 = create_synthetic_star(processor, "esoteric", 100, {"branch": 20})
- # "haskell" is not in the Tier 1 or Tier 2 explicit sets
- m_t3["lang_id"] = "haskell"
-
- r_t3 = processor.calculate_risk_vector(m_t3, sig_t3)
-
- # If it didn't crash, the _get_tier fallback successfully returned "tier3" and pulled the correct physics vars
- assert r_t3 is not None, "Tier 3 language fallback crashed the physics engine!"
+def test_signal_processor_unknown_language_gets_no_language_term(processor):
+ """#2718: an unknown language is scored with NO language-level correction (irc 0,
+ ot 1.0, fidelity 1.0) -- the opposite of the old fall-through to the harshest tier.
+ haskell, which used to land there for not being in a hand list, resolves to its
+ own strictness row (all four columns True) and the same zero irc."""
+ for lang in ("haskell", "no-such-language"):
+ m, sig = create_synthetic_star(processor, "esoteric", 100, {"branch": 20})
+ m["lang_id"] = lang
+ assert processor.calculate_risk_vector(m, sig) is not None
+ irc, ot, fid = processor._language_constants(lang)
+ assert (irc, ot) == (0, 1.0), lang
+ if lang == "no-such-language":
+ # nothing measured -> nothing scaled; haskell, by contrast, carries the
+ # fidelity the corpus measured for its own rules (safety over-fires: 0.67)
+ assert all(v == 1.0 for v in fid.values()), lang
# ==============================================================================
diff --git a/tests/core_engine/test_uef_length_invariance.py b/tests/core_engine/test_uef_length_invariance.py
index 2f7112795..61e1dc517 100644
--- a/tests/core_engine/test_uef_length_invariance.py
+++ b/tests/core_engine/test_uef_length_invariance.py
@@ -23,8 +23,10 @@
2. CONTINUITY -- the score at the floor equals the score just below it (no cliff).
3. PARITY -- at floor+1 and above, scores are byte-identical to the pre-#2655
engine (values pinned from origin/main before the change).
- 4. TIER ORDER -- tier1 <= tier2 <= tier3 still holds in the count regime, so the
- floor did not invert the Irc direction audit_risk_equations.py guards.
+ 4. STRICTNESS ORDER -- more strictness gaps never score lower for identical evidence
+ in the count regime (#2718 replaced the three tiers with the
+ language-strictness table; the direction rule is the same one
+ audit_risk_equations.py guards, and since #2717 it holds for safety too).
The swept vectors are the corpus SPEC's own four probe files as the engine sees them,
so this is the engine-side regression fixture the issue asked for -- no scan, no
@@ -34,6 +36,7 @@
import pytest
from gitgalaxy.metrics.signal_processor import SignalProcessor
+from gitgalaxy.standards import analysis_lens
ROSETTA_VECTORS = {
"main": {
@@ -64,6 +67,19 @@
EQUATIONS = ["cog", "safety", "debt", "doc", "verification", "api", "concurrency", "flux", "spec"]
+# The pre-#2718 tier constants, kept ONLY so the pre-#2655 density-regime pins below stay
+# reproducible: the equations are pure functions of (irc, ot, fc), and #2718 changed where
+# those come from, not (except safety, #2717) what the equations do with them.
+LEGACY_TIERS = {
+ "tier1": {"fc": 1.0, "irc": 0, "ot": 1.00},
+ "tier2": {"fc": 0.85, "irc": 2, "ot": 1.15},
+ "tier3": {"fc": 0.60, "irc": 5, "ot": 1.40},
+}
+
+
+def uniform_fid(fc: float) -> dict[str, float]:
+ return {"safety": fc, "test": fc, "doc": fc, "ownership": fc}
+
@pytest.fixture(scope="module")
def processor():
@@ -71,15 +87,15 @@ def processor():
def score_all(p: SignalProcessor, sig: dict, loc: int, tier: str) -> dict[str, float]:
- tv = p.TIER_VARS[tier]
- fc, irc, ot = tv["fc"], tv["irc"], tv.get("ot", 1.0)
+ tv = LEGACY_TIERS[tier]
+ fid, irc, ot = uniform_fid(tv["fc"]), tv["irc"], tv["ot"]
return {
- "cog": p._calc_cog_load(loc, sig, irc, fc, 1.0, 0.0)[0],
- "safety": p._calc_safety(loc, sig, irc, fc, 1.0),
+ "cog": p._calc_cog_load(loc, sig, irc, fid, 1.0, 0.0)[0],
+ "safety": p._calc_safety(loc, sig, irc, fid, 1.0),
"debt": p._calc_tech_debt(loc, sig, irc, 1.0),
- "doc": p._calc_documentation(loc, 2, sig, fc, irc, 1.0),
+ "doc": p._calc_documentation(loc, 2, sig, fid, irc, 1.0),
"verification": p._calc_verification(
- loc, False, sig, ot, fc, 1.0, [{"name": "f", "impact": 60.0, "hit_vector": {}, "docstring": None}], {}
+ loc, False, sig, ot, fid, 1.0, [{"name": "f", "impact": 60.0, "hit_vector": {}, "docstring": None}], {}
),
"api": p._calc_api_exposure(sig, loc, 0),
"concurrency": p._calc_concurrency(loc, {**sig, "concurrency": 2}, irc, 1.0),
@@ -201,35 +217,73 @@ def test_density_regime_unchanged_above_the_floor(processor, key):
assert processor.EVIDENCE_MASS_FLOOR == 50, "pins below were taken at 51 LOC against a floor of 50"
got = score_all(processor, ROSETTA_VECTORS[fname], 51, tier)
for eq, expected in PRE_2655_AT_51[key].items():
+ if eq in ("safety", "doc") and LEGACY_TIERS[tier]["fc"] < 1.0:
+ # Two deliberate equation changes in #2718 make the fc<1.0 pins unreachable:
+ # #2717 retired the 0.75 systems_buffer_ratio in safety, and documentation
+ # now scales only the RULE hits (doc, ownership) by fidelity -- doc_loc and
+ # the umbrella are structural evidence, not rule hits, and no longer carry
+ # the coefficient. fc == 1.0 pins prove every other equation is unchanged.
+ continue
assert got[eq] == pytest.approx(expected, abs=5e-5), f"{tier}/{fname}/{eq}: {got[eq]} != pre-#2655 {expected}"
+def strict_profile(gaps: int) -> dict:
+ """A strictness row with `gaps` False columns, at full fidelity -- the shape
+ analysis_lens.strictness_constants() produces (#2718)."""
+ irc = gaps * analysis_lens.STRICTNESS_IRC_PER_GAP
+ return {"fc": 1.0, "irc": irc, "ot": 1.0 + gaps * analysis_lens.STRICTNESS_OT_PER_GAP}
+
+
+def score_profile(p: SignalProcessor, sig: dict, loc: int, tv: dict) -> dict[str, float]:
+ fid, irc, ot = uniform_fid(tv["fc"]), tv["irc"], tv["ot"]
+ return {
+ "cog": p._calc_cog_load(loc, sig, irc, fid, 1.0, 0.0)[0],
+ "safety": p._calc_safety(loc, sig, irc, fid, 1.0),
+ "debt": p._calc_tech_debt(loc, sig, irc, 1.0),
+ "doc": p._calc_documentation(loc, 2, sig, fid, irc, 1.0),
+ "verification": p._calc_verification(
+ loc, False, sig, ot, fid, 1.0, [{"name": "f", "impact": 60.0, "hit_vector": {}, "docstring": None}], {}
+ ),
+ "concurrency": p._calc_concurrency(loc, {**sig, "concurrency": 2}, irc, 1.0),
+ "flux": p._calc_state_flux(loc, sig, irc, 1.0),
+ }
+
+
@pytest.mark.parametrize("fname", sorted(ROSETTA_VECTORS))
-def test_tier_direction_holds_in_the_count_regime(processor, fname):
- """Irc is an additive opacity baseline and Fc discounts defense credit, so for
- identical evidence tier1 <= tier2 <= tier3 (the #1055 direction rule) must survive
- the floor -- the floor bounds Irc, it does not reorder it."""
+def test_strictness_direction_holds_in_the_count_regime(processor, fname):
+ """Irc is an additive correction for what a language lets you leave unsaid, so for
+ identical evidence a language with more strictness gaps never scores LOWER. The
+ floor bounds Irc, it does not reorder it. Safety is included since #2717: the
+ retired systems_buffer_ratio was the one thing that used to invert it."""
sig = ROSETTA_VECTORS[fname]
- t1, t2, t3 = (score_all(processor, sig, 10, t) for t in ("tier1", "tier2", "tier3"))
- # safety is deliberately absent: its tier2/tier3 systems_buffer_ratio (0.75, #1055)
- # can discount an attack term by more than irc adds, so tier2 < tier1 there is
- # pre-existing and length-independent -- audit_risk_equations.py owns that axis.
- for eq in ("cog", "debt", "doc", "concurrency", "flux"):
- assert t1[eq] <= t2[eq] + 1e-9 <= t3[eq] + 2e-9, (
- f"{fname}/{eq} tier order inverted: {t1[eq]}, {t2[eq]}, {t3[eq]}"
+ s0, s2, s4 = (score_profile(processor, sig, 10, strict_profile(g)) for g in (0, 2, 4))
+ for eq in ("cog", "safety", "debt", "doc", "verification", "concurrency", "flux"):
+ assert s0[eq] <= s2[eq] + 1e-9 <= s4[eq] + 2e-9, (
+ f"{fname}/{eq} strictness order inverted: {s0[eq]}, {s2[eq]}, {s4[eq]}"
)
-def test_zero_evidence_scores_zero_regardless_of_tier(processor):
+def test_safety_never_discounts_more_hits_into_a_lower_score(processor):
+ """#2717 regression guard: with the systems buffer gone, identical attack evidence at
+ zero defence scores monotonically in Irc at EVERY hit count -- the old buffer made
+ tier 2 cross below tier 1 at 6 attack-weighted hits and tier 3 at 15."""
+ fid = uniform_fid(1.0)
+ for hits in (1, 2, 6, 10, 15, 20, 40):
+ sig = {"safety_bypasses": hits} # weight 1.5 -> attack_hits = 1.5 * hits
+ scores = [processor._calc_safety(200, sig, irc, fid, 1.0) for irc in (0, 2, 4)]
+ assert scores == sorted(scores), f"{hits} hits: {scores}"
+
+
+def test_zero_evidence_scores_zero_regardless_of_language(processor):
"""Irc corrects measured risk; it never creates it. A file with no public surface,
no branches and no debt scores 0 on documentation, cognitive load and tech debt in
- every tier -- tier-3 files used to carry 19-42 documentation risk on irc alone."""
- for tier in ("tier1", "tier2", "tier3"):
- tv = processor.TIER_VARS[tier]
+ every language -- tier-3 files used to carry 19-42 documentation risk on irc alone."""
+ for lang in ("rust", "python", "shell", "yacc", "yaml", "embedded_python", "not-a-language"):
+ irc, _ot, fid = processor._language_constants(lang)
for loc in (3, 10, 49, 50, 200):
- assert processor._calc_documentation(loc, 0, {}, tv["fc"], tv["irc"], 1.0) == 0.0
- assert processor._calc_cog_load(loc, {"state_mutation": 4}, tv["irc"], tv["fc"], 1.0)[0] == 0.0
- assert processor._calc_tech_debt(loc, {}, tv["irc"], 1.0) == 0.0
+ assert processor._calc_documentation(loc, 0, {}, fid, irc, 1.0) == 0.0
+ assert processor._calc_cog_load(loc, {"state_mutation": 4}, irc, fid, 1.0)[0] == 0.0
+ assert processor._calc_tech_debt(loc, {}, irc, 1.0) == 0.0
def test_spec_alignment_needs_entities(processor):
diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json
index c987df46c..b82b9a12b 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-03T23:50:41.001794+00:00",
- "Total Scan Duration": "51.07 seconds"
+ "Analysis ISO Timestamp": "2026-09-04T15:46:09.380292+00:00",
+ "Total Scan Duration": "50.95 seconds"
},
"Source Control Footprint (Immutable Anchor)": {
"Active Branch": "HEAD",
@@ -236,10 +236,10 @@
}
},
"health": {
- "avg_cognitive_load": 25.039,
- "avg_safety_score": 45.641,
- "avg_tech_debt": 31.075,
- "avg_documentation": 12.205
+ "avg_cognitive_load": 24.193,
+ "avg_safety_score": 45.662,
+ "avg_tech_debt": 28.878,
+ "avg_documentation": 10.281
},
"composition": {
"markdown": {
@@ -584,18 +584,18 @@
"file_count": 12,
"total_mass": 8797.66,
"avg_exposures": {
- "cognitive_load": 49.74,
- "safety_score": 71.79,
- "tech_debt": 41.65,
+ "cognitive_load": 39.94,
+ "safety_score": 75.4,
+ "tech_debt": 40.98,
"verification": 53.75,
"api_exposure": 0.41,
- "concurrency": 40.58,
- "state_flux": 83.27,
+ "concurrency": 39.9,
+ "state_flux": 83.26,
"dead_code": 2.97,
"spec_match": 72.77,
"stability": 41.67,
"churn": 0.0,
- "documentation": 21.52,
+ "documentation": 14.94,
"secrets_risk": 0.0
}
},
@@ -622,13 +622,13 @@
"file_count": 8,
"total_mass": 220.14,
"avg_exposures": {
- "cognitive_load": 8.65,
- "safety_score": 26.39,
- "tech_debt": 48.83,
- "verification": 2.04,
+ "cognitive_load": 6.58,
+ "safety_score": 19.29,
+ "tech_debt": 47.65,
+ "verification": 2.03,
"api_exposure": 0.0,
- "concurrency": 12.46,
- "state_flux": 25.24,
+ "concurrency": 12.45,
+ "state_flux": 23.63,
"dead_code": 0.0,
"spec_match": 50.0,
"stability": 43.75,
@@ -660,18 +660,18 @@
"file_count": 23,
"total_mass": 275.06,
"avg_exposures": {
- "cognitive_load": 7.81,
- "safety_score": 63.23,
- "tech_debt": 26.46,
+ "cognitive_load": 7.28,
+ "safety_score": 66.3,
+ "tech_debt": 24.64,
"verification": 2.28,
"api_exposure": 0.15,
"concurrency": 0.0,
- "state_flux": 11.58,
+ "state_flux": 11.44,
"dead_code": 4.26,
"spec_match": 52.17,
"stability": 47.83,
"churn": 0.0,
- "documentation": 2.17,
+ "documentation": 1.87,
"secrets_risk": 0.0
}
},
@@ -736,8 +736,8 @@
"file_count": 2,
"total_mass": 10009.46,
"avg_exposures": {
- "cognitive_load": 45.78,
- "safety_score": 49.78,
+ "cognitive_load": 45.44,
+ "safety_score": 49.97,
"tech_debt": 4.01,
"verification": 40.0,
"api_exposure": 7.22,
@@ -747,7 +747,7 @@
"spec_match": 50.0,
"stability": 25.0,
"churn": 0.0,
- "documentation": 49.69,
+ "documentation": 49.65,
"secrets_risk": 0.0
}
},
@@ -755,13 +755,13 @@
"file_count": 69,
"total_mass": 866.13,
"avg_exposures": {
- "cognitive_load": 10.93,
- "safety_score": 44.65,
- "tech_debt": 49.65,
+ "cognitive_load": 9.43,
+ "safety_score": 42.98,
+ "tech_debt": 42.47,
"verification": 1.74,
"api_exposure": 0.71,
"concurrency": 0.0,
- "state_flux": 35.32,
+ "state_flux": 34.22,
"dead_code": 3.59,
"spec_match": 79.71,
"stability": 49.28,
@@ -774,18 +774,18 @@
"file_count": 151,
"total_mass": 65117.06,
"avg_exposures": {
- "cognitive_load": 66.07,
- "safety_score": 89.18,
- "tech_debt": 99.18,
- "verification": 57.91,
+ "cognitive_load": 65.33,
+ "safety_score": 89.84,
+ "tech_debt": 98.84,
+ "verification": 57.39,
"api_exposure": 3.56,
"concurrency": 0.0,
- "state_flux": 83.57,
+ "state_flux": 83.07,
"dead_code": 3.05,
"spec_match": 99.34,
"stability": 49.67,
"churn": 0.0,
- "documentation": 13.93,
+ "documentation": 12.23,
"secrets_risk": 0.0
}
},
@@ -793,13 +793,13 @@
"file_count": 45,
"total_mass": 3941.06,
"avg_exposures": {
- "cognitive_load": 61.93,
- "safety_score": 57.62,
- "tech_debt": 45.17,
- "verification": 7.22,
+ "cognitive_load": 61.35,
+ "safety_score": 59.13,
+ "tech_debt": 38.29,
+ "verification": 5.49,
"api_exposure": 1.48,
- "concurrency": 3.48,
- "state_flux": 67.08,
+ "concurrency": 3.23,
+ "state_flux": 67.02,
"dead_code": 4.54,
"spec_match": 68.89,
"stability": 48.89,
@@ -812,10 +812,10 @@
"file_count": 12,
"total_mass": 7618.44,
"avg_exposures": {
- "cognitive_load": 33.37,
- "safety_score": 43.64,
- "tech_debt": 33.68,
- "verification": 40.43,
+ "cognitive_load": 32.61,
+ "safety_score": 45.9,
+ "tech_debt": 32.23,
+ "verification": 40.42,
"api_exposure": 2.51,
"concurrency": 3.79,
"state_flux": 55.64,
@@ -823,7 +823,7 @@
"spec_match": 66.67,
"stability": 33.33,
"churn": 0.0,
- "documentation": 12.12,
+ "documentation": 11.17,
"secrets_risk": 0.0
}
},
@@ -850,8 +850,8 @@
"file_count": 16,
"total_mass": 36981.52,
"avg_exposures": {
- "cognitive_load": 59.92,
- "safety_score": 73.56,
+ "cognitive_load": 59.49,
+ "safety_score": 76.73,
"tech_debt": 22.49,
"verification": 55.29,
"api_exposure": 5.41,
@@ -861,7 +861,7 @@
"spec_match": 81.25,
"stability": 40.62,
"churn": 0.0,
- "documentation": 22.95,
+ "documentation": 22.22,
"secrets_risk": 0.0
}
},
@@ -907,10 +907,10 @@
"file_count": 5,
"total_mass": 23.27,
"avg_exposures": {
- "cognitive_load": 4.1,
- "safety_score": 22.39,
- "tech_debt": 9.25,
- "verification": 1.9,
+ "cognitive_load": 3.37,
+ "safety_score": 19.87,
+ "tech_debt": 5.44,
+ "verification": 1.88,
"api_exposure": 5.94,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -918,7 +918,7 @@
"spec_match": 60.0,
"stability": 40.0,
"churn": 0.0,
- "documentation": 26.12,
+ "documentation": 24.67,
"secrets_risk": 0.0
}
},
@@ -1040,13 +1040,13 @@
"file_count": 11,
"total_mass": 933.96,
"avg_exposures": {
- "cognitive_load": 11.3,
- "safety_score": 15.97,
- "tech_debt": 7.07,
- "verification": 15.62,
+ "cognitive_load": 9.8,
+ "safety_score": 14.63,
+ "tech_debt": 3.91,
+ "verification": 15.61,
"api_exposure": 0.4,
"concurrency": 0.0,
- "state_flux": 19.21,
+ "state_flux": 18.06,
"dead_code": 0.48,
"spec_match": 36.36,
"stability": 31.82,
@@ -1097,8 +1097,8 @@
"file_count": 5,
"total_mass": 22.59,
"avg_exposures": {
- "cognitive_load": 1.59,
- "safety_score": 25.9,
+ "cognitive_load": 1.04,
+ "safety_score": 20.04,
"tech_debt": 0.0,
"verification": 1.84,
"api_exposure": 5.05,
@@ -1108,7 +1108,7 @@
"spec_match": 40.0,
"stability": 40.0,
"churn": 0.0,
- "documentation": 10.29,
+ "documentation": 9.54,
"secrets_risk": 0.0
}
},
@@ -1155,12 +1155,12 @@
"total_mass": 261.84,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 50.02,
- "tech_debt": 47.82,
- "verification": 2.29,
+ "safety_score": 50.57,
+ "tech_debt": 41.75,
+ "verification": 2.28,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 0.45,
+ "state_flux": 0.4,
"dead_code": 0.0,
"spec_match": 96.67,
"stability": 48.33,
@@ -1249,13 +1249,13 @@
"file_count": 26,
"total_mass": 1344.84,
"avg_exposures": {
- "cognitive_load": 29.21,
- "safety_score": 53.16,
- "tech_debt": 32.19,
- "verification": 5.2,
+ "cognitive_load": 27.51,
+ "safety_score": 50.07,
+ "tech_debt": 27.87,
+ "verification": 5.19,
"api_exposure": 1.78,
"concurrency": 0.0,
- "state_flux": 74.09,
+ "state_flux": 73.59,
"dead_code": 1.12,
"spec_match": 50.0,
"stability": 46.15,
@@ -1268,18 +1268,18 @@
"file_count": 21,
"total_mass": 711.96,
"avg_exposures": {
- "cognitive_load": 42.46,
- "safety_score": 66.93,
- "tech_debt": 4.69,
- "verification": 5.95,
+ "cognitive_load": 40.55,
+ "safety_score": 67.27,
+ "tech_debt": 4.62,
+ "verification": 5.93,
"api_exposure": 0.88,
"concurrency": 4.76,
- "state_flux": 73.32,
+ "state_flux": 72.83,
"dead_code": 2.68,
"spec_match": 42.86,
"stability": 45.24,
"churn": 0.0,
- "documentation": 22.75,
+ "documentation": 17.25,
"secrets_risk": 0.0
}
},
@@ -1344,13 +1344,13 @@
"file_count": 7,
"total_mass": 4928.24,
"avg_exposures": {
- "cognitive_load": 60.13,
- "safety_score": 79.18,
- "tech_debt": 4.77,
- "verification": 57.49,
+ "cognitive_load": 59.05,
+ "safety_score": 79.69,
+ "tech_debt": 4.31,
+ "verification": 46.43,
"api_exposure": 0.0,
- "concurrency": 12.31,
- "state_flux": 84.81,
+ "concurrency": 11.86,
+ "state_flux": 84.65,
"dead_code": 9.02,
"spec_match": 78.57,
"stability": 42.86,
@@ -1439,18 +1439,18 @@
"file_count": 6,
"total_mass": 19252.98,
"avg_exposures": {
- "cognitive_load": 47.43,
- "safety_score": 59.68,
- "tech_debt": 19.79,
+ "cognitive_load": 45.34,
+ "safety_score": 60.47,
+ "tech_debt": 19.52,
"verification": 40.77,
"api_exposure": 0.05,
- "concurrency": 5.89,
- "state_flux": 56.17,
+ "concurrency": 5.15,
+ "state_flux": 55.71,
"dead_code": 2.82,
"spec_match": 50.0,
"stability": 41.67,
"churn": 0.0,
- "documentation": 6.01,
+ "documentation": 5.96,
"secrets_risk": 0.0
}
},
@@ -1478,7 +1478,7 @@
"total_mass": 5050.5,
"avg_exposures": {
"cognitive_load": 30.67,
- "safety_score": 63.85,
+ "safety_score": 69.59,
"tech_debt": 81.27,
"verification": 60.3,
"api_exposure": 6.81,
@@ -1488,7 +1488,7 @@
"spec_match": 87.5,
"stability": 43.75,
"churn": 0.0,
- "documentation": 14.47,
+ "documentation": 11.26,
"secrets_risk": 0.0
}
},
@@ -1610,8 +1610,8 @@
"file_count": 6,
"total_mass": 313.92,
"avg_exposures": {
- "cognitive_load": 12.63,
- "safety_score": 27.28,
+ "cognitive_load": 12.1,
+ "safety_score": 29.13,
"tech_debt": 31.29,
"verification": 14.88,
"api_exposure": 2.85,
@@ -1724,13 +1724,13 @@
"file_count": 20,
"total_mass": 790.32,
"avg_exposures": {
- "cognitive_load": 59.75,
- "safety_score": 78.19,
- "tech_debt": 9.64,
- "verification": 13.99,
+ "cognitive_load": 58.0,
+ "safety_score": 79.38,
+ "tech_debt": 7.99,
+ "verification": 13.97,
"api_exposure": 0.0,
- "concurrency": 9.1,
- "state_flux": 74.65,
+ "concurrency": 8.97,
+ "state_flux": 74.38,
"dead_code": 3.0,
"spec_match": 20.0,
"stability": 47.5,
@@ -1743,13 +1743,13 @@
"file_count": 13,
"total_mass": 458.2,
"avg_exposures": {
- "cognitive_load": 40.28,
- "safety_score": 63.68,
+ "cognitive_load": 38.57,
+ "safety_score": 64.63,
"tech_debt": 0.0,
- "verification": 8.25,
+ "verification": 8.24,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 45.66,
+ "state_flux": 45.61,
"dead_code": 2.64,
"spec_match": 7.69,
"stability": 46.15,
@@ -1820,9 +1820,9 @@
"total_mass": 79.62,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 45.48,
+ "safety_score": 35.53,
"tech_debt": 0.0,
- "verification": 1.91,
+ "verification": 1.89,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -1839,9 +1839,9 @@
"total_mass": 259.06,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 65.05,
+ "safety_score": 62.39,
"tech_debt": 0.0,
- "verification": 13.11,
+ "verification": 13.1,
"api_exposure": 0.34,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -1895,12 +1895,12 @@
"file_count": 3,
"total_mass": 1970.88,
"avg_exposures": {
- "cognitive_load": 54.18,
- "safety_score": 64.96,
- "tech_debt": 54.25,
+ "cognitive_load": 53.96,
+ "safety_score": 66.02,
+ "tech_debt": 52.83,
"verification": 53.33,
"api_exposure": 0.0,
- "concurrency": 7.69,
+ "concurrency": 6.37,
"state_flux": 66.67,
"dead_code": 4.19,
"spec_match": 66.67,
@@ -2104,18 +2104,18 @@
"file_count": 11,
"total_mass": 563.96,
"avg_exposures": {
- "cognitive_load": 44.29,
- "safety_score": 56.37,
- "tech_debt": 38.98,
+ "cognitive_load": 44.33,
+ "safety_score": 57.2,
+ "tech_debt": 39.68,
"verification": 36.78,
"api_exposure": 2.79,
- "concurrency": 48.01,
+ "concurrency": 48.16,
"state_flux": 45.45,
"dead_code": 0.0,
"spec_match": 45.45,
"stability": 31.82,
"churn": 0.0,
- "documentation": 15.88,
+ "documentation": 15.9,
"secrets_risk": 0.0
}
},
@@ -2199,18 +2199,18 @@
"file_count": 8,
"total_mass": 1153.74,
"avg_exposures": {
- "cognitive_load": 8.71,
- "safety_score": 33.94,
- "tech_debt": 26.97,
- "verification": 41.19,
+ "cognitive_load": 7.95,
+ "safety_score": 31.46,
+ "tech_debt": 25.93,
+ "verification": 41.18,
"api_exposure": 0.57,
"concurrency": 0.0,
- "state_flux": 19.94,
+ "state_flux": 17.34,
"dead_code": 8.68,
"spec_match": 75.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 14.36,
+ "documentation": 10.57,
"secrets_risk": 0.0
}
},
@@ -2218,13 +2218,13 @@
"file_count": 6,
"total_mass": 95.76,
"avg_exposures": {
- "cognitive_load": 4.83,
- "safety_score": 17.39,
- "tech_debt": 45.98,
- "verification": 2.31,
+ "cognitive_load": 3.96,
+ "safety_score": 13.48,
+ "tech_debt": 42.89,
+ "verification": 2.3,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 12.32,
+ "state_flux": 10.59,
"dead_code": 0.0,
"spec_match": 50.0,
"stability": 50.0,
@@ -2351,18 +2351,18 @@
"file_count": 5,
"total_mass": 1974.82,
"avg_exposures": {
- "cognitive_load": 28.3,
- "safety_score": 51.77,
- "tech_debt": 11.31,
+ "cognitive_load": 28.32,
+ "safety_score": 51.83,
+ "tech_debt": 11.43,
"verification": 48.46,
"api_exposure": 3.53,
"concurrency": 0.0,
- "state_flux": 59.05,
+ "state_flux": 59.1,
"dead_code": 2.27,
"spec_match": 60.0,
"stability": 40.0,
"churn": 0.0,
- "documentation": 22.95,
+ "documentation": 22.99,
"secrets_risk": 0.0
}
},
@@ -2389,18 +2389,18 @@
"file_count": 13,
"total_mass": 2590.98,
"avg_exposures": {
- "cognitive_load": 6.68,
- "safety_score": 60.59,
- "tech_debt": 3.05,
+ "cognitive_load": 6.62,
+ "safety_score": 63.32,
+ "tech_debt": 2.98,
"verification": 68.06,
"api_exposure": 4.5,
- "concurrency": 42.62,
+ "concurrency": 41.02,
"state_flux": 0.0,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 17.71,
+ "documentation": 16.13,
"secrets_risk": 0.0
}
},
@@ -2408,18 +2408,18 @@
"file_count": 3,
"total_mass": 295.4,
"avg_exposures": {
- "cognitive_load": 13.12,
- "safety_score": 44.39,
- "tech_debt": 55.63,
+ "cognitive_load": 12.72,
+ "safety_score": 46.3,
+ "tech_debt": 48.0,
"verification": 28.3,
"api_exposure": 4.88,
"concurrency": 0.0,
- "state_flux": 39.06,
+ "state_flux": 38.1,
"dead_code": 1.8,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 34.15,
+ "documentation": 32.01,
"secrets_risk": 0.0
}
},
@@ -2427,18 +2427,18 @@
"file_count": 4,
"total_mass": 2008.46,
"avg_exposures": {
- "cognitive_load": 24.61,
- "safety_score": 38.44,
- "tech_debt": 10.68,
+ "cognitive_load": 24.33,
+ "safety_score": 39.21,
+ "tech_debt": 10.59,
"verification": 41.18,
"api_exposure": 4.42,
"concurrency": 0.0,
- "state_flux": 34.92,
+ "state_flux": 34.57,
"dead_code": 2.9,
"spec_match": 75.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 27.72,
+ "documentation": 27.7,
"secrets_risk": 0.0
}
},
@@ -2446,13 +2446,13 @@
"file_count": 15,
"total_mass": 217.88,
"avg_exposures": {
- "cognitive_load": 6.39,
- "safety_score": 14.88,
+ "cognitive_load": 5.88,
+ "safety_score": 15.55,
"tech_debt": 0.0,
"verification": 2.32,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 16.12,
+ "state_flux": 15.97,
"dead_code": 0.0,
"spec_match": 33.33,
"stability": 50.0,
@@ -2484,13 +2484,13 @@
"file_count": 20,
"total_mass": 749.94,
"avg_exposures": {
- "cognitive_load": 9.22,
- "safety_score": 52.01,
- "tech_debt": 11.02,
+ "cognitive_load": 8.99,
+ "safety_score": 53.44,
+ "tech_debt": 10.57,
"verification": 10.11,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 39.44,
+ "state_flux": 38.5,
"dead_code": 0.0,
"spec_match": 95.0,
"stability": 50.0,
@@ -2503,18 +2503,18 @@
"file_count": 17,
"total_mass": 1252.02,
"avg_exposures": {
- "cognitive_load": 9.24,
- "safety_score": 30.95,
- "tech_debt": 3.15,
+ "cognitive_load": 8.91,
+ "safety_score": 32.07,
+ "tech_debt": 2.88,
"verification": 25.09,
"api_exposure": 2.02,
- "concurrency": 4.08,
- "state_flux": 1.55,
+ "concurrency": 3.87,
+ "state_flux": 1.48,
"dead_code": 0.0,
"spec_match": 82.35,
"stability": 47.06,
"churn": 0.0,
- "documentation": 8.14,
+ "documentation": 5.18,
"secrets_risk": 0.0
}
},
@@ -2522,13 +2522,13 @@
"file_count": 25,
"total_mass": 443.26,
"avg_exposures": {
- "cognitive_load": 8.79,
- "safety_score": 9.25,
- "tech_debt": 3.23,
+ "cognitive_load": 8.49,
+ "safety_score": 9.33,
+ "tech_debt": 2.71,
"verification": 2.21,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 6.53,
+ "state_flux": 6.35,
"dead_code": 0.26,
"spec_match": 0.0,
"stability": 48.0,
@@ -2541,10 +2541,10 @@
"file_count": 4,
"total_mass": 90.56,
"avg_exposures": {
- "cognitive_load": 7.45,
- "safety_score": 19.02,
- "tech_debt": 49.1,
- "verification": 2.5,
+ "cognitive_load": 6.91,
+ "safety_score": 19.21,
+ "tech_debt": 48.08,
+ "verification": 2.49,
"api_exposure": 3.02,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -2552,7 +2552,7 @@
"spec_match": 75.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 37.34,
+ "documentation": 30.98,
"secrets_risk": 0.0
}
},
@@ -2560,9 +2560,9 @@
"file_count": 20,
"total_mass": 400.96,
"avg_exposures": {
- "cognitive_load": 9.9,
+ "cognitive_load": 9.26,
"safety_score": 0.0,
- "tech_debt": 2.25,
+ "tech_debt": 1.94,
"verification": 2.5,
"api_exposure": 3.12,
"concurrency": 0.0,
@@ -2571,7 +2571,7 @@
"spec_match": 90.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 42.25,
+ "documentation": 36.43,
"secrets_risk": 0.0
}
},
@@ -2579,18 +2579,18 @@
"file_count": 19,
"total_mass": 1933.44,
"avg_exposures": {
- "cognitive_load": 9.39,
- "safety_score": 12.03,
- "tech_debt": 11.97,
- "verification": 47.23,
+ "cognitive_load": 9.13,
+ "safety_score": 12.3,
+ "tech_debt": 11.33,
+ "verification": 47.22,
"api_exposure": 3.33,
"concurrency": 0.0,
- "state_flux": 6.49,
+ "state_flux": 6.28,
"dead_code": 0.63,
"spec_match": 89.47,
"stability": 47.37,
"churn": 0.0,
- "documentation": 20.25,
+ "documentation": 15.43,
"secrets_risk": 0.0
}
},
@@ -2598,18 +2598,18 @@
"file_count": 18,
"total_mass": 378.76,
"avg_exposures": {
- "cognitive_load": 2.81,
- "safety_score": 16.03,
- "tech_debt": 4.79,
+ "cognitive_load": 2.62,
+ "safety_score": 16.63,
+ "tech_debt": 4.41,
"verification": 2.33,
"api_exposure": 2.19,
"concurrency": 0.0,
- "state_flux": 15.32,
+ "state_flux": 15.17,
"dead_code": 0.0,
"spec_match": 27.78,
"stability": 50.0,
"churn": 0.0,
- "documentation": 18.72,
+ "documentation": 17.47,
"secrets_risk": 0.0
}
},
@@ -2617,9 +2617,9 @@
"file_count": 22,
"total_mass": 657.82,
"avg_exposures": {
- "cognitive_load": 10.18,
- "safety_score": 3.17,
- "tech_debt": 40.5,
+ "cognitive_load": 9.49,
+ "safety_score": 3.27,
+ "tech_debt": 37.86,
"verification": 2.41,
"api_exposure": 0.0,
"concurrency": 0.0,
@@ -2636,13 +2636,13 @@
"file_count": 15,
"total_mass": 586.22,
"avg_exposures": {
- "cognitive_load": 15.32,
- "safety_score": 65.55,
+ "cognitive_load": 14.58,
+ "safety_score": 67.47,
"tech_debt": 0.0,
"verification": 2.64,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 45.52,
+ "state_flux": 44.33,
"dead_code": 1.24,
"spec_match": 100.0,
"stability": 50.0,
@@ -2655,9 +2655,9 @@
"file_count": 7,
"total_mass": 60.46,
"avg_exposures": {
- "cognitive_load": 7.76,
- "safety_score": 30.73,
- "tech_debt": 13.96,
+ "cognitive_load": 7.21,
+ "safety_score": 31.88,
+ "tech_debt": 13.76,
"verification": 2.39,
"api_exposure": 4.12,
"concurrency": 0.0,
@@ -2666,7 +2666,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 44.43,
+ "documentation": 31.49,
"secrets_risk": 0.0
}
},
@@ -2674,8 +2674,8 @@
"file_count": 8,
"total_mass": 36203.74,
"avg_exposures": {
- "cognitive_load": 70.55,
- "safety_score": 86.0,
+ "cognitive_load": 70.47,
+ "safety_score": 92.1,
"tech_debt": 39.8,
"verification": 80.0,
"api_exposure": 13.81,
@@ -2685,7 +2685,7 @@
"spec_match": 99.57,
"stability": 50.0,
"churn": 0.0,
- "documentation": 91.74,
+ "documentation": 91.11,
"secrets_risk": 0.0
}
},
@@ -2694,12 +2694,12 @@
"total_mass": 8.82,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 35.55,
- "tech_debt": 44.04,
+ "safety_score": 35.1,
+ "tech_debt": 36.55,
"verification": 1.16,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 37.51,
+ "state_flux": 36.36,
"dead_code": 0.0,
"spec_match": 50.0,
"stability": 25.0,
@@ -2713,9 +2713,9 @@
"total_mass": 3474.0,
"avg_exposures": {
"cognitive_load": 32.63,
- "safety_score": 58.46,
+ "safety_score": 60.76,
"tech_debt": 14.87,
- "verification": 31.85,
+ "verification": 31.86,
"api_exposure": 10.19,
"concurrency": 0.0,
"state_flux": 63.33,
@@ -2723,7 +2723,7 @@
"spec_match": 76.92,
"stability": 42.31,
"churn": 0.0,
- "documentation": 72.85,
+ "documentation": 71.84,
"secrets_risk": 0.0
}
},
@@ -2731,8 +2731,8 @@
"file_count": 12,
"total_mass": 11112.24,
"avg_exposures": {
- "cognitive_load": 46.06,
- "safety_score": 53.69,
+ "cognitive_load": 46.01,
+ "safety_score": 55.78,
"tech_debt": 20.81,
"verification": 34.68,
"api_exposure": 11.86,
@@ -2742,7 +2742,7 @@
"spec_match": 91.67,
"stability": 50.0,
"churn": 0.0,
- "documentation": 88.77,
+ "documentation": 87.61,
"secrets_risk": 0.0
}
},
@@ -2750,18 +2750,18 @@
"file_count": 7,
"total_mass": 43453.05,
"avg_exposures": {
- "cognitive_load": 58.25,
- "safety_score": 74.24,
- "tech_debt": 13.29,
+ "cognitive_load": 58.22,
+ "safety_score": 76.83,
+ "tech_debt": 13.26,
"verification": 57.8,
"api_exposure": 5.21,
"concurrency": 0.0,
- "state_flux": 75.91,
+ "state_flux": 75.37,
"dead_code": 1.73,
"spec_match": 71.43,
"stability": 50.0,
"churn": 0.0,
- "documentation": 42.51,
+ "documentation": 42.43,
"secrets_risk": 0.0
}
},
@@ -2769,10 +2769,10 @@
"file_count": 6,
"total_mass": 3005.8,
"avg_exposures": {
- "cognitive_load": 66.35,
- "safety_score": 75.16,
- "tech_debt": 17.93,
- "verification": 67.1,
+ "cognitive_load": 65.11,
+ "safety_score": 76.33,
+ "tech_debt": 16.63,
+ "verification": 67.09,
"api_exposure": 9.29,
"concurrency": 0.0,
"state_flux": 83.32,
@@ -2780,7 +2780,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 59.98,
+ "documentation": 50.23,
"secrets_risk": 0.0
}
},
@@ -2788,10 +2788,10 @@
"file_count": 18,
"total_mass": 9297.46,
"avg_exposures": {
- "cognitive_load": 16.6,
- "safety_score": 44.4,
+ "cognitive_load": 15.97,
+ "safety_score": 47.09,
"tech_debt": 19.46,
- "verification": 40.92,
+ "verification": 40.93,
"api_exposure": 3.09,
"concurrency": 0.0,
"state_flux": 43.48,
@@ -2799,7 +2799,7 @@
"spec_match": 83.33,
"stability": 44.44,
"churn": 0.0,
- "documentation": 19.33,
+ "documentation": 18.35,
"secrets_risk": 0.0
}
},
@@ -2807,18 +2807,18 @@
"file_count": 7,
"total_mass": 24879.42,
"avg_exposures": {
- "cognitive_load": 37.18,
- "safety_score": 59.45,
- "tech_debt": 13.1,
+ "cognitive_load": 36.83,
+ "safety_score": 60.05,
+ "tech_debt": 12.71,
"verification": 68.57,
"api_exposure": 5.02,
- "concurrency": 2.73,
- "state_flux": 52.14,
+ "concurrency": 2.24,
+ "state_flux": 50.57,
"dead_code": 2.82,
"spec_match": 85.71,
"stability": 42.86,
"churn": 0.0,
- "documentation": 35.36,
+ "documentation": 35.3,
"secrets_risk": 0.0
}
},
@@ -2826,18 +2826,18 @@
"file_count": 10,
"total_mass": 649.07,
"avg_exposures": {
- "cognitive_load": 14.58,
- "safety_score": 36.52,
- "tech_debt": 10.71,
- "verification": 2.1,
+ "cognitive_load": 14.2,
+ "safety_score": 34.57,
+ "tech_debt": 9.24,
+ "verification": 2.09,
"api_exposure": 3.98,
"concurrency": 0.0,
- "state_flux": 34.68,
+ "state_flux": 34.05,
"dead_code": 2.99,
"spec_match": 40.0,
"stability": 45.0,
"churn": 0.0,
- "documentation": 24.68,
+ "documentation": 21.79,
"secrets_risk": 0.0
}
},
@@ -2845,18 +2845,18 @@
"file_count": 7,
"total_mass": 15238.9,
"avg_exposures": {
- "cognitive_load": 25.16,
- "safety_score": 42.59,
- "tech_debt": 44.22,
+ "cognitive_load": 25.19,
+ "safety_score": 42.72,
+ "tech_debt": 45.39,
"verification": 57.48,
"api_exposure": 3.95,
- "concurrency": 24.14,
- "state_flux": 65.6,
+ "concurrency": 25.09,
+ "state_flux": 65.87,
"dead_code": 4.12,
"spec_match": 85.71,
"stability": 42.86,
"churn": 0.0,
- "documentation": 15.16,
+ "documentation": 16.15,
"secrets_risk": 0.0
}
},
@@ -2864,9 +2864,9 @@
"file_count": 6,
"total_mass": 10.42,
"avg_exposures": {
- "cognitive_load": 1.02,
+ "cognitive_load": 0.82,
"safety_score": 0.0,
- "tech_debt": 8.33,
+ "tech_debt": 3.33,
"verification": 1.92,
"api_exposure": 0.0,
"concurrency": 0.0,
@@ -2902,18 +2902,18 @@
"file_count": 15,
"total_mass": 60218.62,
"avg_exposures": {
- "cognitive_load": 72.8,
- "safety_score": 84.82,
- "tech_debt": 4.35,
+ "cognitive_load": 71.9,
+ "safety_score": 86.69,
+ "tech_debt": 4.31,
"verification": 59.2,
"api_exposure": 5.41,
- "concurrency": 4.24,
- "state_flux": 65.72,
+ "concurrency": 3.74,
+ "state_flux": 65.69,
"dead_code": 9.26,
"spec_match": 60.0,
"stability": 46.67,
"churn": 0.0,
- "documentation": 25.21,
+ "documentation": 23.26,
"secrets_risk": 0.0
}
},
@@ -2921,18 +2921,18 @@
"file_count": 8,
"total_mass": 13575.02,
"avg_exposures": {
- "cognitive_load": 33.71,
- "safety_score": 71.92,
- "tech_debt": 23.87,
+ "cognitive_load": 33.73,
+ "safety_score": 71.96,
+ "tech_debt": 24.18,
"verification": 60.29,
"api_exposure": 1.96,
- "concurrency": 5.27,
+ "concurrency": 5.6,
"state_flux": 75.0,
"dead_code": 11.87,
"spec_match": 87.5,
"stability": 43.75,
"churn": 0.0,
- "documentation": 17.47,
+ "documentation": 17.53,
"secrets_risk": 0.0
}
},
@@ -2940,18 +2940,18 @@
"file_count": 9,
"total_mass": 225.04,
"avg_exposures": {
- "cognitive_load": 11.53,
- "safety_score": 63.11,
- "tech_debt": 58.71,
- "verification": 2.19,
+ "cognitive_load": 9.85,
+ "safety_score": 63.68,
+ "tech_debt": 54.97,
+ "verification": 2.17,
"api_exposure": 0.06,
"concurrency": 0.0,
- "state_flux": 41.94,
+ "state_flux": 40.8,
"dead_code": 0.0,
"spec_match": 88.89,
"stability": 44.44,
"churn": 0.0,
- "documentation": 2.5,
+ "documentation": 1.6,
"secrets_risk": 0.0
}
},
@@ -2959,8 +2959,8 @@
"file_count": 5,
"total_mass": 123.62,
"avg_exposures": {
- "cognitive_load": 2.47,
- "safety_score": 44.76,
+ "cognitive_load": 2.14,
+ "safety_score": 44.93,
"tech_debt": 0.0,
"verification": 1.84,
"api_exposure": 0.0,
@@ -2978,13 +2978,13 @@
"file_count": 30,
"total_mass": 521.3,
"avg_exposures": {
- "cognitive_load": 5.31,
- "safety_score": 21.09,
- "tech_debt": 0.65,
+ "cognitive_load": 4.65,
+ "safety_score": 21.0,
+ "tech_debt": 0.53,
"verification": 4.81,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 6.77,
+ "state_flux": 6.38,
"dead_code": 0.0,
"spec_match": 6.67,
"stability": 48.33,
@@ -2997,8 +2997,8 @@
"file_count": 8,
"total_mass": 78.32,
"avg_exposures": {
- "cognitive_load": 2.32,
- "safety_score": 8.37,
+ "cognitive_load": 2.0,
+ "safety_score": 8.07,
"tech_debt": 0.0,
"verification": 2.01,
"api_exposure": 0.0,
@@ -3054,9 +3054,9 @@
"file_count": 4,
"total_mass": 5.63,
"avg_exposures": {
- "cognitive_load": 7.45,
+ "cognitive_load": 5.39,
"safety_score": 0.0,
- "tech_debt": 22.02,
+ "tech_debt": 9.44,
"verification": 1.73,
"api_exposure": 8.27,
"concurrency": 0.0,
@@ -3065,7 +3065,7 @@
"spec_match": 50.0,
"stability": 37.5,
"churn": 0.0,
- "documentation": 70.39,
+ "documentation": 61.93,
"secrets_risk": 0.0
}
},
@@ -3073,9 +3073,9 @@
"file_count": 5,
"total_mass": 1.04,
"avg_exposures": {
- "cognitive_load": 2.62,
- "safety_score": 27.82,
- "tech_debt": 35.23,
+ "cognitive_load": 1.64,
+ "safety_score": 22.39,
+ "tech_debt": 15.1,
"verification": 1.85,
"api_exposure": 5.8,
"concurrency": 0.0,
@@ -3084,7 +3084,7 @@
"spec_match": 40.0,
"stability": 40.0,
"churn": 0.0,
- "documentation": 57.99,
+ "documentation": 42.76,
"secrets_risk": 0.0
}
},
@@ -3092,18 +3092,18 @@
"file_count": 7,
"total_mass": 1.36,
"avg_exposures": {
- "cognitive_load": 2.57,
- "safety_score": 21.03,
- "tech_debt": 9.74,
+ "cognitive_load": 1.73,
+ "safety_score": 18.24,
+ "tech_debt": 3.7,
"verification": 1.98,
"api_exposure": 4.65,
"concurrency": 0.0,
- "state_flux": 11.41,
+ "state_flux": 10.66,
"dead_code": 0.0,
"spec_match": 57.14,
"stability": 42.86,
"churn": 0.0,
- "documentation": 33.7,
+ "documentation": 29.69,
"secrets_risk": 0.0
}
},
@@ -3141,7 +3141,7 @@
"spec_match": 50.0,
"stability": 25.0,
"churn": 0.0,
- "documentation": 23.93,
+ "documentation": 8.6,
"secrets_risk": 0.0
}
},
@@ -3150,7 +3150,7 @@
"total_mass": 17.25,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 20.03,
+ "safety_score": 14.2,
"tech_debt": 0.0,
"verification": 1.15,
"api_exposure": 6.74,
@@ -3160,7 +3160,7 @@
"spec_match": 50.0,
"stability": 25.0,
"churn": 0.0,
- "documentation": 49.21,
+ "documentation": 48.78,
"secrets_risk": 0.0
}
},
@@ -3168,18 +3168,18 @@
"file_count": 6,
"total_mass": 1.19,
"avg_exposures": {
- "cognitive_load": 15.12,
- "safety_score": 19.81,
+ "cognitive_load": 13.33,
+ "safety_score": 15.79,
"tech_debt": 0.0,
- "verification": 14.87,
+ "verification": 1.94,
"api_exposure": 4.35,
"concurrency": 0.0,
- "state_flux": 10.26,
+ "state_flux": 9.05,
"dead_code": 2.22,
"spec_match": 16.67,
"stability": 41.67,
"churn": 0.0,
- "documentation": 43.8,
+ "documentation": 24.06,
"secrets_risk": 0.0
}
},
@@ -3225,18 +3225,18 @@
"file_count": 8,
"total_mass": 2184.62,
"avg_exposures": {
- "cognitive_load": 54.37,
- "safety_score": 50.55,
- "tech_debt": 22.58,
- "verification": 50.68,
+ "cognitive_load": 54.84,
+ "safety_score": 55.0,
+ "tech_debt": 25.9,
+ "verification": 50.69,
"api_exposure": 2.89,
- "concurrency": 2.47,
- "state_flux": 84.18,
+ "concurrency": 2.63,
+ "state_flux": 84.35,
"dead_code": 3.07,
"spec_match": 87.5,
"stability": 43.75,
"churn": 0.0,
- "documentation": 23.88,
+ "documentation": 24.45,
"secrets_risk": 0.0
}
},
@@ -3244,18 +3244,18 @@
"file_count": 6,
"total_mass": 197.74,
"avg_exposures": {
- "cognitive_load": 7.94,
- "safety_score": 21.75,
- "tech_debt": 42.0,
+ "cognitive_load": 7.7,
+ "safety_score": 22.54,
+ "tech_debt": 39.74,
"verification": 14.91,
"api_exposure": 1.74,
"concurrency": 0.0,
- "state_flux": 23.78,
+ "state_flux": 23.53,
"dead_code": 0.0,
"spec_match": 83.33,
"stability": 41.67,
"churn": 0.0,
- "documentation": 11.75,
+ "documentation": 8.87,
"secrets_risk": 0.0
}
},
@@ -3274,7 +3274,7 @@
"spec_match": 0.0,
"stability": 25.0,
"churn": 0.0,
- "documentation": 15.08,
+ "documentation": 12.72,
"secrets_risk": 0.0
}
},
@@ -3282,9 +3282,9 @@
"file_count": 2,
"total_mass": 138.58,
"avg_exposures": {
- "cognitive_load": 2.61,
+ "cognitive_load": 2.59,
"safety_score": 0.0,
- "tech_debt": 12.64,
+ "tech_debt": 12.32,
"verification": 1.15,
"api_exposure": 5.51,
"concurrency": 0.0,
@@ -3293,7 +3293,7 @@
"spec_match": 50.0,
"stability": 25.0,
"churn": 0.0,
- "documentation": 13.92,
+ "documentation": 10.8,
"secrets_risk": 0.0
}
},
@@ -3302,7 +3302,7 @@
"total_mass": 4614.2,
"avg_exposures": {
"cognitive_load": 28.16,
- "safety_score": 71.01,
+ "safety_score": 76.03,
"tech_debt": 65.28,
"verification": 31.22,
"api_exposure": 3.74,
@@ -3320,8 +3320,8 @@
"file_count": 8,
"total_mass": 14227.96,
"avg_exposures": {
- "cognitive_load": 27.45,
- "safety_score": 70.17,
+ "cognitive_load": 26.98,
+ "safety_score": 73.79,
"tech_debt": 13.26,
"verification": 40.86,
"api_exposure": 3.47,
@@ -3415,18 +3415,18 @@
"file_count": 33,
"total_mass": 7381.12,
"avg_exposures": {
- "cognitive_load": 35.89,
- "safety_score": 58.87,
- "tech_debt": 23.27,
+ "cognitive_load": 33.05,
+ "safety_score": 58.17,
+ "tech_debt": 20.03,
"verification": 25.79,
"api_exposure": 1.82,
- "concurrency": 4.34,
- "state_flux": 60.94,
+ "concurrency": 4.16,
+ "state_flux": 60.62,
"dead_code": 3.69,
"spec_match": 39.39,
"stability": 48.48,
"churn": 0.0,
- "documentation": 11.33,
+ "documentation": 6.7,
"secrets_risk": 0.0
}
},
@@ -3434,18 +3434,18 @@
"file_count": 15,
"total_mass": 428.22,
"avg_exposures": {
- "cognitive_load": 34.4,
- "safety_score": 71.12,
- "tech_debt": 17.19,
+ "cognitive_load": 31.22,
+ "safety_score": 70.39,
+ "tech_debt": 14.75,
"verification": 2.17,
"api_exposure": 0.19,
"concurrency": 0.0,
- "state_flux": 69.31,
+ "state_flux": 68.1,
"dead_code": 7.12,
"spec_match": 13.33,
"stability": 46.67,
"churn": 0.0,
- "documentation": 1.93,
+ "documentation": 1.33,
"secrets_risk": 0.0
}
},
@@ -3453,18 +3453,18 @@
"file_count": 21,
"total_mass": 4041.56,
"avg_exposures": {
- "cognitive_load": 56.72,
- "safety_score": 77.83,
- "tech_debt": 11.15,
- "verification": 13.32,
+ "cognitive_load": 53.63,
+ "safety_score": 77.58,
+ "tech_debt": 10.02,
+ "verification": 13.31,
"api_exposure": 1.32,
"concurrency": 0.0,
- "state_flux": 90.15,
+ "state_flux": 90.09,
"dead_code": 1.33,
"spec_match": 33.33,
"stability": 47.62,
"churn": 0.0,
- "documentation": 7.6,
+ "documentation": 4.82,
"secrets_risk": 0.0
}
},
@@ -3472,18 +3472,18 @@
"file_count": 19,
"total_mass": 900.86,
"avg_exposures": {
- "cognitive_load": 31.15,
- "safety_score": 63.89,
- "tech_debt": 14.11,
- "verification": 10.38,
+ "cognitive_load": 28.8,
+ "safety_score": 62.52,
+ "tech_debt": 10.68,
+ "verification": 10.37,
"api_exposure": 1.08,
"concurrency": 0.0,
- "state_flux": 71.56,
+ "state_flux": 70.92,
"dead_code": 1.93,
"spec_match": 31.58,
"stability": 47.37,
"churn": 0.0,
- "documentation": 8.15,
+ "documentation": 4.95,
"secrets_risk": 0.0
}
},
@@ -3491,10 +3491,10 @@
"file_count": 8,
"total_mass": 740.52,
"avg_exposures": {
- "cognitive_load": 26.68,
- "safety_score": 58.99,
+ "cognitive_load": 25.93,
+ "safety_score": 62.99,
"tech_debt": 41.02,
- "verification": 50.61,
+ "verification": 50.62,
"api_exposure": 1.11,
"concurrency": 0.0,
"state_flux": 70.19,
@@ -3502,7 +3502,7 @@
"spec_match": 75.0,
"stability": 43.75,
"churn": 0.0,
- "documentation": 7.86,
+ "documentation": 6.61,
"secrets_risk": 0.0
}
},
@@ -3529,18 +3529,18 @@
"file_count": 14,
"total_mass": 624.28,
"avg_exposures": {
- "cognitive_load": 32.89,
- "safety_score": 32.98,
- "tech_debt": 12.55,
- "verification": 13.3,
+ "cognitive_load": 31.24,
+ "safety_score": 29.42,
+ "tech_debt": 11.99,
+ "verification": 13.29,
"api_exposure": 1.8,
"concurrency": 0.0,
- "state_flux": 45.37,
+ "state_flux": 44.7,
"dead_code": 0.0,
"spec_match": 14.29,
"stability": 46.43,
"churn": 0.0,
- "documentation": 19.98,
+ "documentation": 15.09,
"secrets_risk": 0.0
}
},
@@ -3548,18 +3548,18 @@
"file_count": 9,
"total_mass": 2059.32,
"avg_exposures": {
- "cognitive_load": 29.73,
- "safety_score": 36.82,
+ "cognitive_load": 28.88,
+ "safety_score": 35.08,
"tech_debt": 37.32,
- "verification": 36.63,
+ "verification": 28.06,
"api_exposure": 1.12,
"concurrency": 0.0,
- "state_flux": 40.62,
+ "state_flux": 40.35,
"dead_code": 0.0,
"spec_match": 77.78,
"stability": 44.44,
"churn": 0.0,
- "documentation": 7.2,
+ "documentation": 6.22,
"secrets_risk": 0.0
}
},
@@ -3567,18 +3567,18 @@
"file_count": 20,
"total_mass": 2457.48,
"avg_exposures": {
- "cognitive_load": 53.44,
- "safety_score": 53.76,
- "tech_debt": 9.28,
- "verification": 17.89,
+ "cognitive_load": 50.63,
+ "safety_score": 47.99,
+ "tech_debt": 8.95,
+ "verification": 6.29,
"api_exposure": 1.41,
- "concurrency": 3.28,
- "state_flux": 54.99,
+ "concurrency": 3.09,
+ "state_flux": 54.98,
"dead_code": 0.77,
"spec_match": 25.0,
"stability": 47.5,
"churn": 0.0,
- "documentation": 14.6,
+ "documentation": 8.66,
"secrets_risk": 0.0
}
},
@@ -3586,13 +3586,13 @@
"file_count": 23,
"total_mass": 1005.38,
"avg_exposures": {
- "cognitive_load": 37.59,
- "safety_score": 76.1,
+ "cognitive_load": 36.22,
+ "safety_score": 76.09,
"tech_debt": 0.0,
- "verification": 15.88,
+ "verification": 15.87,
"api_exposure": 0.14,
- "concurrency": 1.33,
- "state_flux": 53.93,
+ "concurrency": 1.18,
+ "state_flux": 53.09,
"dead_code": 4.16,
"spec_match": 13.04,
"stability": 47.83,
@@ -3605,13 +3605,13 @@
"file_count": 15,
"total_mass": 615.66,
"avg_exposures": {
- "cognitive_load": 54.99,
- "safety_score": 58.96,
- "tech_debt": 10.75,
- "verification": 7.37,
+ "cognitive_load": 52.66,
+ "safety_score": 58.91,
+ "tech_debt": 8.21,
+ "verification": 7.35,
"api_exposure": 0.0,
- "concurrency": 5.57,
- "state_flux": 59.08,
+ "concurrency": 5.41,
+ "state_flux": 58.97,
"dead_code": 1.27,
"spec_match": 26.67,
"stability": 46.67,
@@ -3644,7 +3644,7 @@
"total_mass": 10.54,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 24.39,
+ "safety_score": 23.33,
"tech_debt": 0.0,
"verification": 1.56,
"api_exposure": 0.0,
@@ -3663,9 +3663,9 @@
"total_mass": 216.52,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 66.75,
+ "safety_score": 61.74,
"tech_debt": 0.0,
- "verification": 2.3,
+ "verification": 2.28,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -3681,10 +3681,10 @@
"file_count": 11,
"total_mass": 315.54,
"avg_exposures": {
- "cognitive_load": 0.82,
- "safety_score": 27.51,
+ "cognitive_load": 0.6,
+ "safety_score": 26.32,
"tech_debt": 0.0,
- "verification": 2.16,
+ "verification": 2.14,
"api_exposure": 0.32,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -3692,7 +3692,7 @@
"spec_match": 81.82,
"stability": 45.45,
"churn": 0.0,
- "documentation": 3.97,
+ "documentation": 1.98,
"secrets_risk": 0.0
}
},
@@ -3719,18 +3719,18 @@
"file_count": 5,
"total_mass": 181.4,
"avg_exposures": {
- "cognitive_load": 2.91,
- "safety_score": 43.83,
+ "cognitive_load": 2.98,
+ "safety_score": 46.62,
"tech_debt": 0.0,
"verification": 48.46,
"api_exposure": 10.5,
- "concurrency": 4.28,
+ "concurrency": 4.55,
"state_flux": 0.0,
"dead_code": 0.0,
"spec_match": 80.0,
"stability": 40.0,
"churn": 0.0,
- "documentation": 43.66,
+ "documentation": 45.28,
"secrets_risk": 0.0
}
},
@@ -3738,13 +3738,13 @@
"file_count": 2,
"total_mass": 249.69,
"avg_exposures": {
- "cognitive_load": 11.31,
- "safety_score": 30.89,
- "tech_debt": 4.14,
+ "cognitive_load": 11.32,
+ "safety_score": 31.48,
+ "tech_debt": 4.17,
"verification": 40.0,
"api_exposure": 2.63,
"concurrency": 0.0,
- "state_flux": 7.58,
+ "state_flux": 7.97,
"dead_code": 2.95,
"spec_match": 50.0,
"stability": 25.0,
@@ -3757,18 +3757,18 @@
"file_count": 11,
"total_mass": 1472.92,
"avg_exposures": {
- "cognitive_load": 37.3,
- "safety_score": 60.46,
- "tech_debt": 46.65,
- "verification": 44.3,
+ "cognitive_load": 37.33,
+ "safety_score": 62.42,
+ "tech_debt": 46.95,
+ "verification": 58.39,
"api_exposure": 4.25,
- "concurrency": 39.59,
- "state_flux": 47.13,
+ "concurrency": 40.44,
+ "state_flux": 47.21,
"dead_code": 1.55,
"spec_match": 72.73,
"stability": 40.91,
"churn": 0.0,
- "documentation": 23.68,
+ "documentation": 23.84,
"secrets_risk": 0.0
}
},
@@ -3795,8 +3795,8 @@
"file_count": 3,
"total_mass": 451.44,
"avg_exposures": {
- "cognitive_load": 45.35,
- "safety_score": 59.3,
+ "cognitive_load": 45.19,
+ "safety_score": 62.16,
"tech_debt": 0.0,
"verification": 53.33,
"api_exposure": 0.12,
@@ -3806,7 +3806,7 @@
"spec_match": 66.67,
"stability": 33.33,
"churn": 0.0,
- "documentation": 4.38,
+ "documentation": 3.97,
"secrets_risk": 0.0
}
},
@@ -3890,13 +3890,13 @@
"file_count": 50,
"total_mass": 465.28,
"avg_exposures": {
- "cognitive_load": 10.73,
- "safety_score": 78.65,
- "tech_debt": 91.27,
- "verification": 2.38,
+ "cognitive_load": 8.85,
+ "safety_score": 77.07,
+ "tech_debt": 72.2,
+ "verification": 2.37,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 56.44,
+ "state_flux": 53.84,
"dead_code": 1.72,
"spec_match": 100.0,
"stability": 50.0,
@@ -3909,18 +3909,18 @@
"file_count": 71,
"total_mass": 12943.49,
"avg_exposures": {
- "cognitive_load": 34.56,
- "safety_score": 37.59,
- "tech_debt": 31.4,
- "verification": 30.76,
+ "cognitive_load": 34.17,
+ "safety_score": 38.32,
+ "tech_debt": 30.49,
+ "verification": 22.02,
"api_exposure": 1.17,
"concurrency": 0.0,
- "state_flux": 41.33,
+ "state_flux": 41.24,
"dead_code": 0.96,
"spec_match": 39.44,
"stability": 50.0,
"churn": 0.0,
- "documentation": 6.35,
+ "documentation": 5.2,
"secrets_risk": 0.0
}
},
@@ -3928,9 +3928,9 @@
"file_count": 3,
"total_mass": 138.57,
"avg_exposures": {
- "cognitive_load": 31.16,
- "safety_score": 28.53,
- "tech_debt": 22.54,
+ "cognitive_load": 31.04,
+ "safety_score": 29.82,
+ "tech_debt": 19.97,
"verification": 2.32,
"api_exposure": 0.82,
"concurrency": 0.0,
@@ -3939,7 +3939,7 @@
"spec_match": 33.33,
"stability": 50.0,
"churn": 0.0,
- "documentation": 6.41,
+ "documentation": 5.21,
"secrets_risk": 0.0
}
},
@@ -3947,9 +3947,9 @@
"file_count": 3,
"total_mass": 1.75,
"avg_exposures": {
- "cognitive_load": 21.79,
+ "cognitive_load": 18.58,
"safety_score": 0.0,
- "tech_debt": 29.36,
+ "tech_debt": 20.75,
"verification": 2.31,
"api_exposure": 0.0,
"concurrency": 0.0,
@@ -3966,18 +3966,18 @@
"file_count": 65,
"total_mass": 12969.95,
"avg_exposures": {
- "cognitive_load": 39.6,
- "safety_score": 38.28,
- "tech_debt": 22.15,
- "verification": 26.22,
+ "cognitive_load": 39.35,
+ "safety_score": 39.44,
+ "tech_debt": 20.79,
+ "verification": 21.44,
"api_exposure": 2.3,
- "concurrency": 7.41,
- "state_flux": 41.48,
+ "concurrency": 6.67,
+ "state_flux": 41.29,
"dead_code": 4.17,
"spec_match": 50.77,
"stability": 50.0,
"churn": 0.0,
- "documentation": 12.44,
+ "documentation": 9.34,
"secrets_risk": 0.0
}
},
@@ -3985,18 +3985,18 @@
"file_count": 2,
"total_mass": 67.88,
"avg_exposures": {
- "cognitive_load": 68.79,
- "safety_score": 66.63,
- "tech_debt": 92.34,
- "verification": 2.44,
+ "cognitive_load": 65.53,
+ "safety_score": 61.46,
+ "tech_debt": 84.51,
+ "verification": 2.41,
"api_exposure": 1.45,
"concurrency": 0.0,
- "state_flux": 90.58,
+ "state_flux": 89.12,
"dead_code": 3.86,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 12.52,
+ "documentation": 5.96,
"secrets_risk": 0.0
}
},
@@ -4004,18 +4004,18 @@
"file_count": 44,
"total_mass": 1162.14,
"avg_exposures": {
- "cognitive_load": 16.32,
- "safety_score": 25.08,
- "tech_debt": 42.0,
- "verification": 2.29,
+ "cognitive_load": 15.34,
+ "safety_score": 24.18,
+ "tech_debt": 40.14,
+ "verification": 2.28,
"api_exposure": 1.15,
"concurrency": 0.0,
- "state_flux": 27.94,
+ "state_flux": 27.59,
"dead_code": 0.0,
"spec_match": 34.09,
"stability": 50.0,
"churn": 0.0,
- "documentation": 8.35,
+ "documentation": 6.89,
"secrets_risk": 0.0
}
},
@@ -4023,18 +4023,18 @@
"file_count": 7,
"total_mass": 461.14,
"avg_exposures": {
- "cognitive_load": 59.47,
- "safety_score": 77.54,
- "tech_debt": 99.0,
- "verification": 24.6,
+ "cognitive_load": 57.02,
+ "safety_score": 78.12,
+ "tech_debt": 97.59,
+ "verification": 24.58,
"api_exposure": 1.15,
"concurrency": 0.0,
- "state_flux": 99.37,
+ "state_flux": 99.25,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 7.71,
+ "documentation": 5.11,
"secrets_risk": 0.0
}
},
@@ -4042,13 +4042,13 @@
"file_count": 35,
"total_mass": 480.28,
"avg_exposures": {
- "cognitive_load": 2.7,
- "safety_score": 6.35,
+ "cognitive_load": 2.19,
+ "safety_score": 6.1,
"tech_debt": 0.0,
"verification": 2.3,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 1.5,
+ "state_flux": 1.28,
"dead_code": 0.0,
"spec_match": 0.0,
"stability": 50.0,
@@ -4061,18 +4061,18 @@
"file_count": 8,
"total_mass": 533.44,
"avg_exposures": {
- "cognitive_load": 20.19,
- "safety_score": 30.91,
- "tech_debt": 24.6,
- "verification": 21.72,
+ "cognitive_load": 19.98,
+ "safety_score": 30.98,
+ "tech_debt": 24.31,
+ "verification": 12.04,
"api_exposure": 0.62,
"concurrency": 0.0,
- "state_flux": 29.72,
+ "state_flux": 29.2,
"dead_code": 0.0,
"spec_match": 25.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 4.12,
+ "documentation": 2.98,
"secrets_risk": 0.0
}
},
@@ -4082,7 +4082,7 @@
"avg_exposures": {
"cognitive_load": 0.0,
"safety_score": 0.0,
- "tech_debt": 70.36,
+ "tech_debt": 63.25,
"verification": 2.34,
"api_exposure": 1.74,
"concurrency": 0.0,
@@ -4091,7 +4091,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 11.1,
+ "documentation": 7.79,
"secrets_risk": 0.0
}
},
@@ -4099,18 +4099,18 @@
"file_count": 14,
"total_mass": 2283.92,
"avg_exposures": {
- "cognitive_load": 24.11,
- "safety_score": 64.03,
- "tech_debt": 27.61,
+ "cognitive_load": 22.5,
+ "safety_score": 69.44,
+ "tech_debt": 26.75,
"verification": 30.26,
"api_exposure": 5.33,
- "concurrency": 12.44,
- "state_flux": 80.86,
+ "concurrency": 11.49,
+ "state_flux": 80.32,
"dead_code": 0.0,
"spec_match": 7.14,
"stability": 50.0,
"churn": 0.0,
- "documentation": 40.65,
+ "documentation": 25.65,
"secrets_risk": 0.0
}
},
@@ -4118,8 +4118,8 @@
"file_count": 3,
"total_mass": 2606.32,
"avg_exposures": {
- "cognitive_load": 21.01,
- "safety_score": 59.47,
+ "cognitive_load": 19.51,
+ "safety_score": 63.4,
"tech_debt": 42.21,
"verification": 80.0,
"api_exposure": 3.07,
@@ -4129,7 +4129,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 18.69,
+ "documentation": 16.37,
"secrets_risk": 0.0
}
},
@@ -4137,8 +4137,8 @@
"file_count": 4,
"total_mass": 9188.88,
"avg_exposures": {
- "cognitive_load": 21.04,
- "safety_score": 57.74,
+ "cognitive_load": 20.81,
+ "safety_score": 61.26,
"tech_debt": 84.4,
"verification": 41.22,
"api_exposure": 3.61,
@@ -4148,7 +4148,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 31.49,
+ "documentation": 30.04,
"secrets_risk": 0.0
}
},
@@ -4156,10 +4156,10 @@
"file_count": 23,
"total_mass": 3317.3,
"avg_exposures": {
- "cognitive_load": 6.65,
- "safety_score": 37.16,
+ "cognitive_load": 6.59,
+ "safety_score": 39.91,
"tech_debt": 6.79,
- "verification": 15.75,
+ "verification": 15.76,
"api_exposure": 2.75,
"concurrency": 15.55,
"state_flux": 15.57,
@@ -4167,7 +4167,7 @@
"spec_match": 60.87,
"stability": 50.0,
"churn": 0.0,
- "documentation": 21.63,
+ "documentation": 20.23,
"secrets_risk": 0.0
}
},
@@ -4175,8 +4175,8 @@
"file_count": 204,
"total_mass": 7729.24,
"avg_exposures": {
- "cognitive_load": 3.63,
- "safety_score": 12.69,
+ "cognitive_load": 3.6,
+ "safety_score": 13.2,
"tech_debt": 0.0,
"verification": 0.0,
"api_exposure": 9.4,
@@ -4195,7 +4195,7 @@
"total_mass": 3319.48,
"avg_exposures": {
"cognitive_load": 23.56,
- "safety_score": 63.89,
+ "safety_score": 69.47,
"tech_debt": 22.93,
"verification": 80.0,
"api_exposure": 2.97,
@@ -4205,7 +4205,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 21.57,
+ "documentation": 15.72,
"secrets_risk": 6.14
}
},
@@ -4232,18 +4232,18 @@
"file_count": 24,
"total_mass": 2359.8,
"avg_exposures": {
- "cognitive_load": 53.2,
- "safety_score": 88.35,
- "tech_debt": 25.43,
- "verification": 8.81,
+ "cognitive_load": 49.31,
+ "safety_score": 88.53,
+ "tech_debt": 22.3,
+ "verification": 8.8,
"api_exposure": 1.42,
"concurrency": 0.0,
- "state_flux": 93.58,
+ "state_flux": 93.2,
"dead_code": 1.4,
"spec_match": 41.67,
"stability": 50.0,
"churn": 0.0,
- "documentation": 9.21,
+ "documentation": 6.59,
"secrets_risk": 0.0
}
},
@@ -4251,18 +4251,18 @@
"file_count": 11,
"total_mass": 3975.78,
"avg_exposures": {
- "cognitive_load": 30.01,
- "safety_score": 57.22,
- "tech_debt": 20.72,
- "verification": 37.72,
+ "cognitive_load": 27.03,
+ "safety_score": 51.88,
+ "tech_debt": 17.79,
+ "verification": 23.6,
"api_exposure": 2.77,
"concurrency": 0.0,
- "state_flux": 40.36,
+ "state_flux": 39.52,
"dead_code": 1.04,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 38.34,
+ "documentation": 23.93,
"secrets_risk": 0.0
}
},
@@ -4271,7 +4271,7 @@
"total_mass": 4909.34,
"avg_exposures": {
"cognitive_load": 41.52,
- "safety_score": 63.59,
+ "safety_score": 66.78,
"tech_debt": 57.93,
"verification": 41.19,
"api_exposure": 0.27,
@@ -4281,7 +4281,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 7.49,
+ "documentation": 7.09,
"secrets_risk": 0.0
}
},
@@ -4290,7 +4290,7 @@
"total_mass": 2062.6,
"avg_exposures": {
"cognitive_load": 51.98,
- "safety_score": 77.99,
+ "safety_score": 82.8,
"tech_debt": 21.37,
"verification": 35.66,
"api_exposure": 3.37,
@@ -4300,7 +4300,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 25.42,
+ "documentation": 25.17,
"secrets_risk": 0.0
}
},
@@ -4308,18 +4308,18 @@
"file_count": 2,
"total_mass": 45.5,
"avg_exposures": {
- "cognitive_load": 3.39,
- "safety_score": 27.49,
- "tech_debt": 10.87,
- "verification": 2.35,
+ "cognitive_load": 3.54,
+ "safety_score": 28.94,
+ "tech_debt": 13.69,
+ "verification": 2.36,
"api_exposure": 3.24,
"concurrency": 0.0,
- "state_flux": 31.44,
+ "state_flux": 32.13,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 15.04,
+ "documentation": 17.39,
"secrets_risk": 0.0
}
},
@@ -4327,8 +4327,8 @@
"file_count": 2,
"total_mass": 1.17,
"avg_exposures": {
- "cognitive_load": 2.85,
- "safety_score": 30.37,
+ "cognitive_load": 2.5,
+ "safety_score": 27.72,
"tech_debt": 0.0,
"verification": 2.31,
"api_exposure": 0.0,
@@ -4346,10 +4346,10 @@
"file_count": 2,
"total_mass": 1.18,
"avg_exposures": {
- "cognitive_load": 4.64,
+ "cognitive_load": 3.21,
"safety_score": 0.0,
- "tech_debt": 44.04,
- "verification": 2.34,
+ "tech_debt": 18.88,
+ "verification": 2.33,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -4365,8 +4365,8 @@
"file_count": 5,
"total_mass": 23.81,
"avg_exposures": {
- "cognitive_load": 1.16,
- "safety_score": 11.14,
+ "cognitive_load": 1.06,
+ "safety_score": 10.13,
"tech_debt": 0.0,
"verification": 2.3,
"api_exposure": 4.34,
@@ -4384,9 +4384,9 @@
"file_count": 3,
"total_mass": 2.64,
"avg_exposures": {
- "cognitive_load": 3.73,
- "safety_score": 75.61,
- "tech_debt": 32.37,
+ "cognitive_load": 3.25,
+ "safety_score": 72.03,
+ "tech_debt": 25.64,
"verification": 2.31,
"api_exposure": 0.67,
"concurrency": 0.0,
@@ -4395,7 +4395,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 4.47,
+ "documentation": 3.97,
"secrets_risk": 0.0
}
},
@@ -4403,13 +4403,13 @@
"file_count": 7,
"total_mass": 23276.2,
"avg_exposures": {
- "cognitive_load": 19.67,
- "safety_score": 10.54,
- "tech_debt": 34.81,
- "verification": 35.7,
+ "cognitive_load": 19.69,
+ "safety_score": 10.57,
+ "tech_debt": 34.99,
+ "verification": 35.71,
"api_exposure": 0.51,
- "concurrency": 11.33,
- "state_flux": 33.54,
+ "concurrency": 12.01,
+ "state_flux": 34.34,
"dead_code": 6.84,
"spec_match": 100.0,
"stability": 50.0,
@@ -4422,18 +4422,18 @@
"file_count": 18,
"total_mass": 4178.19,
"avg_exposures": {
- "cognitive_load": 38.43,
- "safety_score": 75.7,
- "tech_debt": 60.83,
- "verification": 36.9,
+ "cognitive_load": 38.97,
+ "safety_score": 76.83,
+ "tech_debt": 64.84,
+ "verification": 36.91,
"api_exposure": 1.03,
- "concurrency": 10.58,
+ "concurrency": 10.74,
"state_flux": 88.89,
"dead_code": 4.08,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 23.29,
+ "documentation": 24.62,
"secrets_risk": 0.0
}
},
@@ -4441,18 +4441,18 @@
"file_count": 7,
"total_mass": 485.62,
"avg_exposures": {
- "cognitive_load": 30.33,
- "safety_score": 70.75,
- "tech_debt": 50.18,
- "verification": 2.42,
+ "cognitive_load": 31.06,
+ "safety_score": 73.42,
+ "tech_debt": 57.47,
+ "verification": 2.43,
"api_exposure": 0.88,
"concurrency": 0.0,
- "state_flux": 96.67,
+ "state_flux": 96.82,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 16.75,
+ "documentation": 19.48,
"secrets_risk": 0.0
}
},
@@ -4460,9 +4460,9 @@
"file_count": 1,
"total_mass": 232.14,
"avg_exposures": {
- "cognitive_load": 38.63,
- "safety_score": 97.84,
- "tech_debt": 20.26,
+ "cognitive_load": 38.89,
+ "safety_score": 97.97,
+ "tech_debt": 22.64,
"verification": 80.0,
"api_exposure": 0.32,
"concurrency": 0.0,
@@ -4479,13 +4479,13 @@
"file_count": 5,
"total_mass": 508.82,
"avg_exposures": {
- "cognitive_load": 26.91,
- "safety_score": 69.07,
- "tech_debt": 45.66,
- "verification": 2.42,
+ "cognitive_load": 27.3,
+ "safety_score": 70.14,
+ "tech_debt": 48.46,
+ "verification": 2.44,
"api_exposure": 4.09,
"concurrency": 0.0,
- "state_flux": 79.84,
+ "state_flux": 79.85,
"dead_code": 1.57,
"spec_match": 100.0,
"stability": 50.0,
@@ -4498,13 +4498,13 @@
"file_count": 1,
"total_mass": 20.4,
"avg_exposures": {
- "cognitive_load": 9.55,
- "safety_score": 57.23,
- "tech_debt": 37.75,
- "verification": 2.42,
+ "cognitive_load": 10.2,
+ "safety_score": 61.37,
+ "tech_debt": 50.0,
+ "verification": 2.43,
"api_exposure": 3.26,
"concurrency": 0.0,
- "state_flux": 91.68,
+ "state_flux": 92.13,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
@@ -4517,18 +4517,18 @@
"file_count": 7,
"total_mass": 4362.76,
"avg_exposures": {
- "cognitive_load": 35.29,
- "safety_score": 85.91,
- "tech_debt": 36.63,
- "verification": 57.82,
+ "cognitive_load": 35.34,
+ "safety_score": 86.68,
+ "tech_debt": 37.33,
+ "verification": 57.83,
"api_exposure": 2.61,
- "concurrency": 39.22,
- "state_flux": 91.45,
+ "concurrency": 40.13,
+ "state_flux": 91.65,
"dead_code": 4.41,
"spec_match": 85.37,
"stability": 50.0,
"churn": 0.0,
- "documentation": 39.43,
+ "documentation": 40.39,
"secrets_risk": 0.0
}
},
@@ -4536,13 +4536,13 @@
"file_count": 4,
"total_mass": 223.04,
"avg_exposures": {
- "cognitive_load": 26.84,
- "safety_score": 44.35,
- "tech_debt": 37.27,
+ "cognitive_load": 24.59,
+ "safety_score": 43.08,
+ "tech_debt": 36.62,
"verification": 21.81,
"api_exposure": 0.0,
- "concurrency": 4.79,
- "state_flux": 25.6,
+ "concurrency": 4.2,
+ "state_flux": 23.91,
"dead_code": 4.19,
"spec_match": 100.0,
"stability": 50.0,
@@ -4555,18 +4555,18 @@
"file_count": 17,
"total_mass": 2469.34,
"avg_exposures": {
- "cognitive_load": 63.21,
- "safety_score": 86.95,
- "tech_debt": 2.7,
- "verification": 34.4,
+ "cognitive_load": 61.96,
+ "safety_score": 88.36,
+ "tech_debt": 2.42,
+ "verification": 34.39,
"api_exposure": 0.05,
- "concurrency": 1.08,
- "state_flux": 86.02,
+ "concurrency": 0.94,
+ "state_flux": 85.18,
"dead_code": 3.94,
"spec_match": 41.18,
"stability": 50.0,
"churn": 0.0,
- "documentation": 7.79,
+ "documentation": 5.75,
"secrets_risk": 0.0
}
},
@@ -4574,18 +4574,18 @@
"file_count": 6,
"total_mass": 994.12,
"avg_exposures": {
- "cognitive_load": 76.42,
- "safety_score": 90.09,
- "tech_debt": 33.29,
+ "cognitive_load": 75.7,
+ "safety_score": 90.33,
+ "tech_debt": 33.22,
"verification": 41.22,
"api_exposure": 0.39,
- "concurrency": 16.57,
- "state_flux": 88.57,
+ "concurrency": 16.55,
+ "state_flux": 87.99,
"dead_code": 2.6,
"spec_match": 66.67,
"stability": 50.0,
"churn": 0.0,
- "documentation": 13.29,
+ "documentation": 9.85,
"secrets_risk": 0.0
}
},
@@ -4593,18 +4593,18 @@
"file_count": 24,
"total_mass": 1469.34,
"avg_exposures": {
- "cognitive_load": 51.53,
- "safety_score": 78.69,
+ "cognitive_load": 49.77,
+ "safety_score": 79.55,
"tech_debt": 0.0,
- "verification": 21.88,
+ "verification": 21.86,
"api_exposure": 0.41,
- "concurrency": 0.99,
- "state_flux": 69.9,
+ "concurrency": 0.87,
+ "state_flux": 69.23,
"dead_code": 7.03,
"spec_match": 25.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 6.47,
+ "documentation": 3.66,
"secrets_risk": 0.0
}
},
@@ -4612,18 +4612,18 @@
"file_count": 23,
"total_mass": 6013.0,
"avg_exposures": {
- "cognitive_load": 52.25,
- "safety_score": 57.92,
- "tech_debt": 55.39,
- "verification": 15.97,
+ "cognitive_load": 50.1,
+ "safety_score": 51.31,
+ "tech_debt": 53.45,
+ "verification": 9.23,
"api_exposure": 1.5,
- "concurrency": 16.04,
- "state_flux": 76.75,
+ "concurrency": 15.63,
+ "state_flux": 76.3,
"dead_code": 2.53,
"spec_match": 52.17,
"stability": 50.0,
"churn": 0.0,
- "documentation": 14.6,
+ "documentation": 11.76,
"secrets_risk": 0.0
}
},
@@ -4631,18 +4631,18 @@
"file_count": 13,
"total_mass": 2036.02,
"avg_exposures": {
- "cognitive_load": 73.81,
- "safety_score": 73.86,
- "tech_debt": 17.39,
- "verification": 38.25,
+ "cognitive_load": 72.6,
+ "safety_score": 74.07,
+ "tech_debt": 15.61,
+ "verification": 38.24,
"api_exposure": 0.86,
- "concurrency": 6.47,
- "state_flux": 76.44,
+ "concurrency": 6.3,
+ "state_flux": 76.0,
"dead_code": 0.94,
"spec_match": 61.54,
"stability": 50.0,
"churn": 0.0,
- "documentation": 3.55,
+ "documentation": 3.06,
"secrets_risk": 0.0
}
},
@@ -4650,18 +4650,18 @@
"file_count": 23,
"total_mass": 633.94,
"avg_exposures": {
- "cognitive_load": 22.09,
- "safety_score": 77.22,
- "tech_debt": 50.82,
- "verification": 5.77,
+ "cognitive_load": 21.09,
+ "safety_score": 76.32,
+ "tech_debt": 44.79,
+ "verification": 5.76,
"api_exposure": 0.75,
- "concurrency": 5.95,
- "state_flux": 92.0,
+ "concurrency": 5.79,
+ "state_flux": 91.37,
"dead_code": 0.0,
"spec_match": 65.22,
"stability": 50.0,
"churn": 0.0,
- "documentation": 13.37,
+ "documentation": 9.97,
"secrets_risk": 0.0
}
},
@@ -4669,8 +4669,8 @@
"file_count": 8,
"total_mass": 150.44,
"avg_exposures": {
- "cognitive_load": 15.94,
- "safety_score": 72.01,
+ "cognitive_load": 13.96,
+ "safety_score": 70.82,
"tech_debt": 0.0,
"verification": 2.3,
"api_exposure": 0.0,
@@ -4688,18 +4688,18 @@
"file_count": 24,
"total_mass": 353.34,
"avg_exposures": {
- "cognitive_load": 8.24,
- "safety_score": 45.73,
- "tech_debt": 63.23,
- "verification": 5.65,
+ "cognitive_load": 7.18,
+ "safety_score": 45.89,
+ "tech_debt": 56.82,
+ "verification": 5.64,
"api_exposure": 0.43,
- "concurrency": 1.14,
- "state_flux": 20.04,
+ "concurrency": 1.01,
+ "state_flux": 19.13,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 4.44,
+ "documentation": 4.22,
"secrets_risk": 0.0
}
},
@@ -4707,18 +4707,18 @@
"file_count": 30,
"total_mass": 452.3,
"avg_exposures": {
- "cognitive_load": 7.71,
- "safety_score": 25.89,
- "tech_debt": 92.33,
- "verification": 4.92,
+ "cognitive_load": 6.96,
+ "safety_score": 20.77,
+ "tech_debt": 85.37,
+ "verification": 4.91,
"api_exposure": 0.11,
- "concurrency": 31.78,
- "state_flux": 14.5,
+ "concurrency": 30.47,
+ "state_flux": 13.64,
"dead_code": 0.25,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 0.71,
+ "documentation": 0.4,
"secrets_risk": 0.0
}
},
@@ -4727,12 +4727,12 @@
"total_mass": 97.58,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 21.82,
- "tech_debt": 50.27,
+ "safety_score": 21.38,
+ "tech_debt": 42.76,
"verification": 2.31,
"api_exposure": 0.0,
- "concurrency": 10.82,
- "state_flux": 8.42,
+ "concurrency": 10.36,
+ "state_flux": 7.78,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
@@ -4745,13 +4745,13 @@
"file_count": 8,
"total_mass": 212.52,
"avg_exposures": {
- "cognitive_load": 8.19,
- "safety_score": 51.5,
- "tech_debt": 93.13,
- "verification": 12.12,
+ "cognitive_load": 6.64,
+ "safety_score": 50.94,
+ "tech_debt": 87.13,
+ "verification": 12.11,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 28.78,
+ "state_flux": 26.99,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
@@ -4764,18 +4764,18 @@
"file_count": 24,
"total_mass": 346.56,
"avg_exposures": {
- "cognitive_load": 5.7,
- "safety_score": 14.94,
- "tech_debt": 90.85,
- "verification": 2.36,
+ "cognitive_load": 4.87,
+ "safety_score": 12.0,
+ "tech_debt": 89.7,
+ "verification": 2.33,
"api_exposure": 0.08,
"concurrency": 0.0,
- "state_flux": 5.74,
+ "state_flux": 5.36,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 2.66,
+ "documentation": 2.08,
"secrets_risk": 0.0
}
},
@@ -4783,13 +4783,13 @@
"file_count": 30,
"total_mass": 312.78,
"avg_exposures": {
- "cognitive_load": 3.45,
- "safety_score": 17.2,
- "tech_debt": 91.84,
- "verification": 2.33,
+ "cognitive_load": 3.07,
+ "safety_score": 16.15,
+ "tech_debt": 85.71,
+ "verification": 2.32,
"api_exposure": 0.0,
- "concurrency": 1.63,
- "state_flux": 7.68,
+ "concurrency": 1.5,
+ "state_flux": 7.43,
"dead_code": 0.34,
"spec_match": 100.0,
"stability": 50.0,
@@ -4870,7 +4870,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 16.37,
+ "documentation": 8.93,
"secrets_risk": 0.0
}
},
@@ -4889,7 +4889,7 @@
"spec_match": 50.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 54.88,
+ "documentation": 22.05,
"secrets_risk": 0.0
}
},
@@ -4897,13 +4897,13 @@
"file_count": 6,
"total_mass": 0.08,
"avg_exposures": {
- "cognitive_load": 3.25,
- "safety_score": 11.63,
- "tech_debt": 14.68,
+ "cognitive_load": 2.26,
+ "safety_score": 9.4,
+ "tech_debt": 6.29,
"verification": 2.31,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 6.29,
+ "state_flux": 5.17,
"dead_code": 0.0,
"spec_match": 16.67,
"stability": 50.0,
@@ -4927,7 +4927,7 @@
"spec_match": 0.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 61.24,
+ "documentation": 25.98,
"secrets_risk": 0.0
}
},
@@ -4935,8 +4935,8 @@
"file_count": 5,
"total_mass": 0.19,
"avg_exposures": {
- "cognitive_load": 1.1,
- "safety_score": 21.78,
+ "cognitive_load": 0.97,
+ "safety_score": 20.51,
"tech_debt": 0.0,
"verification": 2.3,
"api_exposure": 5.67,
@@ -4946,7 +4946,7 @@
"spec_match": 20.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 32.96,
+ "documentation": 29.74,
"secrets_risk": 0.0
}
},
@@ -4954,18 +4954,18 @@
"file_count": 5,
"total_mass": 0.15,
"avg_exposures": {
- "cognitive_load": 12.83,
- "safety_score": 71.02,
+ "cognitive_load": 10.76,
+ "safety_score": 68.1,
"tech_debt": 0.0,
- "verification": 2.36,
+ "verification": 2.34,
"api_exposure": 5.67,
"concurrency": 0.0,
- "state_flux": 61.5,
+ "state_flux": 55.89,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 40.86,
+ "documentation": 25.25,
"secrets_risk": 0.0
}
},
@@ -4973,18 +4973,18 @@
"file_count": 5,
"total_mass": 8323.37,
"avg_exposures": {
- "cognitive_load": 18.92,
- "safety_score": 29.61,
- "tech_debt": 39.15,
- "verification": 49.02,
+ "cognitive_load": 19.1,
+ "safety_score": 32.01,
+ "tech_debt": 42.44,
+ "verification": 49.01,
"api_exposure": 8.08,
- "concurrency": 9.69,
- "state_flux": 19.1,
+ "concurrency": 10.25,
+ "state_flux": 19.73,
"dead_code": 3.07,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 32.47,
+ "documentation": 31.94,
"secrets_risk": 0.0
}
},
@@ -4992,18 +4992,18 @@
"file_count": 6,
"total_mass": 7700.5,
"avg_exposures": {
- "cognitive_load": 52.42,
- "safety_score": 68.22,
- "tech_debt": 54.16,
+ "cognitive_load": 50.89,
+ "safety_score": 72.31,
+ "tech_debt": 54.92,
"verification": 80.0,
"api_exposure": 1.54,
- "concurrency": 33.42,
- "state_flux": 84.4,
+ "concurrency": 33.91,
+ "state_flux": 84.91,
"dead_code": 3.33,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 12.75,
+ "documentation": 12.82,
"secrets_risk": 0.0
}
},
@@ -5012,9 +5012,9 @@
"total_mass": 15.76,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 72.06,
- "tech_debt": 60.43,
- "verification": 2.35,
+ "safety_score": 71.72,
+ "tech_debt": 53.79,
+ "verification": 2.34,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5031,17 +5031,17 @@
"total_mass": 312.88,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 45.04,
- "tech_debt": 51.62,
+ "safety_score": 45.62,
+ "tech_debt": 43.22,
"verification": 2.33,
"api_exposure": 0.98,
"concurrency": 0.0,
- "state_flux": 1.22,
+ "state_flux": 1.2,
"dead_code": 0.0,
"spec_match": 98.99,
"stability": 50.0,
"churn": 0.0,
- "documentation": 11.6,
+ "documentation": 7.49,
"secrets_risk": 0.0
}
},
@@ -5050,9 +5050,9 @@
"total_mass": 3.12,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 76.08,
+ "safety_score": 76.85,
"tech_debt": 0.0,
- "verification": 2.35,
+ "verification": 2.34,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5068,9 +5068,9 @@
"file_count": 43,
"total_mass": 204.5,
"avg_exposures": {
- "cognitive_load": 3.58,
- "safety_score": 61.07,
- "tech_debt": 72.4,
+ "cognitive_load": 3.09,
+ "safety_score": 61.88,
+ "tech_debt": 61.05,
"verification": 2.37,
"api_exposure": 0.0,
"concurrency": 0.0,
@@ -5088,12 +5088,12 @@
"total_mass": 97.88,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 79.13,
- "tech_debt": 77.95,
+ "safety_score": 79.56,
+ "tech_debt": 68.06,
"verification": 2.37,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 44.28,
+ "state_flux": 42.08,
"dead_code": 0.0,
"spec_match": 90.0,
"stability": 50.0,
@@ -5106,18 +5106,18 @@
"file_count": 98,
"total_mass": 26789.34,
"avg_exposures": {
- "cognitive_load": 36.06,
- "safety_score": 56.65,
- "tech_debt": 18.39,
- "verification": 20.65,
+ "cognitive_load": 34.93,
+ "safety_score": 57.59,
+ "tech_debt": 17.42,
+ "verification": 19.85,
"api_exposure": 4.04,
- "concurrency": 10.09,
- "state_flux": 57.92,
+ "concurrency": 9.74,
+ "state_flux": 57.44,
"dead_code": 3.04,
"spec_match": 98.98,
"stability": 50.0,
"churn": 0.0,
- "documentation": 39.49,
+ "documentation": 31.48,
"secrets_risk": 0.0
}
},
@@ -5125,18 +5125,18 @@
"file_count": 43,
"total_mass": 21390.2,
"avg_exposures": {
- "cognitive_load": 74.01,
- "safety_score": 68.34,
- "tech_debt": 20.15,
- "verification": 47.55,
+ "cognitive_load": 73.23,
+ "safety_score": 64.76,
+ "tech_debt": 19.28,
+ "verification": 34.94,
"api_exposure": 0.66,
- "concurrency": 26.19,
- "state_flux": 91.16,
+ "concurrency": 25.58,
+ "state_flux": 91.11,
"dead_code": 2.82,
"spec_match": 86.05,
"stability": 50.0,
"churn": 0.0,
- "documentation": 23.43,
+ "documentation": 20.27,
"secrets_risk": 0.0
}
},
@@ -5144,10 +5144,10 @@
"file_count": 7,
"total_mass": 1317.6,
"avg_exposures": {
- "cognitive_load": 77.02,
- "safety_score": 94.26,
+ "cognitive_load": 73.86,
+ "safety_score": 96.73,
"tech_debt": 0.0,
- "verification": 35.77,
+ "verification": 35.75,
"api_exposure": 0.64,
"concurrency": 0.0,
"state_flux": 99.99,
@@ -5155,7 +5155,7 @@
"spec_match": 42.86,
"stability": 50.0,
"churn": 0.0,
- "documentation": 16.24,
+ "documentation": 13.44,
"secrets_risk": 0.0
}
},
@@ -5163,18 +5163,18 @@
"file_count": 16,
"total_mass": 3759.8,
"avg_exposures": {
- "cognitive_load": 42.73,
- "safety_score": 84.35,
- "tech_debt": 3.12,
- "verification": 31.53,
+ "cognitive_load": 41.84,
+ "safety_score": 85.7,
+ "tech_debt": 2.86,
+ "verification": 31.52,
"api_exposure": 2.59,
"concurrency": 0.0,
- "state_flux": 96.58,
+ "state_flux": 96.2,
"dead_code": 1.67,
"spec_match": 56.25,
"stability": 50.0,
"churn": 0.0,
- "documentation": 36.18,
+ "documentation": 31.7,
"secrets_risk": 0.0
}
},
@@ -5258,9 +5258,9 @@
"file_count": 5,
"total_mass": 7237.36,
"avg_exposures": {
- "cognitive_load": 40.39,
- "safety_score": 86.28,
- "tech_debt": 47.03,
+ "cognitive_load": 33.8,
+ "safety_score": 90.49,
+ "tech_debt": 45.88,
"verification": 80.0,
"api_exposure": 0.06,
"concurrency": 0.0,
@@ -5277,9 +5277,9 @@
"file_count": 5,
"total_mass": 2298.02,
"avg_exposures": {
- "cognitive_load": 76.42,
- "safety_score": 75.67,
- "tech_debt": 18.83,
+ "cognitive_load": 75.13,
+ "safety_score": 77.95,
+ "tech_debt": 17.72,
"verification": 64.46,
"api_exposure": 0.0,
"concurrency": 40.0,
@@ -5288,7 +5288,7 @@
"spec_match": 80.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 3.47,
+ "documentation": 2.82,
"secrets_risk": 0.0
}
},
@@ -5296,18 +5296,18 @@
"file_count": 8,
"total_mass": 13748.42,
"avg_exposures": {
- "cognitive_load": 79.08,
- "safety_score": 92.96,
- "tech_debt": 67.55,
+ "cognitive_load": 74.69,
+ "safety_score": 96.33,
+ "tech_debt": 66.24,
"verification": 80.0,
"api_exposure": 0.06,
- "concurrency": 16.98,
+ "concurrency": 16.42,
"state_flux": 100.0,
"dead_code": 4.11,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 15.06,
+ "documentation": 12.9,
"secrets_risk": 0.0
}
},
@@ -5315,10 +5315,10 @@
"file_count": 7,
"total_mass": 1830.62,
"avg_exposures": {
- "cognitive_load": 41.41,
- "safety_score": 78.16,
+ "cognitive_load": 40.48,
+ "safety_score": 85.08,
"tech_debt": 69.42,
- "verification": 35.36,
+ "verification": 35.37,
"api_exposure": 3.67,
"concurrency": 14.28,
"state_flux": 99.99,
@@ -5326,7 +5326,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 15.62,
+ "documentation": 13.87,
"secrets_risk": 0.0
}
},
@@ -5334,10 +5334,10 @@
"file_count": 7,
"total_mass": 5611.52,
"avg_exposures": {
- "cognitive_load": 54.67,
- "safety_score": 80.31,
+ "cognitive_load": 51.92,
+ "safety_score": 87.7,
"tech_debt": 51.99,
- "verification": 80.0,
+ "verification": 57.9,
"api_exposure": 5.38,
"concurrency": 2.77,
"state_flux": 100.0,
@@ -5345,7 +5345,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 26.6,
+ "documentation": 22.86,
"secrets_risk": 0.0
}
},
@@ -5353,8 +5353,8 @@
"file_count": 1,
"total_mass": 825.8,
"avg_exposures": {
- "cognitive_load": 72.18,
- "safety_score": 80.66,
+ "cognitive_load": 68.88,
+ "safety_score": 87.48,
"tech_debt": 11.45,
"verification": 80.0,
"api_exposure": 1.91,
@@ -5524,18 +5524,18 @@
"file_count": 7,
"total_mass": 6307.04,
"avg_exposures": {
- "cognitive_load": 16.58,
- "safety_score": 50.21,
- "tech_debt": 37.49,
- "verification": 57.86,
+ "cognitive_load": 14.52,
+ "safety_score": 49.39,
+ "tech_debt": 35.85,
+ "verification": 57.85,
"api_exposure": 4.85,
"concurrency": 0.0,
- "state_flux": 10.94,
+ "state_flux": 9.15,
"dead_code": 1.44,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 31.76,
+ "documentation": 21.5,
"secrets_risk": 0.0
}
},
@@ -5543,18 +5543,18 @@
"file_count": 7,
"total_mass": 596.92,
"avg_exposures": {
- "cognitive_load": 18.52,
- "safety_score": 73.66,
- "tech_debt": 83.05,
- "verification": 13.57,
+ "cognitive_load": 16.22,
+ "safety_score": 67.86,
+ "tech_debt": 76.44,
+ "verification": 13.53,
"api_exposure": 2.52,
"concurrency": 0.0,
- "state_flux": 80.71,
+ "state_flux": 78.32,
"dead_code": 0.0,
"spec_match": 86.61,
"stability": 50.0,
"churn": 0.0,
- "documentation": 22.1,
+ "documentation": 10.46,
"secrets_risk": 0.0
}
},
@@ -5565,7 +5565,7 @@
"cognitive_load": 0.0,
"safety_score": 0.0,
"tech_debt": 0.0,
- "verification": 2.32,
+ "verification": 2.31,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5581,10 +5581,10 @@
"file_count": 1,
"total_mass": 38.04,
"avg_exposures": {
- "cognitive_load": 23.87,
- "safety_score": 72.4,
- "tech_debt": 73.11,
- "verification": 2.78,
+ "cognitive_load": 19.78,
+ "safety_score": 68.38,
+ "tech_debt": 37.75,
+ "verification": 2.71,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5600,10 +5600,10 @@
"file_count": 1,
"total_mass": 5.08,
"avg_exposures": {
- "cognitive_load": 7.45,
- "safety_score": 73.66,
+ "cognitive_load": 5.95,
+ "safety_score": 70.21,
"tech_debt": 0.0,
- "verification": 2.36,
+ "verification": 2.35,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5619,10 +5619,10 @@
"file_count": 3,
"total_mass": 56.16,
"avg_exposures": {
- "cognitive_load": 14.33,
+ "cognitive_load": 11.44,
"safety_score": 0.0,
"tech_debt": 0.0,
- "verification": 2.51,
+ "verification": 2.47,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5641,7 +5641,7 @@
"cognitive_load": 0.0,
"safety_score": 0.0,
"tech_debt": 0.0,
- "verification": 2.32,
+ "verification": 2.31,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5658,7 +5658,7 @@
"total_mass": 0.95,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 28.67,
+ "safety_score": 21.8,
"tech_debt": 0.0,
"verification": 2.3,
"api_exposure": 0.0,
@@ -5676,10 +5676,10 @@
"file_count": 16,
"total_mass": 46.72,
"avg_exposures": {
- "cognitive_load": 7.45,
+ "cognitive_load": 5.95,
"safety_score": 0.0,
"tech_debt": 0.0,
- "verification": 2.34,
+ "verification": 2.33,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5695,10 +5695,10 @@
"file_count": 11,
"total_mass": 388.02,
"avg_exposures": {
- "cognitive_load": 14.08,
- "safety_score": 11.84,
- "tech_debt": 8.66,
- "verification": 2.48,
+ "cognitive_load": 12.1,
+ "safety_score": 8.62,
+ "tech_debt": 7.43,
+ "verification": 2.43,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5771,18 +5771,18 @@
"file_count": 18,
"total_mass": 2443.68,
"avg_exposures": {
- "cognitive_load": 63.77,
- "safety_score": 85.43,
- "tech_debt": 61.14,
+ "cognitive_load": 61.9,
+ "safety_score": 86.5,
+ "tech_debt": 54.57,
"verification": 2.33,
"api_exposure": 2.76,
- "concurrency": 1.54,
- "state_flux": 93.02,
+ "concurrency": 1.29,
+ "state_flux": 92.82,
"dead_code": 4.74,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 22.84,
+ "documentation": 14.93,
"secrets_risk": 0.0
}
},
@@ -5790,18 +5790,18 @@
"file_count": 9,
"total_mass": 1844.28,
"avg_exposures": {
- "cognitive_load": 51.01,
- "safety_score": 88.83,
- "tech_debt": 3.99,
- "verification": 10.98,
+ "cognitive_load": 49.96,
+ "safety_score": 90.62,
+ "tech_debt": 3.44,
+ "verification": 10.97,
"api_exposure": 3.97,
"concurrency": 0.0,
- "state_flux": 93.4,
+ "state_flux": 92.61,
"dead_code": 8.02,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 19.37,
+ "documentation": 14.76,
"secrets_risk": 0.0
}
},
@@ -5923,18 +5923,18 @@
"file_count": 4,
"total_mass": 3953.78,
"avg_exposures": {
- "cognitive_load": 34.27,
- "safety_score": 56.48,
- "tech_debt": 69.23,
+ "cognitive_load": 31.17,
+ "safety_score": 52.0,
+ "tech_debt": 66.62,
"verification": 80.0,
"api_exposure": 5.36,
"concurrency": 0.0,
- "state_flux": 39.06,
+ "state_flux": 36.75,
"dead_code": 3.63,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 61.8,
+ "documentation": 53.93,
"secrets_risk": 0.0
}
},
@@ -5942,18 +5942,18 @@
"file_count": 5,
"total_mass": 19657.58,
"avg_exposures": {
- "cognitive_load": 24.28,
- "safety_score": 50.0,
- "tech_debt": 12.64,
- "verification": 80.0,
+ "cognitive_load": 22.29,
+ "safety_score": 42.57,
+ "tech_debt": 12.38,
+ "verification": 49.0,
"api_exposure": 3.65,
- "concurrency": 10.77,
- "state_flux": 12.06,
+ "concurrency": 8.49,
+ "state_flux": 10.88,
"dead_code": 5.11,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 42.11,
+ "documentation": 33.33,
"secrets_risk": 0.0
}
},
@@ -5961,18 +5961,18 @@
"file_count": 6,
"total_mass": 7673.62,
"avg_exposures": {
- "cognitive_load": 28.0,
- "safety_score": 33.88,
- "tech_debt": 11.18,
- "verification": 67.09,
+ "cognitive_load": 24.64,
+ "safety_score": 22.16,
+ "tech_debt": 10.53,
+ "verification": 28.32,
"api_exposure": 1.81,
- "concurrency": 15.89,
- "state_flux": 11.76,
+ "concurrency": 12.18,
+ "state_flux": 9.66,
"dead_code": 2.66,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 29.57,
+ "documentation": 25.41,
"secrets_risk": 0.0
}
},
@@ -5980,18 +5980,18 @@
"file_count": 8,
"total_mass": 3155.88,
"avg_exposures": {
- "cognitive_load": 17.18,
- "safety_score": 41.53,
- "tech_debt": 37.6,
- "verification": 50.92,
+ "cognitive_load": 15.86,
+ "safety_score": 32.92,
+ "tech_debt": 36.48,
+ "verification": 41.24,
"api_exposure": 5.9,
- "concurrency": 2.34,
- "state_flux": 17.25,
+ "concurrency": 1.79,
+ "state_flux": 16.21,
"dead_code": 3.69,
"spec_match": 87.5,
"stability": 50.0,
"churn": 0.0,
- "documentation": 60.29,
+ "documentation": 40.9,
"secrets_risk": 0.0
}
}
@@ -6125,12 +6125,12 @@
{
"name": "mach_install_mig.sh",
"path": "shell/darwin-xnu/mach_install_mig.sh",
- "value": 99.9979
+ "value": 99.9999
},
{
"name": "mkautoconfamal.sh",
"path": "shell/sqlite/mkautoconfamal.sh",
- "value": 99.9978
+ "value": 99.9999
}
],
"lowest": [
@@ -6656,7 +6656,7 @@
"path": "abap/abapGit/zcl_abapgit_ajson.clas.abap",
"score": 0.0,
"btw": 0.0,
- "state_mutation": 34.4679
+ "state_mutation": 29.2658
}
],
"fragile_dependency_chain": [
@@ -6670,13 +6670,13 @@
"path": "abap/abapGit/zcl_abapgit_ajson.clas.abap",
"score": 0.0,
"close": 0.0,
- "err": 50.207
+ "err": 46.6542
},
{
"path": "abap/abapGit/zcl_abapgit_git_porcelain.clas.abap",
"score": 0.0,
"close": 0.0,
- "err": 56.7894
+ "err": 56.5334
},
{
"path": "abap/abapGit/zcl_abapgit_http_client.clas.abap",
@@ -6688,27 +6688,15 @@
"path": "abap/abapGit/zcl_abapgit_objects.clas.abap",
"score": 0.0,
"close": 0.0,
- "err": 46.7539
+ "err": 41.9958
}
],
"undocumented_critical_path": [
{
"path": "shell/kubernetes/config-common.sh",
- "score": 281.243,
+ "score": 279.805,
"pr": 2.821,
- "doc": 99.6963
- },
- {
- "path": "python/fastapi/fastapi/exceptions.py",
- "score": 229.054,
- "pr": 5.738,
- "doc": 39.9187
- },
- {
- "path": "python/fastapi/fastapi/responses.py",
- "score": 207.075,
- "pr": 4.776,
- "doc": 43.3574
+ "doc": 99.1863
},
{
"path": "groovy/gradle/DefaultTask.java",
@@ -6718,63 +6706,75 @@
},
{
"path": "javascript/jquery/core.js",
- "score": 192.74,
+ "score": 189.151,
"pr": 6.658,
- "doc": 28.9486
+ "doc": 28.4096
+ },
+ {
+ "path": "python/fastapi/fastapi/responses.py",
+ "score": 184.177,
+ "pr": 4.776,
+ "doc": 38.5631
+ },
+ {
+ "path": "python/fastapi/fastapi/exceptions.py",
+ "score": 167.935,
+ "pr": 5.738,
+ "doc": 29.2672
}
]
},
"cumulative_risk": {
"highest": [
- {
- "name": "gengc.lua",
- "path": "lua/cosmopolitan/gengc.lua",
- "value": 755.81
- },
{
"name": "frames.ts",
"path": "typescript/playwright/frames.ts",
- "value": 739.26
- },
- {
- "name": "IC2244.2.cbl",
- "path": "cobol/che-che4z_nist_ccvs85/IC2244.2.cbl",
- "value": 737.13
+ "value": 739.93
},
{
"name": "containerbackend.go",
"path": "dockerfile/moby/builder/dockerfile/containerbackend.go",
- "value": 732.36
+ "value": 737.16
},
{
- "name": "bidiConnection.ts",
- "path": "typescript/playwright/bidiConnection.ts",
- "value": 732.29
+ "name": "IC2244.2.cbl",
+ "path": "cobol/che-che4z_nist_ccvs85/IC2244.2.cbl",
+ "value": 735.22
},
{
- "name": "revdeploylibraryios.livecodescript",
- "path": "livecode/livecode/revdeploylibraryios.livecodescript",
- "value": 731.17
+ "name": "bidiConnection.ts",
+ "path": "typescript/playwright/bidiConnection.ts",
+ "value": 733.35
},
{
"name": "IC2014.2.cbl",
"path": "cobol/che-che4z_nist_ccvs85/IC2014.2.cbl",
- "value": 729.56
+ "value": 730.82
},
{
"name": "dispatcher.ts",
"path": "typescript/playwright/dispatcher.ts",
- "value": 728.94
+ "value": 730.12
+ },
+ {
+ "name": "gengc.lua",
+ "path": "lua/cosmopolitan/gengc.lua",
+ "value": 728.16
},
{
"name": "connection.ts",
"path": "typescript/playwright/connection.ts",
- "value": 724.53
+ "value": 726.05
},
{
"name": "kubelet.go",
"path": "go/kubernetes/kubelet.go",
- "value": 722.36
+ "value": 726.0
+ },
+ {
+ "name": "async.ts",
+ "path": "typescript/vscode/async.ts",
+ "value": 723.93
}
],
"lowest": [
@@ -11191,18 +11191,18 @@
"Static: Literature & Documentation": "0.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "66.07%",
- "Error & Exception Exposure": "89.18%",
- "Tech Debt Exposure": "99.18%",
- "Testing Exposure": "57.91%",
+ "Cognitive Load Exposure": "65.33%",
+ "Error & Exception Exposure": "89.84%",
+ "Tech Debt Exposure": "98.84%",
+ "Testing Exposure": "57.39%",
"API Exposure": "3.56%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "83.57%",
+ "State Flux Exposure": "83.07%",
"Commented Logic Exposure": "3.05%",
"Specification Exposure": "99.34%",
"Instability Exposure": "49.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.93%",
+ "Documentation Exposure": "12.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -11396,11 +11396,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.121
+ "Raw Cognitive Density": 1.117
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.03%",
- "Error & Exception Exposure": "99.31%",
+ "Cognitive Load Exposure": "78.76%",
+ "Error & Exception Exposure": "99.86%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.12%",
@@ -12554,11 +12554,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.122
+ "Raw Cognitive Density": 1.117
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.06%",
- "Error & Exception Exposure": "99.26%",
+ "Cognitive Load Exposure": "78.79%",
+ "Error & Exception Exposure": "99.85%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.12%",
@@ -13732,11 +13732,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.475
+ "Raw Cognitive Density": 1.469
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.12%",
- "Error & Exception Exposure": "98.22%",
+ "Cognitive Load Exposure": "91.9%",
+ "Error & Exception Exposure": "99.5%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.1%",
@@ -14934,9 +14934,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.14%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -15152,9 +15152,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.14%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -15370,9 +15370,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.14%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -15584,11 +15584,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.52
+ "Raw Cognitive Density": 1.509
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.61%",
- "Error & Exception Exposure": "96.64%",
+ "Cognitive Load Exposure": "95.41%",
+ "Error & Exception Exposure": "98.77%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "12.33%",
@@ -15598,7 +15598,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "80.35%",
+ "Documentation Exposure": "64.75%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -16256,12 +16256,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.42%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -16490,11 +16490,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.099
+ "Raw Cognitive Density": 1.093
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.18%",
- "Error & Exception Exposure": "97.21%",
+ "Cognitive Load Exposure": "79.76%",
+ "Error & Exception Exposure": "99.06%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.72%",
@@ -16504,7 +16504,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "62.92%",
+ "Documentation Exposure": "47.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -17362,12 +17362,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.66%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.43%",
"API Exposure": "6.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "66.82%",
+ "State Flux Exposure": "62.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -17596,16 +17596,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.498
+ "Raw Cognitive Density": 0.415
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.77%",
- "Error & Exception Exposure": "85.01%",
+ "Cognitive Load Exposure": "20.78%",
+ "Error & Exception Exposure": "85.81%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.57%",
+ "Testing Exposure": "2.53%",
"API Exposure": "3.35%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -17884,11 +17884,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.096
+ "Raw Cognitive Density": 1.09
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.99%",
- "Error & Exception Exposure": "97.36%",
+ "Cognitive Load Exposure": "79.59%",
+ "Error & Exception Exposure": "99.13%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "5.13%",
@@ -18852,13 +18852,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.353
+ "Raw Cognitive Density": 1.291
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.77%",
- "Error & Exception Exposure": "88.02%",
+ "Cognitive Load Exposure": "89.71%",
+ "Error & Exception Exposure": "90.47%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.57%",
+ "Testing Exposure": "2.53%",
"API Exposure": "2.96%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -19170,11 +19170,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.113
+ "Raw Cognitive Density": 1.106
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.04%",
- "Error & Exception Exposure": "97.19%",
+ "Cognitive Load Exposure": "80.59%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.38%",
@@ -19184,7 +19184,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "56.8%",
+ "Documentation Exposure": "39.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -19948,16 +19948,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.403
+ "Raw Cognitive Density": 0.316
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.94%",
- "Error & Exception Exposure": "71.09%",
+ "Cognitive Load Exposure": "14.99%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.44%",
"API Exposure": "5.28%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -20186,16 +20186,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.517
+ "Raw Cognitive Density": 0.431
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "28.29%",
- "Error & Exception Exposure": "73.66%",
+ "Cognitive Load Exposure": "21.84%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.45%",
"API Exposure": "5.21%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -20424,16 +20424,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.397
+ "Raw Cognitive Density": 0.312
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.57%",
- "Error & Exception Exposure": "71.09%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "14.76%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.41%",
"API Exposure": "3.46%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -20642,16 +20642,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.56
+ "Raw Cognitive Density": 0.476
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.88%",
- "Error & Exception Exposure": "89.01%",
+ "Cognitive Load Exposure": "25.06%",
+ "Error & Exception Exposure": "90.73%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.48%",
"API Exposure": "5.07%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.08%",
+ "State Flux Exposure": "83.77%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -20870,11 +20870,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.491
+ "Raw Cognitive Density": 1.481
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.08%",
- "Error & Exception Exposure": "96.86%",
+ "Cognitive Load Exposure": "94.9%",
+ "Error & Exception Exposure": "98.89%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.57%",
@@ -20884,7 +20884,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.58%",
+ "Documentation Exposure": "15.18%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -21658,11 +21658,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.557
+ "Raw Cognitive Density": 1.544
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.19%",
- "Error & Exception Exposure": "96.0%",
+ "Cognitive Load Exposure": "95.99%",
+ "Error & Exception Exposure": "98.41%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.75%",
@@ -22170,12 +22170,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "3.27%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -22408,12 +22408,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -22622,11 +22622,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.074
+ "Raw Cognitive Density": 1.068
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.49%",
- "Error & Exception Exposure": "97.11%",
+ "Cognitive Load Exposure": "78.14%",
+ "Error & Exception Exposure": "98.97%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "14.95%",
@@ -22636,7 +22636,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.63%",
+ "Documentation Exposure": "99.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -23714,12 +23714,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.4%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "6.89%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -23948,11 +23948,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.074
+ "Raw Cognitive Density": 1.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.54%",
- "Error & Exception Exposure": "98.32%",
+ "Cognitive Load Exposure": "78.22%",
+ "Error & Exception Exposure": "99.54%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.74%",
@@ -23962,7 +23962,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "57.72%",
+ "Documentation Exposure": "45.45%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -25236,16 +25236,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.036
+ "Raw Cognitive Density": 0.952
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.84%",
- "Error & Exception Exposure": "83.3%",
+ "Cognitive Load Exposure": "69.17%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.48%",
"API Exposure": "3.25%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -25494,16 +25494,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.834
+ "Raw Cognitive Density": 0.748
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.3%",
- "Error & Exception Exposure": "92.9%",
+ "Cognitive Load Exposure": "49.75%",
+ "Error & Exception Exposure": "94.85%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.48%",
"API Exposure": "8.49%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.85%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -25736,12 +25736,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "3.48%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -25970,11 +25970,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.108
+ "Raw Cognitive Density": 1.101
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.73%",
- "Error & Exception Exposure": "96.93%",
+ "Cognitive Load Exposure": "80.3%",
+ "Error & Exception Exposure": "98.93%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.5%",
@@ -26808,13 +26808,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.098
+ "Raw Cognitive Density": 1.054
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.08%",
- "Error & Exception Exposure": "96.4%",
+ "Cognitive Load Exposure": "77.16%",
+ "Error & Exception Exposure": "98.16%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.71%",
+ "Testing Exposure": "2.65%",
"API Exposure": "3.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -27116,11 +27116,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.13
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.03%",
- "Error & Exception Exposure": "98.27%",
+ "Cognitive Load Exposure": "81.49%",
+ "Error & Exception Exposure": "99.5%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.39%",
@@ -27130,7 +27130,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.48%",
+ "Documentation Exposure": "23.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -27694,21 +27694,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.624
+ "Raw Cognitive Density": 0.543
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.69%",
- "Error & Exception Exposure": "95.63%",
+ "Cognitive Load Exposure": "30.39%",
+ "Error & Exception Exposure": "97.34%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.47%",
"API Exposure": "9.9%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.55%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -27926,12 +27926,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.38%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -28134,12 +28134,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.38%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -28338,11 +28338,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.532
+ "Raw Cognitive Density": 1.519
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.8%",
- "Error & Exception Exposure": "98.1%",
+ "Cognitive Load Exposure": "95.59%",
+ "Error & Exception Exposure": "99.43%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.52%",
@@ -28352,7 +28352,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.5%",
+ "Documentation Exposure": "14.88%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -28890,12 +28890,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.37%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -29098,12 +29098,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "85.81%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.41%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -29312,11 +29312,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.581
+ "Raw Cognitive Density": 1.568
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.53%",
- "Error & Exception Exposure": "96.29%",
+ "Cognitive Load Exposure": "96.35%",
+ "Error & Exception Exposure": "98.57%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.33%",
@@ -29326,7 +29326,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.62%",
+ "Documentation Exposure": "13.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -29834,12 +29834,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -30048,11 +30048,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.463
+ "Raw Cognitive Density": 1.456
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.55%",
- "Error & Exception Exposure": "94.71%",
+ "Cognitive Load Exposure": "94.4%",
+ "Error & Exception Exposure": "97.55%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "13.61%",
@@ -30062,7 +30062,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "95.57%",
+ "Documentation Exposure": "90.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -30916,11 +30916,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.529
+ "Raw Cognitive Density": 1.518
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.76%",
- "Error & Exception Exposure": "96.22%",
+ "Cognitive Load Exposure": "95.58%",
+ "Error & Exception Exposure": "98.55%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.41%",
@@ -31514,11 +31514,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.536
+ "Raw Cognitive Density": 1.525
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.87%",
- "Error & Exception Exposure": "96.47%",
+ "Cognitive Load Exposure": "95.69%",
+ "Error & Exception Exposure": "98.68%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.57%",
@@ -31528,7 +31528,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.35%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -32092,11 +32092,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.546
+ "Raw Cognitive Density": 1.535
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.02%",
- "Error & Exception Exposure": "97.7%",
+ "Cognitive Load Exposure": "95.85%",
+ "Error & Exception Exposure": "99.26%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.53%",
@@ -32780,11 +32780,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.514
+ "Raw Cognitive Density": 1.502
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.5%",
- "Error & Exception Exposure": "93.91%",
+ "Cognitive Load Exposure": "95.3%",
+ "Error & Exception Exposure": "97.11%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.89%",
@@ -33458,11 +33458,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.565
+ "Raw Cognitive Density": 1.553
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.31%",
- "Error & Exception Exposure": "94.92%",
+ "Cognitive Load Exposure": "96.12%",
+ "Error & Exception Exposure": "97.81%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.26%",
@@ -34036,13 +34036,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.147
+ "Raw Cognitive Density": 0.073
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.22%",
- "Error & Exception Exposure": "90.12%",
+ "Cognitive Load Exposure": "6.26%",
+ "Error & Exception Exposure": "91.91%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.45%",
"API Exposure": "6.4%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -34284,11 +34284,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.177
+ "Raw Cognitive Density": 1.172
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.68%",
- "Error & Exception Exposure": "97.36%",
+ "Cognitive Load Exposure": "84.41%",
+ "Error & Exception Exposure": "99.14%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -35272,11 +35272,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.228
+ "Raw Cognitive Density": 1.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.14%",
- "Error & Exception Exposure": "96.95%",
+ "Cognitive Load Exposure": "86.84%",
+ "Error & Exception Exposure": "98.94%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -36070,11 +36070,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.52
+ "Raw Cognitive Density": 1.509
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.61%",
- "Error & Exception Exposure": "95.82%",
+ "Cognitive Load Exposure": "95.41%",
+ "Error & Exception Exposure": "98.34%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -36618,11 +36618,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.143
+ "Raw Cognitive Density": 1.136
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.81%",
- "Error & Exception Exposure": "97.7%",
+ "Cognitive Load Exposure": "82.43%",
+ "Error & Exception Exposure": "99.28%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -37466,11 +37466,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.148
+ "Raw Cognitive Density": 1.141
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.1%",
- "Error & Exception Exposure": "97.5%",
+ "Cognitive Load Exposure": "82.69%",
+ "Error & Exception Exposure": "99.19%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -38234,11 +38234,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.229
+ "Raw Cognitive Density": 1.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.16%",
- "Error & Exception Exposure": "97.0%",
+ "Cognitive Load Exposure": "86.87%",
+ "Error & Exception Exposure": "98.97%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -39052,11 +39052,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.126
+ "Raw Cognitive Density": 1.122
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.82%",
- "Error & Exception Exposure": "98.41%",
+ "Cognitive Load Exposure": "81.56%",
+ "Error & Exception Exposure": "99.57%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -40440,11 +40440,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.147
+ "Raw Cognitive Density": 1.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.04%",
- "Error & Exception Exposure": "97.48%",
+ "Cognitive Load Exposure": "82.64%",
+ "Error & Exception Exposure": "99.18%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -41208,11 +41208,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.148
+ "Raw Cognitive Density": 1.141
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.1%",
- "Error & Exception Exposure": "97.5%",
+ "Cognitive Load Exposure": "82.69%",
+ "Error & Exception Exposure": "99.19%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -41976,11 +41976,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.125
+ "Raw Cognitive Density": 1.121
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.76%",
- "Error & Exception Exposure": "98.4%",
+ "Cognitive Load Exposure": "81.5%",
+ "Error & Exception Exposure": "99.57%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -43364,11 +43364,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.14
+ "Raw Cognitive Density": 1.133
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.64%",
- "Error & Exception Exposure": "97.79%",
+ "Cognitive Load Exposure": "82.23%",
+ "Error & Exception Exposure": "99.31%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -44142,11 +44142,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.131
+ "Raw Cognitive Density": 1.125
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.1%",
- "Error & Exception Exposure": "98.05%",
+ "Cognitive Load Exposure": "81.76%",
+ "Error & Exception Exposure": "99.43%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -45120,11 +45120,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.172
+ "Raw Cognitive Density": 1.168
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.41%",
- "Error & Exception Exposure": "97.59%",
+ "Cognitive Load Exposure": "84.16%",
+ "Error & Exception Exposure": "99.25%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -46258,11 +46258,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.175
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.54%",
- "Error & Exception Exposure": "97.53%",
+ "Cognitive Load Exposure": "84.3%",
+ "Error & Exception Exposure": "99.22%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -47396,11 +47396,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.175
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.54%",
- "Error & Exception Exposure": "97.43%",
+ "Cognitive Load Exposure": "84.3%",
+ "Error & Exception Exposure": "99.18%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -48534,11 +48534,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.162
+ "Raw Cognitive Density": 1.158
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.86%",
- "Error & Exception Exposure": "97.89%",
+ "Cognitive Load Exposure": "83.63%",
+ "Error & Exception Exposure": "99.38%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -49832,11 +49832,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.116
+ "Raw Cognitive Density": 1.112
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.23%",
- "Error & Exception Exposure": "98.23%",
+ "Cognitive Load Exposure": "80.95%",
+ "Error & Exception Exposure": "99.5%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -51090,11 +51090,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.228
+ "Raw Cognitive Density": 1.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.12%",
- "Error & Exception Exposure": "97.02%",
+ "Cognitive Load Exposure": "86.83%",
+ "Error & Exception Exposure": "98.97%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -51928,11 +51928,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.195
+ "Raw Cognitive Density": 1.19
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.56%",
- "Error & Exception Exposure": "97.71%",
+ "Cognitive Load Exposure": "85.31%",
+ "Error & Exception Exposure": "99.29%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -53046,11 +53046,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.126
+ "Raw Cognitive Density": 1.121
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.83%",
- "Error & Exception Exposure": "98.12%",
+ "Cognitive Load Exposure": "81.53%",
+ "Error & Exception Exposure": "99.46%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -54194,11 +54194,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.206
+ "Raw Cognitive Density": 1.199
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.09%",
- "Error & Exception Exposure": "96.92%",
+ "Cognitive Load Exposure": "85.79%",
+ "Error & Exception Exposure": "98.93%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -54982,11 +54982,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.187
+ "Raw Cognitive Density": 1.182
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.15%",
- "Error & Exception Exposure": "97.41%",
+ "Cognitive Load Exposure": "84.9%",
+ "Error & Exception Exposure": "99.17%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -56040,11 +56040,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.175
+ "Raw Cognitive Density": 1.171
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.57%",
- "Error & Exception Exposure": "97.69%",
+ "Cognitive Load Exposure": "84.32%",
+ "Error & Exception Exposure": "99.29%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -57178,11 +57178,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.129
+ "Raw Cognitive Density": 1.123
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.97%",
- "Error & Exception Exposure": "98.12%",
+ "Cognitive Load Exposure": "81.63%",
+ "Error & Exception Exposure": "99.45%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -58166,11 +58166,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.148
+ "Raw Cognitive Density": 1.143
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.07%",
- "Error & Exception Exposure": "97.1%",
+ "Cognitive Load Exposure": "82.83%",
+ "Error & Exception Exposure": "99.03%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -59314,11 +59314,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.179
+ "Raw Cognitive Density": 1.174
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.75%",
- "Error & Exception Exposure": "97.5%",
+ "Cognitive Load Exposure": "84.5%",
+ "Error & Exception Exposure": "99.21%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -60412,11 +60412,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.132
+ "Raw Cognitive Density": 1.126
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.15%",
- "Error & Exception Exposure": "98.11%",
+ "Cognitive Load Exposure": "81.8%",
+ "Error & Exception Exposure": "99.45%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -61390,11 +61390,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.157
+ "Raw Cognitive Density": 1.153
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.61%",
- "Error & Exception Exposure": "97.35%",
+ "Cognitive Load Exposure": "83.35%",
+ "Error & Exception Exposure": "99.14%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -62498,11 +62498,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.543
+ "Raw Cognitive Density": 1.531
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.98%",
- "Error & Exception Exposure": "96.47%",
+ "Cognitive Load Exposure": "95.79%",
+ "Error & Exception Exposure": "98.68%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -63046,16 +63046,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.263
+ "Raw Cognitive Density": 0.225
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.46%",
- "Error & Exception Exposure": "63.18%",
+ "Cognitive Load Exposure": "10.91%",
+ "Error & Exception Exposure": "58.9%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "24.97%",
+ "State Flux Exposure": "21.75%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -63384,16 +63384,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.337
+ "Raw Cognitive Density": 0.306
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.07%",
- "Error & Exception Exposure": "62.15%",
+ "Cognitive Load Exposure": "14.49%",
+ "Error & Exception Exposure": "58.81%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "29.41%",
+ "State Flux Exposure": "25.82%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -63732,16 +63732,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
- "Error & Exception Exposure": "67.05%",
+ "Cognitive Load Exposure": "15.19%",
+ "Error & Exception Exposure": "63.84%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.62%",
+ "Testing Exposure": "2.57%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "63.8%",
+ "State Flux Exposure": "59.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -64060,11 +64060,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.428
+ "Raw Cognitive Density": 1.419
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.78%",
- "Error & Exception Exposure": "95.8%",
+ "Cognitive Load Exposure": "93.57%",
+ "Error & Exception Exposure": "98.36%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.23%",
@@ -64638,11 +64638,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.079
+ "Raw Cognitive Density": 1.074
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.85%",
- "Error & Exception Exposure": "97.14%",
+ "Cognitive Load Exposure": "78.53%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.12%",
@@ -65316,11 +65316,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.061
+ "Raw Cognitive Density": 1.057
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.65%",
- "Error & Exception Exposure": "97.16%",
+ "Cognitive Load Exposure": "77.33%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.09%",
@@ -66044,11 +66044,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.055
+ "Raw Cognitive Density": 1.051
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.23%",
- "Error & Exception Exposure": "96.43%",
+ "Cognitive Load Exposure": "76.92%",
+ "Error & Exception Exposure": "98.71%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.1%",
@@ -66772,11 +66772,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.5
+ "Raw Cognitive Density": 1.489
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.25%",
- "Error & Exception Exposure": "96.09%",
+ "Cognitive Load Exposure": "95.06%",
+ "Error & Exception Exposure": "98.48%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -67390,11 +67390,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.411
+ "Raw Cognitive Density": 1.405
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.37%",
- "Error & Exception Exposure": "97.59%",
+ "Cognitive Load Exposure": "93.23%",
+ "Error & Exception Exposure": "99.24%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.31%",
@@ -68368,11 +68368,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.424
+ "Raw Cognitive Density": 1.418
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.68%",
- "Error & Exception Exposure": "97.49%",
+ "Cognitive Load Exposure": "93.53%",
+ "Error & Exception Exposure": "99.2%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.35%",
@@ -69286,11 +69286,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.425
+ "Raw Cognitive Density": 1.419
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.7%",
- "Error & Exception Exposure": "97.41%",
+ "Cognitive Load Exposure": "93.56%",
+ "Error & Exception Exposure": "99.16%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.34%",
@@ -70204,11 +70204,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.425
+ "Raw Cognitive Density": 1.419
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.7%",
- "Error & Exception Exposure": "97.41%",
+ "Cognitive Load Exposure": "93.56%",
+ "Error & Exception Exposure": "99.16%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.34%",
@@ -71122,11 +71122,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.425
+ "Raw Cognitive Density": 1.419
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.7%",
- "Error & Exception Exposure": "97.41%",
+ "Cognitive Load Exposure": "93.56%",
+ "Error & Exception Exposure": "99.16%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.35%",
@@ -72040,11 +72040,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.424
+ "Raw Cognitive Density": 1.418
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.67%",
- "Error & Exception Exposure": "97.38%",
+ "Cognitive Load Exposure": "93.53%",
+ "Error & Exception Exposure": "99.15%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.34%",
@@ -72958,11 +72958,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.419
+ "Raw Cognitive Density": 1.413
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.56%",
- "Error & Exception Exposure": "97.6%",
+ "Cognitive Load Exposure": "93.42%",
+ "Error & Exception Exposure": "99.24%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.34%",
@@ -73886,11 +73886,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.429
+ "Raw Cognitive Density": 1.423
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.8%",
- "Error & Exception Exposure": "97.39%",
+ "Cognitive Load Exposure": "93.65%",
+ "Error & Exception Exposure": "99.15%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.35%",
@@ -74754,11 +74754,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.043
+ "Raw Cognitive Density": 1.039
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.38%",
- "Error & Exception Exposure": "97.8%",
+ "Cognitive Load Exposure": "76.07%",
+ "Error & Exception Exposure": "99.33%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.31%",
@@ -75702,11 +75702,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.429
+ "Raw Cognitive Density": 1.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.8%",
- "Error & Exception Exposure": "95.66%",
+ "Cognitive Load Exposure": "93.6%",
+ "Error & Exception Exposure": "98.29%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.23%",
@@ -76270,11 +76270,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.065
+ "Raw Cognitive Density": 1.061
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.91%",
- "Error & Exception Exposure": "97.11%",
+ "Cognitive Load Exposure": "77.6%",
+ "Error & Exception Exposure": "99.04%",
"Tech Debt Exposure": "99.99%",
"Testing Exposure": "80.0%",
"API Exposure": "2.1%",
@@ -76958,11 +76958,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.055
+ "Raw Cognitive Density": 1.051
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.23%",
- "Error & Exception Exposure": "96.45%",
+ "Cognitive Load Exposure": "76.92%",
+ "Error & Exception Exposure": "98.72%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.1%",
@@ -77686,11 +77686,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.393
+ "Raw Cognitive Density": 1.386
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.91%",
- "Error & Exception Exposure": "95.85%",
+ "Cognitive Load Exposure": "92.73%",
+ "Error & Exception Exposure": "98.41%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -78484,11 +78484,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.402
+ "Raw Cognitive Density": 1.394
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.13%",
- "Error & Exception Exposure": "95.39%",
+ "Cognitive Load Exposure": "92.93%",
+ "Error & Exception Exposure": "98.13%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.17%",
@@ -79322,16 +79322,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.458
+ "Raw Cognitive Density": 0.407
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.69%",
- "Error & Exception Exposure": "75.75%",
+ "Cognitive Load Exposure": "20.22%",
+ "Error & Exception Exposure": "74.33%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.71%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "32.21%",
+ "State Flux Exposure": "28.41%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -79590,13 +79590,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.157
+ "Raw Cognitive Density": 0.114
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.54%",
- "Error & Exception Exposure": "71.09%",
+ "Cognitive Load Exposure": "7.29%",
+ "Error & Exception Exposure": "69.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -79848,16 +79848,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.231
+ "Raw Cognitive Density": 0.168
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.13%",
- "Error & Exception Exposure": "76.79%",
+ "Cognitive Load Exposure": "8.87%",
+ "Error & Exception Exposure": "76.12%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "18.07%",
+ "State Flux Exposure": "15.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -80106,11 +80106,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.494
+ "Raw Cognitive Density": 1.485
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.14%",
- "Error & Exception Exposure": "97.91%",
+ "Cognitive Load Exposure": "94.97%",
+ "Error & Exception Exposure": "99.36%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.25%",
@@ -81004,11 +81004,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.959
+ "Raw Cognitive Density": 0.947
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.78%",
- "Error & Exception Exposure": "93.96%",
+ "Cognitive Load Exposure": "68.71%",
+ "Error & Exception Exposure": "97.13%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -81492,11 +81492,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.13
+ "Raw Cognitive Density": 1.126
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.04%",
- "Error & Exception Exposure": "97.34%",
+ "Cognitive Load Exposure": "81.8%",
+ "Error & Exception Exposure": "99.14%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.09%",
@@ -82560,11 +82560,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.572
+ "Raw Cognitive Density": 1.559
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.4%",
- "Error & Exception Exposure": "96.9%",
+ "Cognitive Load Exposure": "96.22%",
+ "Error & Exception Exposure": "98.89%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.37%",
@@ -83128,11 +83128,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.129
+ "Raw Cognitive Density": 1.122
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.01%",
- "Error & Exception Exposure": "98.97%",
+ "Cognitive Load Exposure": "81.61%",
+ "Error & Exception Exposure": "99.76%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.26%",
@@ -83876,11 +83876,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.125
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.75%",
- "Error & Exception Exposure": "98.6%",
+ "Cognitive Load Exposure": "81.48%",
+ "Error & Exception Exposure": "99.64%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "12.09%",
@@ -83890,7 +83890,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "64.52%",
+ "Documentation Exposure": "54.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -85094,11 +85094,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.111
+ "Raw Cognitive Density": 1.106
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.9%",
- "Error & Exception Exposure": "98.16%",
+ "Cognitive Load Exposure": "80.62%",
+ "Error & Exception Exposure": "99.48%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.11%",
@@ -86402,11 +86402,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.105
+ "Raw Cognitive Density": 1.099
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.53%",
- "Error & Exception Exposure": "98.01%",
+ "Cognitive Load Exposure": "80.15%",
+ "Error & Exception Exposure": "99.41%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.22%",
@@ -87250,11 +87250,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.083
+ "Raw Cognitive Density": 1.076
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.09%",
- "Error & Exception Exposure": "97.2%",
+ "Cognitive Load Exposure": "78.66%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.65%",
@@ -87264,7 +87264,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.26%",
+ "Documentation Exposure": "28.04%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -87908,11 +87908,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.072
+ "Raw Cognitive Density": 1.066
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.4%",
- "Error & Exception Exposure": "97.21%",
+ "Cognitive Load Exposure": "77.97%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.6%",
@@ -87922,7 +87922,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.17%",
+ "Documentation Exposure": "27.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -88566,13 +88566,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.087
+ "Raw Cognitive Density": 1.082
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.36%",
- "Error & Exception Exposure": "93.45%",
+ "Cognitive Load Exposure": "79.03%",
+ "Error & Exception Exposure": "95.84%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.49%",
"API Exposure": "2.14%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -89774,13 +89774,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.086
+ "Raw Cognitive Density": 1.081
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.33%",
- "Error & Exception Exposure": "90.88%",
+ "Cognitive Load Exposure": "78.98%",
+ "Error & Exception Exposure": "93.03%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.46%",
"API Exposure": "2.16%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -90892,11 +90892,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.042
+ "Raw Cognitive Density": 1.038
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.27%",
- "Error & Exception Exposure": "98.94%",
+ "Cognitive Load Exposure": "75.95%",
+ "Error & Exception Exposure": "99.75%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.1%",
@@ -92240,11 +92240,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.107
+ "Raw Cognitive Density": 1.101
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.69%",
- "Error & Exception Exposure": "99.66%",
+ "Cognitive Load Exposure": "80.3%",
+ "Error & Exception Exposure": "99.95%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.23%",
@@ -93088,12 +93088,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.687
+ "Raw Cognitive Density": 1.681
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.7%",
- "Error & Exception Exposure": "98.71%",
- "Tech Debt Exposure": "99.94%",
+ "Cognitive Load Exposure": "97.64%",
+ "Error & Exception Exposure": "99.67%",
+ "Tech Debt Exposure": "99.93%",
"Testing Exposure": "80.0%",
"API Exposure": "4.2%",
"Concurrency Exposure": "0.0%",
@@ -93102,7 +93102,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.11%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -93666,11 +93666,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.493
+ "Raw Cognitive Density": 1.482
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.13%",
- "Error & Exception Exposure": "94.85%",
+ "Cognitive Load Exposure": "94.92%",
+ "Error & Exception Exposure": "97.74%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.31%",
@@ -94294,11 +94294,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.1
+ "Raw Cognitive Density": 1.093
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.22%",
- "Error & Exception Exposure": "96.61%",
+ "Cognitive Load Exposure": "79.78%",
+ "Error & Exception Exposure": "98.77%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.24%",
@@ -95122,11 +95122,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.109
+ "Raw Cognitive Density": 1.102
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.77%",
- "Error & Exception Exposure": "96.58%",
+ "Cognitive Load Exposure": "80.36%",
+ "Error & Exception Exposure": "98.76%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.17%",
@@ -96040,11 +96040,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.083
+ "Raw Cognitive Density": 1.077
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.1%",
- "Error & Exception Exposure": "98.6%",
+ "Cognitive Load Exposure": "78.71%",
+ "Error & Exception Exposure": "99.63%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.2%",
@@ -96978,11 +96978,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.09
+ "Raw Cognitive Density": 1.086
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.61%",
- "Error & Exception Exposure": "97.69%",
+ "Cognitive Load Exposure": "79.28%",
+ "Error & Exception Exposure": "99.29%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.14%",
@@ -98126,11 +98126,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.094
+ "Raw Cognitive Density": 1.089
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.84%",
- "Error & Exception Exposure": "97.15%",
+ "Cognitive Load Exposure": "79.51%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.46%",
@@ -98140,7 +98140,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.47%",
+ "Documentation Exposure": "24.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -99284,11 +99284,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.146
+ "Raw Cognitive Density": 1.141
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.0%",
- "Error & Exception Exposure": "98.55%",
+ "Cognitive Load Exposure": "82.69%",
+ "Error & Exception Exposure": "99.62%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.45%",
@@ -100262,11 +100262,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.066
+ "Raw Cognitive Density": 1.061
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.95%",
- "Error & Exception Exposure": "97.38%",
+ "Cognitive Load Exposure": "77.61%",
+ "Error & Exception Exposure": "99.15%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.77%",
@@ -100276,7 +100276,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.5%",
+ "Documentation Exposure": "28.78%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -101420,11 +101420,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.087
+ "Raw Cognitive Density": 1.082
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.35%",
- "Error & Exception Exposure": "97.79%",
+ "Cognitive Load Exposure": "79.03%",
+ "Error & Exception Exposure": "99.33%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.27%",
@@ -101434,7 +101434,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.54%",
+ "Documentation Exposure": "23.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -102438,11 +102438,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.062
+ "Raw Cognitive Density": 1.056
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.66%",
- "Error & Exception Exposure": "96.49%",
+ "Cognitive Load Exposure": "77.25%",
+ "Error & Exception Exposure": "98.73%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.52%",
@@ -102452,7 +102452,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.4%",
+ "Documentation Exposure": "26.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -103316,11 +103316,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.152
+ "Raw Cognitive Density": 1.147
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.3%",
- "Error & Exception Exposure": "95.73%",
+ "Cognitive Load Exposure": "83.05%",
+ "Error & Exception Exposure": "98.18%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.36%",
@@ -103330,7 +103330,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.36%",
+ "Documentation Exposure": "38.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -104414,11 +104414,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.175
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.54%",
- "Error & Exception Exposure": "95.14%",
+ "Cognitive Load Exposure": "84.29%",
+ "Error & Exception Exposure": "97.81%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.42%",
@@ -104428,7 +104428,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "51.03%",
+ "Documentation Exposure": "39.38%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -105492,11 +105492,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.072
+ "Raw Cognitive Density": 1.067
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.4%",
- "Error & Exception Exposure": "96.16%",
+ "Cognitive Load Exposure": "78.03%",
+ "Error & Exception Exposure": "98.55%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "12.26%",
@@ -105506,7 +105506,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "72.14%",
+ "Documentation Exposure": "60.68%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -106190,11 +106190,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.177
+ "Raw Cognitive Density": 1.172
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.64%",
- "Error & Exception Exposure": "96.57%",
+ "Cognitive Load Exposure": "84.41%",
+ "Error & Exception Exposure": "98.65%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "13.01%",
@@ -106204,7 +106204,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.23%",
+ "Documentation Exposure": "77.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -107008,11 +107008,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.492
+ "Raw Cognitive Density": 1.483
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.11%",
- "Error & Exception Exposure": "98.01%",
+ "Cognitive Load Exposure": "94.95%",
+ "Error & Exception Exposure": "99.41%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.59%",
@@ -107022,7 +107022,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.24%",
+ "Documentation Exposure": "44.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -107886,11 +107886,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.089
+ "Raw Cognitive Density": 1.083
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.51%",
- "Error & Exception Exposure": "95.71%",
+ "Cognitive Load Exposure": "79.09%",
+ "Error & Exception Exposure": "98.07%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.21%",
@@ -108804,11 +108804,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.07
+ "Raw Cognitive Density": 1.065
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.25%",
- "Error & Exception Exposure": "99.68%",
+ "Cognitive Load Exposure": "77.9%",
+ "Error & Exception Exposure": "99.95%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.16%",
@@ -109866,9 +109866,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "88.56%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Error & Exception Exposure": "90.13%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -110084,12 +110084,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.41%",
"API Exposure": "8.93%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -110298,11 +110298,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.273
+ "Raw Cognitive Density": 1.255
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "89.0%",
- "Error & Exception Exposure": "94.43%",
+ "Cognitive Load Exposure": "88.3%",
+ "Error & Exception Exposure": "97.14%",
"Tech Debt Exposure": "99.99%",
"Testing Exposure": "80.0%",
"API Exposure": "6.25%",
@@ -110736,11 +110736,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.555
+ "Raw Cognitive Density": 1.542
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.16%",
- "Error & Exception Exposure": "96.43%",
+ "Cognitive Load Exposure": "95.96%",
+ "Error & Exception Exposure": "98.64%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.78%",
@@ -111244,11 +111244,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.331
+ "Raw Cognitive Density": 1.324
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.08%",
- "Error & Exception Exposure": "94.98%",
+ "Cognitive Load Exposure": "90.86%",
+ "Error & Exception Exposure": "97.94%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.14%",
@@ -112112,11 +112112,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.408
+ "Raw Cognitive Density": 1.401
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.29%",
- "Error & Exception Exposure": "97.8%",
+ "Cognitive Load Exposure": "93.1%",
+ "Error & Exception Exposure": "99.33%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.18%",
@@ -112950,11 +112950,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.398
+ "Raw Cognitive Density": 1.391
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.02%",
- "Error & Exception Exposure": "98.06%",
+ "Cognitive Load Exposure": "92.84%",
+ "Error & Exception Exposure": "99.44%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.15%",
@@ -113882,12 +113882,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -114048,16 +114048,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.474
+ "Raw Cognitive Density": 0.421
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "24.88%",
- "Error & Exception Exposure": "76.29%",
+ "Cognitive Load Exposure": "21.15%",
+ "Error & Exception Exposure": "74.86%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.66%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "33.26%",
+ "State Flux Exposure": "29.39%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -114316,13 +114316,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.154
+ "Raw Cognitive Density": 0.108
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.44%",
- "Error & Exception Exposure": "79.84%",
+ "Cognitive Load Exposure": "7.11%",
+ "Error & Exception Exposure": "80.4%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -114580,7 +114580,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -114818,7 +114818,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -115055,8 +115055,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -115220,11 +115220,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.578
+ "Raw Cognitive Density": 1.564
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.49%",
- "Error & Exception Exposure": "96.47%",
+ "Cognitive Load Exposure": "96.28%",
+ "Error & Exception Exposure": "98.65%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.42%",
@@ -115694,9 +115694,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -115908,11 +115908,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.148
+ "Raw Cognitive Density": 1.143
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.1%",
- "Error & Exception Exposure": "98.26%",
+ "Cognitive Load Exposure": "82.81%",
+ "Error & Exception Exposure": "99.51%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.16%",
@@ -117026,11 +117026,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.149
+ "Raw Cognitive Density": 1.144
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.14%",
- "Error & Exception Exposure": "98.27%",
+ "Cognitive Load Exposure": "82.85%",
+ "Error & Exception Exposure": "99.52%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.15%",
@@ -118144,13 +118144,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.169
+ "Raw Cognitive Density": 0.113
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.92%",
- "Error & Exception Exposure": "70.11%",
+ "Cognitive Load Exposure": "7.25%",
+ "Error & Exception Exposure": "68.09%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -118389,18 +118389,18 @@
"Static: Literature & Documentation": "6.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "72.8%",
- "Error & Exception Exposure": "84.82%",
- "Tech Debt Exposure": "4.35%",
+ "Cognitive Load Exposure": "71.9%",
+ "Error & Exception Exposure": "86.69%",
+ "Tech Debt Exposure": "4.31%",
"Testing Exposure": "59.2%",
"API Exposure": "5.41%",
- "Concurrency Exposure": "4.24%",
- "State Flux Exposure": "65.72%",
+ "Concurrency Exposure": "3.74%",
+ "State Flux Exposure": "65.69%",
"Commented Logic Exposure": "9.26%",
"Specification Exposure": "60.0%",
"Instability Exposure": "46.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.21%",
+ "Documentation Exposure": "23.26%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -118598,8 +118598,8 @@
"Raw Cognitive Density": 0.561
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.96%",
- "Error & Exception Exposure": "69.07%",
+ "Cognitive Load Exposure": "29.61%",
+ "Error & Exception Exposure": "74.65%",
"Tech Debt Exposure": "16.16%",
"Testing Exposure": "80.0%",
"API Exposure": "7.18%",
@@ -118609,7 +118609,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.95%",
+ "Documentation Exposure": "23.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -118946,7 +118946,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "19.49%",
- "Error & Exception Exposure": "73.36%",
+ "Error & Exception Exposure": "79.89%",
"Tech Debt Exposure": "13.93%",
"Testing Exposure": "80.0%",
"API Exposure": "1.19%",
@@ -118956,7 +118956,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.92%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -119260,13 +119260,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.643
+ "Raw Cognitive Density": 2.611
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.95%",
- "Error & Exception Exposure": "97.69%",
+ "Cognitive Load Exposure": "99.94%",
+ "Error & Exception Exposure": "98.92%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.86%",
+ "Testing Exposure": "2.79%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -119488,16 +119488,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.952
+ "Raw Cognitive Density": 1.921
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.19%",
- "Error & Exception Exposure": "92.37%",
+ "Cognitive Load Exposure": "99.08%",
+ "Error & Exception Exposure": "95.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.7%",
"API Exposure": "16.58%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.38%",
+ "State Flux Exposure": "97.05%",
"Commented Logic Exposure": "68.77%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -119669,12 +119669,12 @@
"Raw Cognitive Density": 1.476
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.81%",
- "Error & Exception Exposure": "98.54%",
- "Tech Debt Exposure": "8.22%",
+ "Cognitive Load Exposure": "94.8%",
+ "Error & Exception Exposure": "99.63%",
+ "Tech Debt Exposure": "8.1%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "18.25%",
+ "Concurrency Exposure": "15.98%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.52%",
"Specification Exposure": "0.0%",
@@ -119850,15 +119850,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.799
+ "Raw Cognitive Density": 1.798
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.52%",
- "Error & Exception Exposure": "99.54%",
- "Tech Debt Exposure": "8.27%",
+ "Cognitive Load Exposure": "98.51%",
+ "Error & Exception Exposure": "99.92%",
+ "Tech Debt Exposure": "8.14%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "23.53%",
+ "Concurrency Exposure": "20.78%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.43%",
"Specification Exposure": "0.0%",
@@ -120036,11 +120036,11 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "98.35%",
- "Error & Exception Exposure": "99.46%",
- "Tech Debt Exposure": "8.31%",
+ "Error & Exception Exposure": "99.9%",
+ "Tech Debt Exposure": "8.17%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "21.88%",
+ "Concurrency Exposure": "19.27%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.47%",
"Specification Exposure": "0.0%",
@@ -120214,13 +120214,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.34
+ "Raw Cognitive Density": 3.3
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "97.37%",
+ "Error & Exception Exposure": "98.75%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.46%",
"API Exposure": "15.01%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -120392,11 +120392,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.71
+ "Raw Cognitive Density": 1.705
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.75%",
- "Error & Exception Exposure": "85.78%",
+ "Cognitive Load Exposure": "80.95%",
+ "Error & Exception Exposure": "89.88%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.02%",
@@ -120406,7 +120406,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.07%",
+ "Documentation Exposure": "20.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -120698,12 +120698,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.922
+ "Raw Cognitive Density": 0.921
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.05%",
- "Error & Exception Exposure": "97.71%",
- "Tech Debt Exposure": "10.29%",
+ "Cognitive Load Exposure": "52.33%",
+ "Error & Exception Exposure": "99.09%",
+ "Tech Debt Exposure": "10.08%",
"Testing Exposure": "80.0%",
"API Exposure": "9.55%",
"Concurrency Exposure": "0.0%",
@@ -120712,7 +120712,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.52%",
+ "Documentation Exposure": "20.13%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -121397,8 +121397,8 @@
"Raw Cognitive Density": 1.772
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.17%",
- "Error & Exception Exposure": "98.79%",
+ "Cognitive Load Exposure": "98.05%",
+ "Error & Exception Exposure": "99.69%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.03%",
@@ -121408,7 +121408,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.1%",
+ "Documentation Exposure": "14.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -122012,8 +122012,8 @@
"Raw Cognitive Density": 0.935
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.72%",
- "Error & Exception Exposure": "69.63%",
+ "Cognitive Load Exposure": "67.69%",
+ "Error & Exception Exposure": "67.8%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "6.92%",
@@ -122023,7 +122023,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.92%",
+ "Documentation Exposure": "17.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -122475,11 +122475,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.94
+ "Raw Cognitive Density": 0.939
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.0%",
- "Error & Exception Exposure": "94.6%",
+ "Cognitive Load Exposure": "67.88%",
+ "Error & Exception Exposure": "97.22%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.17%",
@@ -122694,11 +122694,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.986
+ "Raw Cognitive Density": 0.984
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.02%",
- "Error & Exception Exposure": "98.45%",
+ "Cognitive Load Exposure": "71.85%",
+ "Error & Exception Exposure": "99.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.54%",
@@ -122708,7 +122708,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.77%",
+ "Documentation Exposure": "16.75%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -122875,18 +122875,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "58.25%",
- "Error & Exception Exposure": "74.24%",
- "Tech Debt Exposure": "13.29%",
+ "Cognitive Load Exposure": "58.22%",
+ "Error & Exception Exposure": "76.83%",
+ "Tech Debt Exposure": "13.26%",
"Testing Exposure": "57.8%",
"API Exposure": "5.21%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.91%",
+ "State Flux Exposure": "75.37%",
"Commented Logic Exposure": "1.73%",
"Specification Exposure": "71.43%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.51%",
+ "Documentation Exposure": "42.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -122926,8 +122926,8 @@
"Raw Cognitive Density": 1.502
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.15%",
- "Error & Exception Exposure": "91.47%",
+ "Cognitive Load Exposure": "95.13%",
+ "Error & Exception Exposure": "95.96%",
"Tech Debt Exposure": "8.98%",
"Testing Exposure": "80.0%",
"API Exposure": "11.01%",
@@ -122937,7 +122937,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "81.53%",
+ "Documentation Exposure": "81.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -125118,8 +125118,8 @@
"Raw Cognitive Density": 1.088
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.16%",
- "Error & Exception Exposure": "97.1%",
+ "Cognitive Load Exposure": "79.11%",
+ "Error & Exception Exposure": "99.11%",
"Tech Debt Exposure": "7.91%",
"Testing Exposure": "80.0%",
"API Exposure": "13.6%",
@@ -125129,7 +125129,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.12%",
+ "Documentation Exposure": "98.08%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -126572,8 +126572,8 @@
"Raw Cognitive Density": 1.399
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.38%",
- "Error & Exception Exposure": "92.09%",
+ "Cognitive Load Exposure": "92.26%",
+ "Error & Exception Exposure": "96.45%",
"Tech Debt Exposure": "38.29%",
"Testing Exposure": "80.0%",
"API Exposure": "11.81%",
@@ -126583,7 +126583,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.08%",
+ "Documentation Exposure": "93.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -127446,12 +127446,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "58.26%",
+ "Error & Exception Exposure": "56.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "31.34%",
+ "State Flux Exposure": "27.6%",
"Commented Logic Exposure": "7.29%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -127603,8 +127603,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "71.05%",
- "Error & Exception Exposure": "85.78%",
- "Tech Debt Exposure": "11.71%",
+ "Error & Exception Exposure": "91.62%",
+ "Tech Debt Exposure": "11.69%",
"Testing Exposure": "80.0%",
"API Exposure": "0.03%",
"Concurrency Exposure": "0.0%",
@@ -139246,9 +139246,9 @@
"Raw Cognitive Density": 0.962
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.04%",
- "Error & Exception Exposure": "94.96%",
- "Tech Debt Exposure": "14.4%",
+ "Cognitive Load Exposure": "70.0%",
+ "Error & Exception Exposure": "98.03%",
+ "Tech Debt Exposure": "14.24%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -139474,7 +139474,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "11.78%",
+ "Tech Debt Exposure": "11.69%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -139603,8 +139603,8 @@
"Static: Literature & Documentation": "18.8%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "59.92%",
- "Error & Exception Exposure": "73.56%",
+ "Cognitive Load Exposure": "59.49%",
+ "Error & Exception Exposure": "76.73%",
"Tech Debt Exposure": "22.49%",
"Testing Exposure": "55.29%",
"API Exposure": "5.41%",
@@ -139614,7 +139614,7 @@
"Specification Exposure": "81.25%",
"Instability Exposure": "40.62%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.95%",
+ "Documentation Exposure": "22.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -139968,8 +139968,8 @@
"Raw Cognitive Density": 0.997
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "56.08%",
- "Error & Exception Exposure": "74.48%",
+ "Cognitive Load Exposure": "55.05%",
+ "Error & Exception Exposure": "82.0%",
"Tech Debt Exposure": "9.29%",
"Testing Exposure": "80.0%",
"API Exposure": "15.57%",
@@ -140586,8 +140586,8 @@
"Raw Cognitive Density": 1.387
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.32%",
- "Error & Exception Exposure": "96.25%",
+ "Cognitive Load Exposure": "92.25%",
+ "Error & Exception Exposure": "98.7%",
"Tech Debt Exposure": "97.25%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -140597,7 +140597,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.3%",
+ "Documentation Exposure": "12.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -143901,8 +143901,8 @@
"Raw Cognitive Density": 1.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.69%",
- "Error & Exception Exposure": "90.03%",
+ "Cognitive Load Exposure": "65.17%",
+ "Error & Exception Exposure": "94.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "9.64%",
@@ -143912,7 +143912,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.85%",
+ "Documentation Exposure": "24.4%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -144407,8 +144407,8 @@
"Raw Cognitive Density": 1.522
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.64%",
- "Error & Exception Exposure": "99.68%",
+ "Cognitive Load Exposure": "94.46%",
+ "Error & Exception Exposure": "99.95%",
"Tech Debt Exposure": "14.64%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -144652,8 +144652,8 @@
"Raw Cognitive Density": 1.564
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.35%",
- "Error & Exception Exposure": "98.81%",
+ "Cognitive Load Exposure": "94.01%",
+ "Error & Exception Exposure": "99.73%",
"Tech Debt Exposure": "11.52%",
"Testing Exposure": "80.0%",
"API Exposure": "7.3%",
@@ -145206,7 +145206,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "26.86%",
- "Error & Exception Exposure": "78.3%",
+ "Error & Exception Exposure": "84.79%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "2.98%",
@@ -145365,8 +145365,8 @@
"Raw Cognitive Density": 0.989
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.54%",
- "Error & Exception Exposure": "97.5%",
+ "Cognitive Load Exposure": "70.24%",
+ "Error & Exception Exposure": "99.25%",
"Tech Debt Exposure": "9.45%",
"Testing Exposure": "80.0%",
"API Exposure": "13.04%",
@@ -145376,7 +145376,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "65.04%",
+ "Documentation Exposure": "63.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -147903,8 +147903,8 @@
"Raw Cognitive Density": 1.46
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.15%",
- "Error & Exception Exposure": "88.16%",
+ "Cognitive Load Exposure": "70.72%",
+ "Error & Exception Exposure": "93.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.45%",
@@ -147914,7 +147914,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.84%",
+ "Documentation Exposure": "26.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -148559,8 +148559,8 @@
"Raw Cognitive Density": 1.0
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "71.87%",
- "Error & Exception Exposure": "98.77%",
+ "Cognitive Load Exposure": "71.65%",
+ "Error & Exception Exposure": "99.71%",
"Tech Debt Exposure": "99.91%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -149989,8 +149989,8 @@
"Raw Cognitive Density": 1.309
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.6%",
- "Error & Exception Exposure": "89.88%",
+ "Cognitive Load Exposure": "80.06%",
+ "Error & Exception Exposure": "94.85%",
"Tech Debt Exposure": "99.96%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -150518,8 +150518,8 @@
"Raw Cognitive Density": 1.081
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.54%",
- "Error & Exception Exposure": "78.19%",
+ "Cognitive Load Exposure": "64.08%",
+ "Error & Exception Exposure": "85.51%",
"Tech Debt Exposure": "9.36%",
"Testing Exposure": "80.0%",
"API Exposure": "6.17%",
@@ -150800,8 +150800,8 @@
"Raw Cognitive Density": 1.577
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.41%",
- "Error & Exception Exposure": "94.73%",
+ "Cognitive Load Exposure": "95.22%",
+ "Error & Exception Exposure": "97.94%",
"Tech Debt Exposure": "8.42%",
"Testing Exposure": "80.0%",
"API Exposure": "12.31%",
@@ -150811,7 +150811,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "56.88%",
+ "Documentation Exposure": "55.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -152546,8 +152546,8 @@
"Raw Cognitive Density": 1.285
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.74%",
- "Error & Exception Exposure": "92.18%",
+ "Cognitive Load Exposure": "72.15%",
+ "Error & Exception Exposure": "96.41%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.11%",
@@ -152557,7 +152557,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.61%",
+ "Documentation Exposure": "23.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -153230,8 +153230,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "70.55%",
- "Error & Exception Exposure": "86.0%",
+ "Cognitive Load Exposure": "70.47%",
+ "Error & Exception Exposure": "92.1%",
"Tech Debt Exposure": "39.8%",
"Testing Exposure": "80.0%",
"API Exposure": "13.81%",
@@ -153241,7 +153241,7 @@
"Specification Exposure": "99.57%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "91.74%",
+ "Documentation Exposure": "91.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -153278,11 +153278,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.09
+ "Raw Cognitive Density": 0.089
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.67%",
- "Error & Exception Exposure": "73.78%",
+ "Cognitive Load Exposure": "4.65%",
+ "Error & Exception Exposure": "79.71%",
"Tech Debt Exposure": "99.96%",
"Testing Exposure": "80.0%",
"API Exposure": "11.62%",
@@ -153292,7 +153292,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.97%",
+ "Documentation Exposure": "31.08%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -155879,8 +155879,8 @@
"Raw Cognitive Density": 1.524
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.44%",
- "Error & Exception Exposure": "90.24%",
+ "Cognitive Load Exposure": "94.23%",
+ "Error & Exception Exposure": "95.62%",
"Tech Debt Exposure": "9.09%",
"Testing Exposure": "80.0%",
"API Exposure": "15.95%",
@@ -157195,8 +157195,8 @@
"Raw Cognitive Density": 1.01
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.42%",
- "Error & Exception Exposure": "89.2%",
+ "Cognitive Load Exposure": "73.35%",
+ "Error & Exception Exposure": "94.93%",
"Tech Debt Exposure": "52.88%",
"Testing Exposure": "80.0%",
"API Exposure": "15.55%",
@@ -157967,8 +157967,8 @@
"Raw Cognitive Density": 1.408
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.69%",
- "Error & Exception Exposure": "87.3%",
+ "Cognitive Load Exposure": "92.58%",
+ "Error & Exception Exposure": "94.06%",
"Tech Debt Exposure": "32.24%",
"Testing Exposure": "80.0%",
"API Exposure": "13.63%",
@@ -157978,7 +157978,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.71%",
+ "Documentation Exposure": "99.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -160966,7 +160966,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "71.49%",
- "Error & Exception Exposure": "91.29%",
+ "Error & Exception Exposure": "96.32%",
"Tech Debt Exposure": "8.75%",
"Testing Exposure": "80.0%",
"API Exposure": "13.66%",
@@ -161962,8 +161962,8 @@
"Raw Cognitive Density": 0.931
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.71%",
- "Error & Exception Exposure": "87.37%",
+ "Cognitive Load Exposure": "66.59%",
+ "Error & Exception Exposure": "93.98%",
"Tech Debt Exposure": "11.43%",
"Testing Exposure": "80.0%",
"API Exposure": "12.74%",
@@ -161973,7 +161973,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.66%",
+ "Documentation Exposure": "99.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -163172,8 +163172,8 @@
"Raw Cognitive Density": 1.195
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.32%",
- "Error & Exception Exposure": "81.19%",
+ "Cognitive Load Exposure": "85.27%",
+ "Error & Exception Exposure": "88.27%",
"Tech Debt Exposure": "81.54%",
"Testing Exposure": "80.0%",
"API Exposure": "14.27%",
@@ -163183,7 +163183,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.42%",
+ "Documentation Exposure": "99.38%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -164885,8 +164885,8 @@
"Raw Cognitive Density": 1.034
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.63%",
- "Error & Exception Exposure": "87.65%",
+ "Cognitive Load Exposure": "75.62%",
+ "Error & Exception Exposure": "93.91%",
"Tech Debt Exposure": "22.51%",
"Testing Exposure": "80.0%",
"API Exposure": "13.05%",
@@ -164896,7 +164896,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.26%",
+ "Documentation Exposure": "99.21%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -169227,18 +169227,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "36.06%",
- "Error & Exception Exposure": "56.65%",
- "Tech Debt Exposure": "18.39%",
- "Testing Exposure": "20.65%",
+ "Cognitive Load Exposure": "34.93%",
+ "Error & Exception Exposure": "57.59%",
+ "Tech Debt Exposure": "17.42%",
+ "Testing Exposure": "19.85%",
"API Exposure": "4.04%",
- "Concurrency Exposure": "10.09%",
- "State Flux Exposure": "57.92%",
+ "Concurrency Exposure": "9.74%",
+ "State Flux Exposure": "57.44%",
"Commented Logic Exposure": "3.04%",
"Specification Exposure": "98.98%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.49%",
+ "Documentation Exposure": "31.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -169279,7 +169279,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
"API Exposure": "3.53%",
@@ -169289,7 +169289,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.59%",
+ "Documentation Exposure": "24.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -169457,7 +169457,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "3.53%",
@@ -169467,7 +169467,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -169631,21 +169631,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.165
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
- "Error & Exception Exposure": "85.01%",
+ "Cognitive Load Exposure": "8.79%",
+ "Error & Exception Exposure": "87.78%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.44%",
"API Exposure": "5.29%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.07%",
+ "Documentation Exposure": "50.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -169839,21 +169839,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.32
+ "Raw Cognitive Density": 1.265
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.72%",
- "Error & Exception Exposure": "81.44%",
+ "Cognitive Load Exposure": "88.7%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.66%",
+ "Testing Exposure": "2.63%",
"API Exposure": "7.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.37%",
+ "Documentation Exposure": "74.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -170047,13 +170047,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.144
+ "Raw Cognitive Density": 1.114
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.86%",
- "Error & Exception Exposure": "97.23%",
- "Tech Debt Exposure": "71.28%",
- "Testing Exposure": "2.71%",
+ "Cognitive Load Exposure": "81.07%",
+ "Error & Exception Exposure": "98.86%",
+ "Tech Debt Exposure": "53.78%",
+ "Testing Exposure": "2.68%",
"API Exposure": "8.2%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -170061,7 +170061,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "80.16%",
+ "Documentation Exposure": "70.47%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -170265,21 +170265,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.797
+ "Raw Cognitive Density": 0.77
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.72%",
- "Error & Exception Exposure": "60.38%",
+ "Cognitive Load Exposure": "52.03%",
+ "Error & Exception Exposure": "50.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.65%",
"API Exposure": "2.99%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.58%",
+ "State Flux Exposure": "99.53%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.55%",
+ "Documentation Exposure": "42.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -170523,13 +170523,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.032
+ "Raw Cognitive Density": 0.021
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.68%",
+ "Cognitive Load Exposure": "2.57%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -170693,13 +170693,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.108
+ "Raw Cognitive Density": 0.077
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.56%",
+ "Cognitive Load Exposure": "3.17%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -170863,12 +170863,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.069
+ "Raw Cognitive Density": 1.059
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.15%",
- "Error & Exception Exposure": "94.12%",
- "Tech Debt Exposure": "39.73%",
+ "Cognitive Load Exposure": "77.47%",
+ "Error & Exception Exposure": "97.31%",
+ "Tech Debt Exposure": "34.03%",
"Testing Exposure": "80.0%",
"API Exposure": "4.56%",
"Concurrency Exposure": "0.0%",
@@ -170877,7 +170877,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.58%",
+ "Documentation Exposure": "40.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -171191,13 +171191,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.42%",
+ "Cognitive Load Exposure": "5.36%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -171381,16 +171381,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.84
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.9%",
- "Error & Exception Exposure": "72.4%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -171581,21 +171581,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.88
+ "Raw Cognitive Density": 0.861
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.68%",
- "Error & Exception Exposure": "91.82%",
+ "Cognitive Load Exposure": "60.93%",
+ "Error & Exception Exposure": "95.26%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.75%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.89%",
+ "State Flux Exposure": "99.87%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "86.35%",
+ "Documentation Exposure": "81.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -171863,7 +171863,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.29%",
+ "Documentation Exposure": "35.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -172031,17 +172031,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -172205,21 +172205,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.54
+ "Raw Cognitive Density": 0.5
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.15%",
+ "Cognitive Load Exposure": "26.89%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.47%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -172383,21 +172383,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.96
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "69.85%",
+ "Error & Exception Exposure": "81.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "7.05%",
- "Concurrency Exposure": "99.18%",
- "State Flux Exposure": "99.88%",
+ "Concurrency Exposure": "99.04%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.82%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -172581,13 +172581,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.12
+ "Raw Cognitive Density": 1.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.46%",
- "Error & Exception Exposure": "87.87%",
+ "Cognitive Load Exposure": "78.92%",
+ "Error & Exception Exposure": "90.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.57%",
+ "Testing Exposure": "2.54%",
"API Exposure": "3.22%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -172595,7 +172595,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.54%",
+ "Documentation Exposure": "19.47%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -172759,21 +172759,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.877
+ "Raw Cognitive Density": 0.862
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.42%",
- "Error & Exception Exposure": "78.75%",
+ "Cognitive Load Exposure": "61.05%",
+ "Error & Exception Exposure": "83.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.44%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.79%",
+ "State Flux Exposure": "99.76%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "62.43%",
+ "Documentation Exposure": "53.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -173007,10 +173007,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.118
+ "Raw Cognitive Density": 0.078
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.69%",
+ "Cognitive Load Exposure": "3.19%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
@@ -173177,13 +173177,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.99%",
+ "Cognitive Load Exposure": "4.31%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -173351,17 +173351,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "95.26%",
- "Testing Exposure": "2.39%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "88.08%",
+ "Testing Exposure": "2.38%",
"API Exposure": "6.62%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "66.6%",
+ "Documentation Exposure": "45.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -173545,12 +173545,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.307
+ "Raw Cognitive Density": 1.296
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.29%",
- "Error & Exception Exposure": "98.01%",
- "Tech Debt Exposure": "28.51%",
+ "Cognitive Load Exposure": "89.88%",
+ "Error & Exception Exposure": "99.38%",
+ "Tech Debt Exposure": "23.03%",
"Testing Exposure": "80.0%",
"API Exposure": "6.03%",
"Concurrency Exposure": "0.0%",
@@ -173559,7 +173559,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "58.21%",
+ "Documentation Exposure": "52.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -173756,21 +173756,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.492
+ "Raw Cognitive Density": 1.487
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.11%",
- "Error & Exception Exposure": "74.02%",
- "Tech Debt Exposure": "9.74%",
+ "Cognitive Load Exposure": "95.02%",
+ "Error & Exception Exposure": "78.85%",
+ "Tech Debt Exposure": "9.07%",
"Testing Exposure": "80.0%",
"API Exposure": "11.61%",
- "Concurrency Exposure": "83.8%",
- "State Flux Exposure": "99.97%",
+ "Concurrency Exposure": "81.51%",
+ "State Flux Exposure": "99.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.93%",
+ "Documentation Exposure": "93.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -174740,17 +174740,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.92%",
+ "Error & Exception Exposure": "75.68%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "7.1%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.87%",
+ "State Flux Exposure": "97.6%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "76.24%",
+ "Documentation Exposure": "59.71%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -175114,16 +175114,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.363
+ "Raw Cognitive Density": 0.355
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.51%",
- "Error & Exception Exposure": "68.22%",
+ "Cognitive Load Exposure": "17.06%",
+ "Error & Exception Exposure": "71.71%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.23%",
+ "State Flux Exposure": "95.77%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -175304,21 +175304,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.495
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.5%",
+ "Cognitive Load Exposure": "22.44%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "7.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "78.89%",
+ "Documentation Exposure": "61.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -175512,21 +175512,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "74.89%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.07%",
+ "Documentation Exposure": "50.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -175880,21 +175880,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.464
+ "Raw Cognitive Density": 1.447
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.56%",
- "Error & Exception Exposure": "80.2%",
+ "Cognitive Load Exposure": "94.2%",
+ "Error & Exception Exposure": "85.08%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "5.3%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.8%",
+ "State Flux Exposure": "99.78%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "67.17%",
+ "Documentation Exposure": "59.03%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -176154,15 +176154,15 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "9.9%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.57%",
+ "Documentation Exposure": "90.77%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -176376,21 +176376,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
+ "Cognitive Load Exposure": "15.19%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "55.77%",
+ "Documentation Exposure": "36.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -176734,13 +176734,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.034
+ "Raw Cognitive Density": 1.007
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.68%",
- "Error & Exception Exposure": "95.54%",
+ "Cognitive Load Exposure": "73.63%",
+ "Error & Exception Exposure": "97.87%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.56%",
+ "Testing Exposure": "2.54%",
"API Exposure": "7.42%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -176748,7 +176748,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "71.88%",
+ "Documentation Exposure": "58.53%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -176956,9 +176956,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "82.39%",
+ "Error & Exception Exposure": "84.74%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "7.83%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -176966,7 +176966,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "79.82%",
+ "Documentation Exposure": "64.04%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -177164,17 +177164,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "66.82%",
+ "State Flux Exposure": "64.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.91%",
+ "Documentation Exposure": "50.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -177348,13 +177348,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.157
+ "Raw Cognitive Density": 0.118
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.53%",
- "Error & Exception Exposure": "66.76%",
+ "Cognitive Load Exposure": "7.38%",
+ "Error & Exception Exposure": "64.37%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "6.31%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -177362,7 +177362,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "68.22%",
+ "Documentation Exposure": "49.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -177550,17 +177550,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.07%",
+ "Documentation Exposure": "50.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -177914,21 +177914,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "70.3%",
- "Tech Debt Exposure": "95.26%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "88.08%",
+ "Testing Exposure": "2.42%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "55.77%",
+ "Documentation Exposure": "36.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -178102,13 +178102,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.97
+ "Raw Cognitive Density": 0.93
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.68%",
- "Error & Exception Exposure": "89.9%",
+ "Cognitive Load Exposure": "67.26%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.5%",
"API Exposure": "6.83%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -178116,7 +178116,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.07%",
+ "Documentation Exposure": "50.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -178300,13 +178300,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "13.24%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.67%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -178570,12 +178570,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.123
+ "Raw Cognitive Density": 1.116
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.01%",
- "Error & Exception Exposure": "92.27%",
- "Tech Debt Exposure": "19.19%",
+ "Cognitive Load Exposure": "78.56%",
+ "Error & Exception Exposure": "96.15%",
+ "Tech Debt Exposure": "16.78%",
"Testing Exposure": "80.0%",
"API Exposure": "3.84%",
"Concurrency Exposure": "0.0%",
@@ -178584,7 +178584,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.55%",
+ "Documentation Exposure": "27.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -178920,13 +178920,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.95
+ "Raw Cognitive Density": 0.91
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.72%",
- "Error & Exception Exposure": "89.2%",
+ "Cognitive Load Exposure": "52.38%",
+ "Error & Exception Exposure": "92.19%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.45%",
"API Exposure": "6.48%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -178934,7 +178934,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "66.58%",
+ "Documentation Exposure": "45.41%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -179124,12 +179124,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.46%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -179360,21 +179360,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.529
+ "Raw Cognitive Density": 0.49
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.27%",
- "Error & Exception Exposure": "68.15%",
+ "Cognitive Load Exposure": "26.13%",
+ "Error & Exception Exposure": "66.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.86%",
+ "Testing Exposure": "2.81%",
"API Exposure": "9.51%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.34%",
+ "State Flux Exposure": "13.85%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.21%",
+ "Documentation Exposure": "90.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -179758,13 +179758,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.963
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "83.78%",
+ "Cognitive Load Exposure": "70.1%",
+ "Error & Exception Exposure": "86.59%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.76%",
+ "Testing Exposure": "2.73%",
"API Exposure": "1.24%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -179772,7 +179772,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "64.53%",
+ "Documentation Exposure": "45.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -179970,17 +179970,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.02%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "9.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.84%",
+ "State Flux Exposure": "93.1%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "78.08%",
+ "Documentation Exposure": "69.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -180254,21 +180254,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.932
+ "Raw Cognitive Density": 0.916
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.43%",
- "Error & Exception Exposure": "69.94%",
+ "Cognitive Load Exposure": "65.99%",
+ "Error & Exception Exposure": "71.66%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.13%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.79%",
+ "State Flux Exposure": "99.77%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.76%",
+ "Documentation Exposure": "16.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -180612,21 +180612,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.7
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.02%",
- "Error & Exception Exposure": "79.83%",
+ "Cognitive Load Exposure": "41.1%",
+ "Error & Exception Exposure": "81.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.44%",
"API Exposure": "7.58%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "79.82%",
+ "Documentation Exposure": "64.04%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -180992,21 +180992,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.355
+ "Raw Cognitive Density": 0.333
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.06%",
- "Error & Exception Exposure": "63.53%",
+ "Cognitive Load Exposure": "15.88%",
+ "Error & Exception Exposure": "64.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.5%",
"API Exposure": "8.43%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "64.26%",
+ "State Flux Exposure": "61.46%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "86.52%",
+ "Documentation Exposure": "81.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -181310,16 +181310,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "21.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -181500,13 +181500,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.525
+ "Raw Cognitive Density": 0.47
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "28.89%",
+ "Cognitive Load Exposure": "24.57%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.66%",
+ "Testing Exposure": "2.64%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -181906,7 +181906,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -181914,7 +181914,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -182092,7 +182092,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.59%",
+ "Documentation Exposure": "24.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -182256,21 +182256,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.345
+ "Raw Cognitive Density": 1.343
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.52%",
- "Error & Exception Exposure": "88.97%",
- "Tech Debt Exposure": "9.27%",
+ "Cognitive Load Exposure": "91.47%",
+ "Error & Exception Exposure": "93.75%",
+ "Tech Debt Exposure": "8.94%",
"Testing Exposure": "80.0%",
"API Exposure": "2.93%",
- "Concurrency Exposure": "38.32%",
+ "Concurrency Exposure": "34.62%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "12.47%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.92%",
+ "Documentation Exposure": "21.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -183024,21 +183024,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.583
+ "Raw Cognitive Density": 1.544
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.56%",
- "Error & Exception Exposure": "94.54%",
+ "Cognitive Load Exposure": "95.99%",
+ "Error & Exception Exposure": "96.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.8%",
+ "Testing Exposure": "2.76%",
"API Exposure": "5.28%",
- "Concurrency Exposure": "93.15%",
+ "Concurrency Exposure": "92.06%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.07%",
+ "Documentation Exposure": "49.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -183212,21 +183212,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.86
+ "Raw Cognitive Density": 0.82
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.83%",
- "Error & Exception Exposure": "74.89%",
+ "Cognitive Load Exposure": "56.95%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.57%",
+ "Testing Exposure": "2.55%",
"API Exposure": "6.89%",
- "Concurrency Exposure": "93.5%",
- "State Flux Exposure": "97.07%",
+ "Concurrency Exposure": "92.46%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.82%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -183410,21 +183410,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.8
+ "Raw Cognitive Density": 0.76
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.98%",
- "Error & Exception Exposure": "86.58%",
+ "Cognitive Load Exposure": "51.0%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.7%",
"API Exposure": "5.59%",
- "Concurrency Exposure": "63.03%",
- "State Flux Exposure": "57.44%",
+ "Concurrency Exposure": "59.23%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.25%",
+ "Documentation Exposure": "48.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -183598,21 +183598,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.341
+ "Raw Cognitive Density": 1.317
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.42%",
- "Error & Exception Exposure": "89.26%",
+ "Cognitive Load Exposure": "90.62%",
+ "Error & Exception Exposure": "93.01%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.74%",
+ "Testing Exposure": "2.7%",
"API Exposure": "6.03%",
- "Concurrency Exposure": "47.39%",
+ "Concurrency Exposure": "43.42%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "43.91%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.52%",
+ "Documentation Exposure": "38.66%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -183796,11 +183796,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.14
+ "Raw Cognitive Density": 2.116
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.62%",
- "Error & Exception Exposure": "91.62%",
+ "Cognitive Load Exposure": "99.58%",
+ "Error & Exception Exposure": "94.7%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.78%",
@@ -183810,7 +183810,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "82.5%",
+ "Documentation Exposure": "73.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -184034,21 +184034,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "66.98%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "5.59%",
- "Concurrency Exposure": "93.5%",
- "State Flux Exposure": "21.42%",
+ "Concurrency Exposure": "92.46%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.25%",
+ "Documentation Exposure": "48.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -184226,9 +184226,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "86.58%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -184422,10 +184422,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -184592,21 +184592,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "11.51%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.23%",
+ "Documentation Exposure": "22.59%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -184778,7 +184778,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.48%",
"API Exposure": "7.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -184786,7 +184786,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.63%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -185016,17 +185016,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "55.77%",
+ "Documentation Exposure": "36.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -185200,12 +185200,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.308
+ "Raw Cognitive Density": 1.285
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.31%",
- "Error & Exception Exposure": "98.4%",
- "Tech Debt Exposure": "78.23%",
+ "Cognitive Load Exposure": "89.47%",
+ "Error & Exception Exposure": "99.49%",
+ "Tech Debt Exposure": "66.77%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -185390,10 +185390,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -185560,10 +185560,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.027
+ "Raw Cognitive Density": 0.018
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.63%",
+ "Cognitive Load Exposure": "2.54%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
@@ -185734,17 +185734,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "8.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "77.93%",
+ "Documentation Exposure": "59.59%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -185938,13 +185938,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.25
+ "Raw Cognitive Density": 1.21
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.08%",
- "Error & Exception Exposure": "91.52%",
+ "Cognitive Load Exposure": "86.29%",
+ "Error & Exception Exposure": "94.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.65%",
+ "Testing Exposure": "2.63%",
"API Exposure": "3.41%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -185952,7 +185952,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.59%",
+ "Documentation Exposure": "24.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -186116,13 +186116,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.31%",
+ "Cognitive Load Exposure": "3.72%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -186286,10 +186286,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.125
+ "Raw Cognitive Density": 0.089
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.79%",
+ "Cognitive Load Exposure": "3.32%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
@@ -186624,13 +186624,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.033
+ "Raw Cognitive Density": 0.024
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.68%",
+ "Cognitive Load Exposure": "2.6%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "5.97%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -186924,11 +186924,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.168
+ "Raw Cognitive Density": 1.158
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.2%",
- "Error & Exception Exposure": "84.93%",
+ "Cognitive Load Exposure": "83.65%",
+ "Error & Exception Exposure": "89.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.23%",
@@ -186938,7 +186938,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "78.39%",
+ "Documentation Exposure": "73.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -187256,17 +187256,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "67.54%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.07%",
+ "Documentation Exposure": "50.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -187450,11 +187450,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.109
+ "Raw Cognitive Density": 1.087
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.76%",
- "Error & Exception Exposure": "97.76%",
+ "Cognitive Load Exposure": "79.38%",
+ "Error & Exception Exposure": "99.2%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "1.92%",
@@ -187464,7 +187464,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.84%",
+ "Documentation Exposure": "32.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -187668,11 +187668,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.272
+ "Raw Cognitive Density": 1.263
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.99%",
- "Error & Exception Exposure": "97.47%",
+ "Cognitive Load Exposure": "88.63%",
+ "Error & Exception Exposure": "99.16%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.77%",
@@ -187682,7 +187682,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "52.08%",
+ "Documentation Exposure": "45.83%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -187946,21 +187946,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.34
+ "Raw Cognitive Density": 1.336
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.38%",
- "Error & Exception Exposure": "91.72%",
- "Tech Debt Exposure": "21.51%",
+ "Cognitive Load Exposure": "91.24%",
+ "Error & Exception Exposure": "95.75%",
+ "Tech Debt Exposure": "19.79%",
"Testing Exposure": "80.0%",
"API Exposure": "8.34%",
- "Concurrency Exposure": "34.44%",
+ "Concurrency Exposure": "30.92%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "72.17%",
+ "Documentation Exposure": "68.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -188514,21 +188514,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.349
+ "Raw Cognitive Density": 1.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.64%",
- "Error & Exception Exposure": "92.49%",
- "Tech Debt Exposure": "21.09%",
+ "Cognitive Load Exposure": "91.38%",
+ "Error & Exception Exposure": "96.0%",
+ "Tech Debt Exposure": "17.74%",
"Testing Exposure": "80.0%",
"API Exposure": "2.57%",
- "Concurrency Exposure": "56.48%",
+ "Concurrency Exposure": "52.51%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.88%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.77%",
+ "Documentation Exposure": "16.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -188792,21 +188792,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.94
+ "Raw Cognitive Density": 1.934
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.15%",
- "Error & Exception Exposure": "96.44%",
- "Tech Debt Exposure": "69.92%",
+ "Cognitive Load Exposure": "99.13%",
+ "Error & Exception Exposure": "98.62%",
+ "Tech Debt Exposure": "67.78%",
"Testing Exposure": "80.0%",
"API Exposure": "7.66%",
- "Concurrency Exposure": "88.6%",
+ "Concurrency Exposure": "86.88%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "9.5%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.91%",
+ "Documentation Exposure": "22.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -189170,12 +189170,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.752
+ "Raw Cognitive Density": 1.751
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.82%",
- "Error & Exception Exposure": "97.97%",
- "Tech Debt Exposure": "10.23%",
+ "Cognitive Load Exposure": "94.21%",
+ "Error & Exception Exposure": "99.43%",
+ "Tech Debt Exposure": "10.02%",
"Testing Exposure": "80.0%",
"API Exposure": "8.36%",
"Concurrency Exposure": "0.0%",
@@ -189184,7 +189184,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.13%",
+ "Documentation Exposure": "39.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -190248,21 +190248,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.393
+ "Raw Cognitive Density": 1.384
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.89%",
- "Error & Exception Exposure": "80.01%",
+ "Cognitive Load Exposure": "92.65%",
+ "Error & Exception Exposure": "85.53%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.93%",
+ "State Flux Exposure": "99.92%",
"Commented Logic Exposure": "8.29%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.63%",
+ "Documentation Exposure": "34.88%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -190759,18 +190759,18 @@
"Raw Cognitive Density": 1.327
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.96%",
- "Error & Exception Exposure": "97.67%",
- "Tech Debt Exposure": "18.49%",
+ "Cognitive Load Exposure": "90.94%",
+ "Error & Exception Exposure": "99.3%",
+ "Tech Debt Exposure": "18.21%",
"Testing Exposure": "80.0%",
"API Exposure": "9.89%",
- "Concurrency Exposure": "52.22%",
+ "Concurrency Exposure": "48.22%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "9.15%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.7%",
+ "Documentation Exposure": "24.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -192514,21 +192514,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.859
+ "Raw Cognitive Density": 1.858
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.12%",
- "Error & Exception Exposure": "90.74%",
- "Tech Debt Exposure": "22.28%",
+ "Cognitive Load Exposure": "97.63%",
+ "Error & Exception Exposure": "94.68%",
+ "Tech Debt Exposure": "21.77%",
"Testing Exposure": "80.0%",
"API Exposure": "1.09%",
- "Concurrency Exposure": "45.05%",
+ "Concurrency Exposure": "41.13%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "14.63%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.72%",
+ "Documentation Exposure": "18.34%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -193222,12 +193222,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.263
+ "Raw Cognitive Density": 1.258
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.63%",
- "Error & Exception Exposure": "81.46%",
- "Tech Debt Exposure": "20.51%",
+ "Cognitive Load Exposure": "88.42%",
+ "Error & Exception Exposure": "84.6%",
+ "Tech Debt Exposure": "18.4%",
"Testing Exposure": "80.0%",
"API Exposure": "0.3%",
"Concurrency Exposure": "0.0%",
@@ -193620,16 +193620,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.584
+ "Raw Cognitive Density": 0.569
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.02%",
- "Error & Exception Exposure": "69.43%",
+ "Cognitive Load Exposure": "32.67%",
+ "Error & Exception Exposure": "72.62%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.82%",
+ "State Flux Exposure": "97.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -193960,16 +193960,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -194155,7 +194155,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -194370,13 +194370,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
+ "Cognitive Load Exposure": "21.08%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.71%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -194600,16 +194600,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.648
+ "Raw Cognitive Density": 0.635
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.92%",
- "Error & Exception Exposure": "73.39%",
- "Tech Debt Exposure": "88.85%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "38.66%",
+ "Error & Exception Exposure": "77.8%",
+ "Tech Debt Exposure": "86.44%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.71%",
+ "State Flux Exposure": "99.68%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -195035,7 +195035,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -195266,7 +195266,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "8.19%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -195274,7 +195274,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "78.41%",
+ "Documentation Exposure": "60.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -195445,18 +195445,18 @@
"Static: Literature & Documentation": "14.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "37.18%",
- "Error & Exception Exposure": "59.45%",
- "Tech Debt Exposure": "13.1%",
+ "Cognitive Load Exposure": "36.83%",
+ "Error & Exception Exposure": "60.05%",
+ "Tech Debt Exposure": "12.71%",
"Testing Exposure": "68.57%",
"API Exposure": "5.02%",
- "Concurrency Exposure": "2.73%",
- "State Flux Exposure": "52.14%",
+ "Concurrency Exposure": "2.24%",
+ "State Flux Exposure": "50.57%",
"Commented Logic Exposure": "2.82%",
"Specification Exposure": "85.71%",
"Instability Exposure": "42.86%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.36%",
+ "Documentation Exposure": "35.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -195496,8 +195496,8 @@
"Raw Cognitive Density": 1.52
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.58%",
- "Error & Exception Exposure": "98.8%",
+ "Cognitive Load Exposure": "94.4%",
+ "Error & Exception Exposure": "99.72%",
"Tech Debt Exposure": "7.92%",
"Testing Exposure": "80.0%",
"API Exposure": "14.53%",
@@ -195507,7 +195507,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.76%",
+ "Documentation Exposure": "99.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -196803,7 +196803,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "93.94%",
- "Error & Exception Exposure": "98.42%",
+ "Error & Exception Exposure": "99.6%",
"Tech Debt Exposure": "20.13%",
"Testing Exposure": "80.0%",
"API Exposure": "13.64%",
@@ -196813,7 +196813,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.71%",
+ "Documentation Exposure": "99.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -199944,18 +199944,18 @@
"Raw Cognitive Density": 0.404
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.86%",
- "Error & Exception Exposure": "62.14%",
- "Tech Debt Exposure": "10.86%",
+ "Cognitive Load Exposure": "19.72%",
+ "Error & Exception Exposure": "65.49%",
+ "Tech Debt Exposure": "10.75%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "87.83%",
+ "State Flux Exposure": "85.77%",
"Commented Logic Exposure": "5.13%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.03%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -200236,16 +200236,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.519
+ "Raw Cognitive Density": 0.518
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.79%",
- "Error & Exception Exposure": "55.18%",
- "Tech Debt Exposure": "9.39%",
+ "Cognitive Load Exposure": "24.0%",
+ "Error & Exception Exposure": "56.49%",
+ "Tech Debt Exposure": "9.22%",
"Testing Exposure": "80.0%",
"API Exposure": "6.95%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "45.57%",
+ "State Flux Exposure": "41.15%",
"Commented Logic Exposure": "4.94%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -200644,21 +200644,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.281
+ "Raw Cognitive Density": 0.277
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.3%",
- "Error & Exception Exposure": "52.42%",
- "Tech Debt Exposure": "28.87%",
+ "Cognitive Load Exposure": "13.1%",
+ "Error & Exception Exposure": "52.31%",
+ "Tech Debt Exposure": "27.29%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "12.65%",
+ "State Flux Exposure": "10.79%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.16%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -200942,16 +200942,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.271
+ "Raw Cognitive Density": 0.266
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.82%",
- "Error & Exception Exposure": "49.16%",
- "Tech Debt Exposure": "14.55%",
+ "Cognitive Load Exposure": "12.63%",
+ "Error & Exception Exposure": "46.75%",
+ "Tech Debt Exposure": "13.63%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "19.11%",
- "State Flux Exposure": "18.91%",
+ "Concurrency Exposure": "15.67%",
+ "State Flux Exposure": "16.3%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -201136,13 +201136,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "19.67%",
- "Error & Exception Exposure": "10.54%",
- "Tech Debt Exposure": "34.81%",
- "Testing Exposure": "35.7%",
+ "Cognitive Load Exposure": "19.69%",
+ "Error & Exception Exposure": "10.57%",
+ "Tech Debt Exposure": "34.99%",
+ "Testing Exposure": "35.71%",
"API Exposure": "0.51%",
- "Concurrency Exposure": "11.33%",
- "State Flux Exposure": "33.54%",
+ "Concurrency Exposure": "12.01%",
+ "State Flux Exposure": "34.34%",
"Commented Logic Exposure": "6.84%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -201187,12 +201187,12 @@
"Raw Cognitive Density": 0.402
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.96%",
- "Error & Exception Exposure": "17.75%",
- "Tech Debt Exposure": "20.03%",
+ "Cognitive Load Exposure": "9.97%",
+ "Error & Exception Exposure": "17.79%",
+ "Tech Debt Exposure": "20.18%",
"Testing Exposure": "80.0%",
"API Exposure": "0.1%",
- "Concurrency Exposure": "30.23%",
+ "Concurrency Exposure": "31.95%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.58%",
"Specification Exposure": "100.0%",
@@ -203835,9 +203835,9 @@
"Raw Cognitive Density": 0.77
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.98%",
+ "Cognitive Load Exposure": "26.02%",
"Error & Exception Exposure": "0.63%",
- "Tech Debt Exposure": "16.18%",
+ "Tech Debt Exposure": "16.38%",
"Testing Exposure": "80.0%",
"API Exposure": "1.6%",
"Concurrency Exposure": "0.0%",
@@ -205459,13 +205459,13 @@
"Raw Cognitive Density": 0.538
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.98%",
- "Error & Exception Exposure": "4.4%",
- "Tech Debt Exposure": "26.63%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "15.0%",
+ "Error & Exception Exposure": "4.41%",
+ "Tech Debt Exposure": "26.85%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.93%",
- "Concurrency Exposure": "26.87%",
- "State Flux Exposure": "30.7%",
+ "Concurrency Exposure": "28.47%",
+ "State Flux Exposure": "31.99%",
"Commented Logic Exposure": "10.73%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -208878,13 +208878,13 @@
"Raw Cognitive Density": 0.427
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.78%",
- "Error & Exception Exposure": "7.87%",
- "Tech Debt Exposure": "17.53%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "10.79%",
+ "Error & Exception Exposure": "7.9%",
+ "Tech Debt Exposure": "17.7%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.15%",
- "Concurrency Exposure": "22.24%",
- "State Flux Exposure": "22.29%",
+ "Concurrency Exposure": "23.66%",
+ "State Flux Exposure": "23.35%",
"Commented Logic Exposure": "10.44%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -211789,13 +211789,13 @@
"Raw Cognitive Density": 0.558
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.85%",
- "Error & Exception Exposure": "16.07%",
- "Tech Debt Exposure": "42.23%",
- "Testing Exposure": "2.47%",
+ "Cognitive Load Exposure": "15.86%",
+ "Error & Exception Exposure": "16.11%",
+ "Tech Debt Exposure": "42.47%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.13%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "31.91%",
+ "State Flux Exposure": "33.22%",
"Commented Logic Exposure": "5.45%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -214945,16 +214945,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.763
+ "Raw Cognitive Density": 0.764
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.66%",
- "Error & Exception Exposure": "13.07%",
+ "Cognitive Load Exposure": "25.68%",
+ "Error & Exception Exposure": "13.1%",
"Tech Debt Exposure": "99.58%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.54%",
"API Exposure": "0.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "60.24%",
+ "State Flux Exposure": "61.66%",
"Commented Logic Exposure": "5.09%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -219214,16 +219214,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.949
+ "Raw Cognitive Density": 0.95
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.47%",
- "Error & Exception Exposure": "13.98%",
- "Tech Debt Exposure": "21.48%",
+ "Cognitive Load Exposure": "34.5%",
+ "Error & Exception Exposure": "14.04%",
+ "Tech Debt Exposure": "21.76%",
"Testing Exposure": "80.0%",
"API Exposure": "0.48%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "89.62%",
+ "State Flux Exposure": "90.16%",
"Commented Logic Exposure": "5.36%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -219948,18 +219948,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "74.01%",
- "Error & Exception Exposure": "68.34%",
- "Tech Debt Exposure": "20.15%",
- "Testing Exposure": "47.55%",
+ "Cognitive Load Exposure": "73.23%",
+ "Error & Exception Exposure": "64.76%",
+ "Tech Debt Exposure": "19.28%",
+ "Testing Exposure": "34.94%",
"API Exposure": "0.66%",
- "Concurrency Exposure": "26.19%",
- "State Flux Exposure": "91.16%",
+ "Concurrency Exposure": "25.58%",
+ "State Flux Exposure": "91.11%",
"Commented Logic Exposure": "2.82%",
"Specification Exposure": "86.05%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.43%",
+ "Documentation Exposure": "20.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -219996,21 +219996,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.152
+ "Raw Cognitive Density": 1.142
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.31%",
- "Error & Exception Exposure": "92.66%",
+ "Cognitive Load Exposure": "82.76%",
+ "Error & Exception Exposure": "94.75%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.2%",
- "Concurrency Exposure": "62.15%",
+ "Concurrency Exposure": "58.32%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.22%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.51%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -220332,21 +220332,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.583
+ "Raw Cognitive Density": 1.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.55%",
- "Error & Exception Exposure": "90.4%",
- "Tech Debt Exposure": "14.75%",
+ "Cognitive Load Exposure": "96.51%",
+ "Error & Exception Exposure": "88.15%",
+ "Tech Debt Exposure": "14.23%",
"Testing Exposure": "80.0%",
"API Exposure": "0.13%",
- "Concurrency Exposure": "41.79%",
+ "Concurrency Exposure": "37.96%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.6%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.92%",
+ "Documentation Exposure": "13.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -221119,13 +221119,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.206
+ "Raw Cognitive Density": 1.201
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.1%",
- "Error & Exception Exposure": "70.04%",
- "Tech Debt Exposure": "78.94%",
- "Testing Exposure": "2.63%",
+ "Cognitive Load Exposure": "85.85%",
+ "Error & Exception Exposure": "43.75%",
+ "Tech Debt Exposure": "76.7%",
+ "Testing Exposure": "2.6%",
"API Exposure": "0.23%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -221133,7 +221133,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.06%",
+ "Documentation Exposure": "22.18%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -221486,13 +221486,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.083
+ "Raw Cognitive Density": 3.044
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.99%",
- "Error & Exception Exposure": "98.21%",
+ "Error & Exception Exposure": "98.15%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.71%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -221676,11 +221676,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.135
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.36%",
- "Error & Exception Exposure": "87.62%",
+ "Cognitive Load Exposure": "81.48%",
+ "Error & Exception Exposure": "91.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.26%",
@@ -221690,7 +221690,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.53%",
+ "Documentation Exposure": "13.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -221904,12 +221904,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.016
+ "Raw Cognitive Density": 1.009
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.38%",
- "Error & Exception Exposure": "3.02%",
- "Tech Debt Exposure": "13.46%",
+ "Cognitive Load Exposure": "73.82%",
+ "Error & Exception Exposure": "0.13%",
+ "Tech Debt Exposure": "11.47%",
"Testing Exposure": "80.0%",
"API Exposure": "5.87%",
"Concurrency Exposure": "0.0%",
@@ -221918,7 +221918,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "83.48%",
+ "Documentation Exposure": "80.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -222255,11 +222255,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.311
+ "Raw Cognitive Density": 2.276
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.81%",
- "Error & Exception Exposure": "97.78%",
+ "Cognitive Load Exposure": "99.78%",
+ "Error & Exception Exposure": "98.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -222513,16 +222513,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.64
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "81.44%",
+ "Cognitive Load Exposure": "39.17%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -222683,21 +222683,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.201
+ "Raw Cognitive Density": 1.195
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.85%",
- "Error & Exception Exposure": "86.7%",
- "Tech Debt Exposure": "47.27%",
+ "Cognitive Load Exposure": "85.59%",
+ "Error & Exception Exposure": "81.17%",
+ "Tech Debt Exposure": "43.88%",
"Testing Exposure": "80.0%",
"API Exposure": "1.68%",
- "Concurrency Exposure": "40.8%",
+ "Concurrency Exposure": "37.0%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.04%",
+ "Documentation Exposure": "53.73%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -223283,10 +223283,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -223451,11 +223451,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.248
+ "Raw Cognitive Density": 1.238
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.98%",
- "Error & Exception Exposure": "96.92%",
+ "Cognitive Load Exposure": "87.58%",
+ "Error & Exception Exposure": "97.2%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.17%",
@@ -223465,7 +223465,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.55%",
+ "Documentation Exposure": "16.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -223791,12 +223791,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.063
+ "Raw Cognitive Density": 1.057
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.8%",
- "Error & Exception Exposure": "75.01%",
- "Tech Debt Exposure": "16.27%",
+ "Cognitive Load Exposure": "77.36%",
+ "Error & Exception Exposure": "74.64%",
+ "Tech Debt Exposure": "14.25%",
"Testing Exposure": "80.0%",
"API Exposure": "0.34%",
"Concurrency Exposure": "0.0%",
@@ -223805,7 +223805,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.53%",
+ "Documentation Exposure": "24.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -224239,12 +224239,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.267
+ "Raw Cognitive Density": 1.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.76%",
- "Error & Exception Exposure": "88.15%",
- "Tech Debt Exposure": "97.97%",
+ "Cognitive Load Exposure": "88.49%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "97.61%",
"Testing Exposure": "80.0%",
"API Exposure": "0.41%",
"Concurrency Exposure": "0.0%",
@@ -224253,7 +224253,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.1%",
+ "Documentation Exposure": "31.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -224619,12 +224619,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.587
+ "Raw Cognitive Density": 4.585
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "63.91%",
- "Tech Debt Exposure": "23.67%",
+ "Error & Exception Exposure": "42.26%",
+ "Tech Debt Exposure": "22.66%",
"Testing Exposure": "80.0%",
"API Exposure": "0.16%",
"Concurrency Exposure": "100.0%",
@@ -224633,7 +224633,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.16%",
+ "Documentation Exposure": "17.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -225544,17 +225544,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "3.02%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.82%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -225738,13 +225738,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.297
+ "Raw Cognitive Density": 2.284
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.8%",
- "Error & Exception Exposure": "87.37%",
- "Tech Debt Exposure": "91.67%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "99.78%",
+ "Error & Exception Exposure": "88.45%",
+ "Tech Debt Exposure": "88.7%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -226028,13 +226028,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.787
+ "Raw Cognitive Density": 1.785
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.45%",
- "Error & Exception Exposure": "98.66%",
- "Tech Debt Exposure": "14.39%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "98.43%",
+ "Error & Exception Exposure": "99.14%",
+ "Tech Debt Exposure": "13.64%",
+ "Testing Exposure": "2.72%",
"API Exposure": "0.48%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -226042,7 +226042,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.01%",
+ "Documentation Exposure": "21.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -226808,21 +226808,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.392
+ "Raw Cognitive Density": 1.388
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.88%",
- "Error & Exception Exposure": "98.12%",
- "Tech Debt Exposure": "16.11%",
+ "Cognitive Load Exposure": "92.77%",
+ "Error & Exception Exposure": "98.99%",
+ "Tech Debt Exposure": "14.8%",
"Testing Exposure": "80.0%",
"API Exposure": "0.09%",
- "Concurrency Exposure": "95.13%",
+ "Concurrency Exposure": "94.33%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.09%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.19%",
+ "Documentation Exposure": "17.03%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -227238,13 +227238,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.794
+ "Raw Cognitive Density": 2.787
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.97%",
- "Error & Exception Exposure": "88.81%",
- "Tech Debt Exposure": "35.5%",
- "Testing Exposure": "80.0%",
+ "Error & Exception Exposure": "75.99%",
+ "Tech Debt Exposure": "32.56%",
+ "Testing Exposure": "2.8%",
"API Exposure": "0.72%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -227252,7 +227252,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.55%",
+ "Documentation Exposure": "36.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -227608,13 +227608,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.064
+ "Raw Cognitive Density": 1.036
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.85%",
- "Error & Exception Exposure": "84.02%",
+ "Cognitive Load Exposure": "75.82%",
+ "Error & Exception Exposure": "86.61%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.51%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -227796,21 +227796,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.172
+ "Raw Cognitive Density": 1.169
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.39%",
- "Error & Exception Exposure": "25.07%",
- "Tech Debt Exposure": "12.59%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "84.25%",
+ "Error & Exception Exposure": "4.57%",
+ "Tech Debt Exposure": "11.88%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "56.06%",
+ "Concurrency Exposure": "52.09%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.18%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.46%",
+ "Documentation Exposure": "12.55%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -228167,16 +228167,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.649
+ "Raw Cognitive Density": 0.614
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.05%",
- "Error & Exception Exposure": "78.34%",
+ "Cognitive Load Exposure": "36.73%",
+ "Error & Exception Exposure": "80.26%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.82%",
+ "State Flux Exposure": "99.8%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -228345,21 +228345,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.78
+ "Raw Cognitive Density": 1.776
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.4%",
- "Error & Exception Exposure": "98.91%",
- "Tech Debt Exposure": "12.03%",
- "Testing Exposure": "2.59%",
+ "Cognitive Load Exposure": "98.38%",
+ "Error & Exception Exposure": "99.41%",
+ "Tech Debt Exposure": "11.08%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.11%",
- "Concurrency Exposure": "99.9%",
+ "Concurrency Exposure": "99.88%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.29%",
+ "Documentation Exposure": "16.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -228855,12 +228855,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.186
+ "Raw Cognitive Density": 2.168
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.68%",
- "Error & Exception Exposure": "76.19%",
- "Tech Debt Exposure": "98.36%",
+ "Cognitive Load Exposure": "99.66%",
+ "Error & Exception Exposure": "63.5%",
+ "Tech Debt Exposure": "97.43%",
"Testing Exposure": "80.0%",
"API Exposure": "0.17%",
"Concurrency Exposure": "100.0%",
@@ -228869,7 +228869,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "51.41%",
+ "Documentation Exposure": "37.4%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -229065,13 +229065,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.938
+ "Raw Cognitive Density": 0.909
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.0%",
- "Error & Exception Exposure": "96.4%",
+ "Cognitive Load Exposure": "65.42%",
+ "Error & Exception Exposure": "98.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -229263,12 +229263,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.299
+ "Raw Cognitive Density": 1.289
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "89.97%",
- "Error & Exception Exposure": "93.75%",
- "Tech Debt Exposure": "39.25%",
+ "Cognitive Load Exposure": "89.62%",
+ "Error & Exception Exposure": "95.38%",
+ "Tech Debt Exposure": "33.63%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -229277,7 +229277,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.09%",
+ "Documentation Exposure": "21.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -229563,13 +229563,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.031
+ "Raw Cognitive Density": 1.016
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.44%",
- "Error & Exception Exposure": "93.87%",
- "Tech Debt Exposure": "96.88%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "74.36%",
+ "Error & Exception Exposure": "96.38%",
+ "Tech Debt Exposure": "95.59%",
+ "Testing Exposure": "2.58%",
"API Exposure": "2.13%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -229577,7 +229577,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.77%",
+ "Documentation Exposure": "53.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -229861,13 +229861,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.0%",
- "Error & Exception Exposure": "78.78%",
+ "Cognitive Load Exposure": "43.05%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -230039,21 +230039,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.371
+ "Raw Cognitive Density": 1.361
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.29%",
- "Error & Exception Exposure": "33.53%",
+ "Cognitive Load Exposure": "92.0%",
+ "Error & Exception Exposure": "12.36%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "25.85%",
+ "Concurrency Exposure": "22.9%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.74%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.2%",
+ "Documentation Exposure": "23.36%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -230329,13 +230329,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.277
+ "Raw Cognitive Density": 2.274
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.78%",
- "Error & Exception Exposure": "64.39%",
- "Tech Debt Exposure": "34.03%",
- "Testing Exposure": "2.61%",
+ "Error & Exception Exposure": "43.24%",
+ "Tech Debt Exposure": "32.78%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.09%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -230343,7 +230343,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.76%",
+ "Documentation Exposure": "14.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -231220,13 +231220,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.999
+ "Raw Cognitive Density": 0.993
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.0%",
- "Error & Exception Exposure": "83.03%",
- "Tech Debt Exposure": "73.21%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "72.58%",
+ "Error & Exception Exposure": "83.59%",
+ "Tech Debt Exposure": "70.54%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.05%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -231234,7 +231234,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.59%",
+ "Documentation Exposure": "11.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -231500,11 +231500,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.658
+ "Raw Cognitive Density": 1.655
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.42%",
- "Error & Exception Exposure": "2.53%",
+ "Cognitive Load Exposure": "97.39%",
+ "Error & Exception Exposure": "0.11%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -231514,7 +231514,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.4%",
+ "Documentation Exposure": "12.59%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -232038,11 +232038,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.724
+ "Raw Cognitive Density": 0.718
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.39%",
- "Error & Exception Exposure": "78.26%",
+ "Cognitive Load Exposure": "46.81%",
+ "Error & Exception Exposure": "83.42%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -232232,17 +232232,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "5.29%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.82%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -232406,21 +232406,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.458
+ "Raw Cognitive Density": 1.455
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.44%",
- "Error & Exception Exposure": "98.78%",
- "Tech Debt Exposure": "20.45%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "94.37%",
+ "Error & Exception Exposure": "99.1%",
+ "Tech Debt Exposure": "19.2%",
+ "Testing Exposure": "2.73%",
"API Exposure": "0.14%",
- "Concurrency Exposure": "66.89%",
+ "Concurrency Exposure": "63.25%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.85%",
+ "Documentation Exposure": "16.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -233046,13 +233046,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -233214,12 +233214,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.083
+ "Raw Cognitive Density": 1.077
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.14%",
- "Error & Exception Exposure": "13.43%",
- "Tech Debt Exposure": "15.79%",
+ "Cognitive Load Exposure": "78.74%",
+ "Error & Exception Exposure": "1.36%",
+ "Tech Debt Exposure": "13.89%",
"Testing Exposure": "80.0%",
"API Exposure": "0.19%",
"Concurrency Exposure": "0.0%",
@@ -233228,7 +233228,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.74%",
+ "Documentation Exposure": "23.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -233632,13 +233632,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -233810,13 +233810,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.833
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.26%",
- "Error & Exception Exposure": "79.78%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "81.76%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.98%",
@@ -233988,11 +233988,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.313
+ "Raw Cognitive Density": 1.305
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.48%",
- "Error & Exception Exposure": "98.33%",
+ "Cognitive Load Exposure": "90.19%",
+ "Error & Exception Exposure": "99.14%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.08%",
@@ -234002,7 +234002,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.34%",
+ "Documentation Exposure": "26.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -234276,15 +234276,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.405
+ "Raw Cognitive Density": 1.399
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.22%",
- "Error & Exception Exposure": "1.87%",
- "Tech Debt Exposure": "13.81%",
- "Testing Exposure": "2.51%",
+ "Cognitive Load Exposure": "93.05%",
+ "Error & Exception Exposure": "0.07%",
+ "Tech Debt Exposure": "12.43%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "37.78%",
+ "Concurrency Exposure": "34.09%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -234624,13 +234624,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.096
+ "Raw Cognitive Density": 1.087
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.93%",
- "Error & Exception Exposure": "26.34%",
+ "Cognitive Load Exposure": "79.41%",
+ "Error & Exception Exposure": "5.75%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -234638,7 +234638,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.69%",
+ "Documentation Exposure": "20.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -234932,13 +234932,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.02
+ "Raw Cognitive Density": 0.98
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.65%",
- "Error & Exception Exposure": "85.01%",
+ "Cognitive Load Exposure": "71.5%",
+ "Error & Exception Exposure": "87.78%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.48%",
"API Exposure": "6.17%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -234946,7 +234946,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "96.5%",
+ "Documentation Exposure": "93.51%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -235106,18 +235106,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "24.28%",
- "Error & Exception Exposure": "50.0%",
- "Tech Debt Exposure": "12.64%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "22.29%",
+ "Error & Exception Exposure": "42.57%",
+ "Tech Debt Exposure": "12.38%",
+ "Testing Exposure": "49.0%",
"API Exposure": "3.65%",
- "Concurrency Exposure": "10.77%",
- "State Flux Exposure": "12.06%",
+ "Concurrency Exposure": "8.49%",
+ "State Flux Exposure": "10.88%",
"Commented Logic Exposure": "5.11%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.11%",
+ "Documentation Exposure": "33.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -235157,10 +235157,10 @@
"Raw Cognitive Density": 0.577
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.54%",
- "Error & Exception Exposure": "37.95%",
- "Tech Debt Exposure": "15.61%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "16.66%",
+ "Error & Exception Exposure": "25.04%",
+ "Tech Debt Exposure": "15.31%",
+ "Testing Exposure": "2.53%",
"API Exposure": "2.19%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -235168,7 +235168,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.69%",
+ "Documentation Exposure": "16.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -237175,18 +237175,18 @@
"Raw Cognitive Density": 0.454
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.73%",
- "Error & Exception Exposure": "59.02%",
- "Tech Debt Exposure": "16.61%",
+ "Cognitive Load Exposure": "11.71%",
+ "Error & Exception Exposure": "57.68%",
+ "Tech Debt Exposure": "16.42%",
"Testing Exposure": "80.0%",
"API Exposure": "4.38%",
- "Concurrency Exposure": "33.98%",
+ "Concurrency Exposure": "27.21%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.7%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.55%",
+ "Documentation Exposure": "32.53%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -241704,12 +241704,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.382
+ "Raw Cognitive Density": 0.381
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.97%",
- "Error & Exception Exposure": "45.38%",
- "Tech Debt Exposure": "8.87%",
+ "Cognitive Load Exposure": "9.29%",
+ "Error & Exception Exposure": "36.56%",
+ "Tech Debt Exposure": "8.65%",
"Testing Exposure": "80.0%",
"API Exposure": "7.57%",
"Concurrency Exposure": "0.0%",
@@ -241718,7 +241718,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "85.21%",
+ "Documentation Exposure": "80.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -243760,13 +243760,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.556
+ "Raw Cognitive Density": 0.554
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.75%",
- "Error & Exception Exposure": "64.72%",
- "Tech Debt Exposure": "13.62%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "15.69%",
+ "Error & Exception Exposure": "61.09%",
+ "Tech Debt Exposure": "13.14%",
+ "Testing Exposure": "2.49%",
"API Exposure": "3.82%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -243774,7 +243774,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.51%",
+ "Documentation Exposure": "19.45%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -245219,18 +245219,18 @@
"Raw Cognitive Density": 0.863
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "59.38%",
- "Error & Exception Exposure": "42.96%",
- "Tech Debt Exposure": "8.51%",
+ "Cognitive Load Exposure": "58.12%",
+ "Error & Exception Exposure": "32.49%",
+ "Tech Debt Exposure": "8.39%",
"Testing Exposure": "80.0%",
"API Exposure": "0.29%",
- "Concurrency Exposure": "19.86%",
- "State Flux Exposure": "60.28%",
+ "Concurrency Exposure": "15.25%",
+ "State Flux Exposure": "54.41%",
"Commented Logic Exposure": "5.08%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.58%",
+ "Documentation Exposure": "17.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -246052,18 +246052,18 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "47.43%",
- "Error & Exception Exposure": "59.68%",
- "Tech Debt Exposure": "19.79%",
+ "Cognitive Load Exposure": "45.34%",
+ "Error & Exception Exposure": "60.47%",
+ "Tech Debt Exposure": "19.52%",
"Testing Exposure": "40.77%",
"API Exposure": "0.05%",
- "Concurrency Exposure": "5.89%",
- "State Flux Exposure": "56.17%",
+ "Concurrency Exposure": "5.15%",
+ "State Flux Exposure": "55.71%",
"Commented Logic Exposure": "2.82%",
"Specification Exposure": "50.0%",
"Instability Exposure": "41.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "6.01%",
+ "Documentation Exposure": "5.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -246415,15 +246415,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.535
+ "Raw Cognitive Density": 1.534
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.85%",
- "Error & Exception Exposure": "96.6%",
- "Tech Debt Exposure": "15.7%",
+ "Cognitive Load Exposure": "95.84%",
+ "Error & Exception Exposure": "98.84%",
+ "Tech Debt Exposure": "15.58%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
- "Concurrency Exposure": "18.19%",
+ "Concurrency Exposure": "15.93%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.2%",
"Specification Exposure": "100.0%",
@@ -248283,16 +248283,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.608
+ "Raw Cognitive Density": 0.569
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.31%",
- "Error & Exception Exposure": "68.15%",
+ "Cognitive Load Exposure": "22.83%",
+ "Error & Exception Exposure": "66.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.02%",
+ "State Flux Exposure": "34.27%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -248443,12 +248443,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.1
+ "Raw Cognitive Density": 1.094
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.22%",
- "Error & Exception Exposure": "96.75%",
- "Tech Debt Exposure": "94.12%",
+ "Cognitive Load Exposure": "79.82%",
+ "Error & Exception Exposure": "98.84%",
+ "Tech Debt Exposure": "92.68%",
"Testing Exposure": "80.0%",
"API Exposure": "0.25%",
"Concurrency Exposure": "0.0%",
@@ -248457,7 +248457,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.24%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -248717,15 +248717,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.689
+ "Raw Cognitive Density": 1.688
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.2%",
- "Error & Exception Exposure": "96.58%",
- "Tech Debt Exposure": "8.93%",
+ "Cognitive Load Exposure": "73.53%",
+ "Error & Exception Exposure": "98.83%",
+ "Tech Debt Exposure": "8.86%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
- "Concurrency Exposure": "17.14%",
+ "Concurrency Exposure": "14.98%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.97%",
"Specification Exposure": "100.0%",
@@ -249487,18 +249487,18 @@
"Static: Literature & Documentation": "14.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "25.16%",
- "Error & Exception Exposure": "42.59%",
- "Tech Debt Exposure": "44.22%",
+ "Cognitive Load Exposure": "25.19%",
+ "Error & Exception Exposure": "42.72%",
+ "Tech Debt Exposure": "45.39%",
"Testing Exposure": "57.48%",
"API Exposure": "3.95%",
- "Concurrency Exposure": "24.14%",
- "State Flux Exposure": "65.6%",
+ "Concurrency Exposure": "25.09%",
+ "State Flux Exposure": "65.87%",
"Commented Logic Exposure": "4.12%",
"Specification Exposure": "85.71%",
"Instability Exposure": "42.86%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.16%",
+ "Documentation Exposure": "16.15%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -249696,18 +249696,18 @@
"Raw Cognitive Density": 0.666
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.84%",
- "Error & Exception Exposure": "45.37%",
- "Tech Debt Exposure": "61.57%",
+ "Cognitive Load Exposure": "20.85%",
+ "Error & Exception Exposure": "45.45%",
+ "Tech Debt Exposure": "61.8%",
"Testing Exposure": "80.0%",
"API Exposure": "5.04%",
- "Concurrency Exposure": "30.43%",
- "State Flux Exposure": "91.73%",
+ "Concurrency Exposure": "32.15%",
+ "State Flux Exposure": "92.17%",
"Commented Logic Exposure": "5.31%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.36%",
+ "Documentation Exposure": "19.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -252181,16 +252181,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.597
+ "Raw Cognitive Density": 0.599
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.58%",
- "Error & Exception Exposure": "57.64%",
- "Tech Debt Exposure": "63.67%",
+ "Cognitive Load Exposure": "17.66%",
+ "Error & Exception Exposure": "58.12%",
+ "Tech Debt Exposure": "64.65%",
"Testing Exposure": "80.0%",
"API Exposure": "6.49%",
- "Concurrency Exposure": "75.62%",
- "State Flux Exposure": "96.25%",
+ "Concurrency Exposure": "77.07%",
+ "State Flux Exposure": "96.46%",
"Commented Logic Exposure": "6.22%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -252910,8 +252910,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "81.76%",
- "Testing Exposure": "2.35%",
+ "Tech Debt Exposure": "88.08%",
+ "Testing Exposure": "2.36%",
"API Exposure": "9.9%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -252919,7 +252919,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.14%",
+ "Documentation Exposure": "41.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -253110,9 +253110,9 @@
"Raw Cognitive Density": 1.055
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.84%",
- "Error & Exception Exposure": "78.67%",
- "Tech Debt Exposure": "8.73%",
+ "Cognitive Load Exposure": "63.85%",
+ "Error & Exception Exposure": "78.69%",
+ "Tech Debt Exposure": "8.76%",
"Testing Exposure": "80.0%",
"API Exposure": "0.79%",
"Concurrency Exposure": "0.0%",
@@ -258018,21 +258018,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.898
+ "Raw Cognitive Density": 0.899
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.5%",
- "Error & Exception Exposure": "65.31%",
- "Tech Debt Exposure": "14.89%",
+ "Cognitive Load Exposure": "61.56%",
+ "Error & Exception Exposure": "65.44%",
+ "Tech Debt Exposure": "15.13%",
"Testing Exposure": "80.0%",
"API Exposure": "2.54%",
- "Concurrency Exposure": "29.64%",
- "State Flux Exposure": "99.44%",
+ "Concurrency Exposure": "31.33%",
+ "State Flux Exposure": "99.48%",
"Commented Logic Exposure": "5.61%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.84%",
+ "Documentation Exposure": "15.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -258746,16 +258746,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.471
+ "Raw Cognitive Density": 0.472
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
- "Error & Exception Exposure": "51.15%",
- "Tech Debt Exposure": "78.91%",
+ "Cognitive Load Exposure": "12.38%",
+ "Error & Exception Exposure": "51.34%",
+ "Tech Debt Exposure": "79.3%",
"Testing Exposure": "80.0%",
"API Exposure": "2.92%",
- "Concurrency Exposure": "33.25%",
- "State Flux Exposure": "71.82%",
+ "Concurrency Exposure": "35.05%",
+ "State Flux Exposure": "73.02%",
"Commented Logic Exposure": "5.24%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -260364,8 +260364,8 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "27.45%",
- "Error & Exception Exposure": "70.17%",
+ "Cognitive Load Exposure": "26.98%",
+ "Error & Exception Exposure": "73.79%",
"Tech Debt Exposure": "13.26%",
"Testing Exposure": "40.86%",
"API Exposure": "3.47%",
@@ -260573,7 +260573,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "5.19%",
- "Error & Exception Exposure": "52.04%",
+ "Error & Exception Exposure": "53.77%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -260736,7 +260736,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "48.01%",
- "Error & Exception Exposure": "94.6%",
+ "Error & Exception Exposure": "98.11%",
"Tech Debt Exposure": "14.62%",
"Testing Exposure": "80.0%",
"API Exposure": "9.32%",
@@ -261611,7 +261611,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "45.96%",
- "Error & Exception Exposure": "96.8%",
+ "Error & Exception Exposure": "98.99%",
"Tech Debt Exposure": "9.5%",
"Testing Exposure": "80.0%",
"API Exposure": "8.8%",
@@ -263063,7 +263063,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "38.03%",
- "Error & Exception Exposure": "93.18%",
+ "Error & Exception Exposure": "97.22%",
"Tech Debt Exposure": "81.98%",
"Testing Exposure": "80.0%",
"API Exposure": "1.6%",
@@ -265483,7 +265483,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "34.93%",
- "Error & Exception Exposure": "87.96%",
+ "Error & Exception Exposure": "94.49%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.0%",
@@ -265942,8 +265942,8 @@
"Raw Cognitive Density": 1.028
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.4%",
- "Error & Exception Exposure": "78.17%",
+ "Cognitive Load Exposure": "37.61%",
+ "Error & Exception Exposure": "86.08%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
@@ -266155,7 +266155,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.1%",
- "Error & Exception Exposure": "58.6%",
+ "Error & Exception Exposure": "61.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -266623,18 +266623,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "79.08%",
- "Error & Exception Exposure": "92.96%",
- "Tech Debt Exposure": "67.55%",
+ "Cognitive Load Exposure": "74.69%",
+ "Error & Exception Exposure": "96.33%",
+ "Tech Debt Exposure": "66.24%",
"Testing Exposure": "80.0%",
"API Exposure": "0.06%",
- "Concurrency Exposure": "16.98%",
+ "Concurrency Exposure": "16.42%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "4.11%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "12.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -266671,12 +266671,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.476
+ "Raw Cognitive Density": 2.473
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.74%",
- "Error & Exception Exposure": "95.81%",
- "Tech Debt Exposure": "36.98%",
+ "Cognitive Load Exposure": "81.3%",
+ "Error & Exception Exposure": "98.37%",
+ "Tech Debt Exposure": "34.08%",
"Testing Exposure": "80.0%",
"API Exposure": "0.02%",
"Concurrency Exposure": "100.0%",
@@ -266685,7 +266685,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.36%",
+ "Documentation Exposure": "15.36%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -266982,12 +266982,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.073
+ "Raw Cognitive Density": 1.051
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.36%",
- "Error & Exception Exposure": "86.5%",
- "Tech Debt Exposure": "100.0%",
+ "Cognitive Load Exposure": "68.66%",
+ "Error & Exception Exposure": "90.2%",
+ "Tech Debt Exposure": "99.99%",
"Testing Exposure": "80.0%",
"API Exposure": "0.15%",
"Concurrency Exposure": "0.0%",
@@ -266996,7 +266996,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.62%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -267240,12 +267240,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.212
+ "Raw Cognitive Density": 1.21
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.41%",
- "Error & Exception Exposure": "94.33%",
- "Tech Debt Exposure": "52.63%",
+ "Cognitive Load Exposure": "86.3%",
+ "Error & Exception Exposure": "97.59%",
+ "Tech Debt Exposure": "50.5%",
"Testing Exposure": "80.0%",
"API Exposure": "0.02%",
"Concurrency Exposure": "0.0%",
@@ -267254,7 +267254,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.78%",
+ "Documentation Exposure": "16.31%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -267692,12 +267692,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.026
+ "Raw Cognitive Density": 1.023
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "52.56%",
- "Error & Exception Exposure": "89.4%",
- "Tech Debt Exposure": "73.15%",
+ "Cognitive Load Exposure": "52.41%",
+ "Error & Exception Exposure": "94.17%",
+ "Tech Debt Exposure": "70.98%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -268177,12 +268177,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.61
+ "Raw Cognitive Density": 1.607
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.17%",
- "Error & Exception Exposure": "95.08%",
- "Tech Debt Exposure": "88.52%",
+ "Cognitive Load Exposure": "72.32%",
+ "Error & Exception Exposure": "98.03%",
+ "Tech Debt Exposure": "87.95%",
"Testing Exposure": "80.0%",
"API Exposure": "0.31%",
"Concurrency Exposure": "0.0%",
@@ -268191,7 +268191,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.2%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -268671,12 +268671,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.682
+ "Raw Cognitive Density": 1.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.19%",
- "Error & Exception Exposure": "95.31%",
- "Tech Debt Exposure": "73.41%",
+ "Cognitive Load Exposure": "96.85%",
+ "Error & Exception Exposure": "98.19%",
+ "Tech Debt Exposure": "72.22%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
"Concurrency Exposure": "0.0%",
@@ -268685,7 +268685,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.76%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -269344,15 +269344,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.226
+ "Raw Cognitive Density": 1.225
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.03%",
- "Error & Exception Exposure": "96.74%",
- "Tech Debt Exposure": "80.03%",
+ "Cognitive Load Exposure": "72.01%",
+ "Error & Exception Exposure": "98.9%",
+ "Tech Debt Exposure": "79.54%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "17.7%",
+ "Concurrency Exposure": "15.49%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.09%",
"Specification Exposure": "100.0%",
@@ -270350,15 +270350,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.163
+ "Raw Cognitive Density": 1.162
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.2%",
- "Error & Exception Exposure": "90.52%",
- "Tech Debt Exposure": "35.64%",
+ "Cognitive Load Exposure": "67.67%",
+ "Error & Exception Exposure": "95.18%",
+ "Tech Debt Exposure": "34.64%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
- "Concurrency Exposure": "18.13%",
+ "Concurrency Exposure": "15.87%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.19%",
"Specification Exposure": "100.0%",
@@ -271153,18 +271153,18 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "33.71%",
- "Error & Exception Exposure": "71.92%",
- "Tech Debt Exposure": "23.87%",
+ "Cognitive Load Exposure": "33.73%",
+ "Error & Exception Exposure": "71.96%",
+ "Tech Debt Exposure": "24.18%",
"Testing Exposure": "60.29%",
"API Exposure": "1.96%",
- "Concurrency Exposure": "5.27%",
+ "Concurrency Exposure": "5.6%",
"State Flux Exposure": "75.0%",
"Commented Logic Exposure": "11.87%",
"Specification Exposure": "87.5%",
"Instability Exposure": "43.75%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.47%",
+ "Documentation Exposure": "17.53%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -271358,12 +271358,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.97
+ "Raw Cognitive Density": 0.973
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.33%",
- "Error & Exception Exposure": "94.7%",
- "Tech Debt Exposure": "14.59%",
+ "Cognitive Load Exposure": "35.48%",
+ "Error & Exception Exposure": "94.9%",
+ "Tech Debt Exposure": "15.76%",
"Testing Exposure": "80.0%",
"API Exposure": "0.02%",
"Concurrency Exposure": "0.0%",
@@ -271592,15 +271592,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.114
+ "Raw Cognitive Density": 1.115
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.55%",
- "Error & Exception Exposure": "96.3%",
- "Tech Debt Exposure": "40.96%",
+ "Cognitive Load Exposure": "40.58%",
+ "Error & Exception Exposure": "96.34%",
+ "Tech Debt Exposure": "41.85%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
- "Concurrency Exposure": "29.93%",
+ "Concurrency Exposure": "31.64%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.37%",
"Specification Exposure": "100.0%",
@@ -272302,12 +272302,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.434
+ "Raw Cognitive Density": 1.435
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "46.96%",
- "Error & Exception Exposure": "96.79%",
- "Tech Debt Exposure": "8.72%",
+ "Error & Exception Exposure": "96.8%",
+ "Tech Debt Exposure": "8.77%",
"Testing Exposure": "80.0%",
"API Exposure": "0.33%",
"Concurrency Exposure": "0.0%",
@@ -274932,8 +274932,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "47.6%",
- "Error & Exception Exposure": "94.07%",
- "Tech Debt Exposure": "17.86%",
+ "Error & Exception Exposure": "94.1%",
+ "Tech Debt Exposure": "18.1%",
"Testing Exposure": "80.0%",
"API Exposure": "2.01%",
"Concurrency Exposure": "0.0%",
@@ -276725,12 +276725,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.846
+ "Raw Cognitive Density": 1.847
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.38%",
- "Error & Exception Exposure": "97.06%",
- "Tech Debt Exposure": "99.73%",
+ "Cognitive Load Exposure": "49.39%",
+ "Error & Exception Exposure": "97.1%",
+ "Tech Debt Exposure": "99.74%",
"Testing Exposure": "80.0%",
"API Exposure": "4.18%",
"Concurrency Exposure": "0.0%",
@@ -276739,7 +276739,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "68.24%",
+ "Documentation Exposure": "68.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -277962,12 +277962,12 @@
"Raw Cognitive Density": 2.163
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.82%",
- "Error & Exception Exposure": "96.4%",
- "Tech Debt Exposure": "9.1%",
+ "Cognitive Load Exposure": "49.83%",
+ "Error & Exception Exposure": "96.42%",
+ "Tech Debt Exposure": "9.18%",
"Testing Exposure": "80.0%",
"API Exposure": "3.05%",
- "Concurrency Exposure": "12.25%",
+ "Concurrency Exposure": "13.14%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "11.12%",
"Specification Exposure": "100.0%",
@@ -280024,18 +280024,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "39.6%",
- "Error & Exception Exposure": "38.28%",
- "Tech Debt Exposure": "22.15%",
- "Testing Exposure": "26.22%",
+ "Cognitive Load Exposure": "39.35%",
+ "Error & Exception Exposure": "39.44%",
+ "Tech Debt Exposure": "20.79%",
+ "Testing Exposure": "21.44%",
"API Exposure": "2.3%",
- "Concurrency Exposure": "7.41%",
- "State Flux Exposure": "41.48%",
+ "Concurrency Exposure": "6.67%",
+ "State Flux Exposure": "41.29%",
"Commented Logic Exposure": "4.17%",
"Specification Exposure": "50.77%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.44%",
+ "Documentation Exposure": "9.34%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -280229,21 +280229,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.373
+ "Raw Cognitive Density": 0.336
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.11%",
- "Error & Exception Exposure": "57.83%",
- "Tech Debt Exposure": "97.94%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "16.0%",
+ "Error & Exception Exposure": "53.35%",
+ "Tech Debt Exposure": "96.09%",
+ "Testing Exposure": "2.35%",
"API Exposure": "1.34%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "14.82%",
+ "State Flux Exposure": "12.68%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.16%",
+ "Documentation Exposure": "14.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -280920,12 +280920,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.377
+ "Raw Cognitive Density": 1.373
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.47%",
- "Error & Exception Exposure": "89.72%",
- "Tech Debt Exposure": "71.57%",
+ "Cognitive Load Exposure": "92.35%",
+ "Error & Exception Exposure": "94.28%",
+ "Tech Debt Exposure": "70.1%",
"Testing Exposure": "80.0%",
"API Exposure": "3.8%",
"Concurrency Exposure": "0.0%",
@@ -281613,12 +281613,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.627
+ "Raw Cognitive Density": 1.622
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.09%",
- "Error & Exception Exposure": "93.98%",
- "Tech Debt Exposure": "45.95%",
+ "Cognitive Load Exposure": "97.04%",
+ "Error & Exception Exposure": "97.18%",
+ "Tech Debt Exposure": "43.91%",
"Testing Exposure": "80.0%",
"API Exposure": "1.93%",
"Concurrency Exposure": "0.0%",
@@ -282045,12 +282045,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.718
+ "Raw Cognitive Density": 1.711
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.96%",
- "Error & Exception Exposure": "90.13%",
- "Tech Debt Exposure": "70.09%",
+ "Cognitive Load Exposure": "97.9%",
+ "Error & Exception Exposure": "94.36%",
+ "Tech Debt Exposure": "67.56%",
"Testing Exposure": "80.0%",
"API Exposure": "2.02%",
"Concurrency Exposure": "0.0%",
@@ -282478,12 +282478,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.708
+ "Raw Cognitive Density": 1.704
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.88%",
- "Error & Exception Exposure": "96.45%",
- "Tech Debt Exposure": "48.18%",
+ "Cognitive Load Exposure": "97.85%",
+ "Error & Exception Exposure": "98.65%",
+ "Tech Debt Exposure": "46.57%",
"Testing Exposure": "80.0%",
"API Exposure": "1.87%",
"Concurrency Exposure": "0.0%",
@@ -283000,12 +283000,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.638
+ "Raw Cognitive Density": 1.633
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.21%",
- "Error & Exception Exposure": "93.91%",
- "Tech Debt Exposure": "57.5%",
+ "Cognitive Load Exposure": "97.16%",
+ "Error & Exception Exposure": "97.09%",
+ "Tech Debt Exposure": "55.18%",
"Testing Exposure": "80.0%",
"API Exposure": "1.96%",
"Concurrency Exposure": "0.0%",
@@ -283462,12 +283462,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.593
+ "Raw Cognitive Density": 1.588
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.69%",
- "Error & Exception Exposure": "93.17%",
- "Tech Debt Exposure": "63.69%",
+ "Cognitive Load Exposure": "96.62%",
+ "Error & Exception Exposure": "96.63%",
+ "Tech Debt Exposure": "61.47%",
"Testing Exposure": "80.0%",
"API Exposure": "1.96%",
"Concurrency Exposure": "0.0%",
@@ -283955,12 +283955,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.611
+ "Raw Cognitive Density": 1.607
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.9%",
- "Error & Exception Exposure": "95.2%",
- "Tech Debt Exposure": "65.08%",
+ "Cognitive Load Exposure": "96.86%",
+ "Error & Exception Exposure": "97.96%",
+ "Tech Debt Exposure": "63.78%",
"Testing Exposure": "80.0%",
"API Exposure": "1.82%",
"Concurrency Exposure": "0.0%",
@@ -284848,12 +284848,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.575
+ "Raw Cognitive Density": 1.57
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.45%",
- "Error & Exception Exposure": "94.68%",
- "Tech Debt Exposure": "57.23%",
+ "Cognitive Load Exposure": "96.38%",
+ "Error & Exception Exposure": "97.59%",
+ "Tech Debt Exposure": "55.01%",
"Testing Exposure": "80.0%",
"API Exposure": "1.95%",
"Concurrency Exposure": "0.0%",
@@ -285320,13 +285320,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.587
+ "Raw Cognitive Density": 1.583
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.6%",
- "Error & Exception Exposure": "94.7%",
- "Tech Debt Exposure": "59.59%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "96.55%",
+ "Error & Exception Exposure": "97.6%",
+ "Tech Debt Exposure": "57.73%",
+ "Testing Exposure": "2.4%",
"API Exposure": "1.91%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -285832,12 +285832,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.809
+ "Raw Cognitive Density": 1.804
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.58%",
- "Error & Exception Exposure": "92.38%",
- "Tech Debt Exposure": "53.17%",
+ "Cognitive Load Exposure": "98.55%",
+ "Error & Exception Exposure": "96.1%",
+ "Tech Debt Exposure": "50.96%",
"Testing Exposure": "80.0%",
"API Exposure": "3.86%",
"Concurrency Exposure": "0.0%",
@@ -286578,21 +286578,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.512
+ "Raw Cognitive Density": 1.486
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.46%",
- "Error & Exception Exposure": "74.7%",
- "Tech Debt Exposure": "94.67%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "95.01%",
+ "Error & Exception Exposure": "77.18%",
+ "Tech Debt Exposure": "92.0%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.47%",
- "Concurrency Exposure": "69.77%",
- "State Flux Exposure": "99.94%",
+ "Concurrency Exposure": "64.49%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -286829,21 +286829,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.512
+ "Raw Cognitive Density": 1.486
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.46%",
- "Error & Exception Exposure": "74.7%",
- "Tech Debt Exposure": "94.67%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "95.01%",
+ "Error & Exception Exposure": "77.18%",
+ "Tech Debt Exposure": "92.0%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.47%",
- "Concurrency Exposure": "69.77%",
- "State Flux Exposure": "99.94%",
+ "Concurrency Exposure": "64.49%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -287080,21 +287080,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.512
+ "Raw Cognitive Density": 1.486
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.46%",
- "Error & Exception Exposure": "74.7%",
- "Tech Debt Exposure": "94.67%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "95.01%",
+ "Error & Exception Exposure": "77.18%",
+ "Tech Debt Exposure": "92.0%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.47%",
- "Concurrency Exposure": "69.77%",
- "State Flux Exposure": "99.94%",
+ "Concurrency Exposure": "64.49%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -287331,21 +287331,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.512
+ "Raw Cognitive Density": 1.486
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.46%",
- "Error & Exception Exposure": "74.7%",
- "Tech Debt Exposure": "94.67%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "95.01%",
+ "Error & Exception Exposure": "77.18%",
+ "Tech Debt Exposure": "92.0%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.46%",
- "Concurrency Exposure": "69.77%",
- "State Flux Exposure": "99.94%",
+ "Concurrency Exposure": "64.49%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -287582,21 +287582,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.512
+ "Raw Cognitive Density": 1.486
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.46%",
- "Error & Exception Exposure": "74.7%",
- "Tech Debt Exposure": "94.67%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "95.01%",
+ "Error & Exception Exposure": "77.18%",
+ "Tech Debt Exposure": "92.0%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.46%",
- "Concurrency Exposure": "69.77%",
- "State Flux Exposure": "99.94%",
+ "Concurrency Exposure": "64.49%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -287833,21 +287833,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.709
+ "Raw Cognitive Density": 1.704
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.89%",
- "Error & Exception Exposure": "86.25%",
+ "Cognitive Load Exposure": "97.84%",
+ "Error & Exception Exposure": "91.3%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.94%",
- "Concurrency Exposure": "34.78%",
+ "Concurrency Exposure": "29.55%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.82%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.94%",
+ "Documentation Exposure": "29.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -288531,21 +288531,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.694
+ "Raw Cognitive Density": 1.689
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.76%",
- "Error & Exception Exposure": "86.29%",
- "Tech Debt Exposure": "9.78%",
+ "Cognitive Load Exposure": "97.72%",
+ "Error & Exception Exposure": "90.95%",
+ "Tech Debt Exposure": "9.13%",
"Testing Exposure": "80.0%",
"API Exposure": "10.11%",
- "Concurrency Exposure": "29.93%",
+ "Concurrency Exposure": "25.15%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "9.81%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.4%",
+ "Documentation Exposure": "31.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -289767,13 +289767,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.594
+ "Raw Cognitive Density": 1.586
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.7%",
- "Error & Exception Exposure": "81.83%",
- "Tech Debt Exposure": "90.75%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "96.59%",
+ "Error & Exception Exposure": "86.21%",
+ "Tech Debt Exposure": "89.43%",
+ "Testing Exposure": "2.4%",
"API Exposure": "1.03%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -290194,11 +290194,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.411
+ "Raw Cognitive Density": 1.401
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.36%",
- "Error & Exception Exposure": "82.55%",
+ "Cognitive Load Exposure": "93.12%",
+ "Error & Exception Exposure": "87.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.25%",
@@ -290208,7 +290208,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.51%",
+ "Documentation Exposure": "28.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -290729,12 +290729,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.92%",
+ "Cognitive Load Exposure": "14.76%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -290897,21 +290897,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.398
+ "Raw Cognitive Density": 1.39
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.05%",
- "Error & Exception Exposure": "76.86%",
+ "Cognitive Load Exposure": "92.83%",
+ "Error & Exception Exposure": "81.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.82%",
- "Concurrency Exposure": "21.4%",
+ "Concurrency Exposure": "17.64%",
"State Flux Exposure": "99.99%",
"Commented Logic Exposure": "5.93%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.1%",
+ "Documentation Exposure": "34.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -291497,17 +291497,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "71.71%",
+ "Documentation Exposure": "48.29%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -291834,17 +291834,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "71.71%",
+ "Documentation Exposure": "48.29%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -292168,11 +292168,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.632
+ "Raw Cognitive Density": 1.626
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.15%",
- "Error & Exception Exposure": "86.88%",
+ "Cognitive Load Exposure": "97.08%",
+ "Error & Exception Exposure": "91.64%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.2%",
@@ -292182,7 +292182,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.59%",
+ "Documentation Exposure": "20.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -292760,13 +292760,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.666
+ "Raw Cognitive Density": 1.659
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.5%",
- "Error & Exception Exposure": "85.59%",
+ "Cognitive Load Exposure": "97.43%",
+ "Error & Exception Exposure": "90.14%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.4%",
"API Exposure": "8.83%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -292774,7 +292774,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.79%",
+ "Documentation Exposure": "19.56%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -293167,10 +293167,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.92%",
+ "Cognitive Load Exposure": "14.76%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
@@ -293181,7 +293181,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.77%",
+ "Documentation Exposure": "24.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -293335,12 +293335,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.92%",
+ "Cognitive Load Exposure": "14.76%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -293660,21 +293660,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.909
+ "Raw Cognitive Density": 1.899
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.04%",
- "Error & Exception Exposure": "83.31%",
+ "Cognitive Load Exposure": "99.0%",
+ "Error & Exception Exposure": "87.36%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.44%",
"API Exposure": "9.41%",
- "Concurrency Exposure": "28.14%",
+ "Concurrency Exposure": "23.55%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "10.76%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.9%",
+ "Documentation Exposure": "32.15%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -295196,17 +295196,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "61.25%",
+ "Error & Exception Exposure": "58.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "2.98%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "38.92%",
+ "State Flux Exposure": "34.74%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.8%",
+ "Documentation Exposure": "18.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -295674,13 +295674,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.299
+ "Raw Cognitive Density": 1.279
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.0%",
- "Error & Exception Exposure": "82.68%",
+ "Cognitive Load Exposure": "89.23%",
+ "Error & Exception Exposure": "86.93%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.37%",
"API Exposure": "7.88%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -295688,7 +295688,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.67%",
+ "Documentation Exposure": "16.68%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -296116,11 +296116,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.567
+ "Raw Cognitive Density": 1.546
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.33%",
- "Error & Exception Exposure": "88.74%",
+ "Cognitive Load Exposure": "96.03%",
+ "Error & Exception Exposure": "92.41%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.3%",
@@ -296130,7 +296130,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "52.02%",
+ "Documentation Exposure": "35.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -296723,21 +296723,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.745
+ "Raw Cognitive Density": 1.741
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.16%",
- "Error & Exception Exposure": "86.55%",
+ "Cognitive Load Exposure": "98.14%",
+ "Error & Exception Exposure": "91.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.5%",
- "Concurrency Exposure": "18.68%",
+ "Concurrency Exposure": "15.3%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "12.73%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.08%",
+ "Documentation Exposure": "13.47%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -297343,18 +297343,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "34.56%",
- "Error & Exception Exposure": "37.59%",
- "Tech Debt Exposure": "31.4%",
- "Testing Exposure": "30.76%",
+ "Cognitive Load Exposure": "34.17%",
+ "Error & Exception Exposure": "38.32%",
+ "Tech Debt Exposure": "30.49%",
+ "Testing Exposure": "22.02%",
"API Exposure": "1.17%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "41.33%",
+ "State Flux Exposure": "41.24%",
"Commented Logic Exposure": "0.96%",
"Specification Exposure": "39.44%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "6.35%",
+ "Documentation Exposure": "5.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -297391,13 +297391,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.979
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "72.76%",
- "Tech Debt Exposure": "96.19%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "71.44%",
+ "Error & Exception Exposure": "71.39%",
+ "Tech Debt Exposure": "93.75%",
+ "Testing Exposure": "2.49%",
"API Exposure": "2.63%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -297405,7 +297405,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.15%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -297621,13 +297621,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.109
+ "Raw Cognitive Density": 1.085
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.75%",
- "Error & Exception Exposure": "74.67%",
- "Tech Debt Exposure": "95.77%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "79.27%",
+ "Error & Exception Exposure": "73.24%",
+ "Tech Debt Exposure": "92.68%",
+ "Testing Exposure": "2.5%",
"API Exposure": "2.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -297635,7 +297635,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.77%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -297841,13 +297841,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.1
+ "Raw Cognitive Density": 1.077
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.22%",
- "Error & Exception Exposure": "74.54%",
- "Tech Debt Exposure": "95.59%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "78.71%",
+ "Error & Exception Exposure": "73.11%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.5%",
"API Exposure": "2.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -297855,7 +297855,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.91%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -298061,12 +298061,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.114
+ "Raw Cognitive Density": 1.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.1%",
- "Error & Exception Exposure": "81.18%",
- "Tech Debt Exposure": "86.91%",
+ "Cognitive Load Exposure": "80.76%",
+ "Error & Exception Exposure": "84.41%",
+ "Tech Debt Exposure": "85.29%",
"Testing Exposure": "80.0%",
"API Exposure": "3.39%",
"Concurrency Exposure": "0.0%",
@@ -298075,7 +298075,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.31%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -298455,13 +298455,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.158
+ "Raw Cognitive Density": 1.135
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.63%",
- "Error & Exception Exposure": "80.75%",
- "Tech Debt Exposure": "95.59%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "82.32%",
+ "Error & Exception Exposure": "81.46%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.5%",
"API Exposure": "2.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -298469,7 +298469,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.91%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -298675,12 +298675,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.123
+ "Raw Cognitive Density": 1.116
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.63%",
- "Error & Exception Exposure": "82.23%",
- "Tech Debt Exposure": "91.71%",
+ "Cognitive Load Exposure": "81.19%",
+ "Error & Exception Exposure": "85.32%",
+ "Tech Debt Exposure": "90.22%",
"Testing Exposure": "80.0%",
"API Exposure": "2.24%",
"Concurrency Exposure": "0.0%",
@@ -298689,7 +298689,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.29%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -299030,13 +299030,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.113
+ "Raw Cognitive Density": 1.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.06%",
- "Error & Exception Exposure": "80.75%",
- "Tech Debt Exposure": "88.73%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "80.76%",
+ "Error & Exception Exposure": "83.92%",
+ "Tech Debt Exposure": "87.46%",
+ "Testing Exposure": "2.51%",
"API Exposure": "2.1%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -299044,7 +299044,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.26%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -299464,12 +299464,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.126
+ "Raw Cognitive Density": 1.121
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.83%",
- "Error & Exception Exposure": "84.53%",
- "Tech Debt Exposure": "93.6%",
+ "Cognitive Load Exposure": "81.5%",
+ "Error & Exception Exposure": "88.26%",
+ "Tech Debt Exposure": "92.73%",
"Testing Exposure": "80.0%",
"API Exposure": "2.14%",
"Concurrency Exposure": "0.0%",
@@ -299478,7 +299478,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.53%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -300055,12 +300055,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.478
+ "Raw Cognitive Density": 1.477
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.5%",
- "Error & Exception Exposure": "89.82%",
- "Tech Debt Exposure": "61.61%",
+ "Cognitive Load Exposure": "94.25%",
+ "Error & Exception Exposure": "94.09%",
+ "Tech Debt Exposure": "61.08%",
"Testing Exposure": "80.0%",
"API Exposure": "1.66%",
"Concurrency Exposure": "0.0%",
@@ -301399,12 +301399,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.465
+ "Raw Cognitive Density": 1.459
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.97%",
- "Error & Exception Exposure": "83.87%",
- "Tech Debt Exposure": "96.18%",
+ "Cognitive Load Exposure": "91.78%",
+ "Error & Exception Exposure": "88.47%",
+ "Tech Debt Exposure": "95.77%",
"Testing Exposure": "80.0%",
"API Exposure": "3.21%",
"Concurrency Exposure": "0.0%",
@@ -302100,12 +302100,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.221
+ "Raw Cognitive Density": 1.204
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.82%",
- "Error & Exception Exposure": "92.29%",
- "Tech Debt Exposure": "90.39%",
+ "Cognitive Load Exposure": "86.01%",
+ "Error & Exception Exposure": "95.26%",
+ "Tech Debt Exposure": "85.94%",
"Testing Exposure": "80.0%",
"API Exposure": "2.48%",
"Concurrency Exposure": "0.0%",
@@ -302114,7 +302114,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.77%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -302338,16 +302338,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.49%",
- "Error & Exception Exposure": "64.59%",
+ "Cognitive Load Exposure": "8.48%",
+ "Error & Exception Exposure": "59.01%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -302652,12 +302652,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.2
+ "Raw Cognitive Density": 1.193
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.81%",
- "Error & Exception Exposure": "92.78%",
- "Tech Debt Exposure": "86.36%",
+ "Cognitive Load Exposure": "85.46%",
+ "Error & Exception Exposure": "96.15%",
+ "Tech Debt Exposure": "84.11%",
"Testing Exposure": "80.0%",
"API Exposure": "2.18%",
"Concurrency Exposure": "0.0%",
@@ -303305,13 +303305,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.564
+ "Raw Cognitive Density": 1.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.23%",
- "Error & Exception Exposure": "87.29%",
- "Tech Debt Exposure": "82.47%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "94.47%",
+ "Error & Exception Exposure": "91.53%",
+ "Tech Debt Exposure": "81.46%",
+ "Testing Exposure": "2.45%",
"API Exposure": "1.9%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -304072,12 +304072,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.583
+ "Raw Cognitive Density": 1.577
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.75%",
- "Error & Exception Exposure": "85.87%",
- "Tech Debt Exposure": "95.88%",
+ "Cognitive Load Exposure": "93.46%",
+ "Error & Exception Exposure": "90.18%",
+ "Tech Debt Exposure": "95.39%",
"Testing Exposure": "80.0%",
"API Exposure": "3.24%",
"Concurrency Exposure": "0.0%",
@@ -304761,13 +304761,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.513
+ "Raw Cognitive Density": 1.51
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.54%",
- "Error & Exception Exposure": "85.99%",
- "Tech Debt Exposure": "81.06%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "93.84%",
+ "Error & Exception Exposure": "89.98%",
+ "Tech Debt Exposure": "80.08%",
+ "Testing Exposure": "2.44%",
"API Exposure": "1.89%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -305570,12 +305570,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.213
+ "Raw Cognitive Density": 1.197
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.43%",
- "Error & Exception Exposure": "93.12%",
- "Tech Debt Exposure": "86.86%",
+ "Cognitive Load Exposure": "85.66%",
+ "Error & Exception Exposure": "95.98%",
+ "Tech Debt Exposure": "81.6%",
"Testing Exposure": "80.0%",
"API Exposure": "2.45%",
"Concurrency Exposure": "0.0%",
@@ -305584,7 +305584,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.64%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -305808,16 +305808,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.169
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.12%",
- "Error & Exception Exposure": "63.01%",
+ "Cognitive Load Exposure": "7.59%",
+ "Error & Exception Exposure": "58.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.43%",
+ "State Flux Exposure": "16.77%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -306122,12 +306122,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.521
+ "Raw Cognitive Density": 1.513
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.63%",
- "Error & Exception Exposure": "93.98%",
- "Tech Debt Exposure": "49.0%",
+ "Cognitive Load Exposure": "95.48%",
+ "Error & Exception Exposure": "97.0%",
+ "Tech Debt Exposure": "45.25%",
"Testing Exposure": "80.0%",
"API Exposure": "4.28%",
"Concurrency Exposure": "0.0%",
@@ -306136,7 +306136,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.92%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -306556,12 +306556,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.326
+ "Raw Cognitive Density": 1.308
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.91%",
- "Error & Exception Exposure": "90.63%",
- "Tech Debt Exposure": "84.75%",
+ "Cognitive Load Exposure": "90.31%",
+ "Error & Exception Exposure": "93.99%",
+ "Tech Debt Exposure": "78.23%",
"Testing Exposure": "80.0%",
"API Exposure": "2.49%",
"Concurrency Exposure": "0.0%",
@@ -306570,7 +306570,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.29%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -306940,12 +306940,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.211
+ "Raw Cognitive Density": 1.206
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.35%",
- "Error & Exception Exposure": "98.41%",
- "Tech Debt Exposure": "68.15%",
+ "Cognitive Load Exposure": "86.08%",
+ "Error & Exception Exposure": "99.49%",
+ "Tech Debt Exposure": "65.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.12%",
"Concurrency Exposure": "0.0%",
@@ -307424,12 +307424,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.551
+ "Raw Cognitive Density": 1.534
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.11%",
- "Error & Exception Exposure": "90.84%",
- "Tech Debt Exposure": "91.45%",
+ "Cognitive Load Exposure": "95.83%",
+ "Error & Exception Exposure": "94.38%",
+ "Tech Debt Exposure": "88.55%",
"Testing Exposure": "80.0%",
"API Exposure": "2.39%",
"Concurrency Exposure": "0.0%",
@@ -307438,7 +307438,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.97%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -307848,12 +307848,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.198
+ "Raw Cognitive Density": 1.193
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.71%",
- "Error & Exception Exposure": "96.03%",
- "Tech Debt Exposure": "68.96%",
+ "Cognitive Load Exposure": "85.47%",
+ "Error & Exception Exposure": "98.32%",
+ "Tech Debt Exposure": "66.28%",
"Testing Exposure": "80.0%",
"API Exposure": "4.16%",
"Concurrency Exposure": "0.0%",
@@ -307862,7 +307862,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.75%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -308521,12 +308521,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.217
+ "Raw Cognitive Density": 1.211
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.62%",
- "Error & Exception Exposure": "98.2%",
- "Tech Debt Exposure": "67.89%",
+ "Cognitive Load Exposure": "86.36%",
+ "Error & Exception Exposure": "99.4%",
+ "Tech Debt Exposure": "64.73%",
"Testing Exposure": "80.0%",
"API Exposure": "2.12%",
"Concurrency Exposure": "0.0%",
@@ -309005,12 +309005,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.611
+ "Raw Cognitive Density": 1.59
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.9%",
- "Error & Exception Exposure": "96.44%",
- "Tech Debt Exposure": "96.01%",
+ "Cognitive Load Exposure": "96.64%",
+ "Error & Exception Exposure": "98.46%",
+ "Tech Debt Exposure": "94.28%",
"Testing Exposure": "80.0%",
"API Exposure": "2.43%",
"Concurrency Exposure": "0.0%",
@@ -309019,7 +309019,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.72%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -309429,12 +309429,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.205
+ "Raw Cognitive Density": 1.196
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.08%",
- "Error & Exception Exposure": "95.25%",
- "Tech Debt Exposure": "86.68%",
+ "Cognitive Load Exposure": "85.6%",
+ "Error & Exception Exposure": "97.71%",
+ "Tech Debt Exposure": "83.55%",
"Testing Exposure": "80.0%",
"API Exposure": "2.3%",
"Concurrency Exposure": "0.0%",
@@ -309443,7 +309443,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.32%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -309873,12 +309873,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.22
+ "Raw Cognitive Density": 1.208
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.77%",
- "Error & Exception Exposure": "93.15%",
- "Tech Debt Exposure": "94.15%",
+ "Cognitive Load Exposure": "86.21%",
+ "Error & Exception Exposure": "96.2%",
+ "Tech Debt Exposure": "92.27%",
"Testing Exposure": "80.0%",
"API Exposure": "2.35%",
"Concurrency Exposure": "0.0%",
@@ -309887,7 +309887,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.4%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -310317,10 +310317,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.33%",
+ "Cognitive Load Exposure": "5.06%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -310631,16 +310631,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.92%",
- "Error & Exception Exposure": "66.12%",
+ "Cognitive Load Exposure": "14.76%",
+ "Error & Exception Exposure": "59.53%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -310788,13 +310788,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.385
+ "Raw Cognitive Density": 1.337
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.78%",
- "Error & Exception Exposure": "98.59%",
+ "Cognitive Load Exposure": "77.59%",
+ "Error & Exception Exposure": "99.48%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.7%",
+ "Testing Exposure": "2.64%",
"API Exposure": "4.92%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -310802,7 +310802,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.19%",
+ "Documentation Exposure": "19.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -311123,13 +311123,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.037
+ "Raw Cognitive Density": 1.027
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.54%",
- "Error & Exception Exposure": "91.69%",
+ "Cognitive Load Exposure": "63.89%",
+ "Error & Exception Exposure": "94.47%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.45%",
"API Exposure": "9.35%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -311137,7 +311137,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "48.14%",
+ "Documentation Exposure": "37.88%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -311421,13 +311421,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.118
+ "Raw Cognitive Density": 1.092
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.36%",
- "Error & Exception Exposure": "89.37%",
- "Tech Debt Exposure": "97.7%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "79.71%",
+ "Error & Exception Exposure": "92.77%",
+ "Tech Debt Exposure": "94.07%",
+ "Testing Exposure": "2.38%",
"API Exposure": "4.33%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -311435,7 +311435,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.25%",
+ "Documentation Exposure": "13.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -314244,8 +314244,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "46.06%",
- "Error & Exception Exposure": "53.69%",
+ "Cognitive Load Exposure": "46.01%",
+ "Error & Exception Exposure": "55.78%",
"Tech Debt Exposure": "20.81%",
"Testing Exposure": "34.68%",
"API Exposure": "11.86%",
@@ -314255,7 +314255,7 @@
"Specification Exposure": "91.67%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "88.77%",
+ "Documentation Exposure": "87.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -314295,8 +314295,8 @@
"Raw Cognitive Density": 1.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.24%",
- "Error & Exception Exposure": "91.84%",
+ "Cognitive Load Exposure": "83.15%",
+ "Error & Exception Exposure": "96.65%",
"Tech Debt Exposure": "45.54%",
"Testing Exposure": "80.0%",
"API Exposure": "11.17%",
@@ -314306,7 +314306,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "95.33%",
+ "Documentation Exposure": "94.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -315479,7 +315479,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.27%",
+ "Documentation Exposure": "29.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -315630,7 +315630,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "85.73%",
- "Error & Exception Exposure": "72.97%",
+ "Error & Exception Exposure": "80.51%",
"Tech Debt Exposure": "11.1%",
"Testing Exposure": "80.0%",
"API Exposure": "8.75%",
@@ -315640,7 +315640,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "85.4%",
+ "Documentation Exposure": "84.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -316946,7 +316946,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "88.69%",
- "Error & Exception Exposure": "95.49%",
+ "Error & Exception Exposure": "98.57%",
"Tech Debt Exposure": "10.5%",
"Testing Exposure": "80.0%",
"API Exposure": "12.12%",
@@ -316956,7 +316956,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "96.46%",
+ "Documentation Exposure": "95.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -317371,7 +317371,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.81%",
- "Error & Exception Exposure": "17.18%",
+ "Error & Exception Exposure": "14.19%",
"Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.3%",
"API Exposure": "15.12%",
@@ -317532,7 +317532,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "22.15%",
- "Error & Exception Exposure": "46.61%",
+ "Error & Exception Exposure": "47.05%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
"API Exposure": "5.97%",
@@ -317542,7 +317542,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "85.33%",
+ "Documentation Exposure": "84.02%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -317796,7 +317796,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "15.61%",
- "Error & Exception Exposure": "41.37%",
+ "Error & Exception Exposure": "41.22%",
"Tech Debt Exposure": "42.21%",
"Testing Exposure": "2.3%",
"API Exposure": "14.77%",
@@ -317806,7 +317806,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "100.0%",
+ "Documentation Exposure": "99.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -317956,8 +317956,8 @@
"Raw Cognitive Density": 1.017
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "71.66%",
- "Error & Exception Exposure": "94.04%",
+ "Cognitive Load Exposure": "71.18%",
+ "Error & Exception Exposure": "97.76%",
"Tech Debt Exposure": "17.03%",
"Testing Exposure": "80.0%",
"API Exposure": "12.76%",
@@ -317967,7 +317967,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.6%",
+ "Documentation Exposure": "99.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -318482,7 +318482,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.79%",
+ "Documentation Exposure": "81.26%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -318631,7 +318631,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "71.61%",
- "Error & Exception Exposure": "94.37%",
+ "Error & Exception Exposure": "97.82%",
"Tech Debt Exposure": "15.07%",
"Testing Exposure": "80.0%",
"API Exposure": "15.01%",
@@ -319170,7 +319170,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "85.43%",
- "Error & Exception Exposure": "90.38%",
+ "Error & Exception Exposure": "95.6%",
"Tech Debt Exposure": "8.22%",
"Testing Exposure": "2.3%",
"API Exposure": "13.09%",
@@ -319180,7 +319180,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "83.05%",
+ "Documentation Exposure": "81.66%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -319322,8 +319322,8 @@
"Unclassified": "50.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "45.78%",
- "Error & Exception Exposure": "49.78%",
+ "Cognitive Load Exposure": "45.44%",
+ "Error & Exception Exposure": "49.97%",
"Tech Debt Exposure": "4.01%",
"Testing Exposure": "40.0%",
"API Exposure": "7.22%",
@@ -319333,7 +319333,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.69%",
+ "Documentation Exposure": "49.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -319533,8 +319533,8 @@
"Raw Cognitive Density": 1.508
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.56%",
- "Error & Exception Exposure": "99.56%",
+ "Cognitive Load Exposure": "90.88%",
+ "Error & Exception Exposure": "99.93%",
"Tech Debt Exposure": "8.03%",
"Testing Exposure": "80.0%",
"API Exposure": "14.44%",
@@ -319544,7 +319544,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.37%",
+ "Documentation Exposure": "99.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -320993,10 +320993,10 @@
"Static: Literature & Documentation": "11.1%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "16.6%",
- "Error & Exception Exposure": "44.4%",
+ "Cognitive Load Exposure": "15.97%",
+ "Error & Exception Exposure": "47.09%",
"Tech Debt Exposure": "19.46%",
- "Testing Exposure": "40.92%",
+ "Testing Exposure": "40.93%",
"API Exposure": "3.09%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "43.48%",
@@ -321004,7 +321004,7 @@
"Specification Exposure": "83.33%",
"Instability Exposure": "44.44%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.33%",
+ "Documentation Exposure": "18.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -321045,7 +321045,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "25.6%",
- "Error & Exception Exposure": "75.93%",
+ "Error & Exception Exposure": "82.22%",
"Tech Debt Exposure": "46.53%",
"Testing Exposure": "80.0%",
"API Exposure": "13.37%",
@@ -321055,7 +321055,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.95%",
+ "Documentation Exposure": "99.94%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -321778,8 +321778,8 @@
"Raw Cognitive Density": 0.427
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.56%",
- "Error & Exception Exposure": "52.61%",
+ "Cognitive Load Exposure": "12.14%",
+ "Error & Exception Exposure": "54.27%",
"Tech Debt Exposure": "8.89%",
"Testing Exposure": "80.0%",
"API Exposure": "1.37%",
@@ -322751,7 +322751,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.41%",
- "Error & Exception Exposure": "55.68%",
+ "Error & Exception Exposure": "58.99%",
"Tech Debt Exposure": "73.49%",
"Testing Exposure": "80.0%",
"API Exposure": "1.75%",
@@ -322955,7 +322955,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "16.02%",
- "Error & Exception Exposure": "46.24%",
+ "Error & Exception Exposure": "47.63%",
"Tech Debt Exposure": "10.17%",
"Testing Exposure": "80.0%",
"API Exposure": "1.69%",
@@ -325812,8 +325812,8 @@
"Raw Cognitive Density": 0.873
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.15%",
- "Error & Exception Exposure": "73.05%",
+ "Cognitive Load Exposure": "57.46%",
+ "Error & Exception Exposure": "79.8%",
"Tech Debt Exposure": "20.47%",
"Testing Exposure": "80.0%",
"API Exposure": "4.36%",
@@ -325823,7 +325823,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.79%",
+ "Documentation Exposure": "14.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -326693,8 +326693,8 @@
"Raw Cognitive Density": 0.561
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.96%",
- "Error & Exception Exposure": "67.34%",
+ "Cognitive Load Exposure": "30.79%",
+ "Error & Exception Exposure": "72.63%",
"Tech Debt Exposure": "45.55%",
"Testing Exposure": "80.0%",
"API Exposure": "3.86%",
@@ -326704,7 +326704,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.99%",
+ "Documentation Exposure": "17.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -326926,8 +326926,8 @@
"Raw Cognitive Density": 1.009
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "52.28%",
- "Error & Exception Exposure": "80.35%",
+ "Cognitive Load Exposure": "48.48%",
+ "Error & Exception Exposure": "87.09%",
"Tech Debt Exposure": "24.01%",
"Testing Exposure": "80.0%",
"API Exposure": "6.77%",
@@ -326937,7 +326937,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.29%",
+ "Documentation Exposure": "51.73%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -327545,10 +327545,10 @@
"Raw Cognitive Density": 0.448
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.93%",
- "Error & Exception Exposure": "78.61%",
+ "Cognitive Load Exposure": "18.21%",
+ "Error & Exception Exposure": "85.04%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.47%",
"API Exposure": "1.79%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "98.15%",
@@ -327738,8 +327738,8 @@
"Raw Cognitive Density": 0.371
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.07%",
- "Error & Exception Exposure": "78.45%",
+ "Cognitive Load Exposure": "12.2%",
+ "Error & Exception Exposure": "84.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
"API Exposure": "2.2%",
@@ -327932,9 +327932,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "59.53%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.4%",
"API Exposure": "3.51%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "33.63%",
@@ -328299,8 +328299,8 @@
"Raw Cognitive Density": 0.662
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.39%",
- "Error & Exception Exposure": "33.79%",
+ "Cognitive Load Exposure": "27.29%",
+ "Error & Exception Exposure": "32.3%",
"Tech Debt Exposure": "94.57%",
"Testing Exposure": "80.0%",
"API Exposure": "5.31%",
@@ -328310,7 +328310,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.74%",
+ "Documentation Exposure": "27.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -329578,7 +329578,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.79%",
- "Error & Exception Exposure": "39.69%",
+ "Error & Exception Exposure": "38.32%",
"Tech Debt Exposure": "14.36%",
"Testing Exposure": "2.33%",
"API Exposure": "0.01%",
@@ -329752,8 +329752,8 @@
"Raw Cognitive Density": 0.46
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.75%",
- "Error & Exception Exposure": "57.99%",
+ "Cognitive Load Exposure": "14.32%",
+ "Error & Exception Exposure": "61.77%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.41%",
"API Exposure": "3.05%",
@@ -329919,8 +329919,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "21.04%",
- "Error & Exception Exposure": "57.74%",
+ "Cognitive Load Exposure": "20.81%",
+ "Error & Exception Exposure": "61.26%",
"Tech Debt Exposure": "84.4%",
"Testing Exposure": "41.22%",
"API Exposure": "3.61%",
@@ -329930,7 +329930,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.49%",
+ "Documentation Exposure": "30.04%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -329972,9 +329972,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "63.74%",
+ "Error & Exception Exposure": "68.01%",
"Tech Debt Exposure": "98.9%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.37%",
"API Exposure": "5.29%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "33.63%",
@@ -329982,7 +329982,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.18%",
+ "Documentation Exposure": "38.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -330163,7 +330163,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "51.64%",
+ "Error & Exception Exposure": "54.23%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "2.51%",
"API Exposure": "0.0%",
@@ -330481,8 +330481,8 @@
"Raw Cognitive Density": 0.45
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.32%",
- "Error & Exception Exposure": "49.6%",
+ "Cognitive Load Exposure": "20.99%",
+ "Error & Exception Exposure": "51.39%",
"Tech Debt Exposure": "61.64%",
"Testing Exposure": "80.0%",
"API Exposure": "0.41%",
@@ -330492,7 +330492,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.74%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -331484,8 +331484,8 @@
"Raw Cognitive Density": 0.918
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.85%",
- "Error & Exception Exposure": "65.98%",
+ "Cognitive Load Exposure": "62.25%",
+ "Error & Exception Exposure": "71.4%",
"Tech Debt Exposure": "77.07%",
"Testing Exposure": "80.0%",
"API Exposure": "8.74%",
@@ -331495,7 +331495,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "72.03%",
+ "Documentation Exposure": "69.77%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -336417,18 +336417,18 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "49.74%",
- "Error & Exception Exposure": "71.79%",
- "Tech Debt Exposure": "41.65%",
+ "Cognitive Load Exposure": "39.94%",
+ "Error & Exception Exposure": "75.4%",
+ "Tech Debt Exposure": "40.98%",
"Testing Exposure": "53.75%",
"API Exposure": "0.41%",
- "Concurrency Exposure": "40.58%",
- "State Flux Exposure": "83.27%",
+ "Concurrency Exposure": "39.9%",
+ "State Flux Exposure": "83.26%",
"Commented Logic Exposure": "2.97%",
"Specification Exposure": "72.77%",
"Instability Exposure": "41.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.52%",
+ "Documentation Exposure": "14.94%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -336779,12 +336779,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.166
+ "Raw Cognitive Density": 1.163
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "57.14%",
- "Error & Exception Exposure": "86.94%",
- "Tech Debt Exposure": "91.26%",
+ "Cognitive Load Exposure": "41.96%",
+ "Error & Exception Exposure": "92.02%",
+ "Tech Debt Exposure": "90.68%",
"Testing Exposure": "80.0%",
"API Exposure": "1.21%",
"Concurrency Exposure": "0.0%",
@@ -336793,7 +336793,7 @@
"Specification Exposure": "91.3%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "67.49%",
+ "Documentation Exposure": "37.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -337403,12 +337403,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.2
+ "Raw Cognitive Density": 1.192
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "56.98%",
- "Error & Exception Exposure": "87.49%",
- "Tech Debt Exposure": "98.37%",
+ "Cognitive Load Exposure": "42.71%",
+ "Error & Exception Exposure": "91.23%",
+ "Tech Debt Exposure": "98.02%",
"Testing Exposure": "80.0%",
"API Exposure": "0.06%",
"Concurrency Exposure": "0.0%",
@@ -337759,12 +337759,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.52
+ "Raw Cognitive Density": 1.519
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "71.38%",
- "Error & Exception Exposure": "80.79%",
- "Tech Debt Exposure": "36.39%",
+ "Cognitive Load Exposure": "55.22%",
+ "Error & Exception Exposure": "86.35%",
+ "Tech Debt Exposure": "35.6%",
"Testing Exposure": "80.0%",
"API Exposure": "0.41%",
"Concurrency Exposure": "99.99%",
@@ -337773,7 +337773,7 @@
"Specification Exposure": "96.97%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.76%",
+ "Documentation Exposure": "12.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -338597,21 +338597,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.605
+ "Raw Cognitive Density": 1.602
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.89%",
- "Error & Exception Exposure": "94.25%",
- "Tech Debt Exposure": "68.15%",
+ "Cognitive Load Exposure": "51.91%",
+ "Error & Exception Exposure": "97.37%",
+ "Tech Debt Exposure": "66.56%",
"Testing Exposure": "80.0%",
"API Exposure": "0.31%",
- "Concurrency Exposure": "50.54%",
+ "Concurrency Exposure": "48.54%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.63%",
"Specification Exposure": "89.19%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.96%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -339132,8 +339132,8 @@
"Raw Cognitive Density": 1.412
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.98%",
- "Error & Exception Exposure": "95.12%",
+ "Cognitive Load Exposure": "47.7%",
+ "Error & Exception Exposure": "98.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.91%",
@@ -339143,7 +339143,7 @@
"Specification Exposure": "98.35%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "55.02%",
+ "Documentation Exposure": "40.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -341722,21 +341722,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.147
+ "Raw Cognitive Density": 1.146
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.04%",
- "Error & Exception Exposure": "83.9%",
- "Tech Debt Exposure": "32.64%",
+ "Cognitive Load Exposure": "56.34%",
+ "Error & Exception Exposure": "89.82%",
+ "Tech Debt Exposure": "32.1%",
"Testing Exposure": "80.0%",
"API Exposure": "0.51%",
- "Concurrency Exposure": "31.77%",
+ "Concurrency Exposure": "30.06%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "96.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.0%",
+ "Documentation Exposure": "16.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -342649,21 +342649,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.465
+ "Raw Cognitive Density": 1.464
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.44%",
- "Error & Exception Exposure": "90.55%",
- "Tech Debt Exposure": "25.58%",
+ "Cognitive Load Exposure": "57.68%",
+ "Error & Exception Exposure": "95.14%",
+ "Tech Debt Exposure": "25.39%",
"Testing Exposure": "80.0%",
"API Exposure": "0.36%",
- "Concurrency Exposure": "83.67%",
+ "Concurrency Exposure": "82.55%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "98.6%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.39%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -345703,15 +345703,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.346
+ "Raw Cognitive Density": 1.333
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.78%",
- "Error & Exception Exposure": "81.79%",
+ "Cognitive Load Exposure": "45.58%",
+ "Error & Exception Exposure": "86.54%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.52%",
"API Exposure": "0.67%",
- "Concurrency Exposure": "95.52%",
+ "Concurrency Exposure": "95.17%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.71%",
"Specification Exposure": "50.0%",
@@ -345886,16 +345886,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.813
+ "Raw Cognitive Density": 0.809
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.59%",
- "Error & Exception Exposure": "68.67%",
- "Tech Debt Exposure": "74.78%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "31.56%",
+ "Error & Exception Exposure": "72.31%",
+ "Tech Debt Exposure": "72.68%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.06%",
- "Concurrency Exposure": "84.48%",
- "State Flux Exposure": "99.23%",
+ "Concurrency Exposure": "83.4%",
+ "State Flux Exposure": "99.18%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "90.0%",
"Instability Exposure": "50.0%",
@@ -346150,15 +346150,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.647
+ "Raw Cognitive Density": 1.642
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "48.66%",
- "Error & Exception Exposure": "91.96%",
- "Tech Debt Exposure": "72.66%",
+ "Cognitive Load Exposure": "48.63%",
+ "Error & Exception Exposure": "95.93%",
+ "Tech Debt Exposure": "70.75%",
"Testing Exposure": "80.0%",
"API Exposure": "0.36%",
- "Concurrency Exposure": "41.03%",
+ "Concurrency Exposure": "39.11%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.53%",
"Specification Exposure": "78.57%",
@@ -346570,18 +346570,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "18.92%",
- "Error & Exception Exposure": "29.61%",
- "Tech Debt Exposure": "39.15%",
- "Testing Exposure": "49.02%",
+ "Cognitive Load Exposure": "19.1%",
+ "Error & Exception Exposure": "32.01%",
+ "Tech Debt Exposure": "42.44%",
+ "Testing Exposure": "49.01%",
"API Exposure": "8.08%",
- "Concurrency Exposure": "9.69%",
- "State Flux Exposure": "19.1%",
+ "Concurrency Exposure": "10.25%",
+ "State Flux Exposure": "19.73%",
"Commented Logic Exposure": "3.07%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.47%",
+ "Documentation Exposure": "31.94%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -346622,17 +346622,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "13.1%",
- "Error & Exception Exposure": "40.31%",
- "Tech Debt Exposure": "14.74%",
+ "Error & Exception Exposure": "39.74%",
+ "Tech Debt Exposure": "14.83%",
"Testing Exposure": "80.0%",
"API Exposure": "5.71%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.09%",
+ "State Flux Exposure": "13.79%",
"Commented Logic Exposure": "4.93%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.27%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -347535,18 +347535,18 @@
"Raw Cognitive Density": 0.346
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.44%",
- "Error & Exception Exposure": "40.11%",
- "Tech Debt Exposure": "16.45%",
+ "Cognitive Load Exposure": "16.43%",
+ "Error & Exception Exposure": "40.12%",
+ "Tech Debt Exposure": "16.54%",
"Testing Exposure": "80.0%",
"API Exposure": "11.13%",
- "Concurrency Exposure": "14.16%",
- "State Flux Exposure": "21.96%",
+ "Concurrency Exposure": "15.16%",
+ "State Flux Exposure": "23.0%",
"Commented Logic Exposure": "5.36%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.18%",
+ "Documentation Exposure": "23.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -348983,18 +348983,18 @@
"Raw Cognitive Density": 0.533
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.49%",
- "Error & Exception Exposure": "40.83%",
- "Tech Debt Exposure": "28.61%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "29.5%",
+ "Error & Exception Exposure": "42.68%",
+ "Tech Debt Exposure": "28.76%",
+ "Testing Exposure": "2.62%",
"API Exposure": "5.9%",
- "Concurrency Exposure": "34.28%",
- "State Flux Exposure": "60.45%",
+ "Concurrency Exposure": "36.1%",
+ "State Flux Exposure": "61.87%",
"Commented Logic Exposure": "5.07%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.98%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -350712,13 +350712,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.54
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.03%",
+ "Cognitive Load Exposure": "25.49%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "62.25%",
- "Testing Exposure": "2.42%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.43%",
"API Exposure": "14.68%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -350880,13 +350880,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.341
+ "Raw Cognitive Density": 0.353
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.55%",
- "Error & Exception Exposure": "26.78%",
- "Tech Debt Exposure": "73.68%",
- "Testing Exposure": "2.68%",
+ "Cognitive Load Exposure": "10.98%",
+ "Error & Exception Exposure": "37.51%",
+ "Tech Debt Exposure": "78.98%",
+ "Testing Exposure": "80.0%",
"API Exposure": "2.97%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -351049,8 +351049,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.63%",
- "Error & Exception Exposure": "12.69%",
+ "Cognitive Load Exposure": "3.6%",
+ "Error & Exception Exposure": "13.2%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.4%",
@@ -351258,7 +351258,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.95%",
- "Error & Exception Exposure": "55.34%",
+ "Error & Exception Exposure": "57.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "17.65%",
@@ -351994,7 +351994,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "44.56%",
+ "Error & Exception Exposure": "45.36%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.59%",
@@ -352389,7 +352389,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "3.72%",
- "Error & Exception Exposure": "55.76%",
+ "Error & Exception Exposure": "58.49%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "5.59%",
@@ -352572,7 +352572,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "49.85%",
+ "Error & Exception Exposure": "50.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.16%",
@@ -352767,7 +352767,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "44.28%",
+ "Error & Exception Exposure": "44.42%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.75%",
@@ -352951,7 +352951,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "51.44%",
+ "Error & Exception Exposure": "52.88%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "4.85%",
@@ -353134,7 +353134,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "47.73%",
+ "Error & Exception Exposure": "48.77%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.14%",
@@ -353583,7 +353583,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "47.56%",
+ "Error & Exception Exposure": "48.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.6%",
@@ -354721,7 +354721,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "31.38%",
+ "Error & Exception Exposure": "29.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.12%",
@@ -355138,8 +355138,8 @@
"Raw Cognitive Density": 0.065
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.14%",
- "Error & Exception Exposure": "9.05%",
+ "Cognitive Load Exposure": "1.99%",
+ "Error & Exception Exposure": "6.48%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.72%",
@@ -355639,8 +355639,8 @@
"Raw Cognitive Density": 1.077
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.21%",
- "Error & Exception Exposure": "46.62%",
+ "Cognitive Load Exposure": "33.3%",
+ "Error & Exception Exposure": "47.88%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.09%",
@@ -355874,7 +355874,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.3%",
- "Error & Exception Exposure": "26.83%",
+ "Error & Exception Exposure": "24.27%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.57%",
@@ -356494,7 +356494,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "16.81%",
- "Error & Exception Exposure": "12.32%",
+ "Error & Exception Exposure": "9.72%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.65%",
@@ -356914,7 +356914,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "3.57%",
- "Error & Exception Exposure": "5.49%",
+ "Error & Exception Exposure": "3.54%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "13.1%",
@@ -357981,8 +357981,8 @@
"Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.09%",
- "Error & Exception Exposure": "44.94%",
+ "Cognitive Load Exposure": "2.98%",
+ "Error & Exception Exposure": "49.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.7%",
@@ -358224,8 +358224,8 @@
"Raw Cognitive Density": 0.283
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.0%",
- "Error & Exception Exposure": "47.84%",
+ "Cognitive Load Exposure": "5.88%",
+ "Error & Exception Exposure": "78.78%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.17%",
@@ -359481,7 +359481,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "20.38%",
- "Error & Exception Exposure": "3.92%",
+ "Error & Exception Exposure": "2.43%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "14.27%",
@@ -360145,7 +360145,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "52.95%",
+ "Error & Exception Exposure": "55.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.98%",
@@ -360623,7 +360623,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "14.84%",
+ "Error & Exception Exposure": "12.31%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.19%",
@@ -361966,7 +361966,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "49.68%",
+ "Error & Exception Exposure": "52.14%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.03%",
@@ -362208,7 +362208,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "49.6%",
- "Error & Exception Exposure": "48.18%",
+ "Error & Exception Exposure": "48.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.46%",
@@ -362936,7 +362936,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "23.35%",
- "Error & Exception Exposure": "2.09%",
+ "Error & Exception Exposure": "1.17%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "10.21%",
@@ -363158,7 +363158,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "3.71%",
- "Error & Exception Exposure": "37.1%",
+ "Error & Exception Exposure": "39.18%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "13.22%",
@@ -363664,7 +363664,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "22.61%",
- "Error & Exception Exposure": "49.16%",
+ "Error & Exception Exposure": "80.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "10.43%",
@@ -364029,7 +364029,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "44.88%",
+ "Error & Exception Exposure": "45.72%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "5.59%",
@@ -364648,7 +364648,7 @@
"Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.37%",
+ "Cognitive Load Exposure": "3.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -364855,7 +364855,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "33.68%",
+ "Error & Exception Exposure": "32.27%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.74%",
@@ -365463,7 +365463,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "4.18%",
- "Error & Exception Exposure": "23.5%",
+ "Error & Exception Exposure": "21.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.78%",
@@ -366512,7 +366512,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.98%",
- "Error & Exception Exposure": "38.67%",
+ "Error & Exception Exposure": "37.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.53%",
@@ -368084,7 +368084,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "41.82%",
+ "Error & Exception Exposure": "42.56%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "3.66%",
@@ -369082,7 +369082,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.54%",
- "Error & Exception Exposure": "48.9%",
+ "Error & Exception Exposure": "48.75%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.06%",
@@ -369516,7 +369516,7 @@
"Raw Cognitive Density": 0.029
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.04%",
+ "Cognitive Load Exposure": "1.93%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -369809,8 +369809,8 @@
"Raw Cognitive Density": 0.726
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.75%",
- "Error & Exception Exposure": "28.26%",
+ "Cognitive Load Exposure": "19.03%",
+ "Error & Exception Exposure": "26.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "6.39%",
@@ -370055,7 +370055,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "4.58%",
- "Error & Exception Exposure": "48.31%",
+ "Error & Exception Exposure": "80.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "14.82%",
@@ -370358,7 +370358,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "4.99%",
- "Error & Exception Exposure": "41.2%",
+ "Error & Exception Exposure": "43.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "13.57%",
@@ -370600,7 +370600,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "24.31%",
+ "Error & Exception Exposure": "21.66%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.29%",
@@ -370845,7 +370845,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "5.4%",
- "Error & Exception Exposure": "10.41%",
+ "Error & Exception Exposure": "8.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.2%",
@@ -371337,8 +371337,8 @@
"Raw Cognitive Density": 1.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.03%",
- "Error & Exception Exposure": "48.14%",
+ "Cognitive Load Exposure": "37.62%",
+ "Error & Exception Exposure": "49.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.19%",
@@ -372335,7 +372335,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "38.55%",
+ "Error & Exception Exposure": "37.28%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.48%",
@@ -373205,8 +373205,8 @@
"Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.47%",
- "Error & Exception Exposure": "44.52%",
+ "Cognitive Load Exposure": "2.38%",
+ "Error & Exception Exposure": "45.3%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.19%",
@@ -373388,7 +373388,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "46.57%",
+ "Error & Exception Exposure": "46.84%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "6.58%",
@@ -373580,7 +373580,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "43.08%",
+ "Error & Exception Exposure": "43.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.19%",
@@ -373771,7 +373771,7 @@
"Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.28%",
+ "Cognitive Load Exposure": "2.07%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -373954,7 +373954,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.61%",
- "Error & Exception Exposure": "41.53%",
+ "Error & Exception Exposure": "40.25%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.34%",
@@ -375178,7 +375178,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "50.21%",
+ "Error & Exception Exposure": "51.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.76%",
@@ -375633,7 +375633,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "0.94%",
+ "Error & Exception Exposure": "0.46%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "14.02%",
@@ -377650,7 +377650,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "3.91%",
+ "Error & Exception Exposure": "2.3%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.08%",
@@ -378345,7 +378345,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "47.22%",
+ "Error & Exception Exposure": "50.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.18%",
@@ -379605,7 +379605,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "3.02%",
- "Error & Exception Exposure": "48.68%",
+ "Error & Exception Exposure": "50.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "6.9%",
@@ -379799,7 +379799,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "50.32%",
+ "Error & Exception Exposure": "51.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.96%",
@@ -381063,7 +381063,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "47.67%",
+ "Error & Exception Exposure": "48.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.19%",
@@ -381258,7 +381258,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "40.21%",
+ "Error & Exception Exposure": "39.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.73%",
@@ -381462,7 +381462,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "16.21%",
+ "Error & Exception Exposure": "13.14%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "13.17%",
@@ -383937,7 +383937,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "46.97%",
+ "Error & Exception Exposure": "48.16%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.76%",
@@ -384342,7 +384342,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "12.28%",
- "Error & Exception Exposure": "31.25%",
+ "Error & Exception Exposure": "29.79%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.12%",
@@ -384746,7 +384746,7 @@
"Raw Cognitive Density": 0.241
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.11%",
+ "Cognitive Load Exposure": "4.99%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -385942,7 +385942,7 @@
"Raw Cognitive Density": 0.023
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.56%",
+ "Cognitive Load Exposure": "2.55%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -386299,7 +386299,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "36.94%",
+ "Error & Exception Exposure": "36.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.16%",
@@ -394094,7 +394094,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "56.92%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.9%",
@@ -395411,7 +395411,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "29.28%",
+ "Error & Exception Exposure": "27.86%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "13.16%",
@@ -395673,7 +395673,7 @@
"Raw Cognitive Density": 0.423
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.54%",
+ "Cognitive Load Exposure": "8.17%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -396892,7 +396892,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "21.69%",
- "Error & Exception Exposure": "45.68%",
+ "Error & Exception Exposure": "47.43%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.1%",
@@ -398085,7 +398085,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "8.24%",
- "Error & Exception Exposure": "39.42%",
+ "Error & Exception Exposure": "39.07%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.43%",
@@ -399944,7 +399944,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "40.17%",
+ "Error & Exception Exposure": "39.3%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "6.73%",
@@ -401627,7 +401627,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "4.01%",
- "Error & Exception Exposure": "64.96%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "5.59%",
@@ -401810,8 +401810,8 @@
"Raw Cognitive Density": 0.034
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.5%",
- "Error & Exception Exposure": "46.24%",
+ "Cognitive Load Exposure": "2.47%",
+ "Error & Exception Exposure": "46.48%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "6.55%",
@@ -402006,7 +402006,7 @@
"Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.47%",
+ "Cognitive Load Exposure": "2.38%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -402200,7 +402200,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "30.41%",
- "Error & Exception Exposure": "41.72%",
+ "Error & Exception Exposure": "41.51%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "10.7%",
@@ -402453,8 +402453,8 @@
"Raw Cognitive Density": 1.115
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.11%",
- "Error & Exception Exposure": "37.6%",
+ "Cognitive Load Exposure": "29.44%",
+ "Error & Exception Exposure": "39.04%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.68%",
@@ -402947,7 +402947,7 @@
"Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.47%",
+ "Cognitive Load Exposure": "2.38%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -403092,18 +403092,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "52.42%",
- "Error & Exception Exposure": "68.22%",
- "Tech Debt Exposure": "54.16%",
+ "Cognitive Load Exposure": "50.89%",
+ "Error & Exception Exposure": "72.31%",
+ "Tech Debt Exposure": "54.92%",
"Testing Exposure": "80.0%",
"API Exposure": "1.54%",
- "Concurrency Exposure": "33.42%",
- "State Flux Exposure": "84.4%",
+ "Concurrency Exposure": "33.91%",
+ "State Flux Exposure": "84.91%",
"Commented Logic Exposure": "3.33%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.75%",
+ "Documentation Exposure": "12.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -403142,12 +403142,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.275
+ "Raw Cognitive Density": 1.277
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "44.55%",
- "Error & Exception Exposure": "91.24%",
- "Tech Debt Exposure": "44.92%",
+ "Cognitive Load Exposure": "44.59%",
+ "Error & Exception Exposure": "96.2%",
+ "Tech Debt Exposure": "45.97%",
"Testing Exposure": "80.0%",
"API Exposure": "1.9%",
"Concurrency Exposure": "0.0%",
@@ -403662,21 +403662,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.021
+ "Raw Cognitive Density": 1.023
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.71%",
- "Error & Exception Exposure": "96.41%",
- "Tech Debt Exposure": "70.77%",
+ "Cognitive Load Exposure": "74.87%",
+ "Error & Exception Exposure": "98.91%",
+ "Tech Debt Exposure": "71.89%",
"Testing Exposure": "80.0%",
"API Exposure": "2.07%",
- "Concurrency Exposure": "75.79%",
+ "Concurrency Exposure": "77.23%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.84%",
+ "Documentation Exposure": "13.15%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -404252,9 +404252,9 @@
"Raw Cognitive Density": 1.53
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.16%",
- "Error & Exception Exposure": "76.02%",
- "Tech Debt Exposure": "46.56%",
+ "Cognitive Load Exposure": "69.18%",
+ "Error & Exception Exposure": "84.69%",
+ "Tech Debt Exposure": "46.95%",
"Testing Exposure": "80.0%",
"API Exposure": "1.63%",
"Concurrency Exposure": "100.0%",
@@ -405692,16 +405692,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.515
+ "Raw Cognitive Density": 0.517
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.03%",
- "Error & Exception Exposure": "56.86%",
- "Tech Debt Exposure": "89.15%",
+ "Cognitive Load Exposure": "14.12%",
+ "Error & Exception Exposure": "61.0%",
+ "Tech Debt Exposure": "89.55%",
"Testing Exposure": "80.0%",
"API Exposure": "1.93%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "54.96%",
+ "State Flux Exposure": "56.44%",
"Commented Logic Exposure": "5.06%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -406223,21 +406223,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.857
+ "Raw Cognitive Density": 0.859
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.53%",
- "Error & Exception Exposure": "47.87%",
- "Tech Debt Exposure": "21.55%",
+ "Cognitive Load Exposure": "60.75%",
+ "Error & Exception Exposure": "50.0%",
+ "Tech Debt Exposure": "22.59%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "53.38%",
+ "State Flux Exposure": "54.87%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.98%",
+ "Documentation Exposure": "16.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -406671,16 +406671,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.1
+ "Raw Cognitive Density": 1.101
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.57%",
- "Error & Exception Exposure": "40.88%",
- "Tech Debt Exposure": "52.0%",
+ "Cognitive Load Exposure": "41.83%",
+ "Error & Exception Exposure": "43.07%",
+ "Tech Debt Exposure": "52.57%",
"Testing Exposure": "80.0%",
"API Exposure": "1.69%",
- "Concurrency Exposure": "24.71%",
- "State Flux Exposure": "98.04%",
+ "Concurrency Exposure": "26.23%",
+ "State Flux Exposure": "98.15%",
"Commented Logic Exposure": "4.97%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -407613,18 +407613,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "28.0%",
- "Error & Exception Exposure": "33.88%",
- "Tech Debt Exposure": "11.18%",
- "Testing Exposure": "67.09%",
+ "Cognitive Load Exposure": "24.64%",
+ "Error & Exception Exposure": "22.16%",
+ "Tech Debt Exposure": "10.53%",
+ "Testing Exposure": "28.32%",
"API Exposure": "1.81%",
- "Concurrency Exposure": "15.89%",
- "State Flux Exposure": "11.76%",
+ "Concurrency Exposure": "12.18%",
+ "State Flux Exposure": "9.66%",
"Commented Logic Exposure": "2.66%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.57%",
+ "Documentation Exposure": "25.41%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -407661,21 +407661,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.414
+ "Raw Cognitive Density": 0.409
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.49%",
- "Error & Exception Exposure": "42.33%",
- "Tech Debt Exposure": "18.18%",
+ "Cognitive Load Exposure": "13.49%",
+ "Error & Exception Exposure": "30.86%",
+ "Tech Debt Exposure": "16.9%",
"Testing Exposure": "80.0%",
"API Exposure": "2.91%",
- "Concurrency Exposure": "18.82%",
+ "Concurrency Exposure": "14.41%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.26%",
+ "Documentation Exposure": "31.53%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -408274,21 +408274,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.768
+ "Raw Cognitive Density": 0.764
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "32.22%",
- "Error & Exception Exposure": "33.1%",
- "Tech Debt Exposure": "20.51%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "25.72%",
+ "Error & Exception Exposure": "18.85%",
+ "Tech Debt Exposure": "19.03%",
+ "Testing Exposure": "2.42%",
"API Exposure": "1.9%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "25.4%",
+ "State Flux Exposure": "21.12%",
"Commented Logic Exposure": "4.94%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.08%",
+ "Documentation Exposure": "18.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -409036,21 +409036,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.498
+ "Raw Cognitive Density": 0.496
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.37%",
- "Error & Exception Exposure": "25.69%",
- "Tech Debt Exposure": "10.95%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "17.66%",
+ "Error & Exception Exposure": "12.77%",
+ "Tech Debt Exposure": "10.38%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.58%",
- "Concurrency Exposure": "17.47%",
- "State Flux Exposure": "13.19%",
+ "Concurrency Exposure": "13.32%",
+ "State Flux Exposure": "10.67%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.31%",
+ "Documentation Exposure": "13.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -409932,21 +409932,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.806
+ "Raw Cognitive Density": 0.805
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.53%",
- "Error & Exception Exposure": "23.85%",
- "Tech Debt Exposure": "8.85%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "45.41%",
+ "Error & Exception Exposure": "10.67%",
+ "Tech Debt Exposure": "8.72%",
+ "Testing Exposure": "2.51%",
"API Exposure": "1.94%",
- "Concurrency Exposure": "17.17%",
- "State Flux Exposure": "20.87%",
+ "Concurrency Exposure": "13.08%",
+ "State Flux Exposure": "17.18%",
"Commented Logic Exposure": "5.29%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.42%",
+ "Documentation Exposure": "32.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -412073,21 +412073,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.47
+ "Raw Cognitive Density": 0.467
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.55%",
- "Error & Exception Exposure": "51.8%",
- "Tech Debt Exposure": "8.61%",
+ "Cognitive Load Exposure": "19.29%",
+ "Error & Exception Exposure": "47.02%",
+ "Tech Debt Exposure": "8.14%",
"Testing Exposure": "80.0%",
"API Exposure": "2.76%",
- "Concurrency Exposure": "19.67%",
+ "Concurrency Exposure": "15.1%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.71%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.14%",
+ "Documentation Exposure": "34.73%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -412794,21 +412794,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.502
+ "Raw Cognitive Density": 0.496
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.84%",
- "Error & Exception Exposure": "26.53%",
+ "Cognitive Load Exposure": "26.25%",
+ "Error & Exception Exposure": "12.8%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.56%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.75%",
- "Concurrency Exposure": "22.22%",
- "State Flux Exposure": "11.13%",
+ "Concurrency Exposure": "17.18%",
+ "State Flux Exposure": "8.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.21%",
+ "Documentation Exposure": "21.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -413132,10 +413132,10 @@
"Static: Literature & Documentation": "33.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "33.37%",
- "Error & Exception Exposure": "43.64%",
- "Tech Debt Exposure": "33.68%",
- "Testing Exposure": "40.43%",
+ "Cognitive Load Exposure": "32.61%",
+ "Error & Exception Exposure": "45.9%",
+ "Tech Debt Exposure": "32.23%",
+ "Testing Exposure": "40.42%",
"API Exposure": "2.51%",
"Concurrency Exposure": "3.79%",
"State Flux Exposure": "55.64%",
@@ -413143,7 +413143,7 @@
"Specification Exposure": "66.67%",
"Instability Exposure": "33.33%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.12%",
+ "Documentation Exposure": "11.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -413820,8 +413820,8 @@
"Raw Cognitive Density": 0.764
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "44.91%",
- "Error & Exception Exposure": "50.86%",
+ "Cognitive Load Exposure": "43.78%",
+ "Error & Exception Exposure": "54.34%",
"Tech Debt Exposure": "97.75%",
"Testing Exposure": "80.0%",
"API Exposure": "1.64%",
@@ -413831,7 +413831,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.37%",
+ "Documentation Exposure": "18.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -415484,8 +415484,8 @@
"Raw Cognitive Density": 0.808
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.03%",
- "Error & Exception Exposure": "71.74%",
+ "Cognitive Load Exposure": "34.9%",
+ "Error & Exception Exposure": "78.81%",
"Tech Debt Exposure": "8.73%",
"Testing Exposure": "80.0%",
"API Exposure": "2.78%",
@@ -415495,7 +415495,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.87%",
+ "Documentation Exposure": "16.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -417413,8 +417413,8 @@
"Raw Cognitive Density": 0.383
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.43%",
- "Error & Exception Exposure": "56.26%",
+ "Cognitive Load Exposure": "14.85%",
+ "Error & Exception Exposure": "60.58%",
"Tech Debt Exposure": "10.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.16%",
@@ -417424,7 +417424,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.19%",
+ "Documentation Exposure": "12.5%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -417987,8 +417987,8 @@
"Raw Cognitive Density": 1.052
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.71%",
- "Error & Exception Exposure": "70.14%",
+ "Cognitive Load Exposure": "68.42%",
+ "Error & Exception Exposure": "77.07%",
"Tech Debt Exposure": "99.99%",
"Testing Exposure": "80.0%",
"API Exposure": "0.34%",
@@ -418422,13 +418422,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.962
+ "Raw Cognitive Density": 0.933
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.01%",
- "Error & Exception Exposure": "82.04%",
- "Tech Debt Exposure": "64.46%",
- "Testing Exposure": "2.53%",
+ "Cognitive Load Exposure": "67.55%",
+ "Error & Exception Exposure": "82.98%",
+ "Tech Debt Exposure": "47.03%",
+ "Testing Exposure": "2.48%",
"API Exposure": "2.9%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -418604,7 +418604,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "71.4%",
- "Error & Exception Exposure": "93.42%",
+ "Error & Exception Exposure": "97.17%",
"Tech Debt Exposure": "23.28%",
"Testing Exposure": "80.0%",
"API Exposure": "8.72%",
@@ -418881,7 +418881,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.58%",
+ "Testing Exposure": "2.59%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -419188,8 +419188,8 @@
"Raw Cognitive Density": 1.43
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.95%",
- "Error & Exception Exposure": "99.23%",
+ "Cognitive Load Exposure": "90.45%",
+ "Error & Exception Exposure": "99.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.58%",
@@ -419199,7 +419199,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "53.21%",
+ "Documentation Exposure": "50.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -419957,18 +419957,18 @@
"Static: Literature & Documentation": "3.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "35.89%",
- "Error & Exception Exposure": "58.87%",
- "Tech Debt Exposure": "23.27%",
+ "Cognitive Load Exposure": "33.05%",
+ "Error & Exception Exposure": "58.17%",
+ "Tech Debt Exposure": "20.03%",
"Testing Exposure": "25.79%",
"API Exposure": "1.82%",
- "Concurrency Exposure": "4.34%",
- "State Flux Exposure": "60.94%",
+ "Concurrency Exposure": "4.16%",
+ "State Flux Exposure": "60.62%",
"Commented Logic Exposure": "3.69%",
"Specification Exposure": "39.39%",
"Instability Exposure": "48.48%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.33%",
+ "Documentation Exposure": "6.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -420319,16 +420319,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.5
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.89%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "22.44%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -420497,12 +420497,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.872
+ "Raw Cognitive Density": 0.854
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.96%",
- "Error & Exception Exposure": "79.65%",
- "Tech Debt Exposure": "52.28%",
+ "Cognitive Load Exposure": "60.22%",
+ "Error & Exception Exposure": "82.24%",
+ "Tech Debt Exposure": "40.95%",
"Testing Exposure": "80.0%",
"API Exposure": "5.08%",
"Concurrency Exposure": "0.0%",
@@ -420685,12 +420685,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.094
+ "Raw Cognitive Density": 1.047
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.85%",
- "Error & Exception Exposure": "86.12%",
- "Tech Debt Exposure": "73.41%",
+ "Cognitive Load Exposure": "52.68%",
+ "Error & Exception Exposure": "87.78%",
+ "Tech Debt Exposure": "46.1%",
"Testing Exposure": "2.31%",
"API Exposure": "6.16%",
"Concurrency Exposure": "0.0%",
@@ -420699,7 +420699,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "53.65%",
+ "Documentation Exposure": "29.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -421171,7 +421171,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.35%",
+ "Error & Exception Exposure": "71.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -421328,7 +421328,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "70.3%",
+ "Error & Exception Exposure": "68.26%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -421799,17 +421799,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "29.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -421956,17 +421956,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "29.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -422423,12 +422423,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.992
+ "Raw Cognitive Density": 0.968
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.77%",
- "Error & Exception Exposure": "85.9%",
- "Tech Debt Exposure": "51.98%",
+ "Cognitive Load Exposure": "36.95%",
+ "Error & Exception Exposure": "88.97%",
+ "Tech Debt Exposure": "37.38%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -422437,7 +422437,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.57%",
+ "Documentation Exposure": "17.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -422601,13 +422601,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.455
+ "Raw Cognitive Density": 1.406
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "57.24%",
- "Error & Exception Exposure": "95.15%",
- "Tech Debt Exposure": "94.42%",
- "Testing Exposure": "2.52%",
+ "Cognitive Load Exposure": "46.62%",
+ "Error & Exception Exposure": "96.84%",
+ "Tech Debt Exposure": "83.18%",
+ "Testing Exposure": "2.48%",
"API Exposure": "6.03%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -422615,7 +422615,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.44%",
+ "Documentation Exposure": "18.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -422779,13 +422779,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.077
+ "Raw Cognitive Density": 2.019
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.51%",
- "Error & Exception Exposure": "98.56%",
+ "Cognitive Load Exposure": "99.38%",
+ "Error & Exception Exposure": "99.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -422936,12 +422936,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.974
+ "Raw Cognitive Density": 0.967
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.95%",
- "Error & Exception Exposure": "84.79%",
- "Tech Debt Exposure": "42.23%",
+ "Cognitive Load Exposure": "55.44%",
+ "Error & Exception Exposure": "88.57%",
+ "Tech Debt Exposure": "37.98%",
"Testing Exposure": "80.0%",
"API Exposure": "3.26%",
"Concurrency Exposure": "0.0%",
@@ -422950,7 +422950,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.39%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -423174,12 +423174,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.999
+ "Raw Cognitive Density": 0.989
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.04%",
- "Error & Exception Exposure": "93.17%",
- "Tech Debt Exposure": "24.52%",
+ "Cognitive Load Exposure": "72.27%",
+ "Error & Exception Exposure": "96.45%",
+ "Tech Debt Exposure": "20.31%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -423362,15 +423362,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.893
+ "Raw Cognitive Density": 0.885
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.97%",
- "Error & Exception Exposure": "76.21%",
+ "Cognitive Load Exposure": "63.15%",
+ "Error & Exception Exposure": "78.14%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "43.1%",
+ "Concurrency Exposure": "37.34%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -423580,12 +423580,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.987
+ "Raw Cognitive Density": 0.984
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.73%",
- "Error & Exception Exposure": "93.02%",
- "Tech Debt Exposure": "78.3%",
+ "Cognitive Load Exposure": "66.25%",
+ "Error & Exception Exposure": "96.65%",
+ "Tech Debt Exposure": "76.11%",
"Testing Exposure": "80.0%",
"API Exposure": "5.03%",
"Concurrency Exposure": "0.0%",
@@ -423594,7 +423594,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.1%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -423952,11 +423952,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.636
+ "Raw Cognitive Density": 0.619
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.83%",
- "Error & Exception Exposure": "51.03%",
+ "Cognitive Load Exposure": "37.22%",
+ "Error & Exception Exposure": "33.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -424111,12 +424111,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.249
+ "Raw Cognitive Density": 1.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.54%",
- "Error & Exception Exposure": "96.01%",
- "Tech Debt Exposure": "26.0%",
+ "Cognitive Load Exposure": "53.67%",
+ "Error & Exception Exposure": "98.29%",
+ "Tech Debt Exposure": "22.21%",
"Testing Exposure": "80.0%",
"API Exposure": "5.18%",
"Concurrency Exposure": "0.0%",
@@ -424313,12 +424313,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.48%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -424466,11 +424466,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.087
+ "Raw Cognitive Density": 1.043
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.38%",
- "Error & Exception Exposure": "81.56%",
+ "Cognitive Load Exposure": "76.39%",
+ "Error & Exception Exposure": "78.26%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "5.8%",
@@ -424480,7 +424480,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.68%",
+ "Documentation Exposure": "21.8%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -424783,9 +424783,9 @@
"Raw Cognitive Density": 0.958
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.45%",
- "Error & Exception Exposure": "86.73%",
- "Tech Debt Exposure": "46.22%",
+ "Cognitive Load Exposure": "59.24%",
+ "Error & Exception Exposure": "92.12%",
+ "Tech Debt Exposure": "45.6%",
"Testing Exposure": "80.0%",
"API Exposure": "7.29%",
"Concurrency Exposure": "0.0%",
@@ -424794,7 +424794,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.37%",
+ "Documentation Exposure": "16.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -425692,16 +425692,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "32.18%",
- "Tech Debt Exposure": "99.75%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "11.33%",
+ "Tech Debt Exposure": "98.9%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -425852,12 +425852,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.872
+ "Raw Cognitive Density": 0.854
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.96%",
- "Error & Exception Exposure": "79.65%",
- "Tech Debt Exposure": "52.28%",
+ "Cognitive Load Exposure": "60.22%",
+ "Error & Exception Exposure": "82.24%",
+ "Tech Debt Exposure": "40.95%",
"Testing Exposure": "80.0%",
"API Exposure": "5.08%",
"Concurrency Exposure": "0.0%",
@@ -425866,7 +425866,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.49%",
+ "Documentation Exposure": "14.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -426040,11 +426040,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.028
+ "Raw Cognitive Density": 0.991
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.57%",
- "Error & Exception Exposure": "99.53%",
+ "Cognitive Load Exposure": "63.19%",
+ "Error & Exception Exposure": "99.89%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
@@ -426199,12 +426199,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.023
+ "Raw Cognitive Density": 1.002
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.86%",
- "Error & Exception Exposure": "94.11%",
- "Tech Debt Exposure": "28.36%",
+ "Cognitive Load Exposure": "73.24%",
+ "Error & Exception Exposure": "96.95%",
+ "Tech Debt Exposure": "18.98%",
"Testing Exposure": "80.0%",
"API Exposure": "4.23%",
"Concurrency Exposure": "0.0%",
@@ -426213,7 +426213,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.27%",
+ "Documentation Exposure": "19.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -426407,11 +426407,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.14
+ "Raw Cognitive Density": 1.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.64%",
- "Error & Exception Exposure": "84.52%",
+ "Cognitive Load Exposure": "78.92%",
+ "Error & Exception Exposure": "84.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -426540,9 +426540,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "40.39%",
- "Error & Exception Exposure": "86.28%",
- "Tech Debt Exposure": "47.03%",
+ "Cognitive Load Exposure": "33.8%",
+ "Error & Exception Exposure": "90.49%",
+ "Tech Debt Exposure": "45.88%",
"Testing Exposure": "80.0%",
"API Exposure": "0.06%",
"Concurrency Exposure": "0.0%",
@@ -426588,12 +426588,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.763
+ "Raw Cognitive Density": 0.757
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.63%",
- "Error & Exception Exposure": "82.4%",
- "Tech Debt Exposure": "16.34%",
+ "Cognitive Load Exposure": "25.37%",
+ "Error & Exception Exposure": "87.38%",
+ "Tech Debt Exposure": "14.6%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -426867,11 +426867,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.064
+ "Raw Cognitive Density": 1.063
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "59.29%",
- "Error & Exception Exposure": "94.37%",
+ "Cognitive Load Exposure": "46.92%",
+ "Error & Exception Exposure": "97.67%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -429017,12 +429017,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.1
+ "Raw Cognitive Density": 1.096
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "50.85%",
- "Error & Exception Exposure": "96.69%",
- "Tech Debt Exposure": "82.34%",
+ "Cognitive Load Exposure": "39.97%",
+ "Error & Exception Exposure": "98.82%",
+ "Tech Debt Exposure": "80.01%",
"Testing Exposure": "80.0%",
"API Exposure": "0.21%",
"Concurrency Exposure": "0.0%",
@@ -429428,12 +429428,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.781
+ "Raw Cognitive Density": 0.779
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.53%",
- "Error & Exception Exposure": "75.26%",
- "Tech Debt Exposure": "16.74%",
+ "Cognitive Load Exposure": "26.47%",
+ "Error & Exception Exposure": "80.17%",
+ "Tech Debt Exposure": "16.17%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -430409,12 +430409,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.86
+ "Raw Cognitive Density": 0.857
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.66%",
- "Error & Exception Exposure": "82.69%",
- "Tech Debt Exposure": "19.72%",
+ "Cognitive Load Exposure": "30.28%",
+ "Error & Exception Exposure": "88.38%",
+ "Tech Debt Exposure": "18.63%",
"Testing Exposure": "80.0%",
"API Exposure": "0.07%",
"Concurrency Exposure": "0.0%",
@@ -430712,18 +430712,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "16.58%",
- "Error & Exception Exposure": "50.21%",
- "Tech Debt Exposure": "37.49%",
- "Testing Exposure": "57.86%",
+ "Cognitive Load Exposure": "14.52%",
+ "Error & Exception Exposure": "49.39%",
+ "Tech Debt Exposure": "35.85%",
+ "Testing Exposure": "57.85%",
"API Exposure": "4.85%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "10.94%",
+ "State Flux Exposure": "9.15%",
"Commented Logic Exposure": "1.44%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.76%",
+ "Documentation Exposure": "21.5%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -430760,13 +430760,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.333
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.62%",
+ "Cognitive Load Exposure": "11.47%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.33%",
- "Testing Exposure": "2.65%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.57%",
"API Exposure": "3.08%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -430774,7 +430774,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "34.35%",
+ "Documentation Exposure": "13.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -430963,12 +430963,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.294
+ "Raw Cognitive Density": 0.293
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.65%",
- "Error & Exception Exposure": "59.73%",
- "Tech Debt Exposure": "8.35%",
+ "Cognitive Load Exposure": "13.43%",
+ "Error & Exception Exposure": "61.73%",
+ "Tech Debt Exposure": "8.14%",
"Testing Exposure": "80.0%",
"API Exposure": "9.31%",
"Concurrency Exposure": "0.0%",
@@ -430977,7 +430977,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.95%",
+ "Documentation Exposure": "29.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -432591,13 +432591,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.103
+ "Raw Cognitive Density": 0.076
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.8%",
- "Error & Exception Exposure": "58.85%",
+ "Cognitive Load Exposure": "6.02%",
+ "Error & Exception Exposure": "55.67%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.36%",
"API Exposure": "1.05%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -432605,7 +432605,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.11%",
+ "Documentation Exposure": "17.08%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -432923,21 +432923,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.564
+ "Raw Cognitive Density": 0.559
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.61%",
- "Error & Exception Exposure": "64.61%",
- "Tech Debt Exposure": "31.5%",
+ "Cognitive Load Exposure": "20.95%",
+ "Error & Exception Exposure": "66.2%",
+ "Tech Debt Exposure": "29.61%",
"Testing Exposure": "80.0%",
"API Exposure": "4.95%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "11.26%",
+ "State Flux Exposure": "9.08%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.44%",
+ "Documentation Exposure": "19.21%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -433887,21 +433887,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.418
+ "Raw Cognitive Density": 0.414
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.32%",
- "Error & Exception Exposure": "50.0%",
- "Tech Debt Exposure": "71.83%",
+ "Cognitive Load Exposure": "16.42%",
+ "Error & Exception Exposure": "44.12%",
+ "Tech Debt Exposure": "69.35%",
"Testing Exposure": "80.0%",
"API Exposure": "7.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "40.64%",
+ "State Flux Exposure": "35.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.69%",
+ "Documentation Exposure": "31.24%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -435160,21 +435160,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.477
+ "Raw Cognitive Density": 0.475
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.97%",
- "Error & Exception Exposure": "53.95%",
- "Tech Debt Exposure": "35.69%",
+ "Cognitive Load Exposure": "21.33%",
+ "Error & Exception Exposure": "51.56%",
+ "Tech Debt Exposure": "33.87%",
"Testing Exposure": "80.0%",
"API Exposure": "4.67%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "11.01%",
+ "State Flux Exposure": "8.87%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.94%",
+ "Documentation Exposure": "21.12%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -436523,21 +436523,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.352
+ "Raw Cognitive Density": 0.349
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.08%",
- "Error & Exception Exposure": "64.35%",
- "Tech Debt Exposure": "15.74%",
+ "Cognitive Load Exposure": "12.04%",
+ "Error & Exception Exposure": "66.43%",
+ "Tech Debt Exposure": "14.71%",
"Testing Exposure": "80.0%",
"API Exposure": "3.08%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.67%",
+ "State Flux Exposure": "11.07%",
"Commented Logic Exposure": "5.24%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.83%",
+ "Documentation Exposure": "18.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -437790,18 +437790,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "52.25%",
- "Error & Exception Exposure": "57.92%",
- "Tech Debt Exposure": "55.39%",
- "Testing Exposure": "15.97%",
+ "Cognitive Load Exposure": "50.1%",
+ "Error & Exception Exposure": "51.31%",
+ "Tech Debt Exposure": "53.45%",
+ "Testing Exposure": "9.23%",
"API Exposure": "1.5%",
- "Concurrency Exposure": "16.04%",
- "State Flux Exposure": "76.75%",
+ "Concurrency Exposure": "15.63%",
+ "State Flux Exposure": "76.3%",
"Commented Logic Exposure": "2.53%",
"Specification Exposure": "52.17%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.6%",
+ "Documentation Exposure": "11.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -437838,21 +437838,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.46
+ "Raw Cognitive Density": 2.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.89%",
- "Error & Exception Exposure": "51.61%",
+ "Cognitive Load Exposure": "99.87%",
+ "Error & Exception Exposure": "31.62%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.55%",
"API Exposure": "7.78%",
- "Concurrency Exposure": "25.6%",
+ "Concurrency Exposure": "22.68%",
"State Flux Exposure": "99.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "89.43%",
+ "Documentation Exposure": "74.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -438026,13 +438026,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.123
+ "Raw Cognitive Density": 3.117
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.74%",
- "Error & Exception Exposure": "61.93%",
- "Tech Debt Exposure": "99.94%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "87.91%",
+ "Error & Exception Exposure": "46.67%",
+ "Tech Debt Exposure": "99.92%",
+ "Testing Exposure": "2.71%",
"API Exposure": "2.98%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -438040,7 +438040,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.45%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -438366,21 +438366,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.682
+ "Raw Cognitive Density": 2.675
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.75%",
+ "Cognitive Load Exposure": "92.94%",
"Error & Exception Exposure": "79.12%",
- "Tech Debt Exposure": "30.29%",
+ "Tech Debt Exposure": "26.72%",
"Testing Exposure": "80.0%",
"API Exposure": "6.14%",
- "Concurrency Exposure": "81.71%",
+ "Concurrency Exposure": "79.2%",
"State Flux Exposure": "99.97%",
"Commented Logic Exposure": "5.68%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.19%",
+ "Documentation Exposure": "30.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -438727,12 +438727,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.012
+ "Raw Cognitive Density": 2.993
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "69.99%",
- "Error & Exception Exposure": "77.15%",
- "Tech Debt Exposure": "99.53%",
+ "Error & Exception Exposure": "75.1%",
+ "Tech Debt Exposure": "99.25%",
"Testing Exposure": "80.0%",
"API Exposure": "10.47%",
"Concurrency Exposure": "0.0%",
@@ -438741,7 +438741,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.7%",
+ "Documentation Exposure": "99.19%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -438965,13 +438965,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.45
+ "Raw Cognitive Density": 1.41
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.07%",
- "Error & Exception Exposure": "77.28%",
+ "Cognitive Load Exposure": "52.27%",
+ "Error & Exception Exposure": "69.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -439148,10 +439148,10 @@
"Raw Cognitive Density": 2.952
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.65%",
- "Error & Exception Exposure": "34.5%",
- "Tech Debt Exposure": "95.43%",
- "Testing Exposure": "2.75%",
+ "Cognitive Load Exposure": "96.09%",
+ "Error & Exception Exposure": "16.39%",
+ "Tech Debt Exposure": "95.31%",
+ "Testing Exposure": "2.63%",
"API Exposure": "0.02%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -440349,17 +440349,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "57.34%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "47.86%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.2%",
+ "Documentation Exposure": "21.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -440515,21 +440515,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.726
+ "Raw Cognitive Density": 4.712
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.8%",
- "Error & Exception Exposure": "83.0%",
+ "Cognitive Load Exposure": "93.01%",
+ "Error & Exception Exposure": "80.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.61%",
"API Exposure": "3.49%",
- "Concurrency Exposure": "98.73%",
+ "Concurrency Exposure": "98.51%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.35%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.0%",
+ "Documentation Exposure": "21.26%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -440773,16 +440773,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.516
+ "Raw Cognitive Density": 0.484
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "28.14%",
- "Error & Exception Exposure": "81.27%",
+ "Cognitive Load Exposure": "25.68%",
+ "Error & Exception Exposure": "83.79%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "59.87%",
+ "State Flux Exposure": "56.95%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -441109,13 +441109,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.37
+ "Raw Cognitive Density": 1.33
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.2%",
- "Error & Exception Exposure": "68.72%",
- "Tech Debt Exposure": "73.11%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "72.84%",
+ "Error & Exception Exposure": "53.85%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -441277,15 +441277,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.9
+ "Raw Cognitive Density": 2.86
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.99%",
- "Error & Exception Exposure": "76.45%",
+ "Cognitive Load Exposure": "49.99%",
+ "Error & Exception Exposure": "75.92%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.81%",
+ "Testing Exposure": "2.76%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "63.03%",
+ "Concurrency Exposure": "59.23%",
"State Flux Exposure": "99.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
@@ -441489,15 +441489,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.167
+ "Raw Cognitive Density": 4.163
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "38.13%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "80.0%",
+ "Error & Exception Exposure": "15.36%",
+ "Tech Debt Exposure": "86.5%",
+ "Testing Exposure": "2.9%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "99.88%",
+ "Concurrency Exposure": "99.85%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.34%",
"Specification Exposure": "100.0%",
@@ -441845,12 +441845,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "70.83%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -442043,12 +442043,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "59.21%",
+ "Error & Exception Exposure": "47.86%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -442207,16 +442207,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.04
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "89.54%",
+ "Cognitive Load Exposure": "76.13%",
+ "Error & Exception Exposure": "91.01%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.81%",
+ "Testing Exposure": "2.74%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -442398,16 +442398,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.6
+ "Raw Cognitive Density": 4.594
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "27.42%",
- "Tech Debt Exposure": "99.94%",
- "Testing Exposure": "2.55%",
+ "Error & Exception Exposure": "9.47%",
+ "Tech Debt Exposure": "99.92%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.37%",
+ "State Flux Exposure": "99.29%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -442734,7 +442734,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -443020,9 +443020,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.9%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -443194,16 +443194,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.721
+ "Raw Cognitive Density": 0.691
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.06%",
- "Error & Exception Exposure": "81.03%",
+ "Cognitive Load Exposure": "44.14%",
+ "Error & Exception Exposure": "83.7%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "69.87%",
+ "State Flux Exposure": "67.29%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -443540,16 +443540,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.38
+ "Raw Cognitive Density": 1.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.55%",
- "Error & Exception Exposure": "75.13%",
- "Tech Debt Exposure": "99.75%",
+ "Cognitive Load Exposure": "91.37%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "99.33%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -443714,12 +443714,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.66%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -443858,10 +443858,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "54.67%",
- "Error & Exception Exposure": "80.31%",
+ "Cognitive Load Exposure": "51.92%",
+ "Error & Exception Exposure": "87.7%",
"Tech Debt Exposure": "51.99%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "57.9%",
"API Exposure": "5.38%",
"Concurrency Exposure": "2.77%",
"State Flux Exposure": "100.0%",
@@ -443869,7 +443869,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.6%",
+ "Documentation Exposure": "22.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -443909,8 +443909,8 @@
"Raw Cognitive Density": 1.464
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "59.12%",
- "Error & Exception Exposure": "90.52%",
+ "Cognitive Load Exposure": "52.86%",
+ "Error & Exception Exposure": "95.87%",
"Tech Debt Exposure": "35.38%",
"Testing Exposure": "80.0%",
"API Exposure": "5.75%",
@@ -443920,7 +443920,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.84%",
+ "Documentation Exposure": "22.58%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -444713,7 +444713,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "48.21%",
- "Error & Exception Exposure": "75.59%",
+ "Error & Exception Exposure": "84.35%",
"Tech Debt Exposure": "65.76%",
"Testing Exposure": "80.0%",
"API Exposure": "7.74%",
@@ -444723,7 +444723,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.45%",
+ "Documentation Exposure": "21.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -445682,10 +445682,10 @@
"Raw Cognitive Density": 1.409
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.89%",
- "Error & Exception Exposure": "67.48%",
+ "Cognitive Load Exposure": "72.81%",
+ "Error & Exception Exposure": "77.79%",
"Tech Debt Exposure": "74.49%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.77%",
"API Exposure": "4.98%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -445693,7 +445693,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.95%",
+ "Documentation Exposure": "25.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -445963,8 +445963,8 @@
"Raw Cognitive Density": 1.019
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.34%",
- "Error & Exception Exposure": "72.32%",
+ "Cognitive Load Exposure": "50.76%",
+ "Error & Exception Exposure": "81.7%",
"Tech Debt Exposure": "28.87%",
"Testing Exposure": "80.0%",
"API Exposure": "1.48%",
@@ -446235,10 +446235,10 @@
"Raw Cognitive Density": 1.016
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.83%",
- "Error & Exception Exposure": "88.94%",
+ "Cognitive Load Exposure": "61.98%",
+ "Error & Exception Exposure": "94.58%",
"Tech Debt Exposure": "20.8%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.5%",
"API Exposure": "5.12%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -446246,7 +446246,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.97%",
+ "Documentation Exposure": "23.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -446514,7 +446514,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "38.93%",
- "Error & Exception Exposure": "91.35%",
+ "Error & Exception Exposure": "96.25%",
"Tech Debt Exposure": "83.75%",
"Testing Exposure": "80.0%",
"API Exposure": "8.2%",
@@ -446524,7 +446524,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.45%",
+ "Documentation Exposure": "19.29%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -447623,8 +447623,8 @@
"Raw Cognitive Density": 0.936
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "42.38%",
- "Error & Exception Exposure": "75.97%",
+ "Cognitive Load Exposure": "37.89%",
+ "Error & Exception Exposure": "83.38%",
"Tech Debt Exposure": "54.89%",
"Testing Exposure": "80.0%",
"API Exposure": "4.41%",
@@ -447634,7 +447634,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.63%",
+ "Documentation Exposure": "35.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -447964,7 +447964,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "30.67%",
- "Error & Exception Exposure": "63.85%",
+ "Error & Exception Exposure": "69.59%",
"Tech Debt Exposure": "81.27%",
"Testing Exposure": "60.3%",
"API Exposure": "6.81%",
@@ -447974,7 +447974,7 @@
"Specification Exposure": "87.5%",
"Instability Exposure": "43.75%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.47%",
+ "Documentation Exposure": "11.26%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -448172,7 +448172,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "27.46%",
- "Error & Exception Exposure": "67.38%",
+ "Error & Exception Exposure": "73.69%",
"Tech Debt Exposure": "98.18%",
"Testing Exposure": "80.0%",
"API Exposure": "9.17%",
@@ -448182,7 +448182,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.15%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -449404,7 +449404,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "35.28%",
- "Error & Exception Exposure": "82.61%",
+ "Error & Exception Exposure": "89.64%",
"Tech Debt Exposure": "79.59%",
"Testing Exposure": "80.0%",
"API Exposure": "5.05%",
@@ -450124,7 +450124,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "43.87%",
- "Error & Exception Exposure": "91.94%",
+ "Error & Exception Exposure": "96.53%",
"Tech Debt Exposure": "97.52%",
"Testing Exposure": "80.0%",
"API Exposure": "12.0%",
@@ -450134,7 +450134,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.58%",
+ "Documentation Exposure": "18.55%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -451446,7 +451446,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "37.89%",
- "Error & Exception Exposure": "73.56%",
+ "Error & Exception Exposure": "82.05%",
"Tech Debt Exposure": "83.64%",
"Testing Exposure": "80.0%",
"API Exposure": "5.49%",
@@ -452495,7 +452495,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.58%",
- "Error & Exception Exposure": "54.94%",
+ "Error & Exception Exposure": "59.87%",
"Tech Debt Exposure": "98.77%",
"Testing Exposure": "2.4%",
"API Exposure": "5.58%",
@@ -452867,7 +452867,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "42.3%",
- "Error & Exception Exposure": "69.7%",
+ "Error & Exception Exposure": "76.92%",
"Tech Debt Exposure": "96.78%",
"Testing Exposure": "80.0%",
"API Exposure": "8.34%",
@@ -452877,7 +452877,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.31%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -454695,7 +454695,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "41.0%",
- "Error & Exception Exposure": "70.68%",
+ "Error & Exception Exposure": "77.98%",
"Tech Debt Exposure": "95.71%",
"Testing Exposure": "80.0%",
"API Exposure": "8.88%",
@@ -454705,7 +454705,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.93%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -455758,13 +455758,13 @@
"Static: Literature & Documentation": "14.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "60.13%",
- "Error & Exception Exposure": "79.18%",
- "Tech Debt Exposure": "4.77%",
- "Testing Exposure": "57.49%",
+ "Cognitive Load Exposure": "59.05%",
+ "Error & Exception Exposure": "79.69%",
+ "Tech Debt Exposure": "4.31%",
+ "Testing Exposure": "46.43%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "12.31%",
- "State Flux Exposure": "84.81%",
+ "Concurrency Exposure": "11.86%",
+ "State Flux Exposure": "84.65%",
"Commented Logic Exposure": "9.02%",
"Specification Exposure": "78.57%",
"Instability Exposure": "42.86%",
@@ -455963,15 +455963,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.315
+ "Raw Cognitive Density": 1.289
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.56%",
- "Error & Exception Exposure": "98.73%",
+ "Cognitive Load Exposure": "89.63%",
+ "Error & Exception Exposure": "99.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "86.16%",
+ "Concurrency Exposure": "83.04%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.35%",
"Specification Exposure": "100.0%",
@@ -456141,12 +456141,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.044
+ "Raw Cognitive Density": 1.042
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.43%",
- "Error & Exception Exposure": "93.82%",
- "Tech Debt Exposure": "11.04%",
+ "Cognitive Load Exposure": "76.3%",
+ "Error & Exception Exposure": "96.68%",
+ "Tech Debt Exposure": "10.41%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -457039,16 +457039,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "71.62%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -457207,13 +457207,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.088
+ "Raw Cognitive Density": 1.078
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.44%",
- "Error & Exception Exposure": "94.75%",
+ "Cognitive Load Exposure": "78.76%",
+ "Error & Exception Exposure": "96.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.6%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -457505,12 +457505,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.069
+ "Raw Cognitive Density": 1.066
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.11%",
- "Error & Exception Exposure": "98.2%",
- "Tech Debt Exposure": "9.46%",
+ "Cognitive Load Exposure": "74.56%",
+ "Error & Exception Exposure": "99.46%",
+ "Tech Debt Exposure": "8.91%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -457863,12 +457863,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.056
+ "Raw Cognitive Density": 1.048
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.3%",
- "Error & Exception Exposure": "97.11%",
- "Tech Debt Exposure": "12.89%",
+ "Cognitive Load Exposure": "76.74%",
+ "Error & Exception Exposure": "98.77%",
+ "Tech Debt Exposure": "10.84%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -458268,7 +458268,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "41.52%",
- "Error & Exception Exposure": "63.59%",
+ "Error & Exception Exposure": "66.78%",
"Tech Debt Exposure": "57.93%",
"Testing Exposure": "41.19%",
"API Exposure": "0.27%",
@@ -458278,7 +458278,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.49%",
+ "Documentation Exposure": "7.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -458320,7 +458320,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "88.72%",
- "Error & Exception Exposure": "95.0%",
+ "Error & Exception Exposure": "98.13%",
"Tech Debt Exposure": "42.11%",
"Testing Exposure": "80.0%",
"API Exposure": "1.64%",
@@ -458330,7 +458330,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.86%",
+ "Documentation Exposure": "12.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -459405,7 +459405,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "9.97%",
- "Error & Exception Exposure": "52.36%",
+ "Error & Exception Exposure": "54.28%",
"Tech Debt Exposure": "92.41%",
"Testing Exposure": "2.47%",
"API Exposure": "0.0%",
@@ -459590,7 +459590,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "86.25%",
- "Error & Exception Exposure": "84.33%",
+ "Error & Exception Exposure": "90.48%",
"Tech Debt Exposure": "19.45%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -459600,7 +459600,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.75%",
+ "Documentation Exposure": "12.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -460034,7 +460034,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "59.53%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -460224,7 +460224,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "64.14%",
- "Error & Exception Exposure": "90.34%",
+ "Error & Exception Exposure": "95.2%",
"Tech Debt Exposure": "69.08%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -460234,7 +460234,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.3%",
+ "Documentation Exposure": "17.26%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -468757,7 +468757,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "28.16%",
- "Error & Exception Exposure": "71.01%",
+ "Error & Exception Exposure": "76.03%",
"Tech Debt Exposure": "65.28%",
"Testing Exposure": "31.22%",
"API Exposure": "3.74%",
@@ -468965,7 +468965,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "34.62%",
- "Error & Exception Exposure": "88.89%",
+ "Error & Exception Exposure": "94.46%",
"Tech Debt Exposure": "75.32%",
"Testing Exposure": "80.0%",
"API Exposure": "6.32%",
@@ -469700,7 +469700,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "43.4%",
- "Error & Exception Exposure": "79.66%",
+ "Error & Exception Exposure": "86.91%",
"Tech Debt Exposure": "99.95%",
"Testing Exposure": "80.0%",
"API Exposure": "5.64%",
@@ -470447,7 +470447,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "19.59%",
- "Error & Exception Exposure": "64.17%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.42%",
"API Exposure": "1.07%",
@@ -470640,7 +470640,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "30.81%",
- "Error & Exception Exposure": "79.03%",
+ "Error & Exception Exposure": "86.56%",
"Tech Debt Exposure": "99.55%",
"Testing Exposure": "2.44%",
"API Exposure": "1.26%",
@@ -470848,7 +470848,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "32.42%",
- "Error & Exception Exposure": "91.73%",
+ "Error & Exception Exposure": "96.33%",
"Tech Debt Exposure": "73.68%",
"Testing Exposure": "2.48%",
"API Exposure": "3.62%",
@@ -471059,7 +471059,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "36.38%",
- "Error & Exception Exposure": "95.53%",
+ "Error & Exception Exposure": "98.48%",
"Tech Debt Exposure": "74.86%",
"Testing Exposure": "80.0%",
"API Exposure": "7.16%",
@@ -472669,7 +472669,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "28.08%",
- "Error & Exception Exposure": "69.03%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "98.9%",
"Testing Exposure": "2.41%",
"API Exposure": "4.83%",
@@ -472849,18 +472849,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "35.29%",
- "Error & Exception Exposure": "85.91%",
- "Tech Debt Exposure": "36.63%",
- "Testing Exposure": "57.82%",
+ "Cognitive Load Exposure": "35.34%",
+ "Error & Exception Exposure": "86.68%",
+ "Tech Debt Exposure": "37.33%",
+ "Testing Exposure": "57.83%",
"API Exposure": "2.61%",
- "Concurrency Exposure": "39.22%",
- "State Flux Exposure": "91.45%",
+ "Concurrency Exposure": "40.13%",
+ "State Flux Exposure": "91.65%",
"Commented Logic Exposure": "4.41%",
"Specification Exposure": "85.37%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.43%",
+ "Documentation Exposure": "40.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -472897,21 +472897,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.047
+ "Raw Cognitive Density": 1.048
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.32%",
- "Error & Exception Exposure": "86.89%",
- "Tech Debt Exposure": "78.24%",
- "Testing Exposure": "2.47%",
+ "Cognitive Load Exposure": "38.37%",
+ "Error & Exception Exposure": "87.07%",
+ "Tech Debt Exposure": "79.08%",
+ "Testing Exposure": "2.48%",
"API Exposure": "2.07%",
- "Concurrency Exposure": "74.67%",
+ "Concurrency Exposure": "76.15%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.12%",
"Specification Exposure": "97.56%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.2%",
+ "Documentation Exposure": "46.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -473474,12 +473474,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.152
+ "Raw Cognitive Density": 1.154
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.65%",
- "Error & Exception Exposure": "96.8%",
- "Tech Debt Exposure": "58.56%",
+ "Cognitive Load Exposure": "41.71%",
+ "Error & Exception Exposure": "96.88%",
+ "Tech Debt Exposure": "60.58%",
"Testing Exposure": "80.0%",
"API Exposure": "0.48%",
"Concurrency Exposure": "0.0%",
@@ -473908,21 +473908,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.969
+ "Raw Cognitive Density": 0.972
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.28%",
- "Error & Exception Exposure": "82.87%",
- "Tech Debt Exposure": "90.24%",
+ "Cognitive Load Exposure": "35.44%",
+ "Error & Exception Exposure": "83.49%",
+ "Tech Debt Exposure": "91.47%",
"Testing Exposure": "80.0%",
"API Exposure": "6.03%",
- "Concurrency Exposure": "73.32%",
+ "Concurrency Exposure": "74.85%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.17%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.45%",
+ "Documentation Exposure": "98.55%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -474197,17 +474197,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.12%",
+ "Error & Exception Exposure": "59.32%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "4.23%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "40.13%",
+ "State Flux Exposure": "41.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.44%",
+ "Documentation Exposure": "24.31%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -474354,12 +474354,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.37
+ "Raw Cognitive Density": 1.371
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "46.14%",
- "Error & Exception Exposure": "93.12%",
- "Tech Debt Exposure": "17.07%",
+ "Cognitive Load Exposure": "46.15%",
+ "Error & Exception Exposure": "93.18%",
+ "Tech Debt Exposure": "17.35%",
"Testing Exposure": "80.0%",
"API Exposure": "1.48%",
"Concurrency Exposure": "0.0%",
@@ -474368,7 +474368,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.12%",
+ "Documentation Exposure": "20.36%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -474832,15 +474832,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.082
+ "Raw Cognitive Density": 1.083
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.52%",
- "Error & Exception Exposure": "92.76%",
- "Tech Debt Exposure": "12.26%",
+ "Cognitive Load Exposure": "39.57%",
+ "Error & Exception Exposure": "92.87%",
+ "Tech Debt Exposure": "12.84%",
"Testing Exposure": "80.0%",
"API Exposure": "0.9%",
- "Concurrency Exposure": "78.38%",
+ "Concurrency Exposure": "79.7%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.13%",
"Specification Exposure": "100.0%",
@@ -475290,21 +475290,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.367
+ "Raw Cognitive Density": 1.37
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "46.09%",
- "Error & Exception Exposure": "93.8%",
+ "Cognitive Load Exposure": "46.14%",
+ "Error & Exception Exposure": "93.94%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.08%",
- "Concurrency Exposure": "48.19%",
+ "Concurrency Exposure": "50.19%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "67.98%",
+ "Documentation Exposure": "68.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -475675,18 +475675,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "38.43%",
- "Error & Exception Exposure": "75.7%",
- "Tech Debt Exposure": "60.83%",
- "Testing Exposure": "36.9%",
+ "Cognitive Load Exposure": "38.97%",
+ "Error & Exception Exposure": "76.83%",
+ "Tech Debt Exposure": "64.84%",
+ "Testing Exposure": "36.91%",
"API Exposure": "1.03%",
- "Concurrency Exposure": "10.58%",
+ "Concurrency Exposure": "10.74%",
"State Flux Exposure": "88.89%",
"Commented Logic Exposure": "4.08%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.29%",
+ "Documentation Exposure": "24.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -475723,12 +475723,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.948
+ "Raw Cognitive Density": 0.956
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.43%",
- "Error & Exception Exposure": "98.64%",
- "Tech Debt Exposure": "99.05%",
+ "Cognitive Load Exposure": "34.77%",
+ "Error & Exception Exposure": "98.74%",
+ "Tech Debt Exposure": "99.22%",
"Testing Exposure": "80.0%",
"API Exposure": "3.06%",
"Concurrency Exposure": "0.0%",
@@ -475737,7 +475737,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.12%",
+ "Documentation Exposure": "47.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -476036,21 +476036,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.039
+ "Raw Cognitive Density": 1.042
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "42.25%",
- "Error & Exception Exposure": "96.56%",
- "Tech Debt Exposure": "41.17%",
+ "Cognitive Load Exposure": "42.38%",
+ "Error & Exception Exposure": "96.68%",
+ "Tech Debt Exposure": "44.08%",
"Testing Exposure": "80.0%",
"API Exposure": "2.21%",
- "Concurrency Exposure": "69.5%",
+ "Concurrency Exposure": "71.17%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.29%",
+ "Documentation Exposure": "55.77%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -476353,7 +476353,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "37.75%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -476516,12 +476516,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.04
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.42%",
+ "Cognitive Load Exposure": "4.76%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "81.76%",
+ "Tech Debt Exposure": "88.08%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -476698,12 +476698,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.352
+ "Raw Cognitive Density": 2.361
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "64.5%",
- "Error & Exception Exposure": "96.89%",
- "Tech Debt Exposure": "96.99%",
+ "Error & Exception Exposure": "97.15%",
+ "Tech Debt Exposure": "97.82%",
"Testing Exposure": "80.0%",
"API Exposure": "1.91%",
"Concurrency Exposure": "100.0%",
@@ -476712,7 +476712,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.08%",
+ "Documentation Exposure": "45.78%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -476937,12 +476937,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.972
+ "Raw Cognitive Density": 0.975
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.0%",
- "Error & Exception Exposure": "88.11%",
- "Tech Debt Exposure": "22.47%",
+ "Cognitive Load Exposure": "40.1%",
+ "Error & Exception Exposure": "88.38%",
+ "Tech Debt Exposure": "23.48%",
"Testing Exposure": "80.0%",
"API Exposure": "0.79%",
"Concurrency Exposure": "0.0%",
@@ -476951,7 +476951,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.93%",
+ "Documentation Exposure": "15.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -477331,13 +477331,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.946
+ "Raw Cognitive Density": 0.964
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.35%",
- "Error & Exception Exposure": "85.23%",
- "Tech Debt Exposure": "99.05%",
- "Testing Exposure": "2.56%",
+ "Cognitive Load Exposure": "35.1%",
+ "Error & Exception Exposure": "87.11%",
+ "Tech Debt Exposure": "99.39%",
+ "Testing Exposure": "2.59%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -477534,11 +477534,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.966
+ "Raw Cognitive Density": 0.974
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.87%",
- "Error & Exception Exposure": "87.86%",
+ "Cognitive Load Exposure": "39.21%",
+ "Error & Exception Exposure": "88.67%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -477701,12 +477701,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.998
+ "Raw Cognitive Density": 1.0
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.46%",
- "Error & Exception Exposure": "97.19%",
- "Tech Debt Exposure": "94.82%",
+ "Cognitive Load Exposure": "36.53%",
+ "Error & Exception Exposure": "97.24%",
+ "Tech Debt Exposure": "95.15%",
"Testing Exposure": "80.0%",
"API Exposure": "0.04%",
"Concurrency Exposure": "0.0%",
@@ -478172,13 +478172,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "75.29%",
- "Tech Debt Exposure": "81.76%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "88.08%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -478356,15 +478356,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.884
+ "Raw Cognitive Density": 0.895
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.55%",
- "Error & Exception Exposure": "75.14%",
- "Tech Debt Exposure": "19.04%",
+ "Cognitive Load Exposure": "32.04%",
+ "Error & Exception Exposure": "77.04%",
+ "Tech Debt Exposure": "23.43%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "20.86%",
+ "Concurrency Exposure": "22.21%",
"State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -478554,12 +478554,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.335
+ "Raw Cognitive Density": 1.342
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "59.61%",
- "Error & Exception Exposure": "89.06%",
- "Tech Debt Exposure": "95.56%",
+ "Cognitive Load Exposure": "59.75%",
+ "Error & Exception Exposure": "89.58%",
+ "Tech Debt Exposure": "96.29%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -478568,7 +478568,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.32%",
+ "Documentation Exposure": "14.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -478865,13 +478865,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.888
+ "Raw Cognitive Density": 0.897
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.79%",
- "Error & Exception Exposure": "89.73%",
- "Tech Debt Exposure": "71.92%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "52.48%",
+ "Error & Exception Exposure": "90.55%",
+ "Tech Debt Exposure": "78.32%",
+ "Testing Exposure": "2.47%",
"API Exposure": "3.34%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -478879,7 +478879,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "85.17%",
+ "Documentation Exposure": "87.02%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -479123,13 +479123,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.762
+ "Raw Cognitive Density": 0.778
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.81%",
- "Error & Exception Exposure": "54.33%",
- "Tech Debt Exposure": "90.57%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "27.64%",
+ "Error & Exception Exposure": "57.89%",
+ "Tech Debt Exposure": "94.57%",
+ "Testing Exposure": "2.44%",
"API Exposure": "2.14%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -479137,7 +479137,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.23%",
+ "Documentation Exposure": "53.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -479337,12 +479337,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.892
+ "Raw Cognitive Density": 0.896
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "46.12%",
- "Error & Exception Exposure": "94.02%",
- "Tech Debt Exposure": "80.32%",
+ "Cognitive Load Exposure": "46.35%",
+ "Error & Exception Exposure": "94.23%",
+ "Tech Debt Exposure": "82.29%",
"Testing Exposure": "80.0%",
"API Exposure": "2.77%",
"Concurrency Exposure": "0.0%",
@@ -479351,7 +479351,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "70.31%",
+ "Documentation Exposure": "71.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -479737,13 +479737,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.963
+ "Raw Cognitive Density": 0.977
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.13%",
- "Error & Exception Exposure": "70.77%",
- "Tech Debt Exposure": "23.75%",
- "Testing Exposure": "2.54%",
+ "Cognitive Load Exposure": "71.23%",
+ "Error & Exception Exposure": "73.31%",
+ "Tech Debt Exposure": "30.29%",
+ "Testing Exposure": "2.57%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -479933,13 +479933,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.917
+ "Raw Cognitive Density": 0.929
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "33.04%",
- "Error & Exception Exposure": "84.35%",
- "Tech Debt Exposure": "21.26%",
- "Testing Exposure": "2.54%",
+ "Cognitive Load Exposure": "33.57%",
+ "Error & Exception Exposure": "85.81%",
+ "Tech Debt Exposure": "26.66%",
+ "Testing Exposure": "2.56%",
"API Exposure": "2.24%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -479947,7 +479947,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.77%",
+ "Documentation Exposure": "40.29%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -480134,12 +480134,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.44%",
- "Error & Exception Exposure": "79.48%",
- "Tech Debt Exposure": "37.75%",
+ "Cognitive Load Exposure": "36.01%",
+ "Error & Exception Exposure": "82.14%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -480281,18 +480281,18 @@
"Static: Literature & Documentation": "4.8%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "56.72%",
- "Error & Exception Exposure": "77.83%",
- "Tech Debt Exposure": "11.15%",
- "Testing Exposure": "13.32%",
+ "Cognitive Load Exposure": "53.63%",
+ "Error & Exception Exposure": "77.58%",
+ "Tech Debt Exposure": "10.02%",
+ "Testing Exposure": "13.31%",
"API Exposure": "1.32%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "90.15%",
+ "State Flux Exposure": "90.09%",
"Commented Logic Exposure": "1.33%",
"Specification Exposure": "33.33%",
"Instability Exposure": "47.62%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.6%",
+ "Documentation Exposure": "4.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -480486,21 +480486,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.837
+ "Raw Cognitive Density": 0.825
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.29%",
- "Error & Exception Exposure": "77.74%",
- "Tech Debt Exposure": "68.72%",
+ "Cognitive Load Exposure": "28.71%",
+ "Error & Exception Exposure": "80.63%",
+ "Tech Debt Exposure": "61.96%",
"Testing Exposure": "80.0%",
"API Exposure": "8.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.42%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -480724,11 +480724,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.23
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.21%",
- "Error & Exception Exposure": "93.7%",
+ "Cognitive Load Exposure": "84.29%",
+ "Error & Exception Exposure": "95.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -480881,12 +480881,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.082
+ "Raw Cognitive Density": 1.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.43%",
- "Error & Exception Exposure": "94.63%",
- "Tech Debt Exposure": "70.72%",
+ "Cognitive Load Exposure": "64.6%",
+ "Error & Exception Exposure": "97.69%",
+ "Tech Debt Exposure": "69.39%",
"Testing Exposure": "80.0%",
"API Exposure": "1.79%",
"Concurrency Exposure": "0.0%",
@@ -481409,12 +481409,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.233
+ "Raw Cognitive Density": 1.231
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.0%",
- "Error & Exception Exposure": "97.43%",
- "Tech Debt Exposure": "13.22%",
+ "Cognitive Load Exposure": "78.32%",
+ "Error & Exception Exposure": "99.14%",
+ "Tech Debt Exposure": "12.5%",
"Testing Exposure": "80.0%",
"API Exposure": "1.9%",
"Concurrency Exposure": "0.0%",
@@ -481784,16 +481784,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.96
+ "Raw Cognitive Density": 0.9
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.85%",
- "Error & Exception Exposure": "83.3%",
+ "Cognitive Load Exposure": "64.57%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -481941,16 +481941,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.909
+ "Raw Cognitive Density": 0.855
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.39%",
- "Error & Exception Exposure": "78.72%",
+ "Cognitive Load Exposure": "60.3%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.99%",
+ "State Flux Exposure": "99.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -482098,13 +482098,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.977
+ "Raw Cognitive Density": 0.952
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "71.25%",
- "Error & Exception Exposure": "97.52%",
+ "Cognitive Load Exposure": "69.14%",
+ "Error & Exception Exposure": "99.02%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.58%",
+ "Testing Exposure": "2.54%",
"API Exposure": "2.64%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -482112,7 +482112,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.92%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -482308,16 +482308,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.74
+ "Raw Cognitive Density": 0.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.0%",
- "Error & Exception Exposure": "85.81%",
+ "Cognitive Load Exposure": "43.05%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.67%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -482465,11 +482465,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.02
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "81.63%",
+ "Cognitive Load Exposure": "74.65%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -482624,21 +482624,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.6
+ "Raw Cognitive Density": 0.54
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.43%",
- "Error & Exception Exposure": "69.7%",
+ "Cognitive Load Exposure": "15.08%",
+ "Error & Exception Exposure": "60.96%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "3.35%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.67%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.5%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -482781,11 +482781,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.97
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "68.59%",
+ "Cognitive Load Exposure": "70.71%",
+ "Error & Exception Exposure": "59.79%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -482949,11 +482949,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.056
+ "Raw Cognitive Density": 1.026
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.29%",
- "Error & Exception Exposure": "93.79%",
+ "Cognitive Load Exposure": "75.06%",
+ "Error & Exception Exposure": "96.28%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -483108,13 +483108,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.112
+ "Raw Cognitive Density": 1.09
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.95%",
- "Error & Exception Exposure": "92.75%",
- "Tech Debt Exposure": "81.6%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "79.6%",
+ "Error & Exception Exposure": "95.81%",
+ "Tech Debt Exposure": "66.63%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -483278,13 +483278,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.011
+ "Raw Cognitive Density": 0.977
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.0%",
- "Error & Exception Exposure": "97.32%",
+ "Cognitive Load Exposure": "35.64%",
+ "Error & Exception Exposure": "98.77%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "2.83%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -483438,11 +483438,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.02
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "85.81%",
+ "Cognitive Load Exposure": "74.65%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -483595,13 +483595,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.07
+ "Raw Cognitive Density": 1.01
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.25%",
- "Error & Exception Exposure": "91.81%",
+ "Cognitive Load Exposure": "73.89%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.45%",
"API Exposure": "3.48%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -483609,7 +483609,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "29.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -483763,16 +483763,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.48
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.35%",
- "Error & Exception Exposure": "69.48%",
+ "Cognitive Load Exposure": "21.08%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -483922,11 +483922,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.136
+ "Raw Cognitive Density": 1.093
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.19%",
- "Error & Exception Exposure": "92.54%",
+ "Cognitive Load Exposure": "39.88%",
+ "Error & Exception Exposure": "94.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "2.88%",
@@ -483936,7 +483936,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.01%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -484079,11 +484079,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.057
+ "Raw Cognitive Density": 1.0
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.32%",
- "Error & Exception Exposure": "82.18%",
+ "Cognitive Load Exposure": "73.11%",
+ "Error & Exception Exposure": "81.45%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -484212,18 +484212,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "30.01%",
- "Error & Exception Exposure": "57.22%",
- "Tech Debt Exposure": "20.72%",
- "Testing Exposure": "37.72%",
+ "Cognitive Load Exposure": "27.03%",
+ "Error & Exception Exposure": "51.88%",
+ "Tech Debt Exposure": "17.79%",
+ "Testing Exposure": "23.6%",
"API Exposure": "2.77%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "40.36%",
+ "State Flux Exposure": "39.52%",
"Commented Logic Exposure": "1.04%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.34%",
+ "Documentation Exposure": "23.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -484260,13 +484260,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.03
+ "Raw Cognitive Density": 0.97
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.4%",
- "Error & Exception Exposure": "97.17%",
+ "Cognitive Load Exposure": "70.68%",
+ "Error & Exception Exposure": "98.52%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -484428,11 +484428,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.046
+ "Raw Cognitive Density": 2.026
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.35%",
- "Error & Exception Exposure": "97.83%",
+ "Cognitive Load Exposure": "89.25%",
+ "Error & Exception Exposure": "99.16%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -484646,21 +484646,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.73
+ "Raw Cognitive Density": 0.722
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "33.99%",
- "Error & Exception Exposure": "53.14%",
+ "Cognitive Load Exposure": "24.27%",
+ "Error & Exception Exposure": "44.46%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.57%",
"API Exposure": "2.28%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "85.98%",
+ "State Flux Exposure": "82.83%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.7%",
+ "Documentation Exposure": "28.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -485080,13 +485080,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.332
+ "Raw Cognitive Density": 0.326
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.7%",
- "Error & Exception Exposure": "37.63%",
- "Tech Debt Exposure": "10.31%",
- "Testing Exposure": "2.46%",
+ "Cognitive Load Exposure": "13.66%",
+ "Error & Exception Exposure": "25.39%",
+ "Tech Debt Exposure": "9.01%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.07%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -485094,7 +485094,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.46%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -485365,21 +485365,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.55
+ "Raw Cognitive Density": 0.544
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "24.5%",
- "Error & Exception Exposure": "54.14%",
- "Tech Debt Exposure": "25.38%",
- "Testing Exposure": "2.66%",
+ "Cognitive Load Exposure": "19.86%",
+ "Error & Exception Exposure": "47.62%",
+ "Tech Debt Exposure": "22.58%",
+ "Testing Exposure": "2.53%",
"API Exposure": "2.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "58.38%",
+ "State Flux Exposure": "52.46%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.07%",
+ "Documentation Exposure": "33.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -485842,13 +485842,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.326
+ "Raw Cognitive Density": 0.308
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.42%",
- "Error & Exception Exposure": "55.15%",
- "Tech Debt Exposure": "18.51%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "5.1%",
+ "Error & Exception Exposure": "49.75%",
+ "Tech Debt Exposure": "12.63%",
+ "Testing Exposure": "2.33%",
"API Exposure": "3.6%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -485856,7 +485856,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.34%",
+ "Documentation Exposure": "14.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -486048,12 +486048,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.068
+ "Raw Cognitive Density": 0.053
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.06%",
- "Error & Exception Exposure": "35.04%",
- "Tech Debt Exposure": "15.46%",
+ "Cognitive Load Exposure": "2.9%",
+ "Error & Exception Exposure": "21.96%",
+ "Tech Debt Exposure": "11.35%",
"Testing Exposure": "2.31%",
"API Exposure": "12.28%",
"Concurrency Exposure": "0.0%",
@@ -486062,7 +486062,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "93.44%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -486221,16 +486221,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.964
+ "Raw Cognitive Density": 0.935
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.08%",
- "Error & Exception Exposure": "55.92%",
- "Tech Debt Exposure": "46.38%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "33.84%",
+ "Error & Exception Exposure": "39.89%",
+ "Tech Debt Exposure": "29.53%",
+ "Testing Exposure": "2.51%",
"API Exposure": "0.41%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.57%",
+ "State Flux Exposure": "99.45%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -486432,13 +486432,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.318
+ "Raw Cognitive Density": 0.227
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.06%",
- "Error & Exception Exposure": "88.31%",
- "Tech Debt Exposure": "99.78%",
- "Testing Exposure": "2.72%",
+ "Cognitive Load Exposure": "10.98%",
+ "Error & Exception Exposure": "88.84%",
+ "Tech Debt Exposure": "98.87%",
+ "Testing Exposure": "2.62%",
"API Exposure": "1.99%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -486446,7 +486446,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "77.03%",
+ "Documentation Exposure": "55.53%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -486672,10 +486672,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.642
+ "Raw Cognitive Density": 0.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.69%",
+ "Cognitive Load Exposure": "17.72%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -486686,7 +486686,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.09%",
+ "Documentation Exposure": "80.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -486904,12 +486904,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.229
+ "Raw Cognitive Density": 0.228
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.89%",
- "Error & Exception Exposure": "55.09%",
- "Tech Debt Exposure": "12.05%",
+ "Cognitive Load Exposure": "9.07%",
+ "Error & Exception Exposure": "55.14%",
+ "Tech Debt Exposure": "11.67%",
"Testing Exposure": "80.0%",
"API Exposure": "0.82%",
"Concurrency Exposure": "0.0%",
@@ -486918,7 +486918,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.72%",
+ "Documentation Exposure": "14.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -488335,18 +488335,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "34.27%",
- "Error & Exception Exposure": "56.48%",
- "Tech Debt Exposure": "69.23%",
+ "Cognitive Load Exposure": "31.17%",
+ "Error & Exception Exposure": "52.0%",
+ "Tech Debt Exposure": "66.62%",
"Testing Exposure": "80.0%",
"API Exposure": "5.36%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "39.06%",
+ "State Flux Exposure": "36.75%",
"Commented Logic Exposure": "3.63%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.8%",
+ "Documentation Exposure": "53.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -488383,12 +488383,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.247
+ "Raw Cognitive Density": 0.227
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.91%",
- "Error & Exception Exposure": "60.1%",
- "Tech Debt Exposure": "97.84%",
+ "Cognitive Load Exposure": "5.49%",
+ "Error & Exception Exposure": "56.0%",
+ "Tech Debt Exposure": "96.44%",
"Testing Exposure": "80.0%",
"API Exposure": "4.44%",
"Concurrency Exposure": "0.0%",
@@ -488397,7 +488397,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.97%",
+ "Documentation Exposure": "63.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -488854,21 +488854,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.94
+ "Raw Cognitive Density": 0.935
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.29%",
- "Error & Exception Exposure": "61.94%",
- "Tech Debt Exposure": "13.16%",
+ "Cognitive Load Exposure": "63.02%",
+ "Error & Exception Exposure": "58.59%",
+ "Tech Debt Exposure": "11.75%",
"Testing Exposure": "80.0%",
"API Exposure": "0.37%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.15%",
+ "State Flux Exposure": "95.16%",
"Commented Logic Exposure": "9.27%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.54%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -489158,21 +489158,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.839
+ "Raw Cognitive Density": 0.828
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "48.92%",
- "Error & Exception Exposure": "54.9%",
- "Tech Debt Exposure": "65.9%",
+ "Cognitive Load Exposure": "41.49%",
+ "Error & Exception Exposure": "49.5%",
+ "Tech Debt Exposure": "58.29%",
"Testing Exposure": "80.0%",
"API Exposure": "3.01%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "48.26%",
+ "State Flux Exposure": "42.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "48.68%",
+ "Documentation Exposure": "40.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -489549,16 +489549,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.408
+ "Raw Cognitive Density": 0.405
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.99%",
- "Error & Exception Exposure": "48.96%",
+ "Cognitive Load Exposure": "14.66%",
+ "Error & Exception Exposure": "43.91%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "13.61%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "11.82%",
+ "State Flux Exposure": "9.54%",
"Commented Logic Exposure": "5.24%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -496498,13 +496498,13 @@
"Static: Literature & Documentation": "2.2%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "61.93%",
- "Error & Exception Exposure": "57.62%",
- "Tech Debt Exposure": "45.17%",
- "Testing Exposure": "7.22%",
+ "Cognitive Load Exposure": "61.35%",
+ "Error & Exception Exposure": "59.13%",
+ "Tech Debt Exposure": "38.29%",
+ "Testing Exposure": "5.49%",
"API Exposure": "1.48%",
- "Concurrency Exposure": "3.48%",
- "State Flux Exposure": "67.08%",
+ "Concurrency Exposure": "3.23%",
+ "State Flux Exposure": "67.02%",
"Commented Logic Exposure": "4.54%",
"Specification Exposure": "68.89%",
"Instability Exposure": "48.89%",
@@ -496703,13 +496703,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.216
+ "Raw Cognitive Density": 1.202
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.57%",
- "Error & Exception Exposure": "78.55%",
- "Tech Debt Exposure": "49.12%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "85.91%",
+ "Error & Exception Exposure": "81.66%",
+ "Tech Debt Exposure": "40.44%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.39%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -496915,13 +496915,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.302
+ "Raw Cognitive Density": 1.278
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.08%",
- "Error & Exception Exposure": "80.5%",
- "Tech Debt Exposure": "70.54%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "89.2%",
+ "Error & Exception Exposure": "82.66%",
+ "Tech Debt Exposure": "56.9%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.56%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -497116,13 +497116,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.392
+ "Raw Cognitive Density": 1.361
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.88%",
- "Error & Exception Exposure": "85.62%",
- "Tech Debt Exposure": "87.8%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "92.0%",
+ "Error & Exception Exposure": "87.9%",
+ "Tech Debt Exposure": "76.57%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -497317,16 +497317,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.011
+ "Raw Cognitive Density": 0.977
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.99%",
- "Error & Exception Exposure": "72.45%",
- "Tech Debt Exposure": "91.13%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "71.28%",
+ "Error & Exception Exposure": "70.87%",
+ "Tech Debt Exposure": "81.42%",
+ "Testing Exposure": "2.37%",
"API Exposure": "2.88%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.77%",
+ "State Flux Exposure": "99.73%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -497507,12 +497507,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.174
+ "Raw Cognitive Density": 1.167
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.5%",
- "Error & Exception Exposure": "78.79%",
- "Tech Debt Exposure": "38.27%",
+ "Cognitive Load Exposure": "84.11%",
+ "Error & Exception Exposure": "83.18%",
+ "Tech Debt Exposure": "34.03%",
"Testing Exposure": "80.0%",
"API Exposure": "2.17%",
"Concurrency Exposure": "0.0%",
@@ -497749,13 +497749,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.424
+ "Raw Cognitive Density": 1.39
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.68%",
- "Error & Exception Exposure": "82.52%",
- "Tech Debt Exposure": "75.98%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "92.84%",
+ "Error & Exception Exposure": "83.91%",
+ "Tech Debt Exposure": "57.66%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.7%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -497939,13 +497939,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.264
+ "Raw Cognitive Density": 1.243
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.64%",
- "Error & Exception Exposure": "90.6%",
- "Tech Debt Exposure": "60.13%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "87.79%",
+ "Error & Exception Exposure": "93.97%",
+ "Tech Debt Exposure": "47.43%",
+ "Testing Exposure": "2.37%",
"API Exposure": "2.64%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -498129,16 +498129,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.104
+ "Raw Cognitive Density": 1.075
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.46%",
- "Error & Exception Exposure": "76.6%",
- "Tech Debt Exposure": "40.68%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "78.62%",
+ "Error & Exception Exposure": "77.52%",
+ "Tech Debt Exposure": "25.26%",
+ "Testing Exposure": "2.37%",
"API Exposure": "2.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -498466,13 +498466,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.414
+ "Raw Cognitive Density": 1.391
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.44%",
- "Error & Exception Exposure": "83.5%",
- "Tech Debt Exposure": "67.79%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "92.86%",
+ "Error & Exception Exposure": "86.15%",
+ "Tech Debt Exposure": "54.28%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.52%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -498667,13 +498667,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.453
+ "Raw Cognitive Density": 1.423
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.33%",
- "Error & Exception Exposure": "81.23%",
- "Tech Debt Exposure": "84.66%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "93.66%",
+ "Error & Exception Exposure": "82.31%",
+ "Tech Debt Exposure": "72.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "2.65%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -498867,16 +498867,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.948
+ "Raw Cognitive Density": 0.918
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.86%",
- "Error & Exception Exposure": "74.0%",
- "Tech Debt Exposure": "86.78%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "66.15%",
+ "Error & Exception Exposure": "73.61%",
+ "Tech Debt Exposure": "75.18%",
+ "Testing Exposure": "2.36%",
"API Exposure": "2.83%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.91%",
+ "State Flux Exposure": "99.89%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -499057,13 +499057,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.339
+ "Raw Cognitive Density": 1.317
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.33%",
- "Error & Exception Exposure": "84.62%",
- "Tech Debt Exposure": "77.27%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "90.63%",
+ "Error & Exception Exposure": "87.82%",
+ "Tech Debt Exposure": "66.63%",
+ "Testing Exposure": "2.4%",
"API Exposure": "2.52%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -499269,13 +499269,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.385
+ "Raw Cognitive Density": 1.354
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.7%",
- "Error & Exception Exposure": "85.43%",
- "Tech Debt Exposure": "95.11%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "91.81%",
+ "Error & Exception Exposure": "87.71%",
+ "Tech Debt Exposure": "89.91%",
+ "Testing Exposure": "2.4%",
"API Exposure": "2.71%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -499480,15 +499480,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.578
+ "Raw Cognitive Density": 1.561
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.48%",
- "Error & Exception Exposure": "80.49%",
- "Tech Debt Exposure": "33.3%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "96.25%",
+ "Error & Exception Exposure": "83.06%",
+ "Tech Debt Exposure": "24.77%",
+ "Testing Exposure": "2.37%",
"API Exposure": "2.55%",
- "Concurrency Exposure": "92.4%",
+ "Concurrency Exposure": "90.53%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.85%",
"Specification Exposure": "100.0%",
@@ -499658,13 +499658,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.105
+ "Raw Cognitive Density": 1.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.5%",
- "Error & Exception Exposure": "85.15%",
- "Tech Debt Exposure": "30.1%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "80.25%",
+ "Error & Exception Exposure": "89.79%",
+ "Tech Debt Exposure": "28.01%",
+ "Testing Exposure": "2.4%",
"API Exposure": "2.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -499940,13 +499940,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.378
+ "Raw Cognitive Density": 1.341
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.5%",
- "Error & Exception Exposure": "82.53%",
- "Tech Debt Exposure": "81.21%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "91.42%",
+ "Error & Exception Exposure": "83.85%",
+ "Tech Debt Exposure": "63.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.8%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -500131,13 +500131,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.191
+ "Raw Cognitive Density": 1.164
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.39%",
- "Error & Exception Exposure": "88.77%",
- "Tech Debt Exposure": "60.54%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "83.99%",
+ "Error & Exception Exposure": "91.89%",
+ "Tech Debt Exposure": "43.84%",
+ "Testing Exposure": "2.36%",
"API Exposure": "2.76%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -500466,16 +500466,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.95
+ "Raw Cognitive Density": 0.944
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.02%",
- "Error & Exception Exposure": "53.67%",
- "Tech Debt Exposure": "13.87%",
- "Testing Exposure": "2.31%",
+ "Cognitive Load Exposure": "68.48%",
+ "Error & Exception Exposure": "52.98%",
+ "Tech Debt Exposure": "12.12%",
+ "Testing Exposure": "2.3%",
"API Exposure": "2.21%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.21%",
+ "State Flux Exposure": "16.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -500644,13 +500644,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.409
+ "Raw Cognitive Density": 1.374
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.31%",
- "Error & Exception Exposure": "87.21%",
- "Tech Debt Exposure": "78.98%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "92.37%",
+ "Error & Exception Exposure": "89.77%",
+ "Tech Debt Exposure": "60.85%",
+ "Testing Exposure": "2.36%",
"API Exposure": "2.86%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -500822,15 +500822,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.082
+ "Raw Cognitive Density": 2.067
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.52%",
- "Error & Exception Exposure": "92.18%",
- "Tech Debt Exposure": "68.57%",
+ "Cognitive Load Exposure": "99.49%",
+ "Error & Exception Exposure": "95.69%",
+ "Tech Debt Exposure": "62.58%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "45.84%",
+ "Concurrency Exposure": "39.97%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -501083,12 +501083,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.929
+ "Raw Cognitive Density": 1.913
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.11%",
- "Error & Exception Exposure": "97.41%",
- "Tech Debt Exposure": "74.49%",
+ "Cognitive Load Exposure": "99.05%",
+ "Error & Exception Exposure": "99.05%",
+ "Tech Debt Exposure": "68.61%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -501344,12 +501344,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.953
+ "Raw Cognitive Density": 1.936
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.19%",
- "Error & Exception Exposure": "97.45%",
- "Tech Debt Exposure": "78.43%",
+ "Cognitive Load Exposure": "99.14%",
+ "Error & Exception Exposure": "99.06%",
+ "Tech Debt Exposure": "72.78%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -501605,12 +501605,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.964
+ "Raw Cognitive Density": 1.947
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.23%",
- "Error & Exception Exposure": "97.43%",
- "Tech Debt Exposure": "79.22%",
+ "Cognitive Load Exposure": "99.17%",
+ "Error & Exception Exposure": "99.05%",
+ "Tech Debt Exposure": "73.63%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -501866,12 +501866,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.791
+ "Raw Cognitive Density": 1.775
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.47%",
- "Error & Exception Exposure": "96.18%",
- "Tech Debt Exposure": "73.18%",
+ "Cognitive Load Exposure": "98.37%",
+ "Error & Exception Exposure": "98.37%",
+ "Tech Debt Exposure": "67.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -502127,13 +502127,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.22
+ "Raw Cognitive Density": 1.199
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.75%",
- "Error & Exception Exposure": "79.28%",
- "Tech Debt Exposure": "62.58%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "85.75%",
+ "Error & Exception Exposure": "81.62%",
+ "Tech Debt Exposure": "49.56%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.56%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -502329,13 +502329,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.333
+ "Raw Cognitive Density": 1.302
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.16%",
- "Error & Exception Exposure": "83.92%",
- "Tech Debt Exposure": "87.29%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "90.1%",
+ "Error & Exception Exposure": "85.94%",
+ "Tech Debt Exposure": "75.87%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.69%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -502529,16 +502529,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.167
+ "Raw Cognitive Density": 1.137
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.11%",
- "Error & Exception Exposure": "73.46%",
- "Tech Debt Exposure": "84.11%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "82.48%",
+ "Error & Exception Exposure": "72.78%",
+ "Tech Debt Exposure": "71.74%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.81%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.93%",
+ "State Flux Exposure": "99.92%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -502719,12 +502719,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.37
+ "Raw Cognitive Density": 1.361
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.28%",
- "Error & Exception Exposure": "80.17%",
- "Tech Debt Exposure": "58.78%",
+ "Cognitive Load Exposure": "92.02%",
+ "Error & Exception Exposure": "83.75%",
+ "Tech Debt Exposure": "53.08%",
"Testing Exposure": "80.0%",
"API Exposure": "2.21%",
"Concurrency Exposure": "0.0%",
@@ -502971,13 +502971,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.442
+ "Raw Cognitive Density": 1.417
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.1%",
- "Error & Exception Exposure": "87.34%",
- "Tech Debt Exposure": "75.63%",
- "Testing Exposure": "2.46%",
+ "Cognitive Load Exposure": "93.5%",
+ "Error & Exception Exposure": "89.93%",
+ "Tech Debt Exposure": "62.04%",
+ "Testing Exposure": "2.42%",
"API Exposure": "2.61%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -503171,13 +503171,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.355
+ "Raw Cognitive Density": 1.336
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.83%",
- "Error & Exception Exposure": "90.25%",
- "Tech Debt Exposure": "53.08%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "91.26%",
+ "Error & Exception Exposure": "93.72%",
+ "Tech Debt Exposure": "41.59%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.6%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -503361,15 +503361,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.537
+ "Raw Cognitive Density": 1.532
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.89%",
- "Error & Exception Exposure": "85.54%",
- "Tech Debt Exposure": "14.16%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "95.8%",
+ "Error & Exception Exposure": "91.08%",
+ "Tech Debt Exposure": "12.99%",
+ "Testing Exposure": "2.33%",
"API Exposure": "2.07%",
- "Concurrency Exposure": "18.29%",
+ "Concurrency Exposure": "14.97%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -503559,10 +503559,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.33%",
+ "Cognitive Load Exposure": "5.06%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -505262,18 +505262,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "42.73%",
- "Error & Exception Exposure": "84.35%",
- "Tech Debt Exposure": "3.12%",
- "Testing Exposure": "31.53%",
+ "Cognitive Load Exposure": "41.84%",
+ "Error & Exception Exposure": "85.7%",
+ "Tech Debt Exposure": "2.86%",
+ "Testing Exposure": "31.52%",
"API Exposure": "2.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.58%",
+ "State Flux Exposure": "96.2%",
"Commented Logic Exposure": "1.67%",
"Specification Exposure": "56.25%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.18%",
+ "Documentation Exposure": "31.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -505310,11 +505310,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.219
+ "Raw Cognitive Density": 1.208
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.71%",
- "Error & Exception Exposure": "93.65%",
+ "Cognitive Load Exposure": "86.18%",
+ "Error & Exception Exposure": "96.41%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.15%",
@@ -505324,7 +505324,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "52.14%",
+ "Documentation Exposure": "39.68%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -505631,13 +505631,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.097
+ "Raw Cognitive Density": 1.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.01%",
- "Error & Exception Exposure": "95.4%",
+ "Cognitive Load Exposure": "78.25%",
+ "Error & Exception Exposure": "97.79%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.76%",
+ "Testing Exposure": "2.72%",
"API Exposure": "9.3%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -505645,7 +505645,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.63%",
+ "Documentation Exposure": "99.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -505892,12 +505892,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.23
+ "Raw Cognitive Density": 1.227
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.05%",
- "Error & Exception Exposure": "98.02%",
- "Tech Debt Exposure": "16.14%",
+ "Cognitive Load Exposure": "60.96%",
+ "Error & Exception Exposure": "99.4%",
+ "Tech Debt Exposure": "15.16%",
"Testing Exposure": "80.0%",
"API Exposure": "2.07%",
"Concurrency Exposure": "0.0%",
@@ -505906,7 +505906,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.01%",
+ "Documentation Exposure": "41.02%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -506462,12 +506462,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.221
+ "Raw Cognitive Density": 1.216
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.8%",
- "Error & Exception Exposure": "94.72%",
- "Tech Debt Exposure": "20.63%",
+ "Cognitive Load Exposure": "86.58%",
+ "Error & Exception Exposure": "97.76%",
+ "Tech Debt Exposure": "18.72%",
"Testing Exposure": "80.0%",
"API Exposure": "8.13%",
"Concurrency Exposure": "0.0%",
@@ -506476,7 +506476,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.83%",
+ "Documentation Exposure": "98.32%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -506993,12 +506993,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.139
+ "Raw Cognitive Density": 1.134
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.55%",
- "Error & Exception Exposure": "98.18%",
- "Tech Debt Exposure": "13.09%",
+ "Cognitive Load Exposure": "82.29%",
+ "Error & Exception Exposure": "99.46%",
+ "Tech Debt Exposure": "11.89%",
"Testing Exposure": "80.0%",
"API Exposure": "0.54%",
"Concurrency Exposure": "0.0%",
@@ -507007,7 +507007,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.23%",
+ "Documentation Exposure": "12.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -507392,10 +507392,10 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -507558,12 +507558,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.4%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -507726,12 +507726,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.4%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -507894,12 +507894,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.89%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -508062,12 +508062,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "81.44%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -508232,10 +508232,10 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -508394,21 +508394,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.92
+ "Raw Cognitive Density": 0.88
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.37%",
- "Error & Exception Exposure": "78.56%",
+ "Cognitive Load Exposure": "62.71%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.69%",
+ "Testing Exposure": "2.64%",
"API Exposure": "5.99%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "89.62%",
+ "Documentation Exposure": "67.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -508592,13 +508592,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.74
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.0%",
- "Error & Exception Exposure": "87.31%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "90.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.51%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -508797,11 +508797,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.944
+ "Raw Cognitive Density": 0.94
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.46%",
- "Error & Exception Exposure": "95.32%",
+ "Cognitive Load Exposure": "68.1%",
+ "Error & Exception Exposure": "98.11%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "1.71%",
@@ -508811,7 +508811,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.85%",
+ "Documentation Exposure": "18.32%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -509392,11 +509392,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.169
+ "Raw Cognitive Density": 1.148
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.26%",
- "Error & Exception Exposure": "87.56%",
+ "Cognitive Load Exposure": "83.08%",
+ "Error & Exception Exposure": "91.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "1.38%",
@@ -509406,7 +509406,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.73%",
+ "Documentation Exposure": "30.81%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -509633,21 +509633,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.4%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.53%",
"API Exposure": "10.09%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.77%",
+ "Documentation Exposure": "99.31%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -509842,9 +509842,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "32.63%",
- "Error & Exception Exposure": "58.46%",
+ "Error & Exception Exposure": "60.76%",
"Tech Debt Exposure": "14.87%",
- "Testing Exposure": "31.85%",
+ "Testing Exposure": "31.86%",
"API Exposure": "10.19%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "63.33%",
@@ -509852,7 +509852,7 @@
"Specification Exposure": "76.92%",
"Instability Exposure": "42.31%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "72.85%",
+ "Documentation Exposure": "71.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -509893,7 +509893,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "92.28%",
- "Error & Exception Exposure": "96.07%",
+ "Error & Exception Exposure": "98.61%",
"Tech Debt Exposure": "18.47%",
"Testing Exposure": "80.0%",
"API Exposure": "12.71%",
@@ -509903,7 +509903,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "96.78%",
+ "Documentation Exposure": "96.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -510212,7 +510212,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "56.54%",
+ "Error & Exception Exposure": "58.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "8.23%",
@@ -510222,7 +510222,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.49%",
+ "Documentation Exposure": "14.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -510372,9 +510372,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "26.56%",
- "Error & Exception Exposure": "71.53%",
+ "Error & Exception Exposure": "77.35%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.44%",
"API Exposure": "13.33%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "97.11%",
@@ -510664,9 +510664,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "99.85%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.49%",
"API Exposure": "9.23%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "94.88%",
@@ -510674,7 +510674,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "93.16%",
+ "Documentation Exposure": "91.81%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -510867,7 +510867,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.93%",
+ "Documentation Exposure": "36.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -511014,7 +511014,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "73.88%",
- "Error & Exception Exposure": "97.76%",
+ "Error & Exception Exposure": "99.35%",
"Tech Debt Exposure": "46.93%",
"Testing Exposure": "80.0%",
"API Exposure": "13.31%",
@@ -511024,7 +511024,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "97.45%",
+ "Documentation Exposure": "97.13%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -511343,7 +511343,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.85%",
+ "Error & Exception Exposure": "87.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "12.78%",
@@ -511353,7 +511353,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.98%",
+ "Documentation Exposure": "99.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -511506,7 +511506,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "73.64%",
- "Error & Exception Exposure": "95.75%",
+ "Error & Exception Exposure": "98.45%",
"Tech Debt Exposure": "14.87%",
"Testing Exposure": "80.0%",
"API Exposure": "13.25%",
@@ -511516,7 +511516,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.44%",
+ "Documentation Exposure": "99.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -511915,7 +511915,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "65.84%",
- "Error & Exception Exposure": "95.96%",
+ "Error & Exception Exposure": "98.57%",
"Tech Debt Exposure": "13.23%",
"Testing Exposure": "80.0%",
"API Exposure": "13.52%",
@@ -511925,7 +511925,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.78%",
+ "Documentation Exposure": "99.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -512237,7 +512237,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "70.9%",
- "Error & Exception Exposure": "98.53%",
+ "Error & Exception Exposure": "99.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "12.33%",
@@ -512247,7 +512247,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.08%",
+ "Documentation Exposure": "97.71%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -512786,7 +512786,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "23.56%",
- "Error & Exception Exposure": "63.89%",
+ "Error & Exception Exposure": "69.47%",
"Tech Debt Exposure": "22.93%",
"Testing Exposure": "80.0%",
"API Exposure": "2.97%",
@@ -512796,7 +512796,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.57%",
+ "Documentation Exposure": "15.72%",
"Hardcoded Payload Artifacts": "6.14%"
},
"Files": {
@@ -512838,7 +512838,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.53%",
- "Error & Exception Exposure": "72.05%",
+ "Error & Exception Exposure": "79.34%",
"Tech Debt Exposure": "55.89%",
"Testing Exposure": "80.0%",
"API Exposure": "1.79%",
@@ -512848,7 +512848,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.27%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -514183,7 +514183,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "33.39%",
- "Error & Exception Exposure": "68.59%",
+ "Error & Exception Exposure": "75.23%",
"Tech Debt Exposure": "11.53%",
"Testing Exposure": "80.0%",
"API Exposure": "3.29%",
@@ -514193,7 +514193,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.69%",
+ "Documentation Exposure": "14.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -515907,7 +515907,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "25.62%",
- "Error & Exception Exposure": "43.8%",
+ "Error & Exception Exposure": "45.82%",
"Tech Debt Exposure": "13.92%",
"Testing Exposure": "80.0%",
"API Exposure": "3.52%",
@@ -515917,7 +515917,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.41%",
+ "Documentation Exposure": "24.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -516361,7 +516361,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.72%",
- "Error & Exception Exposure": "71.12%",
+ "Error & Exception Exposure": "77.49%",
"Tech Debt Exposure": "10.38%",
"Testing Exposure": "80.0%",
"API Exposure": "3.28%",
@@ -517288,10 +517288,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "6.65%",
- "Error & Exception Exposure": "37.16%",
+ "Cognitive Load Exposure": "6.59%",
+ "Error & Exception Exposure": "39.91%",
"Tech Debt Exposure": "6.79%",
- "Testing Exposure": "15.75%",
+ "Testing Exposure": "15.76%",
"API Exposure": "2.75%",
"Concurrency Exposure": "15.55%",
"State Flux Exposure": "15.57%",
@@ -517299,7 +517299,7 @@
"Specification Exposure": "60.87%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.63%",
+ "Documentation Exposure": "20.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -517668,7 +517668,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "3.54%",
- "Error & Exception Exposure": "58.96%",
+ "Error & Exception Exposure": "62.44%",
"Tech Debt Exposure": "8.59%",
"Testing Exposure": "80.0%",
"API Exposure": "8.02%",
@@ -518181,9 +518181,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.55%",
+ "Error & Exception Exposure": "69.12%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.34%",
"API Exposure": "5.3%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -518191,7 +518191,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.53%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -518526,7 +518526,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "53.96%",
+ "Error & Exception Exposure": "56.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "1.12%",
@@ -518536,7 +518536,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.14%",
+ "Documentation Exposure": "36.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -518702,7 +518702,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "27.75%",
- "Error & Exception Exposure": "81.45%",
+ "Error & Exception Exposure": "88.28%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
"API Exposure": "4.7%",
@@ -518712,7 +518712,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.75%",
+ "Documentation Exposure": "53.36%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -518977,7 +518977,7 @@
"Raw Cognitive Density": 0.226
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.96%",
+ "Cognitive Load Exposure": "6.26%",
"Error & Exception Exposure": "74.75%",
"Tech Debt Exposure": "17.84%",
"Testing Exposure": "2.53%",
@@ -518988,7 +518988,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.01%",
+ "Documentation Exposure": "14.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -519396,7 +519396,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.06%",
- "Error & Exception Exposure": "79.64%",
+ "Error & Exception Exposure": "86.63%",
"Tech Debt Exposure": "92.09%",
"Testing Exposure": "2.49%",
"API Exposure": "3.86%",
@@ -519406,7 +519406,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.92%",
+ "Documentation Exposure": "29.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -519810,7 +519810,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.43%",
- "Error & Exception Exposure": "59.28%",
+ "Error & Exception Exposure": "62.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.79%",
@@ -520071,7 +520071,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.85%",
- "Error & Exception Exposure": "75.48%",
+ "Error & Exception Exposure": "81.94%",
"Tech Debt Exposure": "26.16%",
"Testing Exposure": "80.0%",
"API Exposure": "0.77%",
@@ -520501,8 +520501,8 @@
"Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.59%",
- "Error & Exception Exposure": "48.31%",
+ "Cognitive Load Exposure": "6.9%",
+ "Error & Exception Exposure": "60.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "7.21%",
@@ -520512,7 +520512,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.36%",
+ "Documentation Exposure": "38.56%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -520689,7 +520689,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "13.61%",
- "Error & Exception Exposure": "65.62%",
+ "Error & Exception Exposure": "71.33%",
"Tech Debt Exposure": "11.4%",
"Testing Exposure": "80.0%",
"API Exposure": "3.37%",
@@ -521534,9 +521534,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "15.56%",
- "Error & Exception Exposure": "70.63%",
+ "Error & Exception Exposure": "77.52%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.51%",
"API Exposure": "3.31%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.62%",
@@ -522204,7 +522204,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "60.0%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -522367,7 +522367,7 @@
"Raw Cognitive Density": 0.202
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.26%",
+ "Cognitive Load Exposure": "9.12%",
"Error & Exception Exposure": "62.11%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -522378,7 +522378,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "86.23%",
+ "Documentation Exposure": "85.81%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -522738,18 +522738,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "17.18%",
- "Error & Exception Exposure": "41.53%",
- "Tech Debt Exposure": "37.6%",
- "Testing Exposure": "50.92%",
+ "Cognitive Load Exposure": "15.86%",
+ "Error & Exception Exposure": "32.92%",
+ "Tech Debt Exposure": "36.48%",
+ "Testing Exposure": "41.24%",
"API Exposure": "5.9%",
- "Concurrency Exposure": "2.34%",
- "State Flux Exposure": "17.25%",
+ "Concurrency Exposure": "1.79%",
+ "State Flux Exposure": "16.21%",
"Commented Logic Exposure": "3.69%",
"Specification Exposure": "87.5%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "60.29%",
+ "Documentation Exposure": "40.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -522787,21 +522787,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.271
+ "Raw Cognitive Density": 0.261
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.41%",
- "Error & Exception Exposure": "64.2%",
- "Tech Debt Exposure": "85.57%",
+ "Cognitive Load Exposure": "6.21%",
+ "Error & Exception Exposure": "64.18%",
+ "Tech Debt Exposure": "82.12%",
"Testing Exposure": "80.0%",
"API Exposure": "6.95%",
- "Concurrency Exposure": "18.71%",
- "State Flux Exposure": "12.31%",
+ "Concurrency Exposure": "14.32%",
+ "State Flux Exposure": "9.94%",
"Commented Logic Exposure": "5.87%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.42%",
+ "Documentation Exposure": "31.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -523220,13 +523220,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.654
+ "Raw Cognitive Density": 0.569
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.24%",
- "Error & Exception Exposure": "38.52%",
+ "Cognitive Load Exposure": "16.34%",
+ "Error & Exception Exposure": "14.44%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.48%",
"API Exposure": "3.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -523234,7 +523234,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "87.13%",
+ "Documentation Exposure": "51.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -523460,21 +523460,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.514
+ "Raw Cognitive Density": 0.507
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.66%",
- "Error & Exception Exposure": "33.73%",
- "Tech Debt Exposure": "13.97%",
+ "Cognitive Load Exposure": "13.73%",
+ "Error & Exception Exposure": "19.14%",
+ "Tech Debt Exposure": "12.15%",
"Testing Exposure": "80.0%",
"API Exposure": "1.23%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "12.57%",
+ "State Flux Exposure": "10.16%",
"Commented Logic Exposure": "12.91%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.03%",
+ "Documentation Exposure": "15.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -523792,21 +523792,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.858
+ "Raw Cognitive Density": 0.85
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "32.19%",
- "Error & Exception Exposure": "25.24%",
+ "Cognitive Load Exposure": "29.92%",
+ "Error & Exception Exposure": "8.95%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.44%",
"API Exposure": "1.1%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.49%",
+ "State Flux Exposure": "96.84%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.67%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -524157,7 +524157,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.74%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -524304,21 +524304,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.35
+ "Raw Cognitive Density": 1.342
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.84%",
- "Error & Exception Exposure": "65.25%",
- "Tech Debt Exposure": "31.03%",
+ "Cognitive Load Exposure": "45.72%",
+ "Error & Exception Exposure": "63.97%",
+ "Tech Debt Exposure": "28.14%",
"Testing Exposure": "80.0%",
"API Exposure": "4.41%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.67%",
+ "State Flux Exposure": "12.75%",
"Commented Logic Exposure": "5.61%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.06%",
+ "Documentation Exposure": "41.32%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -525017,13 +525017,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.409
+ "Raw Cognitive Density": 0.374
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.17%",
- "Error & Exception Exposure": "42.46%",
+ "Cognitive Load Exposure": "9.09%",
+ "Error & Exception Exposure": "26.11%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.7%",
"API Exposure": "5.34%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -525031,7 +525031,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.31%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -525378,12 +525378,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.057
+ "Raw Cognitive Density": 0.056
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.89%",
- "Error & Exception Exposure": "62.87%",
- "Tech Debt Exposure": "70.24%",
+ "Cognitive Load Exposure": "5.86%",
+ "Error & Exception Exposure": "66.55%",
+ "Tech Debt Exposure": "69.46%",
"Testing Exposure": "80.0%",
"API Exposure": "16.29%",
"Concurrency Exposure": "0.0%",
@@ -533763,10 +533763,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "66.35%",
- "Error & Exception Exposure": "75.16%",
- "Tech Debt Exposure": "17.93%",
- "Testing Exposure": "67.1%",
+ "Cognitive Load Exposure": "65.11%",
+ "Error & Exception Exposure": "76.33%",
+ "Tech Debt Exposure": "16.63%",
+ "Testing Exposure": "67.09%",
"API Exposure": "9.29%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "83.32%",
@@ -533774,7 +533774,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.98%",
+ "Documentation Exposure": "50.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -533815,7 +533815,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "92.59%",
- "Error & Exception Exposure": "98.17%",
+ "Error & Exception Exposure": "99.51%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "14.95%",
@@ -533825,7 +533825,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.98%",
+ "Documentation Exposure": "99.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -534385,11 +534385,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.325
+ "Raw Cognitive Density": 1.306
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.9%",
- "Error & Exception Exposure": "84.59%",
+ "Cognitive Load Exposure": "90.25%",
+ "Error & Exception Exposure": "88.59%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.13%",
@@ -534399,7 +534399,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.03%",
+ "Documentation Exposure": "20.83%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -534813,12 +534813,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.35
+ "Raw Cognitive Density": 1.334
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.69%",
- "Error & Exception Exposure": "91.12%",
- "Tech Debt Exposure": "30.43%",
+ "Cognitive Load Exposure": "91.17%",
+ "Error & Exception Exposure": "94.85%",
+ "Tech Debt Exposure": "24.56%",
"Testing Exposure": "80.0%",
"API Exposure": "10.29%",
"Concurrency Exposure": "0.0%",
@@ -534827,7 +534827,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.84%",
+ "Documentation Exposure": "53.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -535861,12 +535861,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.961
+ "Raw Cognitive Density": 0.958
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.91%",
- "Error & Exception Exposure": "98.98%",
- "Tech Debt Exposure": "77.16%",
+ "Cognitive Load Exposure": "69.67%",
+ "Error & Exception Exposure": "99.76%",
+ "Tech Debt Exposure": "75.2%",
"Testing Exposure": "80.0%",
"API Exposure": "1.88%",
"Concurrency Exposure": "0.0%",
@@ -536561,21 +536561,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.78
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "53.0%",
- "Error & Exception Exposure": "78.12%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.55%",
"API Exposure": "4.67%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.92%",
+ "State Flux Exposure": "99.9%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.12%",
+ "Documentation Exposure": "15.45%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -536730,8 +536730,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "21.01%",
- "Error & Exception Exposure": "59.47%",
+ "Cognitive Load Exposure": "19.51%",
+ "Error & Exception Exposure": "63.4%",
"Tech Debt Exposure": "42.21%",
"Testing Exposure": "80.0%",
"API Exposure": "3.07%",
@@ -536741,7 +536741,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.69%",
+ "Documentation Exposure": "16.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -536782,8 +536782,8 @@
"Raw Cognitive Density": 0.757
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.57%",
- "Error & Exception Exposure": "63.63%",
+ "Cognitive Load Exposure": "32.89%",
+ "Error & Exception Exposure": "68.88%",
"Tech Debt Exposure": "92.48%",
"Testing Exposure": "80.0%",
"API Exposure": "4.18%",
@@ -536793,7 +536793,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.79%",
+ "Documentation Exposure": "24.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -537322,8 +537322,8 @@
"Raw Cognitive Density": 0.466
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.86%",
- "Error & Exception Exposure": "58.95%",
+ "Cognitive Load Exposure": "14.37%",
+ "Error & Exception Exposure": "62.7%",
"Tech Debt Exposure": "21.86%",
"Testing Exposure": "80.0%",
"API Exposure": "4.83%",
@@ -537333,7 +537333,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.37%",
+ "Documentation Exposure": "12.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -538077,8 +538077,8 @@
"Raw Cognitive Density": 0.284
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.6%",
- "Error & Exception Exposure": "55.82%",
+ "Cognitive Load Exposure": "11.28%",
+ "Error & Exception Exposure": "58.62%",
"Tech Debt Exposure": "12.3%",
"Testing Exposure": "80.0%",
"API Exposure": "0.2%",
@@ -538927,18 +538927,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "6.68%",
- "Error & Exception Exposure": "60.59%",
- "Tech Debt Exposure": "3.05%",
+ "Cognitive Load Exposure": "6.62%",
+ "Error & Exception Exposure": "63.32%",
+ "Tech Debt Exposure": "2.98%",
"Testing Exposure": "68.06%",
"API Exposure": "4.5%",
- "Concurrency Exposure": "42.62%",
+ "Concurrency Exposure": "41.02%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.71%",
+ "Documentation Exposure": "16.13%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -538975,21 +538975,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.178
+ "Raw Cognitive Density": 0.175
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.21%",
- "Error & Exception Exposure": "68.04%",
+ "Cognitive Load Exposure": "9.12%",
+ "Error & Exception Exposure": "72.81%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.06%",
- "Concurrency Exposure": "77.02%",
+ "Concurrency Exposure": "75.58%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.97%",
+ "Documentation Exposure": "18.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -539233,21 +539233,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.108
+ "Raw Cognitive Density": 0.107
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.11%",
- "Error & Exception Exposure": "63.72%",
+ "Cognitive Load Exposure": "7.1%",
+ "Error & Exception Exposure": "67.8%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.36%",
- "Concurrency Exposure": "67.87%",
+ "Concurrency Exposure": "66.1%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.06%",
+ "Documentation Exposure": "15.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -539685,17 +539685,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "62.1%",
+ "Error & Exception Exposure": "64.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "3.97%",
- "Concurrency Exposure": "43.1%",
+ "Concurrency Exposure": "41.15%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.74%",
+ "Documentation Exposure": "18.36%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -539859,21 +539859,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.15
+ "Raw Cognitive Density": 0.149
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.32%",
- "Error & Exception Exposure": "57.09%",
+ "Cognitive Load Exposure": "8.28%",
+ "Error & Exception Exposure": "59.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "1.94%",
- "Concurrency Exposure": "28.68%",
+ "Concurrency Exposure": "27.07%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.24%",
+ "Documentation Exposure": "14.56%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -540087,21 +540087,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.074
+ "Raw Cognitive Density": 0.072
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.28%",
- "Error & Exception Exposure": "62.25%",
+ "Cognitive Load Exposure": "6.23%",
+ "Error & Exception Exposure": "65.48%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.21%",
- "Concurrency Exposure": "36.7%",
+ "Concurrency Exposure": "34.86%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.52%",
+ "Documentation Exposure": "13.32%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -540295,21 +540295,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.104
+ "Raw Cognitive Density": 0.103
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.02%",
- "Error & Exception Exposure": "55.75%",
+ "Cognitive Load Exposure": "6.99%",
+ "Error & Exception Exposure": "57.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "1.93%",
- "Concurrency Exposure": "23.56%",
+ "Concurrency Exposure": "22.15%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.01%",
+ "Documentation Exposure": "14.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -540513,21 +540513,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.154
+ "Raw Cognitive Density": 0.153
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.45%",
- "Error & Exception Exposure": "55.81%",
- "Tech Debt Exposure": "8.79%",
+ "Cognitive Load Exposure": "8.42%",
+ "Error & Exception Exposure": "57.51%",
+ "Tech Debt Exposure": "8.64%",
"Testing Exposure": "80.0%",
"API Exposure": "1.86%",
- "Concurrency Exposure": "26.09%",
+ "Concurrency Exposure": "24.58%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.29%",
+ "Documentation Exposure": "13.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -540761,21 +540761,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.234
+ "Raw Cognitive Density": 0.225
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.27%",
- "Error & Exception Exposure": "76.28%",
+ "Cognitive Load Exposure": "10.92%",
+ "Error & Exception Exposure": "81.24%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.46%",
"API Exposure": "5.4%",
- "Concurrency Exposure": "87.32%",
+ "Concurrency Exposure": "86.41%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.95%",
+ "Documentation Exposure": "28.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -540949,21 +540949,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.048
+ "Raw Cognitive Density": 0.047
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.7%",
- "Error & Exception Exposure": "59.75%",
+ "Cognitive Load Exposure": "5.66%",
+ "Error & Exception Exposure": "62.44%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.83%",
- "Concurrency Exposure": "29.33%",
+ "Concurrency Exposure": "27.7%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.57%",
+ "Documentation Exposure": "14.47%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -541167,21 +541167,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.065
+ "Raw Cognitive Density": 0.063
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.07%",
- "Error & Exception Exposure": "61.18%",
- "Tech Debt Exposure": "17.47%",
+ "Cognitive Load Exposure": "6.02%",
+ "Error & Exception Exposure": "64.23%",
+ "Tech Debt Exposure": "16.83%",
"Testing Exposure": "80.0%",
"API Exposure": "4.92%",
- "Concurrency Exposure": "41.18%",
+ "Concurrency Exposure": "39.26%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.29%",
+ "Documentation Exposure": "15.04%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -541428,18 +541428,18 @@
"Raw Cognitive Density": 0.102
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.98%",
- "Error & Exception Exposure": "58.68%",
- "Tech Debt Exposure": "13.38%",
+ "Cognitive Load Exposure": "6.96%",
+ "Error & Exception Exposure": "61.37%",
+ "Tech Debt Exposure": "13.26%",
"Testing Exposure": "80.0%",
"API Exposure": "6.86%",
- "Concurrency Exposure": "46.2%",
+ "Concurrency Exposure": "44.22%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.92%",
+ "Documentation Exposure": "13.12%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -541983,21 +541983,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.016
+ "Raw Cognitive Density": 0.015
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.04%",
- "Error & Exception Exposure": "53.25%",
+ "Cognitive Load Exposure": "5.03%",
+ "Error & Exception Exposure": "54.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.3%",
- "Concurrency Exposure": "20.1%",
+ "Concurrency Exposure": "18.84%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.28%",
+ "Documentation Exposure": "14.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -542181,21 +542181,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.032
+ "Raw Cognitive Density": 0.031
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.35%",
- "Error & Exception Exposure": "53.83%",
+ "Cognitive Load Exposure": "5.34%",
+ "Error & Exception Exposure": "54.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.89%",
- "Concurrency Exposure": "26.86%",
+ "Concurrency Exposure": "25.32%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.33%",
+ "Documentation Exposure": "14.8%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -542365,18 +542365,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "63.21%",
- "Error & Exception Exposure": "86.95%",
- "Tech Debt Exposure": "2.7%",
- "Testing Exposure": "34.4%",
+ "Cognitive Load Exposure": "61.96%",
+ "Error & Exception Exposure": "88.36%",
+ "Tech Debt Exposure": "2.42%",
+ "Testing Exposure": "34.39%",
"API Exposure": "0.05%",
- "Concurrency Exposure": "1.08%",
- "State Flux Exposure": "86.02%",
+ "Concurrency Exposure": "0.94%",
+ "State Flux Exposure": "85.18%",
"Commented Logic Exposure": "3.94%",
"Specification Exposure": "41.18%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.79%",
+ "Documentation Exposure": "5.75%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -542413,16 +542413,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.7
+ "Raw Cognitive Density": 1.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.81%",
- "Error & Exception Exposure": "99.94%",
+ "Cognitive Load Exposure": "97.44%",
+ "Error & Exception Exposure": "99.99%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -542631,16 +542631,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.48
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.35%",
- "Error & Exception Exposure": "73.41%",
+ "Cognitive Load Exposure": "22.44%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -542819,16 +542819,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "77.0%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -542997,16 +542997,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "75.13%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -543175,16 +543175,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.646
+ "Raw Cognitive Density": 0.615
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.76%",
- "Error & Exception Exposure": "89.06%",
+ "Cognitive Load Exposure": "36.85%",
+ "Error & Exception Exposure": "91.68%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "83.09%",
+ "State Flux Exposure": "81.34%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -543373,16 +543373,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.72
+ "Raw Cognitive Density": 1.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.98%",
- "Error & Exception Exposure": "83.12%",
+ "Cognitive Load Exposure": "97.63%",
+ "Error & Exception Exposure": "84.74%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -543551,16 +543551,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.22
+ "Raw Cognitive Density": 1.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.76%",
- "Error & Exception Exposure": "94.42%",
+ "Cognitive Load Exposure": "84.81%",
+ "Error & Exception Exposure": "96.86%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.69%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -543729,16 +543729,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.8
+ "Raw Cognitive Density": 2.76
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.97%",
- "Error & Exception Exposure": "86.58%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.59%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.69%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -543917,10 +543917,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.513
+ "Raw Cognitive Density": 1.496
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.48%",
+ "Cognitive Load Exposure": "95.18%",
"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": "17.47%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -544175,16 +544175,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.96
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "77.23%",
+ "Cognitive Load Exposure": "69.85%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.58%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "12.83%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -544373,11 +544373,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.514
+ "Raw Cognitive Density": 2.491
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.91%",
- "Error & Exception Exposure": "96.71%",
+ "Error & Exception Exposure": "98.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -544387,7 +544387,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.29%",
+ "Documentation Exposure": "36.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -544581,21 +544581,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.568
+ "Raw Cognitive Density": 0.565
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "32.54%",
- "Error & Exception Exposure": "91.21%",
+ "Cognitive Load Exposure": "32.3%",
+ "Error & Exception Exposure": "95.62%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "18.33%",
- "State Flux Exposure": "92.77%",
+ "Concurrency Exposure": "16.05%",
+ "State Flux Exposure": "91.92%",
"Commented Logic Exposure": "7.14%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.1%",
+ "Documentation Exposure": "14.75%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -544851,12 +544851,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.464
+ "Raw Cognitive Density": 2.459
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.89%",
- "Error & Exception Exposure": "99.99%",
- "Tech Debt Exposure": "11.43%",
+ "Error & Exception Exposure": "100.0%",
+ "Tech Debt Exposure": "10.18%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -545193,12 +545193,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -545357,13 +545357,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.84
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.9%",
- "Error & Exception Exposure": "91.52%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "94.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -545535,21 +545535,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.621
+ "Raw Cognitive Density": 0.615
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.69%",
- "Error & Exception Exposure": "84.72%",
- "Tech Debt Exposure": "34.54%",
+ "Cognitive Load Exposure": "35.62%",
+ "Error & Exception Exposure": "90.05%",
+ "Tech Debt Exposure": "30.98%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.66%",
+ "State Flux Exposure": "99.61%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.18%",
+ "Documentation Exposure": "14.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -545727,11 +545727,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.983
+ "Raw Cognitive Density": 3.974
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "86.94%",
+ "Error & Exception Exposure": "89.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -545741,7 +545741,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.45%",
+ "Documentation Exposure": "19.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -545922,18 +545922,18 @@
"Static: Literature & Documentation": "5.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "53.44%",
- "Error & Exception Exposure": "53.76%",
- "Tech Debt Exposure": "9.28%",
- "Testing Exposure": "17.89%",
+ "Cognitive Load Exposure": "50.63%",
+ "Error & Exception Exposure": "47.99%",
+ "Tech Debt Exposure": "8.95%",
+ "Testing Exposure": "6.29%",
"API Exposure": "1.41%",
- "Concurrency Exposure": "3.28%",
- "State Flux Exposure": "54.99%",
+ "Concurrency Exposure": "3.09%",
+ "State Flux Exposure": "54.98%",
"Commented Logic Exposure": "0.77%",
"Specification Exposure": "25.0%",
"Instability Exposure": "47.5%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.6%",
+ "Documentation Exposure": "8.66%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -546127,15 +546127,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.921
+ "Raw Cognitive Density": 3.896
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.37%",
- "Error & Exception Exposure": "78.78%",
+ "Cognitive Load Exposure": "75.61%",
+ "Error & Exception Exposure": "37.89%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.99%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "65.54%",
+ "Concurrency Exposure": "61.85%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
@@ -546347,13 +546347,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "62.88%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "56.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -546528,13 +546528,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.45
+ "Raw Cognitive Density": 3.41
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "74.41%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.92%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.8%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -546712,7 +546712,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -546874,13 +546874,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.679
+ "Raw Cognitive Density": 1.642
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.63%",
- "Error & Exception Exposure": "91.33%",
+ "Cognitive Load Exposure": "97.25%",
+ "Error & Exception Exposure": "93.78%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.58%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -547072,13 +547072,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.861
+ "Raw Cognitive Density": 1.824
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.84%",
- "Error & Exception Exposure": "96.21%",
+ "Cognitive Load Exposure": "98.66%",
+ "Error & Exception Exposure": "98.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.7%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -547290,10 +547290,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
@@ -547460,16 +547460,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.42
+ "Raw Cognitive Density": 1.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.58%",
- "Error & Exception Exposure": "63.18%",
+ "Cognitive Load Exposure": "92.55%",
+ "Error & Exception Exposure": "50.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.69%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -547638,12 +547638,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.723
+ "Raw Cognitive Density": 1.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.0%",
- "Error & Exception Exposure": "96.91%",
- "Tech Debt Exposure": "9.43%",
+ "Cognitive Load Exposure": "97.98%",
+ "Error & Exception Exposure": "98.91%",
+ "Tech Debt Exposure": "8.99%",
"Testing Exposure": "80.0%",
"API Exposure": "1.05%",
"Concurrency Exposure": "0.0%",
@@ -547652,7 +547652,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.9%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -548078,16 +548078,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.34
+ "Raw Cognitive Density": 1.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.37%",
- "Error & Exception Exposure": "80.24%",
+ "Cognitive Load Exposure": "90.03%",
+ "Error & Exception Exposure": "81.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.58%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -548280,7 +548280,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "8.19%",
@@ -548290,7 +548290,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "64.8%",
+ "Documentation Exposure": "33.24%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -548444,13 +548444,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.274
+ "Raw Cognitive Density": 4.262
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.94%",
- "Error & Exception Exposure": "65.83%",
- "Tech Debt Exposure": "76.43%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "88.24%",
+ "Error & Exception Exposure": "55.97%",
+ "Tech Debt Exposure": "70.73%",
+ "Testing Exposure": "2.8%",
"API Exposure": "6.29%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -548458,7 +548458,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.31%",
+ "Documentation Exposure": "26.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -548728,13 +548728,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 5.15
+ "Raw Cognitive Density": 5.11
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "58.59%",
+ "Error & Exception Exposure": "35.43%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -548949,13 +548949,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 7.5
+ "Raw Cognitive Density": 7.462
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.38%",
- "Error & Exception Exposure": "91.83%",
+ "Cognitive Load Exposure": "50.0%",
+ "Error & Exception Exposure": "90.75%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.77%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -549190,13 +549190,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.79
+ "Raw Cognitive Density": 4.763
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.0%",
- "Error & Exception Exposure": "82.63%",
+ "Cognitive Load Exposure": "60.0%",
+ "Error & Exception Exposure": "78.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.71%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -549204,7 +549204,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.69%",
+ "Documentation Exposure": "21.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -549385,7 +549385,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "78.5%",
+ "Documentation Exposure": "51.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -549539,13 +549539,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.66
+ "Raw Cognitive Density": 0.62
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.1%",
- "Error & Exception Exposure": "62.58%",
+ "Cognitive Load Exposure": "37.29%",
+ "Error & Exception Exposure": "54.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.41%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -549553,7 +549553,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.71%",
+ "Documentation Exposure": "28.38%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -550039,18 +550039,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "63.77%",
- "Error & Exception Exposure": "85.43%",
- "Tech Debt Exposure": "61.14%",
+ "Cognitive Load Exposure": "61.9%",
+ "Error & Exception Exposure": "86.5%",
+ "Tech Debt Exposure": "54.57%",
"Testing Exposure": "2.33%",
"API Exposure": "2.76%",
- "Concurrency Exposure": "1.54%",
- "State Flux Exposure": "93.02%",
+ "Concurrency Exposure": "1.29%",
+ "State Flux Exposure": "92.82%",
"Commented Logic Exposure": "4.74%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.84%",
+ "Documentation Exposure": "14.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -550087,11 +550087,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.039
+ "Raw Cognitive Density": 1.024
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.09%",
- "Error & Exception Exposure": "97.13%",
+ "Cognitive Load Exposure": "74.93%",
+ "Error & Exception Exposure": "98.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "6.68%",
@@ -550101,7 +550101,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.18%",
+ "Documentation Exposure": "26.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -550329,12 +550329,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.911
+ "Raw Cognitive Density": 0.857
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.54%",
- "Error & Exception Exposure": "84.62%",
- "Tech Debt Exposure": "99.39%",
+ "Cognitive Load Exposure": "60.55%",
+ "Error & Exception Exposure": "85.03%",
+ "Tech Debt Exposure": "97.7%",
"Testing Exposure": "2.35%",
"API Exposure": "1.47%",
"Concurrency Exposure": "0.0%",
@@ -550343,7 +550343,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.09%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -550519,21 +550519,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.657
+ "Raw Cognitive Density": 0.639
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.77%",
- "Error & Exception Exposure": "78.28%",
- "Tech Debt Exposure": "92.2%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "39.04%",
+ "Error & Exception Exposure": "82.0%",
+ "Tech Debt Exposure": "88.27%",
+ "Testing Exposure": "2.33%",
"API Exposure": "1.28%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.95%",
+ "State Flux Exposure": "99.94%",
"Commented Logic Exposure": "6.88%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.66%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -550750,12 +550750,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.04
+ "Raw Cognitive Density": 1.027
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.15%",
- "Error & Exception Exposure": "96.5%",
- "Tech Debt Exposure": "57.2%",
+ "Cognitive Load Exposure": "75.16%",
+ "Error & Exception Exposure": "98.53%",
+ "Tech Debt Exposure": "48.88%",
"Testing Exposure": "2.32%",
"API Exposure": "1.17%",
"Concurrency Exposure": "0.0%",
@@ -550961,13 +550961,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.001
+ "Raw Cognitive Density": 0.986
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.2%",
- "Error & Exception Exposure": "94.71%",
+ "Cognitive Load Exposure": "72.01%",
+ "Error & Exception Exposure": "97.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "7.29%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -550975,7 +550975,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.14%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -551211,13 +551211,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.056
+ "Raw Cognitive Density": 1.042
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.27%",
- "Error & Exception Exposure": "76.47%",
- "Tech Debt Exposure": "69.22%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "76.3%",
+ "Error & Exception Exposure": "76.49%",
+ "Tech Debt Exposure": "61.49%",
+ "Testing Exposure": "2.32%",
"API Exposure": "1.22%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -551225,7 +551225,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.74%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -551432,21 +551432,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "15.19%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.33%",
"API Exposure": "1.6%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "14.19%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.8%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -551612,13 +551612,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.34%",
"API Exposure": "1.6%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -551626,7 +551626,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.09%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -551792,12 +551792,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.052
+ "Raw Cognitive Density": 1.043
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.97%",
- "Error & Exception Exposure": "88.76%",
- "Tech Debt Exposure": "78.1%",
+ "Cognitive Load Exposure": "76.36%",
+ "Error & Exception Exposure": "93.04%",
+ "Tech Debt Exposure": "72.08%",
"Testing Exposure": "2.31%",
"API Exposure": "1.13%",
"Concurrency Exposure": "0.0%",
@@ -551993,12 +551993,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.051
+ "Raw Cognitive Density": 1.019
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.93%",
- "Error & Exception Exposure": "95.94%",
- "Tech Debt Exposure": "47.98%",
+ "Cognitive Load Exposure": "74.56%",
+ "Error & Exception Exposure": "97.97%",
+ "Tech Debt Exposure": "29.17%",
"Testing Exposure": "2.31%",
"API Exposure": "1.39%",
"Concurrency Exposure": "0.0%",
@@ -552007,7 +552007,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.63%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -552164,21 +552164,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.78
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "53.0%",
- "Error & Exception Exposure": "74.16%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.33%",
"API Exposure": "1.5%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.99%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -552346,21 +552346,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.817
+ "Raw Cognitive Density": 0.802
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "56.64%",
- "Error & Exception Exposure": "74.62%",
- "Tech Debt Exposure": "58.58%",
+ "Cognitive Load Exposure": "55.18%",
+ "Error & Exception Exposure": "77.61%",
+ "Tech Debt Exposure": "49.38%",
"Testing Exposure": "2.34%",
"API Exposure": "7.74%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.47%",
+ "State Flux Exposure": "99.36%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.39%",
+ "Documentation Exposure": "32.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -552597,13 +552597,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.003
+ "Raw Cognitive Density": 0.998
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.34%",
- "Error & Exception Exposure": "82.83%",
- "Tech Debt Exposure": "11.64%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "72.94%",
+ "Error & Exception Exposure": "86.84%",
+ "Tech Debt Exposure": "10.38%",
+ "Testing Exposure": "2.33%",
"API Exposure": "9.44%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -552611,7 +552611,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.01%",
+ "Documentation Exposure": "30.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -553000,13 +553000,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.991
+ "Raw Cognitive Density": 0.98
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.4%",
- "Error & Exception Exposure": "94.77%",
- "Tech Debt Exposure": "34.56%",
- "Testing Exposure": "2.32%",
+ "Cognitive Load Exposure": "71.54%",
+ "Error & Exception Exposure": "97.48%",
+ "Tech Debt Exposure": "28.82%",
+ "Testing Exposure": "2.31%",
"API Exposure": "1.16%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -553201,15 +553201,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.034
+ "Raw Cognitive Density": 1.03
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.72%",
- "Error & Exception Exposure": "95.92%",
- "Tech Debt Exposure": "40.91%",
+ "Cognitive Load Exposure": "75.41%",
+ "Error & Exception Exposure": "98.31%",
+ "Tech Debt Exposure": "37.2%",
"Testing Exposure": "2.31%",
"API Exposure": "1.01%",
- "Concurrency Exposure": "27.76%",
+ "Concurrency Exposure": "23.21%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.84%",
"Specification Exposure": "100.0%",
@@ -553422,12 +553422,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.065
+ "Raw Cognitive Density": 1.054
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.88%",
- "Error & Exception Exposure": "90.54%",
- "Tech Debt Exposure": "33.98%",
+ "Cognitive Load Exposure": "77.15%",
+ "Error & Exception Exposure": "94.18%",
+ "Tech Debt Exposure": "28.36%",
"Testing Exposure": "2.31%",
"API Exposure": "1.17%",
"Concurrency Exposure": "0.0%",
@@ -553436,7 +553436,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.25%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -553623,13 +553623,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.157
+ "Raw Cognitive Density": 1.102
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.61%",
- "Error & Exception Exposure": "88.28%",
- "Tech Debt Exposure": "84.11%",
- "Testing Exposure": "2.32%",
+ "Cognitive Load Exposure": "80.34%",
+ "Error & Exception Exposure": "89.17%",
+ "Tech Debt Exposure": "56.9%",
+ "Testing Exposure": "2.31%",
"API Exposure": "1.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -553637,7 +553637,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.14%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -553793,13 +553793,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.906
+ "Raw Cognitive Density": 0.89
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.12%",
- "Error & Exception Exposure": "81.49%",
- "Tech Debt Exposure": "98.06%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "63.6%",
+ "Error & Exception Exposure": "84.57%",
+ "Tech Debt Exposure": "96.45%",
+ "Testing Exposure": "2.32%",
"API Exposure": "1.25%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -553807,7 +553807,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.23%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -558395,18 +558395,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "53.2%",
- "Error & Exception Exposure": "88.35%",
- "Tech Debt Exposure": "25.43%",
- "Testing Exposure": "8.81%",
+ "Cognitive Load Exposure": "49.31%",
+ "Error & Exception Exposure": "88.53%",
+ "Tech Debt Exposure": "22.3%",
+ "Testing Exposure": "8.8%",
"API Exposure": "1.42%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.58%",
+ "State Flux Exposure": "93.2%",
"Commented Logic Exposure": "1.4%",
"Specification Exposure": "41.67%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "9.21%",
+ "Documentation Exposure": "6.59%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -558443,11 +558443,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.263
+ "Raw Cognitive Density": 1.224
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.61%",
- "Error & Exception Exposure": "95.93%",
+ "Cognitive Load Exposure": "86.96%",
+ "Error & Exception Exposure": "97.8%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -558600,13 +558600,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.156
+ "Raw Cognitive Density": 1.146
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.51%",
- "Error & Exception Exposure": "93.12%",
- "Tech Debt Exposure": "29.43%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "82.99%",
+ "Error & Exception Exposure": "95.95%",
+ "Tech Debt Exposure": "24.85%",
+ "Testing Exposure": "2.35%",
"API Exposure": "4.58%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -558614,7 +558614,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.36%",
+ "Documentation Exposure": "13.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -558801,13 +558801,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.093
+ "Raw Cognitive Density": 1.076
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.94%",
- "Error & Exception Exposure": "96.69%",
- "Tech Debt Exposure": "95.03%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "39.31%",
+ "Error & Exception Exposure": "98.59%",
+ "Tech Debt Exposure": "90.86%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -558979,13 +558979,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.925
+ "Raw Cognitive Density": 0.877
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.78%",
- "Error & Exception Exposure": "88.7%",
+ "Cognitive Load Exposure": "62.43%",
+ "Error & Exception Exposure": "91.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.49%",
"API Exposure": "5.01%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -558993,7 +558993,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "53.02%",
+ "Documentation Exposure": "34.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -559173,12 +559173,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.06%",
+ "Error & Exception Exposure": "58.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -559326,16 +559326,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.9
+ "Raw Cognitive Density": 0.84
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.57%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "58.9%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -559483,16 +559483,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.8
+ "Raw Cognitive Density": 0.74
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.98%",
- "Error & Exception Exposure": "83.3%",
+ "Cognitive Load Exposure": "49.0%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -559640,11 +559640,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.309
+ "Raw Cognitive Density": 1.274
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.17%",
- "Error & Exception Exposure": "93.12%",
+ "Cognitive Load Exposure": "44.52%",
+ "Error & Exception Exposure": "93.95%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -559799,11 +559799,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.05
+ "Raw Cognitive Density": 0.99
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.85%",
- "Error & Exception Exposure": "89.9%",
+ "Cognitive Load Exposure": "72.31%",
+ "Error & Exception Exposure": "91.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -559956,21 +559956,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.76
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.5%",
- "Error & Exception Exposure": "76.31%",
+ "Cognitive Load Exposure": "22.51%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "3.15%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.65%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -560113,11 +560113,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.01
+ "Raw Cognitive Density": 0.95
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.94%",
- "Error & Exception Exposure": "85.59%",
+ "Cognitive Load Exposure": "34.5%",
+ "Error & Exception Exposure": "85.18%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "3.06%",
@@ -560270,16 +560270,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "72.4%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -560427,12 +560427,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.116
+ "Raw Cognitive Density": 1.108
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.01%",
- "Error & Exception Exposure": "99.44%",
- "Tech Debt Exposure": "82.47%",
+ "Cognitive Load Exposure": "55.49%",
+ "Error & Exception Exposure": "99.89%",
+ "Tech Debt Exposure": "79.17%",
"Testing Exposure": "80.0%",
"API Exposure": "2.23%",
"Concurrency Exposure": "0.0%",
@@ -560719,12 +560719,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -560872,13 +560872,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.168
+ "Raw Cognitive Density": 1.146
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.03%",
- "Error & Exception Exposure": "98.16%",
- "Tech Debt Exposure": "48.14%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "41.48%",
+ "Error & Exception Exposure": "99.31%",
+ "Tech Debt Exposure": "34.65%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.59%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -561050,12 +561050,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.949
+ "Raw Cognitive Density": 0.943
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.92%",
- "Error & Exception Exposure": "94.76%",
- "Tech Debt Exposure": "32.87%",
+ "Cognitive Load Exposure": "68.36%",
+ "Error & Exception Exposure": "97.67%",
+ "Tech Debt Exposure": "29.39%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -561064,7 +561064,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.87%",
+ "Documentation Exposure": "13.71%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -561278,13 +561278,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.23
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.61%",
- "Error & Exception Exposure": "99.72%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "42.15%",
+ "Error & Exception Exposure": "99.93%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.42%",
"API Exposure": "3.07%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -561292,7 +561292,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.81%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -561476,11 +561476,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.046
+ "Raw Cognitive Density": 0.991
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.59%",
- "Error & Exception Exposure": "91.46%",
+ "Cognitive Load Exposure": "72.37%",
+ "Error & Exception Exposure": "93.56%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -561633,16 +561633,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.62
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "37.29%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -561790,13 +561790,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.307
+ "Raw Cognitive Density": 1.273
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.13%",
- "Error & Exception Exposure": "99.71%",
- "Tech Debt Exposure": "91.13%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "44.5%",
+ "Error & Exception Exposure": "99.93%",
+ "Tech Debt Exposure": "81.42%",
+ "Testing Exposure": "2.35%",
"API Exposure": "2.69%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -561978,13 +561978,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.17
+ "Raw Cognitive Density": 1.11
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.29%",
- "Error & Exception Exposure": "94.75%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "80.85%",
+ "Error & Exception Exposure": "96.59%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -562146,11 +562146,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.97
+ "Raw Cognitive Density": 0.91
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.68%",
- "Error & Exception Exposure": "96.37%",
+ "Cognitive Load Exposure": "65.48%",
+ "Error & Exception Exposure": "97.93%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -562303,21 +562303,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.561
+ "Raw Cognitive Density": 0.549
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.97%",
- "Error & Exception Exposure": "76.91%",
- "Tech Debt Exposure": "43.13%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "30.95%",
+ "Error & Exception Exposure": "81.34%",
+ "Tech Debt Exposure": "32.71%",
+ "Testing Exposure": "2.34%",
"API Exposure": "4.74%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.96%",
+ "State Flux Exposure": "99.95%",
"Commented Logic Exposure": "6.06%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.05%",
+ "Documentation Exposure": "12.5%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -562481,11 +562481,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.12
+ "Raw Cognitive Density": 1.065
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.48%",
- "Error & Exception Exposure": "98.76%",
+ "Cognitive Load Exposure": "77.89%",
+ "Error & Exception Exposure": "99.53%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "3.02%",
@@ -562495,7 +562495,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.66%",
+ "Documentation Exposure": "12.51%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -562614,9 +562614,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "76.42%",
- "Error & Exception Exposure": "75.67%",
- "Tech Debt Exposure": "18.83%",
+ "Cognitive Load Exposure": "75.13%",
+ "Error & Exception Exposure": "77.95%",
+ "Tech Debt Exposure": "17.72%",
"Testing Exposure": "64.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "40.0%",
@@ -562625,7 +562625,7 @@
"Specification Exposure": "80.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "3.47%",
+ "Documentation Exposure": "2.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -562662,11 +562662,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.843
+ "Raw Cognitive Density": 3.838
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.3%",
- "Error & Exception Exposure": "95.32%",
+ "Cognitive Load Exposure": "97.17%",
+ "Error & Exception Exposure": "98.06%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -563093,10 +563093,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.98%",
+ "Cognitive Load Exposure": "11.37%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -563254,12 +563254,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.369
+ "Raw Cognitive Density": 4.362
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.42%",
- "Error & Exception Exposure": "93.21%",
- "Tech Debt Exposure": "73.03%",
+ "Cognitive Load Exposure": "97.36%",
+ "Error & Exception Exposure": "96.46%",
+ "Tech Debt Exposure": "70.35%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "100.0%",
@@ -563781,11 +563781,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.124
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.56%",
- "Error & Exception Exposure": "98.07%",
+ "Cognitive Load Exposure": "79.51%",
+ "Error & Exception Exposure": "99.43%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -563795,7 +563795,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.36%",
+ "Documentation Exposure": "14.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -564033,12 +564033,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.434
+ "Raw Cognitive Density": 1.424
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.85%",
- "Error & Exception Exposure": "91.74%",
- "Tech Debt Exposure": "21.11%",
+ "Cognitive Load Exposure": "90.26%",
+ "Error & Exception Exposure": "95.8%",
+ "Tech Debt Exposure": "18.24%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -564395,18 +564395,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "24.11%",
- "Error & Exception Exposure": "64.03%",
- "Tech Debt Exposure": "27.61%",
+ "Cognitive Load Exposure": "22.5%",
+ "Error & Exception Exposure": "69.44%",
+ "Tech Debt Exposure": "26.75%",
"Testing Exposure": "30.26%",
"API Exposure": "5.33%",
- "Concurrency Exposure": "12.44%",
- "State Flux Exposure": "80.86%",
+ "Concurrency Exposure": "11.49%",
+ "State Flux Exposure": "80.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "7.14%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.65%",
+ "Documentation Exposure": "25.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -564447,7 +564447,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "13.12%",
- "Error & Exception Exposure": "49.91%",
+ "Error & Exception Exposure": "54.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.61%",
"API Exposure": "6.68%",
@@ -564457,7 +564457,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "65.01%",
+ "Documentation Exposure": "52.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -564710,9 +564710,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "14.02%",
- "Error & Exception Exposure": "60.17%",
+ "Error & Exception Exposure": "63.98%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.68%",
+ "Testing Exposure": "2.7%",
"API Exposure": "4.81%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "83.77%",
@@ -564720,7 +564720,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.41%",
+ "Documentation Exposure": "45.19%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -564961,7 +564961,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "11.74%",
- "Error & Exception Exposure": "55.2%",
+ "Error & Exception Exposure": "59.17%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "6.24%",
@@ -564971,7 +564971,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.93%",
+ "Documentation Exposure": "15.78%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -565193,7 +565193,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.11%",
- "Error & Exception Exposure": "59.74%",
+ "Error & Exception Exposure": "64.87%",
"Tech Debt Exposure": "92.41%",
"Testing Exposure": "2.49%",
"API Exposure": "3.1%",
@@ -565203,7 +565203,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.01%",
+ "Documentation Exposure": "12.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -565435,10 +565435,10 @@
"Raw Cognitive Density": 0.974
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.23%",
- "Error & Exception Exposure": "78.95%",
+ "Cognitive Load Exposure": "35.5%",
+ "Error & Exception Exposure": "88.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.49%",
"API Exposure": "6.74%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -565446,7 +565446,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.23%",
+ "Documentation Exposure": "24.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -565659,9 +565659,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "16.81%",
- "Error & Exception Exposure": "58.78%",
+ "Error & Exception Exposure": "63.38%",
"Tech Debt Exposure": "62.25%",
- "Testing Exposure": "2.86%",
+ "Testing Exposure": "2.88%",
"API Exposure": "4.66%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "92.55%",
@@ -565840,9 +565840,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "11.43%",
- "Error & Exception Exposure": "62.75%",
+ "Error & Exception Exposure": "68.54%",
"Tech Debt Exposure": "99.28%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.54%",
"API Exposure": "2.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "98.53%",
@@ -565850,7 +565850,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "64.02%",
+ "Documentation Exposure": "56.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -566107,21 +566107,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.707
+ "Raw Cognitive Density": 0.697
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.23%",
- "Error & Exception Exposure": "58.37%",
+ "Cognitive Load Exposure": "27.66%",
+ "Error & Exception Exposure": "63.41%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.14%",
- "Concurrency Exposure": "75.28%",
- "State Flux Exposure": "81.26%",
+ "Concurrency Exposure": "70.55%",
+ "State Flux Exposure": "78.36%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.66%",
+ "Documentation Exposure": "13.63%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -566372,21 +566372,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.73
+ "Raw Cognitive Density": 0.725
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.75%",
- "Error & Exception Exposure": "62.4%",
+ "Cognitive Load Exposure": "37.25%",
+ "Error & Exception Exposure": "71.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "6.67%",
- "Concurrency Exposure": "22.78%",
- "State Flux Exposure": "59.02%",
+ "Concurrency Exposure": "18.83%",
+ "State Flux Exposure": "54.61%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.86%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -566746,13 +566746,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.101
+ "Raw Cognitive Density": 1.048
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.14%",
- "Error & Exception Exposure": "91.42%",
+ "Cognitive Load Exposure": "38.36%",
+ "Error & Exception Exposure": "94.54%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.82%",
+ "Testing Exposure": "2.74%",
"API Exposure": "5.51%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -566760,7 +566760,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.58%",
+ "Documentation Exposure": "29.88%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -566957,21 +566957,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.661
+ "Raw Cognitive Density": 0.653
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.34%",
- "Error & Exception Exposure": "81.33%",
- "Tech Debt Exposure": "17.05%",
+ "Cognitive Load Exposure": "20.19%",
+ "Error & Exception Exposure": "91.8%",
+ "Tech Debt Exposure": "14.26%",
"Testing Exposure": "80.0%",
"API Exposure": "8.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.27%",
+ "State Flux Exposure": "99.12%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "34.48%",
+ "Documentation Exposure": "14.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -567365,8 +567365,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.35%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.34%",
"API Exposure": "4.95%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -567374,7 +567374,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.29%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -567540,21 +567540,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.27
+ "Raw Cognitive Density": 1.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.18%",
- "Error & Exception Exposure": "84.72%",
- "Tech Debt Exposure": "17.3%",
+ "Cognitive Load Exposure": "44.25%",
+ "Error & Exception Exposure": "92.62%",
+ "Tech Debt Exposure": "13.95%",
"Testing Exposure": "80.0%",
"API Exposure": "4.26%",
- "Concurrency Exposure": "76.11%",
+ "Concurrency Exposure": "71.48%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.93%",
+ "Documentation Exposure": "12.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -567875,13 +567875,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.108
+ "Raw Cognitive Density": 1.052
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.38%",
- "Error & Exception Exposure": "92.72%",
+ "Cognitive Load Exposure": "38.49%",
+ "Error & Exception Exposure": "95.98%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.85%",
+ "Testing Exposure": "2.77%",
"API Exposure": "5.66%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -567889,7 +567889,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "86.72%",
+ "Documentation Exposure": "45.08%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -572287,18 +572287,18 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "54.37%",
- "Error & Exception Exposure": "50.55%",
- "Tech Debt Exposure": "22.58%",
- "Testing Exposure": "50.68%",
+ "Cognitive Load Exposure": "54.84%",
+ "Error & Exception Exposure": "55.0%",
+ "Tech Debt Exposure": "25.9%",
+ "Testing Exposure": "50.69%",
"API Exposure": "2.89%",
- "Concurrency Exposure": "2.47%",
- "State Flux Exposure": "84.18%",
+ "Concurrency Exposure": "2.63%",
+ "State Flux Exposure": "84.35%",
"Commented Logic Exposure": "3.07%",
"Specification Exposure": "87.5%",
"Instability Exposure": "43.75%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.88%",
+ "Documentation Exposure": "24.45%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -572492,16 +572492,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.895
+ "Raw Cognitive Density": 0.897
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.09%",
- "Error & Exception Exposure": "45.72%",
- "Tech Debt Exposure": "22.06%",
+ "Cognitive Load Exposure": "64.33%",
+ "Error & Exception Exposure": "48.35%",
+ "Tech Debt Exposure": "22.89%",
"Testing Exposure": "80.0%",
"API Exposure": "2.04%",
- "Concurrency Exposure": "19.72%",
- "State Flux Exposure": "96.1%",
+ "Concurrency Exposure": "21.02%",
+ "State Flux Exposure": "96.32%",
"Commented Logic Exposure": "5.75%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -572847,12 +572847,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.984
+ "Raw Cognitive Density": 1.0
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "71.86%",
- "Error & Exception Exposure": "79.65%",
- "Tech Debt Exposure": "46.1%",
+ "Cognitive Load Exposure": "73.11%",
+ "Error & Exception Exposure": "88.08%",
+ "Tech Debt Exposure": "55.83%",
"Testing Exposure": "80.0%",
"API Exposure": "3.02%",
"Concurrency Exposure": "0.0%",
@@ -572861,7 +572861,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "67.72%",
+ "Documentation Exposure": "71.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -573026,11 +573026,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.333
+ "Raw Cognitive Density": 1.338
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.15%",
- "Error & Exception Exposure": "64.89%",
+ "Cognitive Load Exposure": "91.31%",
+ "Error & Exception Exposure": "73.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.22%",
@@ -573040,7 +573040,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.95%",
+ "Documentation Exposure": "28.41%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -573479,16 +573479,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.632
+ "Raw Cognitive Density": 0.636
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.45%",
- "Error & Exception Exposure": "36.52%",
- "Tech Debt Exposure": "32.71%",
+ "Cognitive Load Exposure": "38.83%",
+ "Error & Exception Exposure": "37.62%",
+ "Tech Debt Exposure": "36.05%",
"Testing Exposure": "80.0%",
"API Exposure": "2.31%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "94.15%",
+ "State Flux Exposure": "94.48%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -573744,21 +573744,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.489
+ "Raw Cognitive Density": 0.494
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.07%",
- "Error & Exception Exposure": "32.2%",
- "Tech Debt Exposure": "26.44%",
- "Testing Exposure": "2.78%",
+ "Cognitive Load Exposure": "26.4%",
+ "Error & Exception Exposure": "32.15%",
+ "Tech Debt Exposure": "28.54%",
+ "Testing Exposure": "2.82%",
"API Exposure": "2.32%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "83.23%",
+ "State Flux Exposure": "84.05%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.03%",
+ "Documentation Exposure": "34.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -574045,11 +574045,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.909
+ "Raw Cognitive Density": 0.911
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.41%",
- "Error & Exception Exposure": "63.35%",
+ "Cognitive Load Exposure": "65.57%",
+ "Error & Exception Exposure": "70.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.04%",
@@ -574533,13 +574533,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.066
+ "Raw Cognitive Density": 1.083
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.96%",
- "Error & Exception Exposure": "82.05%",
- "Tech Debt Exposure": "53.28%",
- "Testing Exposure": "2.64%",
+ "Cognitive Load Exposure": "79.14%",
+ "Error & Exception Exposure": "89.86%",
+ "Tech Debt Exposure": "63.88%",
+ "Testing Exposure": "2.69%",
"API Exposure": "3.14%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -574547,7 +574547,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.6%",
+ "Documentation Exposure": "25.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -574739,7 +574739,7 @@
"Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -577167,7 +577167,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "51.98%",
- "Error & Exception Exposure": "77.99%",
+ "Error & Exception Exposure": "82.8%",
"Tech Debt Exposure": "21.37%",
"Testing Exposure": "35.66%",
"API Exposure": "3.37%",
@@ -577177,7 +577177,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.42%",
+ "Documentation Exposure": "25.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -577218,7 +577218,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "74.21%",
- "Error & Exception Exposure": "87.33%",
+ "Error & Exception Exposure": "93.44%",
"Tech Debt Exposure": "58.73%",
"Testing Exposure": "80.0%",
"API Exposure": "0.65%",
@@ -577228,7 +577228,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.59%",
+ "Documentation Exposure": "13.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -577711,7 +577711,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "58.55%",
+ "Error & Exception Exposure": "62.18%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -577871,9 +577871,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "61.59%",
- "Error & Exception Exposure": "73.66%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "62.25%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.9%",
@@ -578084,7 +578084,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "78.76%",
- "Error & Exception Exposure": "96.34%",
+ "Error & Exception Exposure": "98.79%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.81%",
@@ -578094,7 +578094,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.01%",
+ "Documentation Exposure": "31.38%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -578359,7 +578359,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "60.62%",
- "Error & Exception Exposure": "84.61%",
+ "Error & Exception Exposure": "90.98%",
"Tech Debt Exposure": "17.95%",
"Testing Exposure": "2.44%",
"API Exposure": "5.79%",
@@ -578369,7 +578369,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.92%",
+ "Documentation Exposure": "31.66%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -578567,7 +578567,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "74.05%",
- "Error & Exception Exposure": "88.31%",
+ "Error & Exception Exposure": "93.94%",
"Tech Debt Exposure": "10.66%",
"Testing Exposure": "80.0%",
"API Exposure": "2.14%",
@@ -578577,7 +578577,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.78%",
+ "Documentation Exposure": "19.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -578865,7 +578865,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "14.64%",
- "Error & Exception Exposure": "57.13%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
"API Exposure": "7.18%",
@@ -579045,18 +579045,18 @@
"Static: Literature & Documentation": "11.1%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "29.73%",
- "Error & Exception Exposure": "36.82%",
+ "Cognitive Load Exposure": "28.88%",
+ "Error & Exception Exposure": "35.08%",
"Tech Debt Exposure": "37.32%",
- "Testing Exposure": "36.63%",
+ "Testing Exposure": "28.06%",
"API Exposure": "1.12%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "40.62%",
+ "State Flux Exposure": "40.35%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "77.78%",
"Instability Exposure": "44.44%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.2%",
+ "Documentation Exposure": "6.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -579250,16 +579250,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.91
+ "Raw Cognitive Density": 0.885
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.5%",
- "Error & Exception Exposure": "64.28%",
+ "Cognitive Load Exposure": "63.15%",
+ "Error & Exception Exposure": "62.01%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "72.65%",
+ "State Flux Exposure": "70.2%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -579450,13 +579450,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.447
+ "Raw Cognitive Density": 2.439
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.33%",
- "Error & Exception Exposure": "44.67%",
+ "Cognitive Load Exposure": "87.29%",
+ "Error & Exception Exposure": "23.56%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.87%",
"API Exposure": "2.01%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -579464,7 +579464,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.79%",
+ "Documentation Exposure": "13.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -579893,7 +579893,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "60.52%",
- "Error & Exception Exposure": "63.55%",
+ "Error & Exception Exposure": "68.72%",
"Tech Debt Exposure": "99.99%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -580565,7 +580565,7 @@
"Cognitive Load Exposure": "4.62%",
"Error & Exception Exposure": "58.46%",
"Tech Debt Exposure": "97.33%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -580859,7 +580859,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "26.33%",
- "Error & Exception Exposure": "44.48%",
+ "Error & Exception Exposure": "47.04%",
"Tech Debt Exposure": "76.35%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -582448,7 +582448,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "33.12%",
+ "Documentation Exposure": "30.19%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -582743,10 +582743,10 @@
"Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.16%",
+ "Cognitive Load Exposure": "6.9%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "62.25%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -582914,7 +582914,7 @@
"Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -583054,18 +583054,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "73.81%",
- "Error & Exception Exposure": "73.86%",
- "Tech Debt Exposure": "17.39%",
- "Testing Exposure": "38.25%",
+ "Cognitive Load Exposure": "72.6%",
+ "Error & Exception Exposure": "74.07%",
+ "Tech Debt Exposure": "15.61%",
+ "Testing Exposure": "38.24%",
"API Exposure": "0.86%",
- "Concurrency Exposure": "6.47%",
- "State Flux Exposure": "76.44%",
+ "Concurrency Exposure": "6.3%",
+ "State Flux Exposure": "76.0%",
"Commented Logic Exposure": "0.94%",
"Specification Exposure": "61.54%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "3.55%",
+ "Documentation Exposure": "3.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -583102,12 +583102,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.78
+ "Raw Cognitive Density": 1.775
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.4%",
- "Error & Exception Exposure": "89.09%",
- "Tech Debt Exposure": "16.7%",
+ "Cognitive Load Exposure": "98.37%",
+ "Error & Exception Exposure": "93.44%",
+ "Tech Debt Exposure": "14.87%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -583630,16 +583630,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.96
+ "Raw Cognitive Density": 1.92
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.22%",
- "Error & Exception Exposure": "77.46%",
+ "Cognitive Load Exposure": "99.08%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -583808,16 +583808,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
+ "Cognitive Load Exposure": "18.54%",
"Error & Exception Exposure": "73.66%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.48%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -583986,12 +583986,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.327
+ "Raw Cognitive Density": 3.321
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "95.49%",
- "Tech Debt Exposure": "48.05%",
+ "Error & Exception Exposure": "97.84%",
+ "Tech Debt Exposure": "43.91%",
"Testing Exposure": "80.0%",
"API Exposure": "0.55%",
"Concurrency Exposure": "0.0%",
@@ -584000,7 +584000,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.04%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -584356,11 +584356,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.396
+ "Raw Cognitive Density": 1.381
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.91%",
- "Error & Exception Exposure": "96.45%",
+ "Cognitive Load Exposure": "85.83%",
+ "Error & Exception Exposure": "98.14%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.05%",
@@ -584370,7 +584370,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.34%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -584654,11 +584654,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.943
+ "Raw Cognitive Density": 1.92
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.16%",
- "Error & Exception Exposure": "99.93%",
+ "Cognitive Load Exposure": "99.08%",
+ "Error & Exception Exposure": "99.99%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -584902,12 +584902,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.825
+ "Raw Cognitive Density": 1.819
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.66%",
- "Error & Exception Exposure": "98.21%",
- "Tech Debt Exposure": "17.93%",
+ "Cognitive Load Exposure": "98.63%",
+ "Error & Exception Exposure": "99.34%",
+ "Tech Debt Exposure": "15.82%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -584916,7 +584916,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.78%",
+ "Documentation Exposure": "15.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -585182,13 +585182,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.089
+ "Raw Cognitive Density": 1.054
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.53%",
- "Error & Exception Exposure": "94.91%",
+ "Cognitive Load Exposure": "77.11%",
+ "Error & Exception Exposure": "96.75%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -585400,16 +585400,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.538
+ "Raw Cognitive Density": 0.513
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.02%",
- "Error & Exception Exposure": "55.71%",
- "Tech Debt Exposure": "43.62%",
+ "Cognitive Load Exposure": "27.91%",
+ "Error & Exception Exposure": "48.47%",
+ "Tech Debt Exposure": "28.96%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "36.32%",
+ "State Flux Exposure": "33.59%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -585578,16 +585578,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.78
+ "Raw Cognitive Density": 1.74
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.4%",
- "Error & Exception Exposure": "82.94%",
+ "Cognitive Load Exposure": "98.13%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.59%",
+ "Testing Exposure": "2.57%",
"API Exposure": "6.55%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -585778,13 +585778,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "9.28%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -585956,15 +585956,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.594
+ "Raw Cognitive Density": 4.578
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "96.27%",
+ "Error & Exception Exposure": "98.07%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "84.09%",
+ "Concurrency Exposure": "81.84%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -586204,13 +586204,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.6
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.43%",
+ "Cognitive Load Exposure": "31.86%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -586358,18 +586358,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "24.61%",
- "Error & Exception Exposure": "38.44%",
- "Tech Debt Exposure": "10.68%",
+ "Cognitive Load Exposure": "24.33%",
+ "Error & Exception Exposure": "39.21%",
+ "Tech Debt Exposure": "10.59%",
"Testing Exposure": "41.18%",
"API Exposure": "4.42%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "34.92%",
+ "State Flux Exposure": "34.57%",
"Commented Logic Exposure": "2.9%",
"Specification Exposure": "75.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.72%",
+ "Documentation Exposure": "27.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -586409,13 +586409,13 @@
"Raw Cognitive Density": 0.162
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.98%",
- "Error & Exception Exposure": "55.78%",
- "Tech Debt Exposure": "32.97%",
+ "Cognitive Load Exposure": "7.48%",
+ "Error & Exception Exposure": "57.42%",
+ "Tech Debt Exposure": "32.61%",
"Testing Exposure": "80.0%",
"API Exposure": "5.51%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "39.7%",
+ "State Flux Exposure": "38.27%",
"Commented Logic Exposure": "6.5%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -587103,10 +587103,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.13
+ "Raw Cognitive Density": 0.111
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.72%",
+ "Cognitive Load Exposure": "7.21%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.43%",
@@ -587294,8 +587294,8 @@
"Raw Cognitive Density": 1.156
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.76%",
- "Error & Exception Exposure": "97.99%",
+ "Cognitive Load Exposure": "82.63%",
+ "Error & Exception Exposure": "99.44%",
"Tech Debt Exposure": "9.75%",
"Testing Exposure": "80.0%",
"API Exposure": "12.15%",
@@ -587305,7 +587305,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.96%",
+ "Documentation Exposure": "98.88%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -587708,18 +587708,18 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "28.3%",
- "Error & Exception Exposure": "51.77%",
- "Tech Debt Exposure": "11.31%",
+ "Cognitive Load Exposure": "28.32%",
+ "Error & Exception Exposure": "51.83%",
+ "Tech Debt Exposure": "11.43%",
"Testing Exposure": "48.46%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "59.05%",
+ "State Flux Exposure": "59.1%",
"Commented Logic Exposure": "2.27%",
"Specification Exposure": "60.0%",
"Instability Exposure": "40.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.95%",
+ "Documentation Exposure": "22.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -588071,21 +588071,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.505
+ "Raw Cognitive Density": 0.506
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.66%",
- "Error & Exception Exposure": "62.28%",
- "Tech Debt Exposure": "32.11%",
+ "Cognitive Load Exposure": "13.69%",
+ "Error & Exception Exposure": "62.54%",
+ "Tech Debt Exposure": "32.57%",
"Testing Exposure": "80.0%",
"API Exposure": "14.62%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "95.25%",
+ "State Flux Exposure": "95.52%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "88.53%",
+ "Documentation Exposure": "88.64%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -590111,8 +590111,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "57.68%",
- "Error & Exception Exposure": "99.38%",
- "Tech Debt Exposure": "15.0%",
+ "Error & Exception Exposure": "99.4%",
+ "Tech Debt Exposure": "15.05%",
"Testing Exposure": "80.0%",
"API Exposure": "1.13%",
"Concurrency Exposure": "0.0%",
@@ -591844,9 +591844,9 @@
"Raw Cognitive Density": 1.029
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.19%",
- "Error & Exception Exposure": "97.2%",
- "Tech Debt Exposure": "9.43%",
+ "Cognitive Load Exposure": "70.2%",
+ "Error & Exception Exposure": "97.23%",
+ "Tech Debt Exposure": "9.51%",
"Testing Exposure": "80.0%",
"API Exposure": "1.92%",
"Concurrency Exposure": "0.0%",
@@ -591855,7 +591855,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.32%",
+ "Documentation Exposure": "14.38%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -592616,12 +592616,12 @@
"Static: Literature & Documentation": "33.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "54.18%",
- "Error & Exception Exposure": "64.96%",
- "Tech Debt Exposure": "54.25%",
+ "Cognitive Load Exposure": "53.96%",
+ "Error & Exception Exposure": "66.02%",
+ "Tech Debt Exposure": "52.83%",
"Testing Exposure": "53.33%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "7.69%",
+ "Concurrency Exposure": "6.37%",
"State Flux Exposure": "66.67%",
"Commented Logic Exposure": "4.19%",
"Specification Exposure": "66.67%",
@@ -592824,12 +592824,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.932
+ "Raw Cognitive Density": 0.925
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.48%",
- "Error & Exception Exposure": "97.14%",
- "Tech Debt Exposure": "70.62%",
+ "Cognitive Load Exposure": "66.85%",
+ "Error & Exception Exposure": "98.85%",
+ "Tech Debt Exposure": "66.8%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -593352,15 +593352,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.49
+ "Raw Cognitive Density": 1.487
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.07%",
- "Error & Exception Exposure": "97.73%",
- "Tech Debt Exposure": "92.15%",
+ "Cognitive Load Exposure": "95.02%",
+ "Error & Exception Exposure": "99.22%",
+ "Tech Debt Exposure": "91.68%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "23.08%",
+ "Concurrency Exposure": "19.1%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.21%",
"Specification Exposure": "100.0%",
@@ -594580,18 +594580,18 @@
"Static: Literature & Documentation": "5.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "9.39%",
- "Error & Exception Exposure": "12.03%",
- "Tech Debt Exposure": "11.97%",
- "Testing Exposure": "47.23%",
+ "Cognitive Load Exposure": "9.13%",
+ "Error & Exception Exposure": "12.3%",
+ "Tech Debt Exposure": "11.33%",
+ "Testing Exposure": "47.22%",
"API Exposure": "3.33%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "6.49%",
+ "State Flux Exposure": "6.28%",
"Commented Logic Exposure": "0.63%",
"Specification Exposure": "89.47%",
"Instability Exposure": "47.37%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.25%",
+ "Documentation Exposure": "15.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -594628,21 +594628,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.205
+ "Raw Cognitive Density": 0.202
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.16%",
- "Error & Exception Exposure": "57.32%",
+ "Cognitive Load Exposure": "10.06%",
+ "Error & Exception Exposure": "58.92%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.27%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.68%",
+ "State Flux Exposure": "18.75%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.78%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -595016,21 +595016,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.116
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.43%",
- "Error & Exception Exposure": "54.72%",
- "Tech Debt Exposure": "89.39%",
+ "Cognitive Load Exposure": "7.32%",
+ "Error & Exception Exposure": "54.97%",
+ "Tech Debt Exposure": "87.89%",
"Testing Exposure": "80.0%",
"API Exposure": "6.62%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "16.49%",
+ "State Flux Exposure": "15.68%",
"Commented Logic Exposure": "6.03%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.56%",
+ "Documentation Exposure": "13.83%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -595324,21 +595324,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.345
+ "Raw Cognitive Density": 0.344
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.55%",
- "Error & Exception Exposure": "59.8%",
- "Tech Debt Exposure": "9.82%",
+ "Cognitive Load Exposure": "16.48%",
+ "Error & Exception Exposure": "62.59%",
+ "Tech Debt Exposure": "9.55%",
"Testing Exposure": "80.0%",
"API Exposure": "2.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "67.13%",
+ "State Flux Exposure": "65.79%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.61%",
+ "Documentation Exposure": "13.18%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -596172,10 +596172,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
@@ -596186,7 +596186,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.23%",
+ "Documentation Exposure": "27.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -596340,13 +596340,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.196
+ "Raw Cognitive Density": 0.179
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.85%",
+ "Cognitive Load Exposure": "9.23%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "6.03%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -596354,7 +596354,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.86%",
+ "Documentation Exposure": "45.18%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -596558,13 +596558,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "3.22%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -596572,7 +596572,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.91%",
+ "Documentation Exposure": "28.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -596736,10 +596736,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.103
+ "Raw Cognitive Density": 0.09
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.98%",
+ "Cognitive Load Exposure": "6.65%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.45%",
@@ -596750,7 +596750,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.11%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -596944,12 +596944,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.329
+ "Raw Cognitive Density": 0.322
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.65%",
+ "Cognitive Load Exposure": "15.3%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "27.09%",
+ "Tech Debt Exposure": "23.91%",
"Testing Exposure": "80.0%",
"API Exposure": "2.51%",
"Concurrency Exposure": "0.0%",
@@ -596958,7 +596958,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.01%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -597292,10 +597292,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.247
+ "Raw Cognitive Density": 0.236
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.8%",
+ "Cognitive Load Exposure": "11.34%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.6%",
@@ -597306,7 +597306,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.73%",
+ "Documentation Exposure": "22.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -597560,12 +597560,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.278
+ "Raw Cognitive Density": 0.276
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.17%",
+ "Cognitive Load Exposure": "13.05%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "33.27%",
+ "Tech Debt Exposure": "31.19%",
"Testing Exposure": "80.0%",
"API Exposure": "4.91%",
"Concurrency Exposure": "0.0%",
@@ -598298,10 +598298,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.245
+ "Raw Cognitive Density": 0.236
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.72%",
+ "Cognitive Load Exposure": "11.34%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -598312,7 +598312,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.75%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -598616,10 +598616,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.201
+ "Raw Cognitive Density": 0.197
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.0%",
+ "Cognitive Load Exposure": "9.86%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -599044,10 +599044,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.216
+ "Raw Cognitive Density": 0.205
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.56%",
+ "Cognitive Load Exposure": "10.14%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.6%",
@@ -599058,7 +599058,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.64%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -599272,21 +599272,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.293
+ "Raw Cognitive Density": 0.287
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.87%",
- "Error & Exception Exposure": "56.82%",
- "Tech Debt Exposure": "51.12%",
+ "Cognitive Load Exposure": "13.58%",
+ "Error & Exception Exposure": "57.17%",
+ "Tech Debt Exposure": "47.38%",
"Testing Exposure": "80.0%",
"API Exposure": "2.44%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "20.08%",
+ "State Flux Exposure": "19.13%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.0%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -599680,10 +599680,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.138
+ "Raw Cognitive Density": 0.13
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.95%",
+ "Cognitive Load Exposure": "7.74%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -599694,7 +599694,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.24%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -599918,12 +599918,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.142
+ "Raw Cognitive Density": 0.138
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.09%",
+ "Cognitive Load Exposure": "7.97%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "16.65%",
+ "Tech Debt Exposure": "15.32%",
"Testing Exposure": "80.0%",
"API Exposure": "2.25%",
"Concurrency Exposure": "0.0%",
@@ -600443,10 +600443,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.175
+ "Raw Cognitive Density": 0.172
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.12%",
+ "Cognitive Load Exposure": "9.01%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -600457,7 +600457,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.6%",
+ "Documentation Exposure": "22.15%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -605811,18 +605811,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "51.01%",
- "Error & Exception Exposure": "88.83%",
- "Tech Debt Exposure": "3.99%",
- "Testing Exposure": "10.98%",
+ "Cognitive Load Exposure": "49.96%",
+ "Error & Exception Exposure": "90.62%",
+ "Tech Debt Exposure": "3.44%",
+ "Testing Exposure": "10.97%",
"API Exposure": "3.97%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.4%",
+ "State Flux Exposure": "92.61%",
"Commented Logic Exposure": "8.02%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.37%",
+ "Documentation Exposure": "14.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -605859,21 +605859,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.613
+ "Raw Cognitive Density": 0.565
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.62%",
- "Error & Exception Exposure": "76.59%",
+ "Cognitive Load Exposure": "32.26%",
+ "Error & Exception Exposure": "73.58%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "7.58%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "85.46%",
+ "State Flux Exposure": "83.08%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.89%",
+ "Documentation Exposure": "59.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -606061,12 +606061,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "88.08%",
+ "Error & Exception Exposure": "90.22%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.85%",
+ "State Flux Exposure": "98.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -606228,16 +606228,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.168
+ "Raw Cognitive Density": 0.143
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.89%",
- "Error & Exception Exposure": "73.43%",
+ "Cognitive Load Exposure": "8.1%",
+ "Error & Exception Exposure": "74.63%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "56.29%",
+ "State Flux Exposure": "51.82%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -606399,13 +606399,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.028
+ "Raw Cognitive Density": 1.024
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.25%",
- "Error & Exception Exposure": "95.55%",
- "Tech Debt Exposure": "9.22%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "74.98%",
+ "Error & Exception Exposure": "98.1%",
+ "Tech Debt Exposure": "8.49%",
+ "Testing Exposure": "2.32%",
"API Exposure": "1.3%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -606714,12 +606714,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.081
+ "Raw Cognitive Density": 1.071
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.0%",
- "Error & Exception Exposure": "97.6%",
- "Tech Debt Exposure": "14.56%",
+ "Cognitive Load Exposure": "78.34%",
+ "Error & Exception Exposure": "99.13%",
+ "Tech Debt Exposure": "11.78%",
"Testing Exposure": "2.32%",
"API Exposure": "1.15%",
"Concurrency Exposure": "0.0%",
@@ -606916,13 +606916,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.022
+ "Raw Cognitive Density": 1.016
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.79%",
- "Error & Exception Exposure": "95.42%",
- "Tech Debt Exposure": "12.16%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "74.36%",
+ "Error & Exception Exposure": "98.08%",
+ "Tech Debt Exposure": "10.72%",
+ "Testing Exposure": "2.35%",
"API Exposure": "7.24%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -606930,7 +606930,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.29%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -607337,13 +607337,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.046
+ "Raw Cognitive Density": 1.03
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.29%",
- "Error & Exception Exposure": "93.6%",
+ "Cognitive Load Exposure": "37.72%",
+ "Error & Exception Exposure": "96.37%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "8.06%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -607639,11 +607639,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.912
+ "Raw Cognitive Density": 0.904
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.68%",
- "Error & Exception Exposure": "93.13%",
+ "Cognitive Load Exposure": "64.9%",
+ "Error & Exception Exposure": "96.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.8%",
@@ -607653,7 +607653,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.18%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -608135,13 +608135,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.105
+ "Raw Cognitive Density": 1.081
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.52%",
- "Error & Exception Exposure": "86.12%",
+ "Cognitive Load Exposure": "78.96%",
+ "Error & Exception Exposure": "88.93%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "5.62%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -608149,7 +608149,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.2%",
+ "Documentation Exposure": "13.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -608322,10 +608322,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "41.41%",
- "Error & Exception Exposure": "78.16%",
+ "Cognitive Load Exposure": "40.48%",
+ "Error & Exception Exposure": "85.08%",
"Tech Debt Exposure": "69.42%",
- "Testing Exposure": "35.36%",
+ "Testing Exposure": "35.37%",
"API Exposure": "3.67%",
"Concurrency Exposure": "14.28%",
"State Flux Exposure": "99.99%",
@@ -608333,7 +608333,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.62%",
+ "Documentation Exposure": "13.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -608373,8 +608373,8 @@
"Raw Cognitive Density": 1.024
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.74%",
- "Error & Exception Exposure": "66.61%",
+ "Cognitive Load Exposure": "37.47%",
+ "Error & Exception Exposure": "74.99%",
"Tech Debt Exposure": "62.5%",
"Testing Exposure": "0.0%",
"API Exposure": "3.79%",
@@ -608690,8 +608690,8 @@
"Raw Cognitive Density": 1.03
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.9%",
- "Error & Exception Exposure": "77.17%",
+ "Cognitive Load Exposure": "61.87%",
+ "Error & Exception Exposure": "84.89%",
"Tech Debt Exposure": "29.23%",
"Testing Exposure": "80.0%",
"API Exposure": "1.69%",
@@ -608701,7 +608701,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.77%",
+ "Documentation Exposure": "14.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -609071,7 +609071,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "38.32%",
- "Error & Exception Exposure": "81.86%",
+ "Error & Exception Exposure": "88.92%",
"Tech Debt Exposure": "95.05%",
"Testing Exposure": "80.0%",
"API Exposure": "2.29%",
@@ -609346,7 +609346,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.9%",
- "Error & Exception Exposure": "63.48%",
+ "Error & Exception Exposure": "69.44%",
"Tech Debt Exposure": "84.82%",
"Testing Exposure": "2.45%",
"API Exposure": "8.57%",
@@ -609356,7 +609356,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.37%",
+ "Documentation Exposure": "13.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -609612,9 +609612,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "47.48%",
- "Error & Exception Exposure": "87.65%",
+ "Error & Exception Exposure": "93.7%",
"Tech Debt Exposure": "80.32%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.53%",
"API Exposure": "3.43%",
"Concurrency Exposure": "99.99%",
"State Flux Exposure": "100.0%",
@@ -609816,7 +609816,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "33.71%",
- "Error & Exception Exposure": "91.2%",
+ "Error & Exception Exposure": "96.17%",
"Tech Debt Exposure": "99.25%",
"Testing Exposure": "2.59%",
"API Exposure": "5.79%",
@@ -609826,7 +609826,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.55%",
+ "Documentation Exposure": "21.29%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -610049,8 +610049,8 @@
"Raw Cognitive Density": 1.019
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "50.82%",
- "Error & Exception Exposure": "79.17%",
+ "Cognitive Load Exposure": "46.64%",
+ "Error & Exception Exposure": "87.48%",
"Tech Debt Exposure": "34.8%",
"Testing Exposure": "80.0%",
"API Exposure": "0.1%",
@@ -610396,18 +610396,18 @@
"Static: Literature & Documentation": "18.2%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "37.3%",
- "Error & Exception Exposure": "60.46%",
- "Tech Debt Exposure": "46.65%",
- "Testing Exposure": "44.3%",
+ "Cognitive Load Exposure": "37.33%",
+ "Error & Exception Exposure": "62.42%",
+ "Tech Debt Exposure": "46.95%",
+ "Testing Exposure": "58.39%",
"API Exposure": "4.25%",
- "Concurrency Exposure": "39.59%",
- "State Flux Exposure": "47.13%",
+ "Concurrency Exposure": "40.44%",
+ "State Flux Exposure": "47.21%",
"Commented Logic Exposure": "1.55%",
"Specification Exposure": "72.73%",
"Instability Exposure": "40.91%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.68%",
+ "Documentation Exposure": "23.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -610761,12 +610761,12 @@
"Raw Cognitive Density": 0.024
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.41%",
- "Error & Exception Exposure": "61.16%",
- "Tech Debt Exposure": "8.55%",
+ "Cognitive Load Exposure": "4.28%",
+ "Error & Exception Exposure": "65.0%",
+ "Tech Debt Exposure": "8.64%",
"Testing Exposure": "2.3%",
"API Exposure": "0.51%",
- "Concurrency Exposure": "18.55%",
+ "Concurrency Exposure": "19.79%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
@@ -610929,9 +610929,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "64.44%",
- "Error & Exception Exposure": "92.96%",
- "Tech Debt Exposure": "83.45%",
- "Testing Exposure": "2.48%",
+ "Error & Exception Exposure": "95.91%",
+ "Tech Debt Exposure": "83.74%",
+ "Testing Exposure": "80.0%",
"API Exposure": "6.5%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -610939,7 +610939,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.07%",
+ "Documentation Exposure": "43.34%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -613667,18 +613667,18 @@
"Raw Cognitive Density": 1.317
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.2%",
- "Error & Exception Exposure": "99.0%",
- "Tech Debt Exposure": "55.71%",
+ "Cognitive Load Exposure": "87.22%",
+ "Error & Exception Exposure": "99.28%",
+ "Tech Debt Exposure": "56.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.63%",
- "Concurrency Exposure": "29.24%",
+ "Concurrency Exposure": "30.92%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "85.98%",
+ "Documentation Exposure": "86.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -616065,16 +616065,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.471
+ "Raw Cognitive Density": 0.472
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "24.46%",
- "Error & Exception Exposure": "60.45%",
- "Tech Debt Exposure": "96.8%",
+ "Cognitive Load Exposure": "24.51%",
+ "Error & Exception Exposure": "62.79%",
+ "Tech Debt Exposure": "96.86%",
"Testing Exposure": "80.0%",
"API Exposure": "3.6%",
- "Concurrency Exposure": "32.99%",
- "State Flux Exposure": "18.44%",
+ "Concurrency Exposure": "34.79%",
+ "State Flux Exposure": "19.36%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -620023,21 +620023,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.442
+ "Raw Cognitive Density": 0.444
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.88%",
- "Error & Exception Exposure": "59.7%",
- "Tech Debt Exposure": "15.14%",
+ "Cognitive Load Exposure": "16.99%",
+ "Error & Exception Exposure": "61.08%",
+ "Tech Debt Exposure": "15.87%",
"Testing Exposure": "80.0%",
"API Exposure": "3.27%",
- "Concurrency Exposure": "40.08%",
+ "Concurrency Exposure": "42.01%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.26%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.02%",
+ "Documentation Exposure": "14.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -620350,15 +620350,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.068
+ "Raw Cognitive Density": 1.071
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.1%",
- "Error & Exception Exposure": "98.76%",
- "Tech Debt Exposure": "12.38%",
+ "Cognitive Load Exposure": "78.29%",
+ "Error & Exception Exposure": "99.09%",
+ "Tech Debt Exposure": "13.14%",
"Testing Exposure": "80.0%",
"API Exposure": "0.27%",
- "Concurrency Exposure": "14.23%",
+ "Concurrency Exposure": "15.23%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.77%",
"Specification Exposure": "100.0%",
@@ -620849,12 +620849,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.598
+ "Raw Cognitive Density": 1.599
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.66%",
- "Error & Exception Exposure": "92.57%",
- "Tech Debt Exposure": "44.05%",
+ "Cognitive Load Exposure": "80.67%",
+ "Error & Exception Exposure": "94.52%",
+ "Tech Debt Exposure": "45.01%",
"Testing Exposure": "80.0%",
"API Exposure": "3.69%",
"Concurrency Exposure": "100.0%",
@@ -620863,7 +620863,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.41%",
+ "Documentation Exposure": "22.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -622021,21 +622021,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.476
+ "Raw Cognitive Density": 1.478
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.4%",
- "Error & Exception Exposure": "86.46%",
- "Tech Debt Exposure": "97.08%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "47.42%",
+ "Error & Exception Exposure": "91.22%",
+ "Tech Debt Exposure": "97.24%",
+ "Testing Exposure": "80.0%",
"API Exposure": "8.12%",
- "Concurrency Exposure": "87.95%",
+ "Concurrency Exposure": "88.77%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.29%",
+ "Documentation Exposure": "48.05%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -623191,12 +623191,12 @@
"Raw Cognitive Density": 0.335
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.78%",
- "Error & Exception Exposure": "13.95%",
+ "Cognitive Load Exposure": "6.79%",
+ "Error & Exception Exposure": "17.7%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "13.19%",
- "Concurrency Exposure": "12.41%",
+ "Concurrency Exposure": "13.31%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -630032,18 +630032,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "51.53%",
- "Error & Exception Exposure": "78.69%",
+ "Cognitive Load Exposure": "49.77%",
+ "Error & Exception Exposure": "79.55%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "21.88%",
+ "Testing Exposure": "21.86%",
"API Exposure": "0.41%",
- "Concurrency Exposure": "0.99%",
- "State Flux Exposure": "69.9%",
+ "Concurrency Exposure": "0.87%",
+ "State Flux Exposure": "69.23%",
"Commented Logic Exposure": "7.03%",
"Specification Exposure": "25.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "6.47%",
+ "Documentation Exposure": "3.66%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -630080,21 +630080,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
- "Error & Exception Exposure": "81.82%",
+ "Cognitive Load Exposure": "11.51%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.2%",
+ "Documentation Exposure": "19.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -630258,16 +630258,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "10.72%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -630436,13 +630436,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.59
+ "Raw Cognitive Density": 1.563
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.64%",
- "Error & Exception Exposure": "99.91%",
+ "Cognitive Load Exposure": "96.28%",
+ "Error & Exception Exposure": "99.99%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.77%",
+ "Testing Exposure": "2.71%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -630624,16 +630624,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.02
+ "Raw Cognitive Density": 0.98
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.65%",
- "Error & Exception Exposure": "95.47%",
+ "Cognitive Load Exposure": "71.5%",
+ "Error & Exception Exposure": "97.55%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.58%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -630802,13 +630802,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.96
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "98.9%",
+ "Cognitive Load Exposure": "69.85%",
+ "Error & Exception Exposure": "99.65%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.62%",
+ "Testing Exposure": "2.59%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -631000,11 +631000,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.413
+ "Raw Cognitive Density": 2.39
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.87%",
- "Error & Exception Exposure": "99.88%",
+ "Cognitive Load Exposure": "99.86%",
+ "Error & Exception Exposure": "99.98%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -631258,11 +631258,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.314
+ "Raw Cognitive Density": 1.301
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.52%",
- "Error & Exception Exposure": "99.64%",
+ "Cognitive Load Exposure": "90.07%",
+ "Error & Exception Exposure": "99.94%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -631456,21 +631456,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.96%",
+ "Documentation Exposure": "12.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -631640,7 +631640,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -631802,13 +631802,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -631986,7 +631986,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -632148,11 +632148,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.426
+ "Raw Cognitive Density": 1.403
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.74%",
- "Error & Exception Exposure": "99.99%",
+ "Cognitive Load Exposure": "93.16%",
+ "Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -632426,16 +632426,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "85.81%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "88.67%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -632604,16 +632604,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.469
+ "Raw Cognitive Density": 1.457
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.66%",
- "Error & Exception Exposure": "99.99%",
+ "Cognitive Load Exposure": "94.41%",
+ "Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "23.69%",
- "State Flux Exposure": "99.95%",
+ "Concurrency Exposure": "20.92%",
+ "State Flux Exposure": "99.94%",
"Commented Logic Exposure": "6.75%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -632828,7 +632828,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -632992,11 +632992,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.672
+ "Raw Cognitive Density": 1.648
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.56%",
- "Error & Exception Exposure": "99.92%",
+ "Cognitive Load Exposure": "97.32%",
+ "Error & Exception Exposure": "99.99%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.84%",
@@ -633006,7 +633006,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.0%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -633230,13 +633230,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -633408,16 +633408,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.9
+ "Raw Cognitive Density": 0.86
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.57%",
- "Error & Exception Exposure": "83.66%",
+ "Cognitive Load Exposure": "60.83%",
+ "Error & Exception Exposure": "85.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -633606,16 +633606,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.898
+ "Raw Cognitive Density": 0.864
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.41%",
- "Error & Exception Exposure": "89.16%",
+ "Cognitive Load Exposure": "61.25%",
+ "Error & Exception Exposure": "92.46%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.51%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.97%",
+ "State Flux Exposure": "99.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -633774,16 +633774,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.88
+ "Raw Cognitive Density": 0.84
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.71%",
- "Error & Exception Exposure": "86.88%",
+ "Cognitive Load Exposure": "58.9%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -633945,16 +633945,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.48
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.35%",
- "Error & Exception Exposure": "89.9%",
+ "Cognitive Load Exposure": "22.44%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.58%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -634123,16 +634123,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.7
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.61%",
- "Error & Exception Exposure": "99.76%",
+ "Cognitive Load Exposure": "32.88%",
+ "Error & Exception Exposure": "99.95%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.65%",
+ "Testing Exposure": "2.63%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -634311,21 +634311,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.423
+ "Raw Cognitive Density": 1.392
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.66%",
- "Error & Exception Exposure": "98.24%",
+ "Cognitive Load Exposure": "92.89%",
+ "Error & Exception Exposure": "99.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.92%",
+ "State Flux Exposure": "99.91%",
"Commented Logic Exposure": "64.57%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "66.23%",
+ "Documentation Exposure": "44.8%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -634521,16 +634521,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.16
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.75%",
- "Error & Exception Exposure": "92.9%",
+ "Cognitive Load Exposure": "81.46%",
+ "Error & Exception Exposure": "95.63%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.91%",
+ "Testing Exposure": "2.86%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "48.77%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -636191,13 +636191,13 @@
"Static: Literature & Documentation": "7.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "29.21%",
- "Error & Exception Exposure": "53.16%",
- "Tech Debt Exposure": "32.19%",
- "Testing Exposure": "5.2%",
+ "Cognitive Load Exposure": "27.51%",
+ "Error & Exception Exposure": "50.07%",
+ "Tech Debt Exposure": "27.87%",
+ "Testing Exposure": "5.19%",
"API Exposure": "1.78%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "74.09%",
+ "State Flux Exposure": "73.59%",
"Commented Logic Exposure": "1.12%",
"Specification Exposure": "50.0%",
"Instability Exposure": "46.15%",
@@ -636557,12 +636557,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.36%",
"API Exposure": "3.73%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -636741,13 +636741,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.45%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.44%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -636909,16 +636909,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.5
+ "Raw Cognitive Density": 0.46
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.89%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "23.87%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.37%",
"API Exposure": "1.76%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -637077,12 +637077,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.62
+ "Raw Cognitive Density": 0.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.29%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "33.63%",
+ "Error & Exception Exposure": "82.39%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.37%",
"API Exposure": "1.76%",
"Concurrency Exposure": "0.0%",
@@ -637245,13 +637245,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.91
+ "Raw Cognitive Density": 0.87
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.48%",
- "Error & Exception Exposure": "96.99%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "61.77%",
+ "Error & Exception Exposure": "98.64%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.49%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -637463,13 +637463,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.833
+ "Raw Cognitive Density": 0.822
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.26%",
- "Error & Exception Exposure": "88.57%",
- "Tech Debt Exposure": "22.27%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "57.17%",
+ "Error & Exception Exposure": "93.15%",
+ "Tech Debt Exposure": "17.83%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.13%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -637701,16 +637701,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.74
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.0%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "85.81%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "1.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -637879,16 +637879,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.92
+ "Raw Cognitive Density": 0.88
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.37%",
- "Error & Exception Exposure": "83.3%",
+ "Cognitive Load Exposure": "62.71%",
+ "Error & Exception Exposure": "85.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.53%",
"API Exposure": "1.76%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -638047,16 +638047,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.297
+ "Raw Cognitive Density": 0.284
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.05%",
- "Error & Exception Exposure": "1.53%",
+ "Cognitive Load Exposure": "13.41%",
+ "Error & Exception Exposure": "0.07%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "80.43%",
+ "State Flux Exposure": "78.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -638631,12 +638631,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "72.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -638809,12 +638809,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.88%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -639130,16 +639130,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.64
+ "Raw Cognitive Density": 0.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.17%",
- "Error & Exception Exposure": "71.62%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.68%",
+ "Cognitive Load Exposure": "35.43%",
+ "Error & Exception Exposure": "70.21%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.64%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -639308,16 +639308,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.632
+ "Raw Cognitive Density": 0.578
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.46%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.51%",
+ "Cognitive Load Exposure": "33.4%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.49%",
"API Exposure": "4.68%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -639538,16 +639538,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
+ "Cognitive Load Exposure": "17.36%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -639716,16 +639716,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
+ "Cognitive Load Exposure": "16.25%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -639898,9 +639898,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.66%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -640095,13 +640095,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.97
+ "Raw Cognitive Density": 0.936
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.71%",
- "Error & Exception Exposure": "67.96%",
+ "Cognitive Load Exposure": "67.83%",
+ "Error & Exception Exposure": "57.54%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.4%",
"API Exposure": "1.03%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -640350,12 +640350,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "23.94%",
+ "Error & Exception Exposure": "8.32%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.63%",
+ "State Flux Exposure": "96.21%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -640728,13 +640728,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.872
+ "Raw Cognitive Density": 0.859
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.01%",
- "Error & Exception Exposure": "35.6%",
+ "Cognitive Load Exposure": "60.72%",
+ "Error & Exception Exposure": "15.13%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -641119,13 +641119,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.705
+ "Raw Cognitive Density": 0.672
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.5%",
- "Error & Exception Exposure": "31.0%",
+ "Cognitive Load Exposure": "42.28%",
+ "Error & Exception Exposure": "10.45%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.23%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -641371,13 +641371,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.654
+ "Raw Cognitive Density": 0.636
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.54%",
- "Error & Exception Exposure": "40.04%",
+ "Cognitive Load Exposure": "38.75%",
+ "Error & Exception Exposure": "21.03%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.98%",
@@ -641632,11 +641632,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.539
+ "Raw Cognitive Density": 1.529
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.91%",
- "Error & Exception Exposure": "94.3%",
+ "Cognitive Load Exposure": "95.75%",
+ "Error & Exception Exposure": "97.22%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.87%",
@@ -641646,7 +641646,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.92%",
+ "Documentation Exposure": "99.78%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -642267,7 +642267,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.34%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
@@ -642416,10 +642416,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "77.02%",
- "Error & Exception Exposure": "94.26%",
+ "Cognitive Load Exposure": "73.86%",
+ "Error & Exception Exposure": "96.73%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "35.77%",
+ "Testing Exposure": "35.75%",
"API Exposure": "0.64%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -642427,7 +642427,7 @@
"Specification Exposure": "42.86%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.24%",
+ "Documentation Exposure": "13.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -642464,13 +642464,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.165
+ "Raw Cognitive Density": 1.144
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.66%",
- "Error & Exception Exposure": "98.21%",
+ "Cognitive Load Exposure": "74.03%",
+ "Error & Exception Exposure": "99.32%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.65%",
+ "Testing Exposure": "2.61%",
"API Exposure": "0.16%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -642478,7 +642478,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.39%",
+ "Documentation Exposure": "21.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -642678,11 +642678,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.068
+ "Raw Cognitive Density": 1.05
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.12%",
- "Error & Exception Exposure": "95.15%",
+ "Cognitive Load Exposure": "76.85%",
+ "Error & Exception Exposure": "97.78%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -642966,13 +642966,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.183
+ "Raw Cognitive Density": 1.161
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.32%",
- "Error & Exception Exposure": "97.64%",
+ "Cognitive Load Exposure": "74.5%",
+ "Error & Exception Exposure": "98.98%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.66%",
+ "Testing Exposure": "2.62%",
"API Exposure": "0.18%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -642980,7 +642980,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.24%",
+ "Documentation Exposure": "21.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -643181,11 +643181,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.608
+ "Raw Cognitive Density": 1.598
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.86%",
- "Error & Exception Exposure": "84.53%",
+ "Cognitive Load Exposure": "96.75%",
+ "Error & Exception Exposure": "89.51%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.12%",
@@ -643195,7 +643195,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.06%",
+ "Documentation Exposure": "50.73%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -643499,13 +643499,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.76
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.0%",
- "Error & Exception Exposure": "92.0%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "94.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.56%",
+ "Testing Exposure": "2.54%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -643699,13 +643699,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.04
+ "Raw Cognitive Density": 1.008
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.79%",
- "Error & Exception Exposure": "97.88%",
+ "Cognitive Load Exposure": "61.84%",
+ "Error & Exception Exposure": "99.14%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -643902,11 +643902,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.212
+ "Raw Cognitive Density": 1.204
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.37%",
- "Error & Exception Exposure": "94.41%",
+ "Cognitive Load Exposure": "86.02%",
+ "Error & Exception Exposure": "97.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -644307,18 +644307,18 @@
"Static: Literature & Documentation": "5.9%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "9.24%",
- "Error & Exception Exposure": "30.95%",
- "Tech Debt Exposure": "3.15%",
+ "Cognitive Load Exposure": "8.91%",
+ "Error & Exception Exposure": "32.07%",
+ "Tech Debt Exposure": "2.88%",
"Testing Exposure": "25.09%",
"API Exposure": "2.02%",
- "Concurrency Exposure": "4.08%",
- "State Flux Exposure": "1.55%",
+ "Concurrency Exposure": "3.87%",
+ "State Flux Exposure": "1.48%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "82.35%",
"Instability Exposure": "47.06%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "8.14%",
+ "Documentation Exposure": "5.18%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -644355,12 +644355,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.087
+ "Raw Cognitive Density": 0.079
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.59%",
- "Error & Exception Exposure": "59.89%",
- "Tech Debt Exposure": "32.87%",
+ "Cognitive Load Exposure": "6.4%",
+ "Error & Exception Exposure": "61.11%",
+ "Tech Debt Exposure": "28.64%",
"Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -644563,10 +644563,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.362
+ "Raw Cognitive Density": 0.354
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.45%",
+ "Cognitive Load Exposure": "17.01%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -644731,10 +644731,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -644888,10 +644888,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.093
+ "Raw Cognitive Density": 0.09
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.74%",
+ "Cognitive Load Exposure": "6.66%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -645206,10 +645206,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.184
+ "Raw Cognitive Density": 0.171
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.42%",
+ "Cognitive Load Exposure": "8.98%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
@@ -645374,21 +645374,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.189
+ "Raw Cognitive Density": 0.188
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.6%",
- "Error & Exception Exposure": "53.68%",
- "Tech Debt Exposure": "11.72%",
+ "Cognitive Load Exposure": "9.56%",
+ "Error & Exception Exposure": "54.6%",
+ "Tech Debt Exposure": "11.46%",
"Testing Exposure": "80.0%",
"API Exposure": "9.02%",
- "Concurrency Exposure": "39.76%",
+ "Concurrency Exposure": "37.86%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.06%",
+ "Documentation Exposure": "13.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -645942,10 +645942,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
+ "Cognitive Load Exposure": "9.28%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.54%",
@@ -645956,7 +645956,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.3%",
+ "Documentation Exposure": "12.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -646140,11 +646140,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.109
+ "Raw Cognitive Density": 0.098
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.14%",
- "Error & Exception Exposure": "67.33%",
+ "Cognitive Load Exposure": "6.86%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.37%",
"API Exposure": "4.15%",
@@ -646154,7 +646154,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.31%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -646328,11 +646328,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.101
+ "Raw Cognitive Density": 0.091
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.94%",
- "Error & Exception Exposure": "62.05%",
+ "Cognitive Load Exposure": "6.68%",
+ "Error & Exception Exposure": "63.52%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.48%",
"API Exposure": "6.36%",
@@ -646342,7 +646342,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.01%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -646546,11 +646546,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -646703,15 +646703,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.178
+ "Raw Cognitive Density": 0.177
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.21%",
- "Error & Exception Exposure": "51.41%",
- "Tech Debt Exposure": "8.98%",
+ "Cognitive Load Exposure": "9.19%",
+ "Error & Exception Exposure": "51.68%",
+ "Tech Debt Exposure": "8.84%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "29.62%",
+ "Concurrency Exposure": "27.98%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -646941,16 +646941,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.161
+ "Raw Cognitive Density": 0.152
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.65%",
- "Error & Exception Exposure": "67.17%",
+ "Cognitive Load Exposure": "8.37%",
+ "Error & Exception Exposure": "70.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "26.34%",
+ "State Flux Exposure": "25.19%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -647169,10 +647169,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.47%",
@@ -647337,11 +647337,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.134
+ "Raw Cognitive Density": 0.119
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.85%",
- "Error & Exception Exposure": "85.3%",
+ "Cognitive Load Exposure": "7.43%",
+ "Error & Exception Exposure": "90.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.49%",
"API Exposure": "6.5%",
@@ -647351,7 +647351,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.9%",
+ "Documentation Exposure": "14.4%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -647535,10 +647535,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.337
+ "Raw Cognitive Density": 0.331
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.1%",
+ "Cognitive Load Exposure": "15.78%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -647703,10 +647703,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.337
+ "Raw Cognitive Density": 0.331
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.1%",
+ "Cognitive Load Exposure": "15.78%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -651784,18 +651784,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "16.32%",
- "Error & Exception Exposure": "25.08%",
- "Tech Debt Exposure": "42.0%",
- "Testing Exposure": "2.29%",
+ "Cognitive Load Exposure": "15.34%",
+ "Error & Exception Exposure": "24.18%",
+ "Tech Debt Exposure": "40.14%",
+ "Testing Exposure": "2.28%",
"API Exposure": "1.15%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "27.94%",
+ "State Flux Exposure": "27.59%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "34.09%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "8.35%",
+ "Documentation Exposure": "6.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -651832,12 +651832,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.119
+ "Raw Cognitive Density": 1.112
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.38%",
- "Error & Exception Exposure": "79.73%",
- "Tech Debt Exposure": "92.58%",
+ "Cognitive Load Exposure": "80.95%",
+ "Error & Exception Exposure": "81.81%",
+ "Tech Debt Exposure": "91.26%",
"Testing Exposure": "0.0%",
"API Exposure": "9.21%",
"Concurrency Exposure": "0.0%",
@@ -651846,7 +651846,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.36%",
+ "Documentation Exposure": "34.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -652190,11 +652190,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.212
+ "Raw Cognitive Density": 1.203
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.44%",
- "Error & Exception Exposure": "82.58%",
+ "Cognitive Load Exposure": "73.07%",
+ "Error & Exception Exposure": "83.88%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "7.43%",
@@ -652204,7 +652204,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.8%",
+ "Documentation Exposure": "24.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -652351,17 +652351,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "56.56%",
+ "Error & Exception Exposure": "52.37%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "9.21%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.91%",
+ "State Flux Exposure": "17.19%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.55%",
+ "Documentation Exposure": "65.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -652666,8 +652666,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.32%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -652675,7 +652675,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.93%",
+ "Documentation Exposure": "39.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -652833,12 +652833,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.46%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "69.85%",
+ "Tech Debt Exposure": "98.9%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -653017,13 +653017,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.59
+ "Raw Cognitive Density": 1.55
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.64%",
- "Error & Exception Exposure": "83.08%",
- "Tech Debt Exposure": "99.92%",
- "Testing Exposure": "2.59%",
+ "Cognitive Load Exposure": "96.08%",
+ "Error & Exception Exposure": "83.78%",
+ "Tech Debt Exposure": "99.79%",
+ "Testing Exposure": "2.54%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -653239,12 +653239,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -653433,16 +653433,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.798
+ "Raw Cognitive Density": 0.773
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.82%",
- "Error & Exception Exposure": "74.18%",
- "Tech Debt Exposure": "99.78%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "52.31%",
+ "Error & Exception Exposure": "74.63%",
+ "Tech Debt Exposure": "99.59%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.95%",
+ "State Flux Exposure": "99.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -653683,16 +653683,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.78
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "53.0%",
- "Error & Exception Exposure": "73.16%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.47%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "98.9%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -653871,13 +653871,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.935
+ "Raw Cognitive Density": 0.887
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.74%",
- "Error & Exception Exposure": "74.36%",
- "Tech Debt Exposure": "98.73%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "63.38%",
+ "Error & Exception Exposure": "69.1%",
+ "Tech Debt Exposure": "95.87%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -654059,13 +654059,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.971
+ "Raw Cognitive Density": 0.886
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.8%",
- "Error & Exception Exposure": "80.85%",
+ "Cognitive Load Exposure": "63.25%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -654287,13 +654287,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.861
+ "Raw Cognitive Density": 0.839
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.95%",
- "Error & Exception Exposure": "76.51%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Cognitive Load Exposure": "58.85%",
+ "Error & Exception Exposure": "77.26%",
+ "Tech Debt Exposure": "99.99%",
+ "Testing Exposure": "2.47%",
"API Exposure": "13.5%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -654301,7 +654301,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.8%",
+ "Documentation Exposure": "99.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -654610,7 +654610,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -654773,13 +654773,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.084
+ "Raw Cognitive Density": 1.005
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.19%",
- "Error & Exception Exposure": "73.84%",
- "Tech Debt Exposure": "99.95%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "73.48%",
+ "Error & Exception Exposure": "67.92%",
+ "Tech Debt Exposure": "99.79%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.96%",
@@ -654975,17 +654975,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "92.41%",
"Testing Exposure": "2.33%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.93%",
+ "Documentation Exposure": "39.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -655149,16 +655149,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.64
+ "Raw Cognitive Density": 0.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.17%",
- "Error & Exception Exposure": "75.37%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "33.63%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -655327,16 +655327,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.72%",
- "Error & Exception Exposure": "64.43%",
- "Tech Debt Exposure": "85.2%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "7.49%",
+ "Error & Exception Exposure": "62.01%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -658040,10 +658040,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -658197,10 +658197,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -659296,10 +659296,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -659453,10 +659453,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -659586,18 +659586,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "8.71%",
- "Error & Exception Exposure": "33.94%",
- "Tech Debt Exposure": "26.97%",
- "Testing Exposure": "41.19%",
+ "Cognitive Load Exposure": "7.95%",
+ "Error & Exception Exposure": "31.46%",
+ "Tech Debt Exposure": "25.93%",
+ "Testing Exposure": "41.18%",
"API Exposure": "0.57%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.94%",
+ "State Flux Exposure": "17.34%",
"Commented Logic Exposure": "8.68%",
"Specification Exposure": "75.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.36%",
+ "Documentation Exposure": "10.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -659791,10 +659791,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -659955,21 +659955,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.276
+ "Raw Cognitive Density": 0.269
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.06%",
- "Error & Exception Exposure": "50.21%",
- "Tech Debt Exposure": "99.57%",
+ "Cognitive Load Exposure": "12.72%",
+ "Error & Exception Exposure": "46.65%",
+ "Tech Debt Exposure": "99.47%",
"Testing Exposure": "80.0%",
"API Exposure": "0.67%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "34.47%",
+ "State Flux Exposure": "29.27%",
"Commented Logic Exposure": "5.16%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.56%",
+ "Documentation Exposure": "12.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -660583,21 +660583,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.217
+ "Raw Cognitive Density": 0.21
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.58%",
- "Error & Exception Exposure": "56.79%",
- "Tech Debt Exposure": "9.73%",
+ "Cognitive Load Exposure": "10.35%",
+ "Error & Exception Exposure": "56.53%",
+ "Tech Debt Exposure": "8.45%",
"Testing Exposure": "80.0%",
"API Exposure": "0.69%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "62.64%",
+ "State Flux Exposure": "56.88%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.82%",
+ "Documentation Exposure": "12.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -660931,13 +660931,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.208
+ "Raw Cognitive Density": 0.174
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.25%",
+ "Cognitive Load Exposure": "9.09%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.85%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -660945,7 +660945,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.11%",
+ "Documentation Exposure": "14.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -661189,21 +661189,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.202
+ "Raw Cognitive Density": 0.198
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.05%",
- "Error & Exception Exposure": "46.75%",
- "Tech Debt Exposure": "9.66%",
+ "Cognitive Load Exposure": "9.91%",
+ "Error & Exception Exposure": "42.0%",
+ "Tech Debt Exposure": "8.85%",
"Testing Exposure": "80.0%",
"API Exposure": "0.64%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "30.37%",
+ "State Flux Exposure": "25.55%",
"Commented Logic Exposure": "5.04%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.11%",
+ "Documentation Exposure": "12.41%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -661647,11 +661647,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.088
+ "Raw Cognitive Density": 0.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.62%",
- "Error & Exception Exposure": "57.79%",
+ "Cognitive Load Exposure": "6.17%",
+ "Error & Exception Exposure": "55.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.82%",
@@ -661661,7 +661661,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.45%",
+ "Documentation Exposure": "14.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -661935,21 +661935,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.213
+ "Raw Cognitive Density": 0.169
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.47%",
- "Error & Exception Exposure": "59.98%",
- "Tech Debt Exposure": "96.77%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "8.9%",
+ "Error & Exception Exposure": "51.38%",
+ "Tech Debt Exposure": "90.68%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.94%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "32.05%",
+ "State Flux Exposure": "27.06%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.84%",
+ "Documentation Exposure": "19.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -662120,13 +662120,13 @@
"Static: Literature & Documentation": "4.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "37.59%",
- "Error & Exception Exposure": "76.1%",
+ "Cognitive Load Exposure": "36.22%",
+ "Error & Exception Exposure": "76.09%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "15.88%",
+ "Testing Exposure": "15.87%",
"API Exposure": "0.14%",
- "Concurrency Exposure": "1.33%",
- "State Flux Exposure": "53.93%",
+ "Concurrency Exposure": "1.18%",
+ "State Flux Exposure": "53.09%",
"Commented Logic Exposure": "4.16%",
"Specification Exposure": "13.04%",
"Instability Exposure": "47.83%",
@@ -662325,16 +662325,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "89.9%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -662513,16 +662513,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.0%",
- "Error & Exception Exposure": "99.87%",
+ "Cognitive Load Exposure": "43.05%",
+ "Error & Exception Exposure": "99.98%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "19.45%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -662721,11 +662721,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "75.37%",
+ "Cognitive Load Exposure": "9.97%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.37%",
"API Exposure": "0.0%",
@@ -662889,10 +662889,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.339
+ "Raw Cognitive Density": 1.304
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.56%",
+ "Cognitive Load Exposure": "74.05%",
"Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -663067,13 +663067,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.99
+ "Raw Cognitive Density": 1.95
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.3%",
- "Error & Exception Exposure": "99.64%",
+ "Cognitive Load Exposure": "99.18%",
+ "Error & Exception Exposure": "99.92%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.63%",
+ "Testing Exposure": "2.6%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -663269,12 +663269,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -663439,12 +663439,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -663609,12 +663609,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -663775,13 +663775,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.05
+ "Raw Cognitive Density": 3.01
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.99%",
- "Error & Exception Exposure": "87.73%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.93%",
+ "Testing Exposure": "2.85%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -663963,16 +663963,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.92
+ "Raw Cognitive Density": 0.88
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.37%",
- "Error & Exception Exposure": "99.61%",
+ "Cognitive Load Exposure": "62.71%",
+ "Error & Exception Exposure": "99.91%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "3.06%",
+ "Testing Exposure": "3.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -664165,9 +664165,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -664339,13 +664339,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
- "Error & Exception Exposure": "92.19%",
+ "Cognitive Load Exposure": "12.35%",
+ "Error & Exception Exposure": "94.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.76%",
+ "Testing Exposure": "2.72%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -664527,16 +664527,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.613
+ "Raw Cognitive Density": 0.61
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.63%",
- "Error & Exception Exposure": "82.81%",
+ "Cognitive Load Exposure": "36.36%",
+ "Error & Exception Exposure": "88.65%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.12%",
- "Concurrency Exposure": "30.53%",
- "State Flux Exposure": "76.51%",
+ "Concurrency Exposure": "27.25%",
+ "State Flux Exposure": "74.28%",
"Commented Logic Exposure": "6.88%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -664798,16 +664798,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.76
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.0%",
- "Error & Exception Exposure": "99.53%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "99.89%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.97%",
+ "Testing Exposure": "2.91%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -664996,11 +664996,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.612
+ "Raw Cognitive Density": 1.581
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.91%",
- "Error & Exception Exposure": "99.3%",
+ "Cognitive Load Exposure": "96.52%",
+ "Error & Exception Exposure": "99.8%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -665206,16 +665206,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.74
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.0%",
- "Error & Exception Exposure": "75.37%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -665562,16 +665562,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.44
+ "Raw Cognitive Density": 1.4
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.05%",
- "Error & Exception Exposure": "96.14%",
+ "Cognitive Load Exposure": "93.09%",
+ "Error & Exception Exposure": "98.1%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.53%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -665740,16 +665740,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.54
+ "Raw Cognitive Density": 1.5
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.93%",
- "Error & Exception Exposure": "73.66%",
+ "Cognitive Load Exposure": "95.26%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -665922,12 +665922,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -666092,12 +666092,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -666262,12 +666262,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -666404,18 +666404,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "76.42%",
- "Error & Exception Exposure": "90.09%",
- "Tech Debt Exposure": "33.29%",
+ "Cognitive Load Exposure": "75.7%",
+ "Error & Exception Exposure": "90.33%",
+ "Tech Debt Exposure": "33.22%",
"Testing Exposure": "41.22%",
"API Exposure": "0.39%",
- "Concurrency Exposure": "16.57%",
- "State Flux Exposure": "88.57%",
+ "Concurrency Exposure": "16.55%",
+ "State Flux Exposure": "87.99%",
"Commented Logic Exposure": "2.6%",
"Specification Exposure": "66.67%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.29%",
+ "Documentation Exposure": "9.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -666452,15 +666452,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.614
+ "Raw Cognitive Density": 2.597
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.94%",
- "Error & Exception Exposure": "99.94%",
+ "Error & Exception Exposure": "99.99%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "99.4%",
+ "Concurrency Exposure": "99.3%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -666670,11 +666670,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.905
+ "Raw Cognitive Density": 1.902
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.03%",
- "Error & Exception Exposure": "99.15%",
+ "Cognitive Load Exposure": "99.01%",
+ "Error & Exception Exposure": "99.82%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.32%",
@@ -666684,7 +666684,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.12%",
+ "Documentation Exposure": "12.51%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -667659,12 +667659,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.16%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -667823,16 +667823,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.88
+ "Raw Cognitive Density": 0.84
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.71%",
- "Error & Exception Exposure": "75.13%",
+ "Cognitive Load Exposure": "58.9%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -667991,11 +667991,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.83
+ "Raw Cognitive Density": 1.801
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.69%",
- "Error & Exception Exposure": "99.99%",
+ "Cognitive Load Exposure": "98.53%",
+ "Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -668005,7 +668005,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "65.62%",
+ "Documentation Exposure": "46.58%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -668219,16 +668219,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.74
+ "Raw Cognitive Density": 1.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.13%",
- "Error & Exception Exposure": "92.19%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.64%",
+ "Cognitive Load Exposure": "97.81%",
+ "Error & Exception Exposure": "94.85%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.61%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -668404,13 +668404,13 @@
"Static: Literature & Documentation": "36.4%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "11.3%",
- "Error & Exception Exposure": "15.97%",
- "Tech Debt Exposure": "7.07%",
- "Testing Exposure": "15.62%",
+ "Cognitive Load Exposure": "9.8%",
+ "Error & Exception Exposure": "14.63%",
+ "Tech Debt Exposure": "3.91%",
+ "Testing Exposure": "15.61%",
"API Exposure": "0.4%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.21%",
+ "State Flux Exposure": "18.06%",
"Commented Logic Exposure": "0.48%",
"Specification Exposure": "36.36%",
"Instability Exposure": "31.82%",
@@ -669082,16 +669082,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.887
+ "Raw Cognitive Density": 0.867
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.24%",
- "Error & Exception Exposure": "42.42%",
- "Tech Debt Exposure": "13.38%",
+ "Cognitive Load Exposure": "58.06%",
+ "Error & Exception Exposure": "42.45%",
+ "Tech Debt Exposure": "9.8%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.42%",
+ "State Flux Exposure": "96.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -669605,16 +669605,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.811
+ "Raw Cognitive Density": 0.733
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.2%",
- "Error & Exception Exposure": "59.17%",
- "Tech Debt Exposure": "47.98%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "32.71%",
+ "Error & Exception Exposure": "51.41%",
+ "Tech Debt Exposure": "19.39%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "79.26%",
+ "State Flux Exposure": "73.9%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -669880,13 +669880,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.388
+ "Raw Cognitive Density": 0.375
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.52%",
- "Error & Exception Exposure": "25.51%",
+ "Cognitive Load Exposure": "9.11%",
+ "Error & Exception Exposure": "20.15%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -670607,16 +670607,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.346
+ "Raw Cognitive Density": 0.334
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.29%",
- "Error & Exception Exposure": "48.55%",
- "Tech Debt Exposure": "16.43%",
+ "Cognitive Load Exposure": "7.97%",
+ "Error & Exception Exposure": "46.86%",
+ "Tech Debt Exposure": "13.77%",
"Testing Exposure": "80.0%",
"API Exposure": "1.03%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "34.62%",
+ "State Flux Exposure": "28.18%",
"Commented Logic Exposure": "5.24%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -671772,18 +671772,18 @@
"Static: Literature & Documentation": "5.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "31.15%",
- "Error & Exception Exposure": "63.89%",
- "Tech Debt Exposure": "14.11%",
- "Testing Exposure": "10.38%",
+ "Cognitive Load Exposure": "28.8%",
+ "Error & Exception Exposure": "62.52%",
+ "Tech Debt Exposure": "10.68%",
+ "Testing Exposure": "10.37%",
"API Exposure": "1.08%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "71.56%",
+ "State Flux Exposure": "70.92%",
"Commented Logic Exposure": "1.93%",
"Specification Exposure": "31.58%",
"Instability Exposure": "47.37%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "8.15%",
+ "Documentation Exposure": "4.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -672134,21 +672134,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.837
+ "Raw Cognitive Density": 0.825
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.29%",
- "Error & Exception Exposure": "77.74%",
- "Tech Debt Exposure": "68.72%",
+ "Cognitive Load Exposure": "28.71%",
+ "Error & Exception Exposure": "80.63%",
+ "Tech Debt Exposure": "61.96%",
"Testing Exposure": "80.0%",
"API Exposure": "8.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.42%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -672372,16 +672372,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "70.83%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -672540,16 +672540,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.4
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
+ "Cognitive Load Exposure": "19.78%",
"Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -672854,12 +672854,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.058
+ "Raw Cognitive Density": 1.041
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.43%",
- "Error & Exception Exposure": "95.21%",
- "Tech Debt Exposure": "23.29%",
+ "Cognitive Load Exposure": "76.18%",
+ "Error & Exception Exposure": "97.7%",
+ "Tech Debt Exposure": "16.41%",
"Testing Exposure": "80.0%",
"API Exposure": "2.57%",
"Concurrency Exposure": "0.0%",
@@ -672868,7 +672868,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.03%",
+ "Documentation Exposure": "14.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -673086,12 +673086,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -673239,11 +673239,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.02
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "81.63%",
+ "Cognitive Load Exposure": "74.65%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -673398,13 +673398,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.239
+ "Raw Cognitive Density": 1.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.61%",
- "Error & Exception Exposure": "99.53%",
+ "Cognitive Load Exposure": "86.86%",
+ "Error & Exception Exposure": "99.91%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -673555,11 +673555,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.11
+ "Raw Cognitive Density": 1.05
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.85%",
- "Error & Exception Exposure": "95.35%",
+ "Cognitive Load Exposure": "76.85%",
+ "Error & Exception Exposure": "97.11%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -673712,13 +673712,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.0%",
- "Error & Exception Exposure": "85.01%",
+ "Cognitive Load Exposure": "41.1%",
+ "Error & Exception Exposure": "85.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -673726,7 +673726,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.88%",
+ "Documentation Exposure": "26.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -673886,12 +673886,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -674043,12 +674043,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -674196,16 +674196,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.82
+ "Raw Cognitive Density": 0.76
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "56.95%",
- "Error & Exception Exposure": "89.3%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "51.0%",
+ "Error & Exception Exposure": "91.01%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -674364,16 +674364,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.56
+ "Raw Cognitive Density": 0.5
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.86%",
- "Error & Exception Exposure": "77.23%",
+ "Cognitive Load Exposure": "26.89%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -674521,16 +674521,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.5
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.89%",
- "Error & Exception Exposure": "85.01%",
+ "Cognitive Load Exposure": "22.44%",
+ "Error & Exception Exposure": "85.81%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -674835,21 +674835,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.54
+ "Raw Cognitive Density": 0.48
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.15%",
- "Error & Exception Exposure": "65.54%",
+ "Cognitive Load Exposure": "25.35%",
+ "Error & Exception Exposure": "54.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.37%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "62.59%",
+ "Documentation Exposure": "40.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -674980,13 +674980,13 @@
"Static: Literature & Documentation": "1.4%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "10.93%",
- "Error & Exception Exposure": "44.65%",
- "Tech Debt Exposure": "49.65%",
+ "Cognitive Load Exposure": "9.43%",
+ "Error & Exception Exposure": "42.98%",
+ "Tech Debt Exposure": "42.47%",
"Testing Exposure": "1.74%",
"API Exposure": "0.71%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "35.32%",
+ "State Flux Exposure": "34.22%",
"Commented Logic Exposure": "3.59%",
"Specification Exposure": "79.71%",
"Instability Exposure": "49.28%",
@@ -675189,12 +675189,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -675344,11 +675344,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.13
+ "Raw Cognitive Density": 1.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.05%",
- "Error & Exception Exposure": "90.35%",
+ "Cognitive Load Exposure": "78.25%",
+ "Error & Exception Exposure": "91.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "6.74%",
@@ -675501,16 +675501,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -675997,12 +675997,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -676156,12 +676156,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -676315,12 +676315,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -676627,16 +676627,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -676965,13 +676965,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "6.42%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -677156,16 +677156,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.6
+ "Raw Cognitive Density": 0.54
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.43%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "30.15%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -677332,12 +677332,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.32%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -677503,12 +677503,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -678312,12 +678312,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -678478,16 +678478,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "73.66%",
- "Tech Debt Exposure": "98.2%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "70.21%",
+ "Tech Debt Exposure": "92.41%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -678656,11 +678656,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "5.95%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
@@ -678813,10 +678813,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -679131,12 +679131,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -679302,7 +679302,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -679471,12 +679471,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -679642,7 +679642,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -679812,7 +679812,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -680134,16 +680134,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "9.28%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "91.68%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -680462,16 +680462,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "9.28%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "91.68%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -680639,7 +680639,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -681126,12 +681126,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -681292,16 +681292,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -681470,16 +681470,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "98.9%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -681658,16 +681658,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -681838,16 +681838,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682018,16 +682018,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682199,16 +682199,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682383,12 +682383,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682547,16 +682547,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.81
+ "Raw Cognitive Density": 0.762
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "50.6%",
- "Error & Exception Exposure": "74.77%",
- "Tech Debt Exposure": "93.45%",
- "Testing Exposure": "2.51%",
+ "Cognitive Load Exposure": "43.06%",
+ "Error & Exception Exposure": "71.61%",
+ "Tech Debt Exposure": "81.28%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682725,16 +682725,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.823
+ "Raw Cognitive Density": 0.774
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.67%",
- "Error & Exception Exposure": "75.02%",
- "Tech Debt Exposure": "93.95%",
- "Testing Exposure": "2.51%",
+ "Cognitive Load Exposure": "43.96%",
+ "Error & Exception Exposure": "71.84%",
+ "Tech Debt Exposure": "82.23%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.95%",
+ "State Flux Exposure": "99.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682903,16 +682903,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.75
+ "Raw Cognitive Density": 0.706
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.59%",
- "Error & Exception Exposure": "73.59%",
- "Tech Debt Exposure": "90.72%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "38.89%",
+ "Error & Exception Exposure": "70.53%",
+ "Tech Debt Exposure": "76.43%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -683081,16 +683081,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.664
+ "Raw Cognitive Density": 0.615
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.53%",
- "Error & Exception Exposure": "83.97%",
+ "Cognitive Load Exposure": "36.78%",
+ "Error & Exception Exposure": "86.62%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.8%",
+ "State Flux Exposure": "98.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -683393,12 +683393,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -683569,16 +683569,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.664
+ "Raw Cognitive Density": 0.615
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.53%",
- "Error & Exception Exposure": "83.97%",
+ "Cognitive Load Exposure": "36.78%",
+ "Error & Exception Exposure": "86.62%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.8%",
+ "State Flux Exposure": "98.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -683877,16 +683877,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.891
+ "Raw Cognitive Density": 0.807
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.71%",
- "Error & Exception Exposure": "91.01%",
+ "Cognitive Load Exposure": "55.69%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.59%",
+ "Testing Exposure": "2.55%",
"API Exposure": "6.48%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.85%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -684159,12 +684159,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.37%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.99%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -684365,16 +684365,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.672
+ "Raw Cognitive Density": 0.622
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "42.29%",
- "Error & Exception Exposure": "84.18%",
+ "Cognitive Load Exposure": "37.46%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.89%",
+ "State Flux Exposure": "98.67%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -684673,16 +684673,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.891
+ "Raw Cognitive Density": 0.807
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.71%",
- "Error & Exception Exposure": "91.01%",
+ "Cognitive Load Exposure": "55.69%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.59%",
+ "Testing Exposure": "2.55%",
"API Exposure": "6.48%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.85%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -685270,7 +685270,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -685437,12 +685437,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.38%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.37%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -685638,12 +685638,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.38%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.37%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -685838,12 +685838,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -686002,16 +686002,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.216
+ "Raw Cognitive Density": 0.186
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.55%",
- "Error & Exception Exposure": "65.52%",
- "Tech Debt Exposure": "42.7%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "9.49%",
+ "Error & Exception Exposure": "63.2%",
+ "Tech Debt Exposure": "26.32%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "56.29%",
+ "State Flux Exposure": "51.82%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -686824,12 +686824,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.59%",
+ "Error & Exception Exposure": "59.01%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -687278,8 +687278,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "72.18%",
- "Error & Exception Exposure": "80.66%",
+ "Cognitive Load Exposure": "68.88%",
+ "Error & Exception Exposure": "87.48%",
"Tech Debt Exposure": "11.45%",
"Testing Exposure": "80.0%",
"API Exposure": "1.91%",
@@ -687329,8 +687329,8 @@
"Raw Cognitive Density": 1.326
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.18%",
- "Error & Exception Exposure": "80.66%",
+ "Cognitive Load Exposure": "68.88%",
+ "Error & Exception Exposure": "87.48%",
"Tech Debt Exposure": "11.45%",
"Testing Exposure": "80.0%",
"API Exposure": "1.91%",
@@ -687713,13 +687713,13 @@
"Static: Literature & Documentation": "5.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "59.75%",
- "Error & Exception Exposure": "78.19%",
- "Tech Debt Exposure": "9.64%",
- "Testing Exposure": "13.99%",
+ "Cognitive Load Exposure": "58.0%",
+ "Error & Exception Exposure": "79.38%",
+ "Tech Debt Exposure": "7.99%",
+ "Testing Exposure": "13.97%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "9.1%",
- "State Flux Exposure": "74.65%",
+ "Concurrency Exposure": "8.97%",
+ "State Flux Exposure": "74.38%",
"Commented Logic Exposure": "3.0%",
"Specification Exposure": "20.0%",
"Instability Exposure": "47.5%",
@@ -687918,16 +687918,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.54
+ "Raw Cognitive Density": 1.534
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.94%",
- "Error & Exception Exposure": "98.15%",
- "Tech Debt Exposure": "24.52%",
+ "Cognitive Load Exposure": "95.83%",
+ "Error & Exception Exposure": "99.44%",
+ "Tech Debt Exposure": "21.65%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "81.96%",
- "State Flux Exposure": "99.82%",
+ "Concurrency Exposure": "79.47%",
+ "State Flux Exposure": "99.8%",
"Commented Logic Exposure": "13.77%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -688216,16 +688216,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.3
+ "Raw Cognitive Density": 1.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.03%",
- "Error & Exception Exposure": "93.93%",
+ "Cognitive Load Exposure": "88.49%",
+ "Error & Exception Exposure": "95.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -688394,16 +688394,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.64
+ "Raw Cognitive Density": 0.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.17%",
- "Error & Exception Exposure": "89.9%",
+ "Cognitive Load Exposure": "35.43%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.59%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -688592,13 +688592,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.74
+ "Raw Cognitive Density": 1.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.13%",
- "Error & Exception Exposure": "96.59%",
+ "Cognitive Load Exposure": "97.81%",
+ "Error & Exception Exposure": "98.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "99.94%",
@@ -688938,13 +688938,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -689116,16 +689116,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.04
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "99.31%",
+ "Cognitive Load Exposure": "76.13%",
+ "Error & Exception Exposure": "99.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -689304,10 +689304,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.4%",
@@ -689482,16 +689482,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.04
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "96.87%",
+ "Cognitive Load Exposure": "76.13%",
+ "Error & Exception Exposure": "98.52%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -689660,16 +689660,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.229
+ "Raw Cognitive Density": 2.221
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.73%",
- "Error & Exception Exposure": "96.89%",
+ "Cognitive Load Exposure": "99.72%",
+ "Error & Exception Exposure": "98.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.79%",
+ "State Flux Exposure": "98.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -689978,16 +689978,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.04
+ "Raw Cognitive Density": 1.0
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.13%",
- "Error & Exception Exposure": "95.89%",
- "Tech Debt Exposure": "73.11%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "73.11%",
+ "Error & Exception Exposure": "97.93%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -690156,11 +690156,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.359
+ "Raw Cognitive Density": 1.342
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.95%",
- "Error & Exception Exposure": "86.52%",
+ "Cognitive Load Exposure": "91.43%",
+ "Error & Exception Exposure": "90.7%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -690408,12 +690408,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -690572,16 +690572,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.28
+ "Raw Cognitive Density": 1.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "89.28%",
- "Error & Exception Exposure": "99.96%",
+ "Cognitive Load Exposure": "87.65%",
+ "Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.68%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -690740,16 +690740,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.02
+ "Raw Cognitive Density": 0.98
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.65%",
- "Error & Exception Exposure": "94.07%",
+ "Cognitive Load Exposure": "71.5%",
+ "Error & Exception Exposure": "96.59%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -690918,16 +690918,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.74
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.0%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.53%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -691106,16 +691106,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.76
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.0%",
- "Error & Exception Exposure": "97.65%",
- "Tech Debt Exposure": "95.26%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "99.03%",
+ "Tech Debt Exposure": "88.08%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -691284,13 +691284,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.64
+ "Raw Cognitive Density": 1.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.23%",
- "Error & Exception Exposure": "99.3%",
+ "Cognitive Load Exposure": "96.77%",
+ "Error & Exception Exposure": "99.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.67%",
+ "Testing Exposure": "2.64%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -691482,16 +691482,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.86
+ "Raw Cognitive Density": 0.82
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.83%",
- "Error & Exception Exposure": "97.65%",
+ "Cognitive Load Exposure": "56.95%",
+ "Error & Exception Exposure": "99.03%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -691636,13 +691636,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "9.22%",
- "Error & Exception Exposure": "52.01%",
- "Tech Debt Exposure": "11.02%",
+ "Cognitive Load Exposure": "8.99%",
+ "Error & Exception Exposure": "53.44%",
+ "Tech Debt Exposure": "10.57%",
"Testing Exposure": "10.11%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "39.44%",
+ "State Flux Exposure": "38.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "95.0%",
"Instability Exposure": "50.0%",
@@ -691684,16 +691684,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.383
+ "Raw Cognitive Density": 0.379
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.75%",
- "Error & Exception Exposure": "61.96%",
- "Tech Debt Exposure": "22.87%",
+ "Cognitive Load Exposure": "18.51%",
+ "Error & Exception Exposure": "62.89%",
+ "Tech Debt Exposure": "21.18%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.36%",
+ "State Flux Exposure": "96.14%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -691926,12 +691926,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.66%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "20.42%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -692092,16 +692092,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.084
+ "Raw Cognitive Density": 0.083
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.5%",
- "Error & Exception Exposure": "54.2%",
+ "Cognitive Load Exposure": "6.48%",
+ "Error & Exception Exposure": "55.35%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "28.72%",
+ "State Flux Exposure": "27.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -692342,16 +692342,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.215
+ "Raw Cognitive Density": 0.203
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.53%",
- "Error & Exception Exposure": "65.39%",
+ "Cognitive Load Exposure": "10.07%",
+ "Error & Exception Exposure": "67.42%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "48.13%",
+ "State Flux Exposure": "46.64%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -692513,16 +692513,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "68.38%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "36.35%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -692694,16 +692694,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "98.2%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "97.07%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "20.42%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -692874,16 +692874,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.131
+ "Raw Cognitive Density": 0.121
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.75%",
- "Error & Exception Exposure": "61.32%",
+ "Cognitive Load Exposure": "7.49%",
+ "Error & Exception Exposure": "62.71%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "27.32%",
+ "State Flux Exposure": "26.14%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -693055,16 +693055,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.133
+ "Raw Cognitive Density": 0.13
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.82%",
- "Error & Exception Exposure": "58.36%",
- "Tech Debt Exposure": "14.8%",
+ "Cognitive Load Exposure": "7.73%",
+ "Error & Exception Exposure": "60.17%",
+ "Tech Debt Exposure": "13.78%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "44.19%",
+ "State Flux Exposure": "42.72%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -693275,16 +693275,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.176
+ "Raw Cognitive Density": 0.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.14%",
- "Error & Exception Exposure": "61.35%",
+ "Cognitive Load Exposure": "8.94%",
+ "Error & Exception Exposure": "63.44%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "52.04%",
+ "State Flux Exposure": "50.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -693445,16 +693445,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.375
+ "Raw Cognitive Density": 0.367
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.24%",
- "Error & Exception Exposure": "70.43%",
+ "Cognitive Load Exposure": "17.75%",
+ "Error & Exception Exposure": "74.49%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.25%",
+ "State Flux Exposure": "97.09%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -693636,16 +693636,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.221
+ "Raw Cognitive Density": 0.218
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.74%",
- "Error & Exception Exposure": "57.31%",
- "Tech Debt Exposure": "13.84%",
+ "Cognitive Load Exposure": "10.63%",
+ "Error & Exception Exposure": "59.12%",
+ "Tech Debt Exposure": "13.24%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "45.04%",
+ "State Flux Exposure": "43.56%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -694076,16 +694076,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.193
+ "Raw Cognitive Density": 0.189
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.72%",
- "Error & Exception Exposure": "58.7%",
+ "Cognitive Load Exposure": "9.59%",
+ "Error & Exception Exposure": "60.25%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "48.68%",
+ "State Flux Exposure": "47.18%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -694297,16 +694297,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.326
+ "Raw Cognitive Density": 0.322
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.5%",
- "Error & Exception Exposure": "61.17%",
+ "Cognitive Load Exposure": "15.31%",
+ "Error & Exception Exposure": "64.02%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.26%",
+ "State Flux Exposure": "74.12%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -694538,12 +694538,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.069
+ "Raw Cognitive Density": 0.064
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.16%",
+ "Cognitive Load Exposure": "6.04%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "27.68%",
+ "Tech Debt Exposure": "25.91%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -694746,16 +694746,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.242
+ "Raw Cognitive Density": 0.239
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.58%",
- "Error & Exception Exposure": "61.5%",
+ "Cognitive Load Exposure": "11.47%",
+ "Error & Exception Exposure": "64.47%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "77.88%",
+ "State Flux Exposure": "76.83%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -694947,16 +694947,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.135
+ "Raw Cognitive Density": 0.13
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.88%",
- "Error & Exception Exposure": "56.33%",
+ "Cognitive Load Exposure": "7.73%",
+ "Error & Exception Exposure": "57.03%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.67%",
+ "State Flux Exposure": "14.89%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -695138,16 +695138,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.165
+ "Raw Cognitive Density": 0.162
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.79%",
- "Error & Exception Exposure": "56.88%",
- "Tech Debt Exposure": "23.58%",
+ "Cognitive Load Exposure": "8.69%",
+ "Error & Exception Exposure": "58.28%",
+ "Tech Debt Exposure": "22.2%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "32.54%",
+ "State Flux Exposure": "31.23%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -695539,16 +695539,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.112
+ "Raw Cognitive Density": 0.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.23%",
- "Error & Exception Exposure": "55.21%",
- "Tech Debt Exposure": "19.35%",
+ "Cognitive Load Exposure": "7.15%",
+ "Error & Exception Exposure": "56.01%",
+ "Tech Debt Exposure": "18.1%",
"Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.16%",
+ "State Flux Exposure": "18.24%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -696078,10 +696078,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -696212,10 +696212,10 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "26.68%",
- "Error & Exception Exposure": "58.99%",
+ "Cognitive Load Exposure": "25.93%",
+ "Error & Exception Exposure": "62.99%",
"Tech Debt Exposure": "41.02%",
- "Testing Exposure": "50.61%",
+ "Testing Exposure": "50.62%",
"API Exposure": "1.11%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "70.19%",
@@ -696223,7 +696223,7 @@
"Specification Exposure": "75.0%",
"Instability Exposure": "43.75%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.86%",
+ "Documentation Exposure": "6.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -696421,7 +696421,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "51.51%",
- "Error & Exception Exposure": "76.31%",
+ "Error & Exception Exposure": "83.17%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -696431,7 +696431,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.68%",
+ "Documentation Exposure": "31.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -696628,7 +696628,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "19.15%",
- "Error & Exception Exposure": "69.8%",
+ "Error & Exception Exposure": "75.69%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.87%",
@@ -696638,7 +696638,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.2%",
+ "Documentation Exposure": "21.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -697054,8 +697054,8 @@
"Raw Cognitive Density": 0.459
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.52%",
- "Error & Exception Exposure": "46.98%",
+ "Cognitive Load Exposure": "14.06%",
+ "Error & Exception Exposure": "47.63%",
"Tech Debt Exposure": "99.57%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -697638,7 +697638,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "58.71%",
- "Error & Exception Exposure": "86.63%",
+ "Error & Exception Exposure": "92.35%",
"Tech Debt Exposure": "29.33%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -698050,9 +698050,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "26.89%",
- "Error & Exception Exposure": "61.63%",
+ "Error & Exception Exposure": "65.28%",
"Tech Debt Exposure": "99.93%",
- "Testing Exposure": "2.62%",
+ "Testing Exposure": "2.64%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "64.04%",
@@ -698310,8 +698310,8 @@
"Raw Cognitive Density": 0.88
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.04%",
- "Error & Exception Exposure": "70.59%",
+ "Cognitive Load Exposure": "32.5%",
+ "Error & Exception Exposure": "76.39%",
"Tech Debt Exposure": "99.35%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -698736,7 +698736,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "4.64%",
- "Error & Exception Exposure": "60.02%",
+ "Error & Exception Exposure": "63.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -700663,18 +700663,18 @@
"Static: Literature & Documentation": "9.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "42.46%",
- "Error & Exception Exposure": "66.93%",
- "Tech Debt Exposure": "4.69%",
- "Testing Exposure": "5.95%",
+ "Cognitive Load Exposure": "40.55%",
+ "Error & Exception Exposure": "67.27%",
+ "Tech Debt Exposure": "4.62%",
+ "Testing Exposure": "5.93%",
"API Exposure": "0.88%",
"Concurrency Exposure": "4.76%",
- "State Flux Exposure": "73.32%",
+ "State Flux Exposure": "72.83%",
"Commented Logic Exposure": "2.68%",
"Specification Exposure": "42.86%",
"Instability Exposure": "45.24%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.75%",
+ "Documentation Exposure": "17.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -701025,13 +701025,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.99
+ "Raw Cognitive Density": 0.95
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.31%",
- "Error & Exception Exposure": "88.92%",
+ "Cognitive Load Exposure": "69.0%",
+ "Error & Exception Exposure": "91.68%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.66%",
+ "Testing Exposure": "2.63%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -701039,7 +701039,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "73.69%",
+ "Documentation Exposure": "59.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -701223,11 +701223,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.7
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.02%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "41.1%",
+ "Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.4%",
"API Exposure": "0.0%",
@@ -701391,16 +701391,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -701563,12 +701563,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.4%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -701727,13 +701727,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.64
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "39.17%",
+ "Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.48%",
"API Exposure": "1.18%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -701741,7 +701741,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -701935,13 +701935,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.99
+ "Raw Cognitive Density": 0.95
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.31%",
- "Error & Exception Exposure": "92.0%",
+ "Cognitive Load Exposure": "69.0%",
+ "Error & Exception Exposure": "94.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "2.64%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -701949,7 +701949,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "73.69%",
+ "Documentation Exposure": "59.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -702133,21 +702133,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.16
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.75%",
+ "Cognitive Load Exposure": "81.46%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "1.76%",
"Concurrency Exposure": "100.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.29%",
+ "Documentation Exposure": "35.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -702311,13 +702311,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.78
+ "Raw Cognitive Density": 0.74
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "53.0%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "49.0%",
+ "Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -702647,12 +702647,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.18
+ "Raw Cognitive Density": 1.155
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.83%",
- "Error & Exception Exposure": "99.38%",
- "Tech Debt Exposure": "98.44%",
+ "Cognitive Load Exposure": "83.48%",
+ "Error & Exception Exposure": "99.85%",
+ "Tech Debt Exposure": "97.1%",
"Testing Exposure": "80.0%",
"API Exposure": "1.95%",
"Concurrency Exposure": "0.0%",
@@ -702661,7 +702661,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "56.62%",
+ "Documentation Exposure": "40.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -702885,16 +702885,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "51.61%",
+ "Cognitive Load Exposure": "9.97%",
+ "Error & Exception Exposure": "37.42%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -703053,10 +703053,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
@@ -703067,7 +703067,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.29%",
+ "Documentation Exposure": "35.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -703235,12 +703235,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "82.76%",
+ "Error & Exception Exposure": "84.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -703399,13 +703399,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.176
+ "Raw Cognitive Density": 1.139
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.6%",
- "Error & Exception Exposure": "98.68%",
+ "Cognitive Load Exposure": "82.57%",
+ "Error & Exception Exposure": "99.56%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.97%",
+ "Testing Exposure": "2.91%",
"API Exposure": "2.77%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -703413,7 +703413,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "79.46%",
+ "Documentation Exposure": "66.94%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -703607,13 +703607,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.35
+ "Raw Cognitive Density": 1.31
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.68%",
- "Error & Exception Exposure": "96.14%",
+ "Cognitive Load Exposure": "90.38%",
+ "Error & Exception Exposure": "97.75%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.78%",
+ "Testing Exposure": "2.73%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -703815,16 +703815,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.6
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.43%",
- "Error & Exception Exposure": "77.23%",
+ "Cognitive Load Exposure": "31.86%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -703993,13 +703993,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.21
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.29%",
- "Error & Exception Exposure": "92.9%",
+ "Cognitive Load Exposure": "84.29%",
+ "Error & Exception Exposure": "95.63%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.74%",
+ "Testing Exposure": "2.7%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -704171,13 +704171,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.17
+ "Raw Cognitive Density": 1.13
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.29%",
- "Error & Exception Exposure": "93.85%",
+ "Cognitive Load Exposure": "82.05%",
+ "Error & Exception Exposure": "96.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -704369,21 +704369,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
- "Error & Exception Exposure": "74.89%",
+ "Cognitive Load Exposure": "21.08%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "1.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "48.59%",
+ "Documentation Exposure": "33.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -706817,9 +706817,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "10.18%",
- "Error & Exception Exposure": "3.17%",
- "Tech Debt Exposure": "40.5%",
+ "Cognitive Load Exposure": "9.49%",
+ "Error & Exception Exposure": "3.27%",
+ "Tech Debt Exposure": "37.86%",
"Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -706865,10 +706865,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
@@ -707033,10 +707033,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -707190,10 +707190,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -707347,10 +707347,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -707504,10 +707504,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "11.51%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -707661,10 +707661,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "11.51%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -707821,12 +707821,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "97.07%",
"Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -708019,12 +708019,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.68%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -708217,10 +708217,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
+ "Cognitive Load Exposure": "9.28%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -708374,12 +708374,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
+ "Cognitive Load Exposure": "13.24%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.68%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -708572,10 +708572,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -708733,12 +708733,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -709089,12 +709089,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -709262,12 +709262,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -709440,12 +709440,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
+ "Cognitive Load Exposure": "18.54%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.55%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -709625,10 +709625,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -709782,12 +709782,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -709970,12 +709970,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
+ "Cognitive Load Exposure": "18.54%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.55%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -710155,12 +710155,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
+ "Cognitive Load Exposure": "13.24%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.68%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -710521,10 +710521,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -710655,18 +710655,18 @@
"Static: Literature & Documentation": "10.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "14.58%",
- "Error & Exception Exposure": "36.52%",
- "Tech Debt Exposure": "10.71%",
- "Testing Exposure": "2.1%",
+ "Cognitive Load Exposure": "14.2%",
+ "Error & Exception Exposure": "34.57%",
+ "Tech Debt Exposure": "9.24%",
+ "Testing Exposure": "2.09%",
"API Exposure": "3.98%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "34.68%",
+ "State Flux Exposure": "34.05%",
"Commented Logic Exposure": "2.99%",
"Specification Exposure": "40.0%",
"Instability Exposure": "45.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.68%",
+ "Documentation Exposure": "21.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -710860,21 +710860,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.92
+ "Raw Cognitive Density": 0.905
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.34%",
- "Error & Exception Exposure": "70.59%",
- "Tech Debt Exposure": "29.59%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "64.98%",
+ "Error & Exception Exposure": "68.88%",
+ "Tech Debt Exposure": "22.38%",
+ "Testing Exposure": "2.4%",
"API Exposure": "7.46%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "9.01%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.58%",
+ "Documentation Exposure": "41.64%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -711042,7 +711042,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "61.69%",
+ "Error & Exception Exposure": "60.43%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -711199,12 +711199,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "29.07%",
+ "Error & Exception Exposure": "13.78%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "17.57%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.87%",
+ "State Flux Exposure": "98.66%",
"Commented Logic Exposure": "5.72%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -711356,12 +711356,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "58.26%",
+ "Error & Exception Exposure": "56.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "31.34%",
+ "State Flux Exposure": "27.6%",
"Commented Logic Exposure": "7.29%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -711666,10 +711666,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.13
+ "Raw Cognitive Density": 0.074
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.56%",
+ "Cognitive Load Exposure": "5.33%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -711823,13 +711823,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.997
+ "Raw Cognitive Density": 0.982
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.9%",
- "Error & Exception Exposure": "92.94%",
- "Tech Debt Exposure": "77.51%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "71.66%",
+ "Error & Exception Exposure": "95.96%",
+ "Tech Debt Exposure": "70.07%",
+ "Testing Exposure": "2.39%",
"API Exposure": "9.96%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -711837,7 +711837,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "72.24%",
+ "Documentation Exposure": "61.45%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -712206,17 +712206,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "52.61%",
+ "Error & Exception Exposure": "49.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "4.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "16.55%",
+ "State Flux Exposure": "14.21%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.97%",
+ "Documentation Exposure": "14.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -712335,18 +712335,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "22.09%",
- "Error & Exception Exposure": "77.22%",
- "Tech Debt Exposure": "50.82%",
- "Testing Exposure": "5.77%",
+ "Cognitive Load Exposure": "21.09%",
+ "Error & Exception Exposure": "76.32%",
+ "Tech Debt Exposure": "44.79%",
+ "Testing Exposure": "5.76%",
"API Exposure": "0.75%",
- "Concurrency Exposure": "5.95%",
- "State Flux Exposure": "92.0%",
+ "Concurrency Exposure": "5.79%",
+ "State Flux Exposure": "91.37%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "65.22%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.37%",
+ "Documentation Exposure": "9.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -712383,21 +712383,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.351
+ "Raw Cognitive Density": 1.328
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.7%",
- "Error & Exception Exposure": "87.47%",
- "Tech Debt Exposure": "65.95%",
+ "Cognitive Load Exposure": "90.97%",
+ "Error & Exception Exposure": "89.91%",
+ "Tech Debt Exposure": "52.15%",
"Testing Exposure": "80.0%",
"API Exposure": "2.54%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.97%",
+ "State Flux Exposure": "99.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "48.16%",
+ "Documentation Exposure": "36.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -712595,12 +712595,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.68%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -712773,12 +712773,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.12%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "36.97%",
- "State Flux Exposure": "93.7%",
+ "Concurrency Exposure": "33.33%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -712973,12 +712973,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -713137,13 +713137,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.65
+ "Raw Cognitive Density": 2.61
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.95%",
- "Error & Exception Exposure": "95.06%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "99.94%",
+ "Error & Exception Exposure": "96.86%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -713339,12 +713339,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.25%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -713527,17 +713527,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "82.39%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.35%",
"API Exposure": "1.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -713705,12 +713705,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.4%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -713873,12 +713873,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.48%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -714071,12 +714071,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.89%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -714239,12 +714239,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.65%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -714427,17 +714427,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.65%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.35%",
"API Exposure": "1.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -714630,7 +714630,7 @@
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -714793,12 +714793,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.14%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "70.21%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -714981,12 +714981,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.89%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -715159,9 +715159,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -715347,17 +715347,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "2.79%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "62.59%",
+ "Documentation Exposure": "47.64%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -715511,13 +715511,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.561
+ "Raw Cognitive Density": 2.524
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.3%",
- "Error & Exception Exposure": "98.11%",
- "Tech Debt Exposure": "93.64%",
- "Testing Exposure": "2.72%",
+ "Cognitive Load Exposure": "62.21%",
+ "Error & Exception Exposure": "99.13%",
+ "Tech Debt Exposure": "85.14%",
+ "Testing Exposure": "2.68%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -715709,21 +715709,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.695
+ "Raw Cognitive Density": 1.673
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.77%",
- "Error & Exception Exposure": "99.69%",
+ "Cognitive Load Exposure": "97.57%",
+ "Error & Exception Exposure": "99.94%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.51%",
"API Exposure": "6.05%",
- "Concurrency Exposure": "99.87%",
+ "Concurrency Exposure": "99.85%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.55%",
+ "Documentation Exposure": "40.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -715921,12 +715921,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.12%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -716085,13 +716085,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.45
+ "Raw Cognitive Density": 4.41
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "70.03%",
+ "Error & Exception Exposure": "58.49%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.98%",
+ "Testing Exposure": "2.87%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -716319,12 +716319,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.66%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.69%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -716503,21 +716503,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.36%",
- "Error & Exception Exposure": "81.28%",
+ "Cognitive Load Exposure": "34.44%",
+ "Error & Exception Exposure": "83.36%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.51%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "72.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.15%",
+ "Documentation Exposure": "31.83%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -716678,18 +716678,18 @@
"Static: Literature & Documentation": "7.1%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "32.89%",
- "Error & Exception Exposure": "32.98%",
- "Tech Debt Exposure": "12.55%",
- "Testing Exposure": "13.3%",
+ "Cognitive Load Exposure": "31.24%",
+ "Error & Exception Exposure": "29.42%",
+ "Tech Debt Exposure": "11.99%",
+ "Testing Exposure": "13.29%",
"API Exposure": "1.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "45.37%",
+ "State Flux Exposure": "44.7%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "14.29%",
"Instability Exposure": "46.43%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.98%",
+ "Documentation Exposure": "15.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -716883,16 +716883,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.86
+ "Raw Cognitive Density": 0.82
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.83%",
- "Error & Exception Exposure": "70.03%",
+ "Cognitive Load Exposure": "56.95%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -717229,13 +717229,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.38%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -717407,12 +717407,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.108
+ "Raw Cognitive Density": 3.098
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.99%",
- "Error & Exception Exposure": "88.67%",
- "Tech Debt Exposure": "63.73%",
+ "Error & Exception Exposure": "90.92%",
+ "Tech Debt Exposure": "57.9%",
"Testing Exposure": "80.0%",
"API Exposure": "2.42%",
"Concurrency Exposure": "0.0%",
@@ -717421,7 +717421,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.94%",
+ "Documentation Exposure": "23.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -717610,21 +717610,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.733
+ "Raw Cognitive Density": 2.727
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.96%",
- "Error & Exception Exposure": "26.81%",
- "Tech Debt Exposure": "12.19%",
+ "Error & Exception Exposure": "11.17%",
+ "Tech Debt Exposure": "10.67%",
"Testing Exposure": "80.0%",
"API Exposure": "0.14%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "94.4%",
+ "State Flux Exposure": "93.73%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.42%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -717826,7 +717826,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -717834,7 +717834,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -717990,21 +717990,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "79.83%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "81.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "72.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.82%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -718168,13 +718168,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.853
+ "Raw Cognitive Density": 3.833
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "7.79%",
+ "Error & Exception Exposure": "0.76%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.48%",
"API Exposure": "6.46%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -718182,7 +718182,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "48.41%",
+ "Documentation Exposure": "37.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -718558,12 +718558,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.44%",
+ "Error & Exception Exposure": "43.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -718726,17 +718726,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.94%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "57.16%",
+ "Documentation Exposure": "38.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -719058,16 +719058,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.24
+ "Raw Cognitive Density": 2.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.8%",
- "Error & Exception Exposure": "64.19%",
+ "Cognitive Load Exposure": "59.82%",
+ "Error & Exception Exposure": "51.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.65%",
+ "Testing Exposure": "2.61%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -719213,13 +719213,13 @@
"Static: Literature & Documentation": "6.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "54.99%",
- "Error & Exception Exposure": "58.96%",
- "Tech Debt Exposure": "10.75%",
- "Testing Exposure": "7.37%",
+ "Cognitive Load Exposure": "52.66%",
+ "Error & Exception Exposure": "58.91%",
+ "Tech Debt Exposure": "8.21%",
+ "Testing Exposure": "7.35%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "5.57%",
- "State Flux Exposure": "59.08%",
+ "Concurrency Exposure": "5.41%",
+ "State Flux Exposure": "58.97%",
"Commented Logic Exposure": "1.27%",
"Specification Exposure": "26.67%",
"Instability Exposure": "46.67%",
@@ -719418,13 +719418,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.84
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.9%",
- "Error & Exception Exposure": "91.52%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "94.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -719606,13 +719606,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.64
+ "Raw Cognitive Density": 0.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.17%",
- "Error & Exception Exposure": "90.13%",
+ "Cognitive Load Exposure": "35.43%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.76%",
+ "Testing Exposure": "2.72%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -719816,16 +719816,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.2
+ "Raw Cognitive Density": 1.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.81%",
- "Error & Exception Exposure": "69.21%",
+ "Cognitive Load Exposure": "83.75%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -720006,16 +720006,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.18
+ "Raw Cognitive Density": 1.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.81%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "82.64%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -720174,13 +720174,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.73
+ "Raw Cognitive Density": 2.69
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.96%",
- "Error & Exception Exposure": "92.81%",
- "Tech Debt Exposure": "73.11%",
- "Testing Exposure": "2.62%",
+ "Error & Exception Exposure": "93.44%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.57%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -720384,11 +720384,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.55
+ "Raw Cognitive Density": 1.51
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.08%",
- "Error & Exception Exposure": "99.25%",
+ "Cognitive Load Exposure": "95.43%",
+ "Error & Exception Exposure": "99.79%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
@@ -720602,13 +720602,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.64
+ "Raw Cognitive Density": 0.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.17%",
+ "Cognitive Load Exposure": "35.43%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -720800,16 +720800,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.84
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.9%",
- "Error & Exception Exposure": "78.78%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.99%",
+ "Testing Exposure": "2.93%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -721482,13 +721482,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.33
+ "Raw Cognitive Density": 1.307
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.04%",
- "Error & Exception Exposure": "99.63%",
+ "Cognitive Load Exposure": "90.27%",
+ "Error & Exception Exposure": "99.93%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.65%",
+ "Testing Exposure": "2.63%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -721692,16 +721692,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.36
+ "Raw Cognitive Density": 1.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.98%",
- "Error & Exception Exposure": "96.59%",
+ "Cognitive Load Exposure": "90.72%",
+ "Error & Exception Exposure": "98.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.86%",
+ "Testing Exposure": "2.81%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -721890,15 +721890,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.718
+ "Raw Cognitive Density": 1.702
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.0%",
- "Error & Exception Exposure": "99.59%",
+ "Cognitive Load Exposure": "66.27%",
+ "Error & Exception Exposure": "99.92%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "83.5%",
+ "Concurrency Exposure": "81.18%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "19.03%",
"Specification Exposure": "100.0%",
@@ -722127,18 +722127,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "18.52%",
- "Error & Exception Exposure": "73.66%",
- "Tech Debt Exposure": "83.05%",
- "Testing Exposure": "13.57%",
+ "Cognitive Load Exposure": "16.22%",
+ "Error & Exception Exposure": "67.86%",
+ "Tech Debt Exposure": "76.44%",
+ "Testing Exposure": "13.53%",
"API Exposure": "2.52%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "80.71%",
+ "State Flux Exposure": "78.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "86.61%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.1%",
+ "Documentation Exposure": "10.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -722175,21 +722175,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.661
+ "Raw Cognitive Density": 0.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.57%",
- "Error & Exception Exposure": "67.31%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.63%",
+ "Cognitive Load Exposure": "16.83%",
+ "Error & Exception Exposure": "57.44%",
+ "Tech Debt Exposure": "99.97%",
+ "Testing Exposure": "2.54%",
"API Exposure": "4.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.12%",
+ "State Flux Exposure": "91.42%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.0%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -722457,21 +722457,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.767
+ "Raw Cognitive Density": 0.661
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.86%",
- "Error & Exception Exposure": "68.85%",
- "Tech Debt Exposure": "99.93%",
- "Testing Exposure": "2.64%",
+ "Cognitive Load Exposure": "20.61%",
+ "Error & Exception Exposure": "57.64%",
+ "Tech Debt Exposure": "99.54%",
+ "Testing Exposure": "2.56%",
"API Exposure": "2.26%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.79%",
+ "State Flux Exposure": "92.24%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "80.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "33.58%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -722690,13 +722690,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.917
+ "Raw Cognitive Density": 0.889
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "33.04%",
- "Error & Exception Exposure": "79.43%",
- "Tech Debt Exposure": "97.04%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "31.77%",
+ "Error & Exception Exposure": "79.95%",
+ "Tech Debt Exposure": "92.04%",
+ "Testing Exposure": "2.44%",
"API Exposure": "1.56%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -722945,21 +722945,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.843
+ "Raw Cognitive Density": 0.831
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.58%",
- "Error & Exception Exposure": "69.77%",
- "Tech Debt Exposure": "96.56%",
+ "Cognitive Load Exposure": "29.01%",
+ "Error & Exception Exposure": "71.41%",
+ "Tech Debt Exposure": "95.36%",
"Testing Exposure": "80.0%",
"API Exposure": "6.23%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.72%",
+ "State Flux Exposure": "99.64%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "34.93%",
+ "Documentation Exposure": "13.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -723680,17 +723680,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.16%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.37%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.81%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "28.91%",
+ "State Flux Exposure": "24.23%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.98%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -723874,16 +723874,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.661
+ "Raw Cognitive Density": 0.546
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.61%",
- "Error & Exception Exposure": "66.69%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "15.34%",
+ "Error & Exception Exposure": "52.14%",
+ "Tech Debt Exposure": "98.2%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.02%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "80.0%",
"Instability Exposure": "50.0%",
@@ -724118,17 +724118,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "90.42%",
+ "Error & Exception Exposure": "91.89%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "2.57%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "62.45%",
+ "State Flux Exposure": "56.68%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "90.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.32%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -724338,13 +724338,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "15.32%",
- "Error & Exception Exposure": "65.55%",
+ "Cognitive Load Exposure": "14.58%",
+ "Error & Exception Exposure": "67.47%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.64%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "45.52%",
+ "State Flux Exposure": "44.33%",
"Commented Logic Exposure": "1.24%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -724386,16 +724386,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "68.38%",
+ "Cognitive Load Exposure": "14.19%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.69%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "36.35%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -724607,16 +724607,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.481
+ "Raw Cognitive Density": 0.463
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.46%",
- "Error & Exception Exposure": "72.57%",
+ "Cognitive Load Exposure": "24.08%",
+ "Error & Exception Exposure": "75.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.69%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "91.25%",
+ "State Flux Exposure": "90.76%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -724838,16 +724838,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.393
+ "Raw Cognitive Density": 0.377
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.37%",
- "Error & Exception Exposure": "67.31%",
+ "Cognitive Load Exposure": "18.37%",
+ "Error & Exception Exposure": "69.31%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.76%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "46.69%",
+ "State Flux Exposure": "45.2%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -725098,16 +725098,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.185
+ "Raw Cognitive Density": 0.174
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.44%",
- "Error & Exception Exposure": "61.83%",
+ "Cognitive Load Exposure": "9.08%",
+ "Error & Exception Exposure": "63.08%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.57%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "22.61%",
+ "State Flux Exposure": "21.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -725329,16 +725329,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.278
+ "Raw Cognitive Density": 0.268
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.16%",
- "Error & Exception Exposure": "64.92%",
+ "Cognitive Load Exposure": "12.7%",
+ "Error & Exception Exposure": "67.22%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.57%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "59.25%",
+ "State Flux Exposure": "57.79%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -725570,16 +725570,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.238
+ "Raw Cognitive Density": 0.229
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.43%",
- "Error & Exception Exposure": "61.49%",
+ "Cognitive Load Exposure": "11.05%",
+ "Error & Exception Exposure": "62.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.6%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "27.75%",
+ "State Flux Exposure": "26.56%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -725840,16 +725840,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
- "Error & Exception Exposure": "68.38%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.8%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "36.35%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -726081,16 +726081,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.549
+ "Raw Cognitive Density": 0.529
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.92%",
- "Error & Exception Exposure": "73.38%",
+ "Cognitive Load Exposure": "29.27%",
+ "Error & Exception Exposure": "76.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.82%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.12%",
+ "State Flux Exposure": "92.73%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -726332,16 +726332,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "21.08%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.83%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "55.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -726582,16 +726582,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.213
+ "Raw Cognitive Density": 0.202
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.47%",
- "Error & Exception Exposure": "62.14%",
+ "Cognitive Load Exposure": "10.06%",
+ "Error & Exception Exposure": "63.42%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.62%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "23.13%",
+ "State Flux Exposure": "22.08%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -726833,16 +726833,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.309
+ "Raw Cognitive Density": 0.298
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.6%",
- "Error & Exception Exposure": "65.28%",
+ "Cognitive Load Exposure": "14.08%",
+ "Error & Exception Exposure": "67.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.62%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "61.14%",
+ "State Flux Exposure": "59.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -727094,16 +727094,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.247
+ "Raw Cognitive Density": 0.237
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.81%",
- "Error & Exception Exposure": "62.66%",
+ "Cognitive Load Exposure": "11.37%",
+ "Error & Exception Exposure": "64.2%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.62%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "30.8%",
+ "State Flux Exposure": "29.53%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -727354,16 +727354,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.095
+ "Raw Cognitive Density": 0.088
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.78%",
- "Error & Exception Exposure": "58.62%",
+ "Cognitive Load Exposure": "6.61%",
+ "Error & Exception Exposure": "59.7%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.6%",
+ "State Flux Exposure": "20.6%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -727609,16 +727609,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.228
+ "Raw Cognitive Density": 0.217
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.04%",
- "Error & Exception Exposure": "63.7%",
+ "Cognitive Load Exposure": "10.62%",
+ "Error & Exception Exposure": "65.54%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "41.07%",
+ "State Flux Exposure": "39.63%",
"Commented Logic Exposure": "9.28%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -727841,16 +727841,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.209
+ "Raw Cognitive Density": 0.198
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.3%",
- "Error & Exception Exposure": "62.88%",
+ "Cognitive Load Exposure": "9.9%",
+ "Error & Exception Exposure": "64.44%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "31.4%",
+ "State Flux Exposure": "30.13%",
"Commented Logic Exposure": "9.33%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -728049,18 +728049,18 @@
"Static: Literature & Documentation": "36.4%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "44.29%",
- "Error & Exception Exposure": "56.37%",
- "Tech Debt Exposure": "38.98%",
+ "Cognitive Load Exposure": "44.33%",
+ "Error & Exception Exposure": "57.2%",
+ "Tech Debt Exposure": "39.68%",
"Testing Exposure": "36.78%",
"API Exposure": "2.79%",
- "Concurrency Exposure": "48.01%",
+ "Concurrency Exposure": "48.16%",
"State Flux Exposure": "45.45%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "45.45%",
"Instability Exposure": "31.82%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.88%",
+ "Documentation Exposure": "15.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -728731,17 +728731,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.12%",
+ "Error & Exception Exposure": "69.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "17.79%",
- "Concurrency Exposure": "28.22%",
+ "Concurrency Exposure": "29.87%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.97%",
+ "Documentation Exposure": "99.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -728917,15 +728917,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.045
+ "Raw Cognitive Density": 2.052
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.57%",
- "Error & Exception Exposure": "99.15%",
- "Tech Debt Exposure": "95.32%",
+ "Cognitive Load Exposure": "94.58%",
+ "Error & Exception Exposure": "99.44%",
+ "Tech Debt Exposure": "96.08%",
"Testing Exposure": "80.0%",
"API Exposure": "1.45%",
- "Concurrency Exposure": "99.88%",
+ "Concurrency Exposure": "99.89%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -729265,12 +729265,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.44
+ "Raw Cognitive Density": 2.445
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "96.6%",
- "Error & Exception Exposure": "95.94%",
- "Tech Debt Exposure": "89.91%",
+ "Error & Exception Exposure": "96.4%",
+ "Tech Debt Exposure": "90.98%",
"Testing Exposure": "80.0%",
"API Exposure": "0.16%",
"Concurrency Exposure": "100.0%",
@@ -729657,12 +729657,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.96
+ "Raw Cognitive Density": 2.965
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "94.61%",
- "Error & Exception Exposure": "99.52%",
- "Tech Debt Exposure": "58.0%",
+ "Error & Exception Exposure": "99.61%",
+ "Tech Debt Exposure": "62.81%",
"Testing Exposure": "80.0%",
"API Exposure": "2.03%",
"Concurrency Exposure": "100.0%",
@@ -730026,12 +730026,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.405
+ "Raw Cognitive Density": 2.409
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "96.92%",
- "Error & Exception Exposure": "99.38%",
- "Tech Debt Exposure": "89.53%",
+ "Error & Exception Exposure": "99.57%",
+ "Tech Debt Exposure": "90.52%",
"Testing Exposure": "80.0%",
"API Exposure": "1.19%",
"Concurrency Exposure": "100.0%",
@@ -730519,12 +730519,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.78
+ "Raw Cognitive Density": 3.781
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.35%",
- "Error & Exception Exposure": "97.8%",
- "Tech Debt Exposure": "95.99%",
+ "Error & Exception Exposure": "98.2%",
+ "Tech Debt Exposure": "96.08%",
"Testing Exposure": "80.0%",
"API Exposure": "1.0%",
"Concurrency Exposure": "100.0%",
@@ -730533,7 +730533,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.13%",
+ "Documentation Exposure": "15.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -732290,11 +732290,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.08
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.13%",
- "Error & Exception Exposure": "62.18%",
+ "Cognitive Load Exposure": "5.53%",
+ "Error & Exception Exposure": "66.12%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "7.05%",
@@ -732423,18 +732423,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "20.19%",
- "Error & Exception Exposure": "30.91%",
- "Tech Debt Exposure": "24.6%",
- "Testing Exposure": "21.72%",
+ "Cognitive Load Exposure": "19.98%",
+ "Error & Exception Exposure": "30.98%",
+ "Tech Debt Exposure": "24.31%",
+ "Testing Exposure": "12.04%",
"API Exposure": "0.62%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "29.72%",
+ "State Flux Exposure": "29.2%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "25.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "4.12%",
+ "Documentation Exposure": "2.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -732789,12 +732789,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.83%",
+ "Error & Exception Exposure": "60.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -732942,12 +732942,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.007
+ "Raw Cognitive Density": 0.999
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.62%",
- "Error & Exception Exposure": "84.91%",
- "Tech Debt Exposure": "99.51%",
+ "Cognitive Load Exposure": "73.06%",
+ "Error & Exception Exposure": "89.1%",
+ "Tech Debt Exposure": "99.37%",
"Testing Exposure": "80.0%",
"API Exposure": "2.23%",
"Concurrency Exposure": "0.0%",
@@ -732956,7 +732956,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.84%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -733303,13 +733303,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.246
+ "Raw Cognitive Density": 1.221
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.9%",
- "Error & Exception Exposure": "96.54%",
- "Tech Debt Exposure": "97.32%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "86.79%",
+ "Error & Exception Exposure": "97.99%",
+ "Tech Debt Exposure": "95.08%",
+ "Testing Exposure": "2.55%",
"API Exposure": "2.73%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -733317,7 +733317,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.14%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -733974,13 +733974,13 @@
"Static: Literature & Documentation": "3.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "5.31%",
- "Error & Exception Exposure": "21.09%",
- "Tech Debt Exposure": "0.65%",
+ "Cognitive Load Exposure": "4.65%",
+ "Error & Exception Exposure": "21.0%",
+ "Tech Debt Exposure": "0.53%",
"Testing Exposure": "4.81%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "6.77%",
+ "State Flux Exposure": "6.38%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "6.67%",
"Instability Exposure": "48.33%",
@@ -734179,16 +734179,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.279
+ "Raw Cognitive Density": 0.266
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.82%",
- "Error & Exception Exposure": "60.14%",
- "Tech Debt Exposure": "19.49%",
+ "Cognitive Load Exposure": "12.01%",
+ "Error & Exception Exposure": "60.88%",
+ "Tech Debt Exposure": "15.99%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "50.38%",
+ "State Flux Exposure": "47.39%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -734606,11 +734606,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.15
+ "Raw Cognitive Density": 0.133
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.32%",
- "Error & Exception Exposure": "69.07%",
+ "Cognitive Load Exposure": "7.82%",
+ "Error & Exception Exposure": "71.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -735085,10 +735085,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -735246,10 +735246,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.207
+ "Raw Cognitive Density": 0.172
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.23%",
+ "Cognitive Load Exposure": "9.03%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -735409,11 +735409,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "78.78%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -735570,10 +735570,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -736043,16 +736043,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -736200,11 +736200,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "77.23%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -736521,10 +736521,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -736680,16 +736680,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
- "Error & Exception Exposure": "68.38%",
+ "Cognitive Load Exposure": "9.28%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -736839,10 +736839,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -736996,11 +736996,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -737155,16 +737155,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -737312,11 +737312,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -737942,10 +737942,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -738417,10 +738417,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -738576,10 +738576,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -738866,13 +738866,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "26.91%",
- "Error & Exception Exposure": "69.07%",
- "Tech Debt Exposure": "45.66%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "27.3%",
+ "Error & Exception Exposure": "70.14%",
+ "Tech Debt Exposure": "48.46%",
+ "Testing Exposure": "2.44%",
"API Exposure": "4.09%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "79.84%",
+ "State Flux Exposure": "79.85%",
"Commented Logic Exposure": "1.57%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -738914,16 +738914,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.91%",
- "Error & Exception Exposure": "67.64%",
+ "Cognitive Load Exposure": "14.81%",
+ "Error & Exception Exposure": "71.27%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.29%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.18%",
+ "State Flux Exposure": "99.23%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -739082,13 +739082,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.944
+ "Raw Cognitive Density": 0.954
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.64%",
- "Error & Exception Exposure": "87.7%",
- "Tech Debt Exposure": "98.11%",
- "Testing Exposure": "2.55%",
+ "Cognitive Load Exposure": "38.15%",
+ "Error & Exception Exposure": "88.8%",
+ "Tech Debt Exposure": "98.55%",
+ "Testing Exposure": "2.57%",
"API Exposure": "6.05%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -739384,13 +739384,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.283
+ "Raw Cognitive Density": 1.289
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.17%",
- "Error & Exception Exposure": "94.15%",
+ "Cognitive Load Exposure": "49.3%",
+ "Error & Exception Exposure": "94.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.46%",
"API Exposure": "2.18%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -739687,13 +739687,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.867
+ "Raw Cognitive Density": 0.875
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "33.8%",
- "Error & Exception Exposure": "95.87%",
- "Tech Debt Exposure": "92.41%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "34.24%",
+ "Error & Exception Exposure": "96.2%",
+ "Tech Debt Exposure": "93.75%",
+ "Testing Exposure": "2.47%",
"API Exposure": "5.05%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -739950,7 +739950,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "37.75%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.32%",
"API Exposure": "1.86%",
"Concurrency Exposure": "0.0%",
@@ -740101,18 +740101,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "30.33%",
- "Error & Exception Exposure": "70.75%",
- "Tech Debt Exposure": "50.18%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "31.06%",
+ "Error & Exception Exposure": "73.42%",
+ "Tech Debt Exposure": "57.47%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.88%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.67%",
+ "State Flux Exposure": "96.82%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.75%",
+ "Documentation Exposure": "19.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -740149,13 +740149,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.872
+ "Raw Cognitive Density": 0.883
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.99%",
- "Error & Exception Exposure": "74.65%",
- "Tech Debt Exposure": "96.56%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "31.51%",
+ "Error & Exception Exposure": "76.66%",
+ "Tech Debt Exposure": "97.7%",
+ "Testing Exposure": "2.42%",
"API Exposure": "1.48%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -740163,7 +740163,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.55%",
+ "Documentation Exposure": "18.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -740388,13 +740388,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.963
+ "Raw Cognitive Density": 0.969
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "48.16%",
- "Error & Exception Exposure": "79.68%",
- "Tech Debt Exposure": "34.86%",
- "Testing Exposure": "2.51%",
+ "Cognitive Load Exposure": "48.52%",
+ "Error & Exception Exposure": "80.74%",
+ "Tech Debt Exposure": "40.36%",
+ "Testing Exposure": "2.53%",
"API Exposure": "0.88%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -740402,7 +740402,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.26%",
+ "Documentation Exposure": "19.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -740666,13 +740666,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.56
+ "Raw Cognitive Density": 0.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.12%",
- "Error & Exception Exposure": "61.77%",
- "Tech Debt Exposure": "37.75%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "20.18%",
+ "Error & Exception Exposure": "65.73%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.4%",
"API Exposure": "1.02%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.93%",
@@ -740680,7 +740680,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.68%",
+ "Documentation Exposure": "26.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -740851,13 +740851,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.56
+ "Raw Cognitive Density": 0.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.49%",
- "Error & Exception Exposure": "58.07%",
- "Tech Debt Exposure": "37.75%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "26.9%",
+ "Error & Exception Exposure": "62.18%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.88%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.93%",
@@ -740865,7 +740865,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.54%",
+ "Documentation Exposure": "20.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -741031,13 +741031,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.929
+ "Raw Cognitive Density": 0.944
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.1%",
- "Error & Exception Exposure": "78.06%",
- "Tech Debt Exposure": "87.84%",
- "Testing Exposure": "2.46%",
+ "Cognitive Load Exposure": "37.82%",
+ "Error & Exception Exposure": "80.33%",
+ "Tech Debt Exposure": "91.3%",
+ "Testing Exposure": "2.48%",
"API Exposure": "1.81%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -741045,7 +741045,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "33.28%",
+ "Documentation Exposure": "38.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -741246,16 +741246,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.57%",
- "Error & Exception Exposure": "55.97%",
- "Tech Debt Exposure": "37.75%",
+ "Cognitive Load Exposure": "9.21%",
+ "Error & Exception Exposure": "60.14%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "76.85%",
+ "State Flux Exposure": "77.9%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -741417,13 +741417,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.997
+ "Raw Cognitive Density": 1.008
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "42.84%",
- "Error & Exception Exposure": "87.08%",
- "Tech Debt Exposure": "18.71%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "43.31%",
+ "Error & Exception Exposure": "88.19%",
+ "Tech Debt Exposure": "22.95%",
+ "Testing Exposure": "2.51%",
"API Exposure": "0.1%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -741602,13 +741602,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.7%",
- "Error & Exception Exposure": "6.35%",
+ "Cognitive Load Exposure": "2.19%",
+ "Error & Exception Exposure": "6.1%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "1.5%",
+ "State Flux Exposure": "1.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -742125,12 +742125,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.43%",
+ "Error & Exception Exposure": "53.3%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.37%",
+ "State Flux Exposure": "11.42%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -742592,10 +742592,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -744005,10 +744005,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -744790,10 +744790,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -744947,10 +744947,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -745104,10 +745104,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -745265,12 +745265,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.6%",
+ "Error & Exception Exposure": "53.4%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.01%",
+ "State Flux Exposure": "11.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -745418,10 +745418,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -745575,10 +745575,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -745893,12 +745893,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.6%",
+ "Error & Exception Exposure": "53.4%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.01%",
+ "State Flux Exposure": "11.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -746521,12 +746521,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.6%",
+ "Error & Exception Exposure": "53.4%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.01%",
+ "State Flux Exposure": "11.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -747121,13 +747121,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "10.73%",
- "Error & Exception Exposure": "78.65%",
- "Tech Debt Exposure": "91.27%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "8.85%",
+ "Error & Exception Exposure": "77.07%",
+ "Tech Debt Exposure": "72.2%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "56.44%",
+ "State Flux Exposure": "53.84%",
"Commented Logic Exposure": "1.72%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -747173,8 +747173,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "92.41%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -747351,9 +747351,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -747519,12 +747519,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -747687,12 +747687,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -747855,12 +747855,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -748023,8 +748023,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -748191,12 +748191,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -748360,11 +748360,11 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "82.39%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -748527,12 +748527,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -748695,12 +748695,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -748863,12 +748863,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749031,12 +749031,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749199,12 +749199,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749367,12 +749367,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749535,12 +749535,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749703,12 +749703,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749871,12 +749871,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "86.07%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750039,12 +750039,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750207,12 +750207,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750375,12 +750375,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750543,12 +750543,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750709,16 +750709,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "62.88%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "52.14%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750877,16 +750877,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.54
+ "Raw Cognitive Density": 0.48
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.15%",
- "Error & Exception Exposure": "75.37%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "25.35%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751045,16 +751045,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.62
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "87.31%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "37.29%",
+ "Error & Exception Exposure": "88.67%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751213,16 +751213,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751381,16 +751381,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "11.51%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751549,16 +751549,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
- "Error & Exception Exposure": "68.94%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "14.19%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751717,16 +751717,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
- "Error & Exception Exposure": "64.66%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "56.39%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751885,16 +751885,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.4
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
- "Error & Exception Exposure": "68.94%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "19.78%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -752053,16 +752053,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.283
+ "Raw Cognitive Density": 0.198
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.39%",
- "Error & Exception Exposure": "75.37%",
+ "Cognitive Load Exposure": "9.92%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -752271,16 +752271,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -752449,16 +752449,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -752627,16 +752627,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -752805,16 +752805,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.224
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.87%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753017,12 +753017,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753185,12 +753185,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753349,16 +753349,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
+ "Cognitive Load Exposure": "14.19%",
"Error & Exception Exposure": "82.39%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753517,16 +753517,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
+ "Cognitive Load Exposure": "14.19%",
"Error & Exception Exposure": "82.39%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753685,16 +753685,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753853,16 +753853,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754021,16 +754021,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "81.44%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "81.11%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754189,16 +754189,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.62
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.29%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.52%",
+ "Cognitive Load Exposure": "31.86%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754387,16 +754387,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.82
+ "Raw Cognitive Density": 0.76
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "56.95%",
- "Error & Exception Exposure": "87.31%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.52%",
+ "Cognitive Load Exposure": "51.0%",
+ "Error & Exception Exposure": "88.67%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754585,16 +754585,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "81.44%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "81.11%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754763,16 +754763,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.62
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.29%",
- "Error & Exception Exposure": "85.81%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.47%",
+ "Cognitive Load Exposure": "31.86%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.67%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754961,16 +754961,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.247
+ "Raw Cognitive Density": 0.165
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.82%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "8.79%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -755159,16 +755159,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.221
+ "Raw Cognitive Density": 0.147
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.76%",
- "Error & Exception Exposure": "75.22%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "8.24%",
+ "Error & Exception Exposure": "73.36%",
+ "Tech Debt Exposure": "99.92%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.81%",
+ "State Flux Exposure": "17.1%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -755367,16 +755367,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.252
+ "Raw Cognitive Density": 0.168
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "8.88%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -755575,13 +755575,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.188
+ "Raw Cognitive Density": 0.108
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.57%",
- "Error & Exception Exposure": "75.49%",
- "Tech Debt Exposure": "99.99%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "7.11%",
+ "Error & Exception Exposure": "73.11%",
+ "Tech Debt Exposure": "99.97%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -755783,16 +755783,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.472
+ "Raw Cognitive Density": 0.389
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "24.77%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "19.09%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.56%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -756007,18 +756007,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "59.47%",
- "Error & Exception Exposure": "77.54%",
- "Tech Debt Exposure": "99.0%",
- "Testing Exposure": "24.6%",
+ "Cognitive Load Exposure": "57.02%",
+ "Error & Exception Exposure": "78.12%",
+ "Tech Debt Exposure": "97.59%",
+ "Testing Exposure": "24.58%",
"API Exposure": "1.15%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.37%",
+ "State Flux Exposure": "99.25%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.71%",
+ "Documentation Exposure": "5.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -756055,13 +756055,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.727
+ "Raw Cognitive Density": 0.708
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.67%",
- "Error & Exception Exposure": "77.18%",
- "Tech Debt Exposure": "98.89%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "45.82%",
+ "Error & Exception Exposure": "79.56%",
+ "Tech Debt Exposure": "98.24%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -756313,13 +756313,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.749
+ "Raw Cognitive Density": 0.731
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.85%",
- "Error & Exception Exposure": "77.08%",
- "Tech Debt Exposure": "98.57%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "48.05%",
+ "Error & Exception Exposure": "79.37%",
+ "Tech Debt Exposure": "97.78%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -756571,21 +756571,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.897
+ "Raw Cognitive Density": 0.869
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.31%",
- "Error & Exception Exposure": "69.32%",
- "Tech Debt Exposure": "99.46%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "61.7%",
+ "Error & Exception Exposure": "67.01%",
+ "Tech Debt Exposure": "98.91%",
+ "Testing Exposure": "2.45%",
"API Exposure": "2.78%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.03%",
+ "State Flux Exposure": "98.84%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.96%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -756799,21 +756799,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.083
+ "Raw Cognitive Density": 1.064
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.1%",
- "Error & Exception Exposure": "71.51%",
- "Tech Debt Exposure": "99.07%",
+ "Cognitive Load Exposure": "77.81%",
+ "Error & Exception Exposure": "71.41%",
+ "Tech Debt Exposure": "98.5%",
"Testing Exposure": "80.0%",
"API Exposure": "2.61%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.82%",
+ "State Flux Exposure": "99.78%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.17%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -757067,21 +757067,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.064
+ "Raw Cognitive Density": 1.045
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.84%",
- "Error & Exception Exposure": "70.57%",
- "Tech Debt Exposure": "99.11%",
+ "Cognitive Load Exposure": "76.49%",
+ "Error & Exception Exposure": "70.1%",
+ "Tech Debt Exposure": "98.57%",
"Testing Exposure": "80.0%",
"API Exposure": "2.64%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.71%",
+ "State Flux Exposure": "99.66%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.87%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -757335,16 +757335,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -757513,13 +757513,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.044
+ "Raw Cognitive Density": 0.985
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.43%",
- "Error & Exception Exposure": "93.85%",
- "Tech Debt Exposure": "99.71%",
- "Testing Exposure": "2.47%",
+ "Cognitive Load Exposure": "71.93%",
+ "Error & Exception Exposure": "95.8%",
+ "Tech Debt Exposure": "98.74%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -757688,13 +757688,13 @@
"Static: Literature & Documentation": "7.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "40.28%",
- "Error & Exception Exposure": "63.68%",
+ "Cognitive Load Exposure": "38.57%",
+ "Error & Exception Exposure": "64.63%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "8.25%",
+ "Testing Exposure": "8.24%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "45.66%",
+ "State Flux Exposure": "45.61%",
"Commented Logic Exposure": "2.64%",
"Specification Exposure": "7.69%",
"Instability Exposure": "46.15%",
@@ -757893,13 +757893,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "91.52%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "94.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -758071,16 +758071,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.8
+ "Raw Cognitive Density": 0.76
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.98%",
- "Error & Exception Exposure": "86.88%",
+ "Cognitive Load Exposure": "51.0%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -758249,13 +758249,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.116
+ "Raw Cognitive Density": 1.088
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.23%",
- "Error & Exception Exposure": "99.99%",
+ "Cognitive Load Exposure": "79.45%",
+ "Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -758447,13 +758447,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.599
+ "Raw Cognitive Density": 1.561
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.76%",
+ "Cognitive Load Exposure": "96.25%",
"Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -758629,11 +758629,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.778
+ "Raw Cognitive Density": 1.764
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.23%",
- "Error & Exception Exposure": "99.77%",
+ "Cognitive Load Exposure": "91.38%",
+ "Error & Exception Exposure": "99.96%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -758907,13 +758907,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.585
+ "Raw Cognitive Density": 0.551
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.05%",
- "Error & Exception Exposure": "91.62%",
+ "Cognitive Load Exposure": "31.08%",
+ "Error & Exception Exposure": "94.72%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.94%",
+ "Testing Exposure": "2.89%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -759157,13 +759157,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.14
+ "Raw Cognitive Density": 1.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.64%",
- "Error & Exception Exposure": "95.47%",
+ "Cognitive Load Exposure": "80.22%",
+ "Error & Exception Exposure": "97.55%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.58%",
+ "Testing Exposure": "2.55%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -759345,10 +759345,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
@@ -759519,7 +759519,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -759681,16 +759681,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.78
+ "Raw Cognitive Density": 0.74
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "53.0%",
- "Error & Exception Exposure": "92.9%",
+ "Cognitive Load Exposure": "49.0%",
+ "Error & Exception Exposure": "95.63%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -759861,13 +759861,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -760185,18 +760185,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.71%",
- "Error & Exception Exposure": "25.89%",
- "Tech Debt Exposure": "92.33%",
- "Testing Exposure": "4.92%",
+ "Cognitive Load Exposure": "6.96%",
+ "Error & Exception Exposure": "20.77%",
+ "Tech Debt Exposure": "85.37%",
+ "Testing Exposure": "4.91%",
"API Exposure": "0.11%",
- "Concurrency Exposure": "31.78%",
- "State Flux Exposure": "14.5%",
+ "Concurrency Exposure": "30.47%",
+ "State Flux Exposure": "13.64%",
"Commented Logic Exposure": "0.25%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "0.71%",
+ "Documentation Exposure": "0.4%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -760238,10 +760238,10 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "63.03%",
+ "Concurrency Exposure": "59.23%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -760417,9 +760417,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "62.88%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.32%",
+ "Error & Exception Exposure": "56.39%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -760618,7 +760618,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
+ "Tech Debt Exposure": "99.33%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -760812,7 +760812,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -760982,7 +760982,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -761147,16 +761147,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.558
+ "Raw Cognitive Density": 0.53
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.73%",
- "Error & Exception Exposure": "43.5%",
+ "Cognitive Load Exposure": "29.3%",
+ "Error & Exception Exposure": "30.57%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "97.46%",
- "State Flux Exposure": "38.92%",
+ "Concurrency Exposure": "97.03%",
+ "State Flux Exposure": "36.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -761403,13 +761403,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "51.61%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.32%",
+ "Cognitive Load Exposure": "6.42%",
+ "Error & Exception Exposure": "37.42%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -761583,15 +761583,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.302
+ "Raw Cognitive Density": 0.29
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.27%",
+ "Cognitive Load Exposure": "13.7%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "76.82%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "71.14%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "97.73%",
+ "Concurrency Exposure": "97.34%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -761806,15 +761806,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "36.97%",
+ "Concurrency Exposure": "33.33%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -761979,16 +761979,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.364
+ "Raw Cognitive Density": 0.338
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.57%",
- "Error & Exception Exposure": "44.46%",
- "Tech Debt Exposure": "84.82%",
- "Testing Exposure": "2.31%",
+ "Cognitive Load Exposure": "16.12%",
+ "Error & Exception Exposure": "29.61%",
+ "Tech Debt Exposure": "74.49%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "49.22%",
- "State Flux Exposure": "73.44%",
+ "Concurrency Exposure": "45.23%",
+ "State Flux Exposure": "71.03%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -762157,16 +762157,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.377
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.38%",
- "Error & Exception Exposure": "50.31%",
- "Tech Debt Exposure": "97.42%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "16.23%",
+ "Error & Exception Exposure": "36.0%",
+ "Tech Debt Exposure": "93.64%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "54.09%",
+ "State Flux Exposure": "51.1%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -762335,16 +762335,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.136
+ "Raw Cognitive Density": 0.111
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.89%",
- "Error & Exception Exposure": "49.78%",
- "Tech Debt Exposure": "93.97%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "7.21%",
+ "Error & Exception Exposure": "39.75%",
+ "Tech Debt Exposure": "89.38%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "16.71%",
+ "State Flux Exposure": "15.11%",
"Commented Logic Exposure": "7.35%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -762553,7 +762553,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -762732,16 +762732,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.429
+ "Raw Cognitive Density": 0.393
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.66%",
- "Error & Exception Exposure": "67.05%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "19.33%",
+ "Error & Exception Exposure": "63.47%",
+ "Tech Debt Exposure": "99.96%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "59.27%",
- "State Flux Exposure": "89.9%",
+ "Concurrency Exposure": "55.36%",
+ "State Flux Exposure": "88.75%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -762966,16 +762966,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.4
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "52.25%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "19.78%",
+ "Error & Exception Exposure": "39.45%",
+ "Tech Debt Exposure": "99.93%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "83.2%",
- "State Flux Exposure": "21.42%",
+ "Concurrency Exposure": "80.85%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -763151,12 +763151,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "61.33%",
- "Tech Debt Exposure": "99.99%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "53.74%",
+ "Tech Debt Exposure": "99.97%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "57.01%",
- "State Flux Exposure": "14.6%",
+ "Concurrency Exposure": "53.05%",
+ "State Flux Exposure": "13.16%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -763352,21 +763352,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "62.28%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "56.39%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.3%",
"API Exposure": "3.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.4%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -763520,15 +763520,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.274
+ "Raw Cognitive Density": 0.25
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.96%",
+ "Cognitive Load Exposure": "11.92%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "79.72%",
- "Testing Exposure": "2.46%",
+ "Tech Debt Exposure": "68.43%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "46.7%",
+ "Concurrency Exposure": "42.75%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -763719,7 +763719,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
+ "Tech Debt Exposure": "99.33%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -763906,12 +763906,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "62.28%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "56.39%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -764082,15 +764082,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.174
+ "Raw Cognitive Density": 0.151
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.09%",
+ "Cognitive Load Exposure": "8.35%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.16%",
+ "Tech Debt Exposure": "98.5%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "46.04%",
+ "Concurrency Exposure": "42.1%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -764299,7 +764299,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -764479,12 +764479,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "30.05%",
- "Tech Debt Exposure": "99.79%",
- "Testing Exposure": "2.31%",
+ "Error & Exception Exposure": "16.02%",
+ "Tech Debt Exposure": "99.64%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "77.85%",
- "State Flux Exposure": "13.94%",
+ "Concurrency Exposure": "74.97%",
+ "State Flux Exposure": "12.56%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -764685,16 +764685,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.167
+ "Raw Cognitive Density": 0.13
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.84%",
- "Error & Exception Exposure": "58.14%",
- "Tech Debt Exposure": "84.11%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "7.72%",
+ "Error & Exception Exposure": "50.0%",
+ "Tech Debt Exposure": "67.72%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "20.44%",
+ "State Flux Exposure": "18.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -764875,16 +764875,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.347
+ "Raw Cognitive Density": 0.33
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.62%",
- "Error & Exception Exposure": "44.22%",
- "Tech Debt Exposure": "86.62%",
+ "Cognitive Load Exposure": "15.7%",
+ "Error & Exception Exposure": "34.41%",
+ "Tech Debt Exposure": "82.73%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "51.88%",
- "State Flux Exposure": "34.2%",
+ "Concurrency Exposure": "47.89%",
+ "State Flux Exposure": "31.56%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -765167,12 +765167,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.056
+ "Raw Cognitive Density": 0.037
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.86%",
+ "Cognitive Load Exposure": "5.46%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "96.98%",
+ "Tech Debt Exposure": "95.87%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -765405,15 +765405,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
+ "Cognitive Load Exposure": "16.25%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "93.5%",
+ "Concurrency Exposure": "92.46%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -765583,10 +765583,10 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "93.5%",
+ "Concurrency Exposure": "92.46%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -765752,12 +765752,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "36.7%",
- "Tech Debt Exposure": "83.67%",
+ "Error & Exception Exposure": "23.44%",
+ "Tech Debt Exposure": "77.56%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "14.37%",
+ "State Flux Exposure": "12.95%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -765955,7 +765955,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -766097,8 +766097,8 @@
"Static: Literature & Documentation": "33.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "45.35%",
- "Error & Exception Exposure": "59.3%",
+ "Cognitive Load Exposure": "45.19%",
+ "Error & Exception Exposure": "62.16%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "53.33%",
"API Exposure": "0.12%",
@@ -766108,7 +766108,7 @@
"Specification Exposure": "66.67%",
"Instability Exposure": "33.33%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "4.38%",
+ "Documentation Exposure": "3.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -766302,11 +766302,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.226
+ "Raw Cognitive Density": 1.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.92%",
- "Error & Exception Exposure": "82.21%",
+ "Cognitive Load Exposure": "60.81%",
+ "Error & Exception Exposure": "88.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.37%",
@@ -766316,7 +766316,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.14%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -766667,11 +766667,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.026
+ "Raw Cognitive Density": 1.021
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.13%",
- "Error & Exception Exposure": "95.7%",
+ "Cognitive Load Exposure": "74.75%",
+ "Error & Exception Exposure": "98.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -766878,13 +766878,13 @@
"Static: Literature & Documentation": "4.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "8.79%",
- "Error & Exception Exposure": "9.25%",
- "Tech Debt Exposure": "3.23%",
+ "Cognitive Load Exposure": "8.49%",
+ "Error & Exception Exposure": "9.33%",
+ "Tech Debt Exposure": "2.71%",
"Testing Exposure": "2.21%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "6.53%",
+ "State Flux Exposure": "6.35%",
"Commented Logic Exposure": "0.26%",
"Specification Exposure": "0.0%",
"Instability Exposure": "48.0%",
@@ -766926,10 +766926,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -767083,10 +767083,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -767240,10 +767240,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.161
+ "Raw Cognitive Density": 0.145
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.67%",
+ "Cognitive Load Exposure": "8.17%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -767397,12 +767397,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.183
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
+ "Cognitive Load Exposure": "9.39%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "60.27%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -767554,10 +767554,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -767711,10 +767711,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -767868,10 +767868,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -768182,10 +768182,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.172
+ "Raw Cognitive Density": 0.167
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.02%",
+ "Cognitive Load Exposure": "8.84%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -768339,10 +768339,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.157
+ "Raw Cognitive Density": 0.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.54%",
+ "Cognitive Load Exposure": "8.32%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -768496,10 +768496,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.196
+ "Raw Cognitive Density": 0.193
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.83%",
+ "Cognitive Load Exposure": "9.71%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -768810,10 +768810,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.185
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.43%",
+ "Cognitive Load Exposure": "9.29%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -768967,16 +768967,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.405
+ "Raw Cognitive Density": 0.396
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.13%",
- "Error & Exception Exposure": "65.76%",
+ "Cognitive Load Exposure": "19.55%",
+ "Error & Exception Exposure": "68.54%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.83%",
+ "State Flux Exposure": "74.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -769124,10 +769124,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.245
+ "Raw Cognitive Density": 0.235
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.72%",
+ "Cognitive Load Exposure": "11.32%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -769281,16 +769281,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.234
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.52%",
- "Error & Exception Exposure": "58.33%",
- "Tech Debt Exposure": "20.36%",
+ "Cognitive Load Exposure": "11.26%",
+ "Error & Exception Exposure": "59.37%",
+ "Tech Debt Exposure": "17.86%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.07%",
+ "State Flux Exposure": "20.09%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -769438,10 +769438,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.191
+ "Raw Cognitive Density": 0.186
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.67%",
+ "Cognitive Load Exposure": "9.49%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -769595,10 +769595,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.294
+ "Raw Cognitive Density": 0.287
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.9%",
+ "Cognitive Load Exposure": "13.55%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -769752,10 +769752,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.111
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.46%",
+ "Cognitive Load Exposure": "7.21%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -769909,10 +769909,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.154
+ "Raw Cognitive Density": 0.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.44%",
+ "Cognitive Load Exposure": "8.31%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -770066,16 +770066,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.285
+ "Raw Cognitive Density": 0.281
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.48%",
- "Error & Exception Exposure": "51.71%",
+ "Cognitive Load Exposure": "13.31%",
+ "Error & Exception Exposure": "48.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "42.01%",
+ "State Flux Exposure": "40.56%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -770223,10 +770223,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.179
+ "Raw Cognitive Density": 0.174
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.25%",
+ "Cognitive Load Exposure": "9.08%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -770380,10 +770380,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.192
+ "Raw Cognitive Density": 0.178
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.68%",
+ "Cognitive Load Exposure": "9.21%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -770537,16 +770537,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.218
+ "Raw Cognitive Density": 0.216
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.65%",
- "Error & Exception Exposure": "55.45%",
+ "Cognitive Load Exposure": "10.55%",
+ "Error & Exception Exposure": "56.48%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "24.42%",
+ "State Flux Exposure": "23.33%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -770828,18 +770828,18 @@
"Static: Literature & Documentation": "6.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "34.4%",
- "Error & Exception Exposure": "71.12%",
- "Tech Debt Exposure": "17.19%",
+ "Cognitive Load Exposure": "31.22%",
+ "Error & Exception Exposure": "70.39%",
+ "Tech Debt Exposure": "14.75%",
"Testing Exposure": "2.17%",
"API Exposure": "0.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "69.31%",
+ "State Flux Exposure": "68.1%",
"Commented Logic Exposure": "7.12%",
"Specification Exposure": "13.33%",
"Instability Exposure": "46.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "1.93%",
+ "Documentation Exposure": "1.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -771190,16 +771190,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -771347,16 +771347,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.86
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.83%",
- "Error & Exception Exposure": "83.3%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -771504,16 +771504,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.5
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.89%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "22.44%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "64.57%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -771682,13 +771682,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.962
+ "Raw Cognitive Density": 0.933
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.01%",
- "Error & Exception Exposure": "82.04%",
- "Tech Debt Exposure": "64.46%",
- "Testing Exposure": "2.53%",
+ "Cognitive Load Exposure": "67.55%",
+ "Error & Exception Exposure": "82.98%",
+ "Tech Debt Exposure": "47.03%",
+ "Testing Exposure": "2.48%",
"API Exposure": "2.9%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -771696,7 +771696,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.99%",
+ "Documentation Exposure": "20.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -771860,16 +771860,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.76
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.0%",
- "Error & Exception Exposure": "78.56%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -772017,16 +772017,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -772174,11 +772174,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.21
+ "Raw Cognitive Density": 1.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.29%",
- "Error & Exception Exposure": "95.0%",
+ "Cognitive Load Exposure": "83.2%",
+ "Error & Exception Exposure": "96.59%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -772331,11 +772331,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.93
+ "Raw Cognitive Density": 0.87
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.26%",
- "Error & Exception Exposure": "91.01%",
+ "Cognitive Load Exposure": "61.77%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -772488,16 +772488,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
- "Error & Exception Exposure": "77.68%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -772645,12 +772645,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.99
+ "Raw Cognitive Density": 0.93
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.31%",
- "Error & Exception Exposure": "95.06%",
- "Tech Debt Exposure": "95.26%",
+ "Cognitive Load Exposure": "67.26%",
+ "Error & Exception Exposure": "96.86%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -772802,11 +772802,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -772959,16 +772959,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "9.28%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -773116,16 +773116,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
+ "Cognitive Load Exposure": "15.19%",
"Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -773249,9 +773249,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "9.9%",
+ "Cognitive Load Exposure": "9.26%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "2.25%",
+ "Tech Debt Exposure": "1.94%",
"Testing Exposure": "2.5%",
"API Exposure": "3.12%",
"Concurrency Exposure": "0.0%",
@@ -773260,7 +773260,7 @@
"Specification Exposure": "90.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.25%",
+ "Documentation Exposure": "36.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -773297,10 +773297,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
@@ -773311,7 +773311,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -773465,10 +773465,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -773479,7 +773479,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -773633,10 +773633,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
@@ -773647,7 +773647,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -773801,10 +773801,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
@@ -773815,7 +773815,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -773969,10 +773969,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.147
+ "Raw Cognitive Density": 0.122
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.22%",
+ "Cognitive Load Exposure": "7.51%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.55%",
@@ -773983,7 +773983,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.33%",
+ "Documentation Exposure": "38.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -774217,10 +774217,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
@@ -774231,7 +774231,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -774385,10 +774385,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
@@ -774399,7 +774399,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -774553,10 +774553,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.207
+ "Raw Cognitive Density": 0.196
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.21%",
+ "Cognitive Load Exposure": "9.82%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.56%",
@@ -774567,7 +774567,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.08%",
+ "Documentation Exposure": "28.32%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -774801,10 +774801,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.386
+ "Raw Cognitive Density": 0.368
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.91%",
+ "Cognitive Load Exposure": "17.85%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.93%",
@@ -774815,7 +774815,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.47%",
+ "Documentation Exposure": "39.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -775099,10 +775099,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.278
+ "Raw Cognitive Density": 0.259
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.14%",
+ "Cognitive Load Exposure": "12.31%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.72%",
@@ -775113,7 +775113,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.3%",
+ "Documentation Exposure": "40.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -775297,10 +775297,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.11
+ "Raw Cognitive Density": 0.091
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.17%",
+ "Cognitive Load Exposure": "6.69%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.54%",
@@ -775311,7 +775311,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.02%",
+ "Documentation Exposure": "40.13%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -775585,10 +775585,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.7%",
@@ -775599,7 +775599,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -775773,12 +775773,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.184
+ "Raw Cognitive Density": 0.173
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.4%",
+ "Cognitive Load Exposure": "9.06%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "44.92%",
+ "Tech Debt Exposure": "38.72%",
"Testing Exposure": "2.65%",
"API Exposure": "2.87%",
"Concurrency Exposure": "0.0%",
@@ -775787,7 +775787,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.71%",
+ "Documentation Exposure": "27.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -776091,10 +776091,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
@@ -776105,7 +776105,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -776259,10 +776259,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
@@ -776273,7 +776273,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -776429,10 +776429,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.62%",
@@ -776443,7 +776443,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -776617,10 +776617,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -776774,10 +776774,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.62%",
@@ -776788,7 +776788,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -776962,10 +776962,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.39%",
@@ -776976,7 +776976,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -777132,10 +777132,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.149
+ "Raw Cognitive Density": 0.134
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.29%",
+ "Cognitive Load Exposure": "7.85%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -777265,10 +777265,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "14.08%",
- "Error & Exception Exposure": "11.84%",
- "Tech Debt Exposure": "8.66%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "12.1%",
+ "Error & Exception Exposure": "8.62%",
+ "Tech Debt Exposure": "7.43%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -777313,13 +777313,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -777541,13 +777541,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.288
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.39%",
+ "Cognitive Load Exposure": "13.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -777859,13 +777859,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.718
+ "Raw Cognitive Density": 0.676
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "46.84%",
- "Error & Exception Exposure": "61.42%",
+ "Cognitive Load Exposure": "42.66%",
+ "Error & Exception Exposure": "51.65%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.69%",
+ "Testing Exposure": "2.6%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -778067,13 +778067,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.254
+ "Raw Cognitive Density": 0.239
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.07%",
- "Error & Exception Exposure": "40.42%",
+ "Cognitive Load Exposure": "11.47%",
+ "Error & Exception Exposure": "28.22%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -778465,13 +778465,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -778683,13 +778683,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "95.26%",
- "Testing Exposure": "2.35%",
+ "Tech Debt Exposure": "81.76%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -778861,13 +778861,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.294
+ "Raw Cognitive Density": 0.279
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.88%",
- "Error & Exception Exposure": "28.42%",
+ "Cognitive Load Exposure": "13.18%",
+ "Error & Exception Exposure": "14.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -779445,7 +779445,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -779637,13 +779637,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -779855,13 +779855,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -780023,13 +780023,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "10.72%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -780167,18 +780167,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.81%",
- "Error & Exception Exposure": "16.03%",
- "Tech Debt Exposure": "4.79%",
+ "Cognitive Load Exposure": "2.62%",
+ "Error & Exception Exposure": "16.63%",
+ "Tech Debt Exposure": "4.41%",
"Testing Exposure": "2.33%",
"API Exposure": "2.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.32%",
+ "State Flux Exposure": "15.17%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "27.78%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.72%",
+ "Documentation Exposure": "17.47%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -780215,10 +780215,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
@@ -780413,10 +780413,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
@@ -780581,10 +780581,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.39%",
@@ -780595,7 +780595,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.29%",
+ "Documentation Exposure": "41.75%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -780920,12 +780920,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -781077,12 +781077,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -781701,21 +781701,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.231
+ "Raw Cognitive Density": 0.212
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.14%",
- "Error & Exception Exposure": "66.54%",
- "Tech Debt Exposure": "86.14%",
+ "Cognitive Load Exposure": "10.4%",
+ "Error & Exception Exposure": "67.92%",
+ "Tech Debt Exposure": "79.35%",
"Testing Exposure": "2.41%",
"API Exposure": "9.58%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "20.9%",
+ "State Flux Exposure": "19.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "95.04%",
+ "Documentation Exposure": "88.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -781879,21 +781879,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.41%",
"API Exposure": "9.29%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "55.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "92.58%",
+ "Documentation Exposure": "83.68%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -783122,18 +783122,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "8.24%",
- "Error & Exception Exposure": "45.73%",
- "Tech Debt Exposure": "63.23%",
- "Testing Exposure": "5.65%",
+ "Cognitive Load Exposure": "7.18%",
+ "Error & Exception Exposure": "45.89%",
+ "Tech Debt Exposure": "56.82%",
+ "Testing Exposure": "5.64%",
"API Exposure": "0.43%",
- "Concurrency Exposure": "1.14%",
- "State Flux Exposure": "20.04%",
+ "Concurrency Exposure": "1.01%",
+ "State Flux Exposure": "19.13%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "4.44%",
+ "Documentation Exposure": "4.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -783176,7 +783176,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.46%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -783382,12 +783382,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -783553,16 +783553,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "99.75%",
+ "Cognitive Load Exposure": "9.97%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "99.33%",
"Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -783750,7 +783750,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -783916,16 +783916,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
- "Error & Exception Exposure": "78.34%",
+ "Cognitive Load Exposure": "11.51%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "66.82%",
+ "State Flux Exposure": "64.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -784096,13 +784096,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.36%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -784280,12 +784280,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.97%",
- "Tech Debt Exposure": "53.67%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "39.15%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "16.39%",
+ "State Flux Exposure": "14.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -784470,12 +784470,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.06%",
- "Error & Exception Exposure": "69.54%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "5.53%",
+ "Error & Exception Exposure": "68.01%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -784823,7 +784823,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -785191,7 +785191,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -785357,16 +785357,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.377
+ "Raw Cognitive Density": 0.359
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.39%",
- "Error & Exception Exposure": "67.76%",
- "Tech Debt Exposure": "97.89%",
+ "Cognitive Load Exposure": "17.28%",
+ "Error & Exception Exposure": "68.11%",
+ "Tech Debt Exposure": "97.05%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "48.87%",
+ "State Flux Exposure": "45.88%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -785720,13 +785720,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "11.51%",
"Error & Exception Exposure": "80.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.5%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -785919,8 +785919,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -786107,13 +786107,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.225
+ "Raw Cognitive Density": 0.169
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.92%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.65%",
+ "Cognitive Load Exposure": "8.91%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.62%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -786361,13 +786361,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
- "Error & Exception Exposure": "78.78%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -786555,16 +786555,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.48
+ "Raw Cognitive Density": 0.443
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.37%",
- "Error & Exception Exposure": "78.67%",
- "Tech Debt Exposure": "85.52%",
- "Testing Exposure": "2.67%",
+ "Cognitive Load Exposure": "19.7%",
+ "Error & Exception Exposure": "81.57%",
+ "Tech Debt Exposure": "75.37%",
+ "Testing Exposure": "2.64%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "74.23%",
+ "State Flux Exposure": "71.87%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -786831,16 +786831,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "71.62%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -787013,11 +787013,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "6.42%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -787192,11 +787192,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "6.42%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -787371,21 +787371,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.267
+ "Raw Cognitive Density": 0.233
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.64%",
- "Error & Exception Exposure": "78.48%",
- "Tech Debt Exposure": "99.81%",
- "Testing Exposure": "2.56%",
+ "Cognitive Load Exposure": "11.24%",
+ "Error & Exception Exposure": "80.61%",
+ "Tech Debt Exposure": "99.56%",
+ "Testing Exposure": "2.54%",
"API Exposure": "9.87%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "63.8%",
+ "State Flux Exposure": "60.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.68%",
+ "Documentation Exposure": "89.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -787613,16 +787613,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.117
+ "Raw Cognitive Density": 0.097
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.35%",
- "Error & Exception Exposure": "65.07%",
- "Tech Debt Exposure": "90.32%",
+ "Cognitive Load Exposure": "6.84%",
+ "Error & Exception Exposure": "65.34%",
+ "Tech Debt Exposure": "81.83%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "27.39%",
- "State Flux Exposure": "15.29%",
+ "Concurrency Exposure": "24.32%",
+ "State Flux Exposure": "13.8%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -787815,16 +787815,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.477
+ "Raw Cognitive Density": 0.437
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.12%",
- "Error & Exception Exposure": "70.88%",
- "Tech Debt Exposure": "69.19%",
- "Testing Exposure": "2.64%",
+ "Cognitive Load Exposure": "22.25%",
+ "Error & Exception Exposure": "70.81%",
+ "Tech Debt Exposure": "51.84%",
+ "Testing Exposure": "2.61%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "80.68%",
+ "State Flux Exposure": "78.74%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -788074,18 +788074,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "5.7%",
- "Error & Exception Exposure": "14.94%",
- "Tech Debt Exposure": "90.85%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "4.87%",
+ "Error & Exception Exposure": "12.0%",
+ "Tech Debt Exposure": "89.7%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.08%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "5.74%",
+ "State Flux Exposure": "5.36%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "2.66%",
+ "Documentation Exposure": "2.08%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -788122,16 +788122,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.136
+ "Raw Cognitive Density": 0.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.91%",
- "Error & Exception Exposure": "46.44%",
+ "Cognitive Load Exposure": "7.15%",
+ "Error & Exception Exposure": "34.3%",
"Tech Debt Exposure": "99.99%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.45%",
+ "State Flux Exposure": "13.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -788395,13 +788395,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -788575,13 +788575,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -788761,8 +788761,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -788940,13 +788940,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.165
+ "Raw Cognitive Density": 0.11
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.73%",
+ "Cognitive Load Exposure": "5.74%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -789144,16 +789144,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.241
+ "Raw Cognitive Density": 0.226
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.54%",
- "Error & Exception Exposure": "38.6%",
+ "Cognitive Load Exposure": "10.96%",
+ "Error & Exception Exposure": "24.11%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "69.42%",
+ "State Flux Exposure": "66.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -789467,13 +789467,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.199
+ "Raw Cognitive Density": 0.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.95%",
- "Error & Exception Exposure": "51.48%",
+ "Cognitive Load Exposure": "8.3%",
+ "Error & Exception Exposure": "38.37%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -789714,9 +789714,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.77%",
- "Tech Debt Exposure": "99.87%",
- "Testing Exposure": "2.44%",
+ "Error & Exception Exposure": "67.97%",
+ "Tech Debt Exposure": "99.76%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -790021,8 +790021,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -790197,13 +790197,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -790389,13 +790389,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.329
+ "Raw Cognitive Density": 0.274
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.76%",
+ "Cognitive Load Exposure": "10.37%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Tech Debt Exposure": "99.99%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -790610,16 +790610,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.452
+ "Raw Cognitive Density": 0.416
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.32%",
- "Error & Exception Exposure": "62.07%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "20.83%",
+ "Error & Exception Exposure": "54.72%",
+ "Tech Debt Exposure": "99.96%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -790843,16 +790843,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.193
+ "Raw Cognitive Density": 0.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.74%",
- "Error & Exception Exposure": "51.87%",
- "Tech Debt Exposure": "99.99%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "8.33%",
+ "Error & Exception Exposure": "41.17%",
+ "Tech Debt Exposure": "99.97%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "18.62%",
+ "State Flux Exposure": "16.87%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -791092,7 +791092,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -791299,8 +791299,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -791479,8 +791479,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.36%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -791691,7 +791691,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -791980,8 +791980,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "99.99%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -792356,16 +792356,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.062
+ "Raw Cognitive Density": 0.049
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.01%",
- "Error & Exception Exposure": "38.21%",
+ "Cognitive Load Exposure": "5.7%",
+ "Error & Exception Exposure": "27.4%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "12.86%",
+ "State Flux Exposure": "11.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -792859,13 +792859,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.151
+ "Raw Cognitive Density": 0.108
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.34%",
+ "Cognitive Load Exposure": "7.11%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.4%",
+ "Tech Debt Exposure": "99.96%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -793121,13 +793121,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.155
+ "Raw Cognitive Density": 0.104
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.57%",
+ "Cognitive Load Exposure": "5.76%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -793382,13 +793382,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -793578,8 +793578,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.33%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.3%",
"API Exposure": "1.86%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -793587,7 +793587,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.91%",
+ "Documentation Exposure": "50.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -793750,10 +793750,10 @@
"Static: Literature & Documentation": "9.1%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "0.82%",
- "Error & Exception Exposure": "27.51%",
+ "Cognitive Load Exposure": "0.6%",
+ "Error & Exception Exposure": "26.32%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.16%",
+ "Testing Exposure": "2.14%",
"API Exposure": "0.32%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -793761,7 +793761,7 @@
"Specification Exposure": "81.82%",
"Instability Exposure": "45.45%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "3.97%",
+ "Documentation Exposure": "1.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -793961,7 +793961,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -794219,7 +794219,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.31%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -794397,7 +794397,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -794575,7 +794575,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -794841,7 +794841,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -795009,9 +795009,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -795219,7 +795219,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -795415,9 +795415,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.66%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -795425,7 +795425,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.67%",
+ "Documentation Exposure": "21.73%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -795599,13 +795599,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.173
+ "Raw Cognitive Density": 0.086
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.03%",
- "Error & Exception Exposure": "88.92%",
+ "Cognitive Load Exposure": "6.57%",
+ "Error & Exception Exposure": "90.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -795843,7 +795843,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -797952,8 +797952,8 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "12.63%",
- "Error & Exception Exposure": "27.28%",
+ "Cognitive Load Exposure": "12.1%",
+ "Error & Exception Exposure": "29.13%",
"Tech Debt Exposure": "31.29%",
"Testing Exposure": "14.88%",
"API Exposure": "2.85%",
@@ -798321,7 +798321,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.36%",
- "Error & Exception Exposure": "73.66%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "3.53%",
@@ -798658,8 +798658,8 @@
"Raw Cognitive Density": 0.898
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "46.51%",
- "Error & Exception Exposure": "90.04%",
+ "Cognitive Load Exposure": "43.36%",
+ "Error & Exception Exposure": "95.04%",
"Tech Debt Exposure": "25.51%",
"Testing Exposure": "80.0%",
"API Exposure": "6.52%",
@@ -798904,7 +798904,7 @@
"Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "62.25%",
- "Testing Exposure": "2.31%",
+ "Testing Exposure": "2.32%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -799047,17 +799047,17 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "45.04%",
- "Tech Debt Exposure": "51.62%",
+ "Error & Exception Exposure": "45.62%",
+ "Tech Debt Exposure": "43.22%",
"Testing Exposure": "2.33%",
"API Exposure": "0.98%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "1.22%",
+ "State Flux Exposure": "1.2%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "98.99%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.6%",
+ "Documentation Exposure": "7.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -799099,7 +799099,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -799270,7 +799270,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -799441,7 +799441,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -799611,9 +799611,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "86.07%",
- "Tech Debt Exposure": "98.43%",
- "Testing Exposure": "2.4%",
+ "Error & Exception Exposure": "89.5%",
+ "Tech Debt Exposure": "96.64%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -799804,9 +799804,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.59%",
+ "Error & Exception Exposure": "73.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -800168,7 +800168,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -800510,7 +800510,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -800852,7 +800852,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -801194,7 +801194,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -801365,7 +801365,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -801878,7 +801878,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -802391,7 +802391,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -802562,7 +802562,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -802904,7 +802904,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -803074,8 +803074,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -803245,7 +803245,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -803417,9 +803417,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.32%",
+ "Error & Exception Exposure": "72.84%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -803610,9 +803610,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.31%",
- "Tech Debt Exposure": "91.38%",
- "Testing Exposure": "2.39%",
+ "Error & Exception Exposure": "63.7%",
+ "Tech Debt Exposure": "86.97%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -803862,7 +803862,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.68%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -804402,7 +804402,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -804573,7 +804573,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -804744,7 +804744,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -804915,7 +804915,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -805086,7 +805086,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -805266,7 +805266,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -805437,7 +805437,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -805598,9 +805598,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -805769,7 +805769,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -805779,7 +805779,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "53.67%",
+ "Documentation Exposure": "33.02%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -805950,9 +805950,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -806121,9 +806121,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -806292,9 +806292,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -806463,7 +806463,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -806473,7 +806473,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.37%",
+ "Documentation Exposure": "34.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -806644,7 +806644,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -806654,7 +806654,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -806814,7 +806814,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -806824,7 +806824,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -806984,7 +806984,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -806994,7 +806994,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -807154,7 +807154,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -807164,7 +807164,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -807324,7 +807324,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -807334,7 +807334,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.37%",
+ "Documentation Exposure": "34.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -807505,7 +807505,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -807515,7 +807515,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -807675,7 +807675,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -807685,7 +807685,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -807845,7 +807845,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -807855,7 +807855,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.37%",
+ "Documentation Exposure": "34.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -808026,7 +808026,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -808036,7 +808036,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.37%",
+ "Documentation Exposure": "34.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -808207,7 +808207,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -808217,7 +808217,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.37%",
+ "Documentation Exposure": "34.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -808388,12 +808388,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -808570,8 +808570,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -808741,8 +808741,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -808912,8 +808912,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809083,8 +809083,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809254,8 +809254,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809425,8 +809425,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809596,8 +809596,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809767,8 +809767,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809938,8 +809938,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -810109,9 +810109,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.52%",
+ "Error & Exception Exposure": "77.05%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -810303,7 +810303,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -810473,12 +810473,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -810640,7 +810640,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -810811,7 +810811,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -810972,9 +810972,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -811143,8 +811143,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -811314,8 +811314,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -811485,8 +811485,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -811656,8 +811656,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -811827,8 +811827,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -811998,8 +811998,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -812169,8 +812169,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -812340,8 +812340,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -812511,8 +812511,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -812682,8 +812682,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -812853,8 +812853,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -813024,8 +813024,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -813195,8 +813195,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -813367,7 +813367,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -813547,7 +813547,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -813718,7 +813718,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -813889,7 +813889,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -814060,7 +814060,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -814231,7 +814231,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -814392,8 +814392,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "70.49%",
- "Tech Debt Exposure": "64.16%",
+ "Error & Exception Exposure": "71.16%",
+ "Tech Debt Exposure": "47.43%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -814564,9 +814564,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.42%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -814768,7 +814768,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -814936,8 +814936,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815107,8 +815107,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815278,8 +815278,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815446,8 +815446,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815614,8 +815614,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815782,8 +815782,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815960,7 +815960,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -816131,7 +816131,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.47%",
+ "Documentation Exposure": "30.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -816302,7 +816302,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -816463,8 +816463,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -816603,13 +816603,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.45%",
- "Error & Exception Exposure": "17.2%",
- "Tech Debt Exposure": "91.84%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "3.07%",
+ "Error & Exception Exposure": "16.15%",
+ "Tech Debt Exposure": "85.71%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "1.63%",
- "State Flux Exposure": "7.68%",
+ "Concurrency Exposure": "1.5%",
+ "State Flux Exposure": "7.43%",
"Commented Logic Exposure": "0.34%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -816656,8 +816656,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.63%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "98.16%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -816916,8 +816916,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -817102,13 +817102,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.093
+ "Raw Cognitive Density": 0.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.74%",
- "Error & Exception Exposure": "53.85%",
+ "Cognitive Load Exposure": "6.18%",
+ "Error & Exception Exposure": "47.86%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -817415,16 +817415,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.229
+ "Raw Cognitive Density": 0.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.05%",
- "Error & Exception Exposure": "61.03%",
- "Tech Debt Exposure": "99.94%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "10.79%",
+ "Error & Exception Exposure": "57.14%",
+ "Tech Debt Exposure": "99.93%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "71.17%",
+ "State Flux Exposure": "68.64%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -817876,8 +817876,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -818046,8 +818046,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -818216,7 +818216,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -818386,7 +818386,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -818557,7 +818557,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -818727,7 +818727,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -818897,8 +818897,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -819066,12 +819066,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "62.28%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "56.39%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -819244,15 +819244,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.287
+ "Raw Cognitive Density": 0.251
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.57%",
- "Error & Exception Exposure": "59.53%",
- "Tech Debt Exposure": "99.6%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "11.97%",
+ "Error & Exception Exposure": "54.58%",
+ "Tech Debt Exposure": "99.24%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "48.84%",
+ "Concurrency Exposure": "44.85%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -819467,13 +819467,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -819638,13 +819638,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.212
+ "Raw Cognitive Density": 0.173
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.4%",
+ "Cognitive Load Exposure": "9.05%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -819875,8 +819875,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.27%",
- "Testing Exposure": "2.39%",
+ "Tech Debt Exposure": "96.34%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -820084,8 +820084,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -820274,9 +820274,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.66%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.32%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -820442,13 +820442,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.227
+ "Raw Cognitive Density": 0.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.97%",
+ "Cognitive Load Exposure": "8.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -820671,13 +820671,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.6
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.43%",
- "Error & Exception Exposure": "77.9%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "31.86%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -820869,7 +820869,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -821045,13 +821045,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.136
+ "Raw Cognitive Density": 0.097
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.91%",
- "Error & Exception Exposure": "69.11%",
+ "Cognitive Load Exposure": "6.85%",
+ "Error & Exception Exposure": "65.28%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -821343,8 +821343,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -821524,8 +821524,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -821729,12 +821729,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "63.78%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.32%",
+ "Error & Exception Exposure": "58.49%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -822072,8 +822072,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -822253,8 +822253,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -822445,8 +822445,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -822626,7 +822626,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -822768,18 +822768,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "13.12%",
- "Error & Exception Exposure": "44.39%",
- "Tech Debt Exposure": "55.63%",
+ "Cognitive Load Exposure": "12.72%",
+ "Error & Exception Exposure": "46.3%",
+ "Tech Debt Exposure": "48.0%",
"Testing Exposure": "28.3%",
"API Exposure": "4.88%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "39.06%",
+ "State Flux Exposure": "38.1%",
"Commented Logic Exposure": "1.8%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "34.15%",
+ "Documentation Exposure": "32.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -822816,16 +822816,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.373
+ "Raw Cognitive Density": 0.356
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.12%",
- "Error & Exception Exposure": "71.33%",
- "Tech Debt Exposure": "78.81%",
+ "Cognitive Load Exposure": "17.13%",
+ "Error & Exception Exposure": "74.33%",
+ "Tech Debt Exposure": "70.89%",
"Testing Exposure": "2.54%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "64.84%",
+ "State Flux Exposure": "63.46%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -823004,16 +823004,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.423
+ "Raw Cognitive Density": 0.419
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.25%",
- "Error & Exception Exposure": "61.84%",
+ "Cognitive Load Exposure": "21.04%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "5.52%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "52.34%",
+ "State Flux Exposure": "50.84%",
"Commented Logic Exposure": "5.4%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -823637,7 +823637,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.36%",
"API Exposure": "9.11%",
"Concurrency Exposure": "0.0%",
@@ -823646,7 +823646,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "90.53%",
+ "Documentation Exposure": "84.12%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -823807,18 +823807,18 @@
"Static: Literature & Documentation": "4.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.81%",
- "Error & Exception Exposure": "63.23%",
- "Tech Debt Exposure": "26.46%",
+ "Cognitive Load Exposure": "7.28%",
+ "Error & Exception Exposure": "66.3%",
+ "Tech Debt Exposure": "24.64%",
"Testing Exposure": "2.28%",
"API Exposure": "0.15%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "11.58%",
+ "State Flux Exposure": "11.44%",
"Commented Logic Exposure": "4.26%",
"Specification Exposure": "52.17%",
"Instability Exposure": "47.83%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "2.17%",
+ "Documentation Exposure": "1.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -824012,10 +824012,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
+ "Cognitive Load Exposure": "9.28%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -824169,12 +824169,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "97.07%",
"Testing Exposure": "2.54%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -824357,11 +824357,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -824518,7 +824518,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -824671,12 +824671,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "73.11%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -824828,11 +824828,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -824985,12 +824985,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "73.11%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -825142,12 +825142,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.263
+ "Raw Cognitive Density": 0.246
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.48%",
- "Error & Exception Exposure": "74.11%",
- "Tech Debt Exposure": "100.0%",
+ "Cognitive Load Exposure": "11.74%",
+ "Error & Exception Exposure": "77.67%",
+ "Tech Debt Exposure": "99.99%",
"Testing Exposure": "2.67%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -825380,12 +825380,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -825548,11 +825548,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -825716,11 +825716,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
@@ -825894,11 +825894,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.42%",
"API Exposure": "0.0%",
@@ -826066,12 +826066,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "81.11%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "20.42%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -826219,10 +826219,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -826391,7 +826391,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -826544,16 +826544,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "82.39%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "93.34%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -826722,16 +826722,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "82.39%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "93.34%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -826904,7 +826904,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -827061,8 +827061,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -827214,11 +827214,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
@@ -827392,16 +827392,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "15.19%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.53%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "55.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -827570,12 +827570,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.36%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
@@ -827584,7 +827584,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -827726,12 +827726,12 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "50.02%",
- "Tech Debt Exposure": "47.82%",
- "Testing Exposure": "2.29%",
+ "Error & Exception Exposure": "50.57%",
+ "Tech Debt Exposure": "41.75%",
+ "Testing Exposure": "2.28%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "0.45%",
+ "State Flux Exposure": "0.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "96.67%",
"Instability Exposure": "48.33%",
@@ -827938,9 +827938,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "87.91%",
- "Tech Debt Exposure": "99.46%",
- "Testing Exposure": "2.42%",
+ "Error & Exception Exposure": "91.04%",
+ "Tech Debt Exposure": "98.89%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -828156,9 +828156,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "88.92%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.44%",
+ "Error & Exception Exposure": "91.68%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -828357,8 +828357,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "61.96%",
- "Tech Debt Exposure": "27.71%",
+ "Error & Exception Exposure": "62.39%",
+ "Tech Debt Exposure": "21.39%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -828525,8 +828525,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "58.09%",
- "Tech Debt Exposure": "18.05%",
+ "Error & Exception Exposure": "58.39%",
+ "Tech Debt Exposure": "15.03%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -828693,8 +828693,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "56.99%",
- "Tech Debt Exposure": "15.97%",
+ "Error & Exception Exposure": "57.24%",
+ "Tech Debt Exposure": "13.62%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -828861,8 +828861,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -829029,8 +829029,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -829197,9 +829197,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "63.97%",
- "Tech Debt Exposure": "46.1%",
- "Testing Exposure": "2.61%",
+ "Error & Exception Exposure": "62.65%",
+ "Tech Debt Exposure": "33.69%",
+ "Testing Exposure": "2.58%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -829695,12 +829695,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "56.61%",
+ "Error & Exception Exposure": "55.62%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.48%",
+ "State Flux Exposure": "12.14%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -829863,7 +829863,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "62.78%",
+ "Error & Exception Exposure": "63.23%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -830031,8 +830031,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "51.29%",
- "Tech Debt Exposure": "9.86%",
+ "Error & Exception Exposure": "50.78%",
+ "Tech Debt Exposure": "9.48%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -830289,8 +830289,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -830457,9 +830457,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "82.76%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.41%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -830645,9 +830645,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.38%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -830823,9 +830823,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -830991,8 +830991,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -831159,9 +831159,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.69%",
+ "Testing Exposure": "2.66%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -831547,7 +831547,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "70.69%",
+ "Error & Exception Exposure": "71.36%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
@@ -831715,9 +831715,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -831883,9 +831883,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -832051,8 +832051,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.66%",
- "Tech Debt Exposure": "41.17%",
+ "Error & Exception Exposure": "66.2%",
+ "Tech Debt Exposure": "30.29%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -832754,7 +832754,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "85.73%",
+ "Tech Debt Exposure": "78.38%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -833328,7 +833328,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -833496,7 +833496,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -833637,9 +833637,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.05%",
+ "Error & Exception Exposure": "62.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "13.11%",
+ "Testing Exposure": "13.1%",
"API Exposure": "0.34%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -833845,7 +833845,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.41%",
+ "Error & Exception Exposure": "66.12%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
@@ -834023,9 +834023,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.13%",
+ "Error & Exception Exposure": "71.62%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -834241,9 +834241,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.41%",
+ "Error & Exception Exposure": "66.12%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -834441,7 +834441,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "80.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -834697,7 +834697,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.41%",
+ "Error & Exception Exposure": "66.12%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
@@ -834875,7 +834875,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.95%",
+ "Error & Exception Exposure": "86.77%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.35%",
@@ -836317,7 +836317,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "25.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.08%",
+ "Documentation Exposure": "12.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -836525,7 +836525,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.15%",
+ "Documentation Exposure": "25.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -836645,13 +836645,13 @@
"Unclassified": "50.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "11.31%",
- "Error & Exception Exposure": "30.89%",
- "Tech Debt Exposure": "4.14%",
+ "Cognitive Load Exposure": "11.32%",
+ "Error & Exception Exposure": "31.48%",
+ "Tech Debt Exposure": "4.17%",
"Testing Exposure": "40.0%",
"API Exposure": "2.63%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "7.58%",
+ "State Flux Exposure": "7.97%",
"Commented Logic Exposure": "2.95%",
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
@@ -836850,16 +836850,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.459
+ "Raw Cognitive Density": 0.46
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.61%",
- "Error & Exception Exposure": "61.79%",
- "Tech Debt Exposure": "8.27%",
+ "Cognitive Load Exposure": "22.63%",
+ "Error & Exception Exposure": "62.96%",
+ "Tech Debt Exposure": "8.33%",
"Testing Exposure": "80.0%",
"API Exposure": "5.27%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.16%",
+ "State Flux Exposure": "15.95%",
"Commented Logic Exposure": "5.9%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -838737,9 +838737,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "38.63%",
- "Error & Exception Exposure": "97.84%",
- "Tech Debt Exposure": "20.26%",
+ "Cognitive Load Exposure": "38.89%",
+ "Error & Exception Exposure": "97.97%",
+ "Tech Debt Exposure": "22.64%",
"Testing Exposure": "80.0%",
"API Exposure": "0.32%",
"Concurrency Exposure": "0.0%",
@@ -838785,12 +838785,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.965
+ "Raw Cognitive Density": 0.97
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.63%",
- "Error & Exception Exposure": "97.84%",
- "Tech Debt Exposure": "20.26%",
+ "Cognitive Load Exposure": "38.89%",
+ "Error & Exception Exposure": "97.97%",
+ "Tech Debt Exposure": "22.64%",
"Testing Exposure": "80.0%",
"API Exposure": "0.32%",
"Concurrency Exposure": "0.0%",
@@ -839040,18 +839040,18 @@
"Static: Literature & Documentation": "11.1%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "11.53%",
- "Error & Exception Exposure": "63.11%",
- "Tech Debt Exposure": "58.71%",
- "Testing Exposure": "2.19%",
+ "Cognitive Load Exposure": "9.85%",
+ "Error & Exception Exposure": "63.68%",
+ "Tech Debt Exposure": "54.97%",
+ "Testing Exposure": "2.17%",
"API Exposure": "0.06%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "41.94%",
+ "State Flux Exposure": "40.8%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "88.89%",
"Instability Exposure": "44.44%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "2.5%",
+ "Documentation Exposure": "1.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -839249,12 +839249,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "58.33%",
+ "Error & Exception Exposure": "56.99%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "14.43%",
+ "State Flux Exposure": "13.01%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -839416,12 +839416,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.074
+ "Raw Cognitive Density": 0.061
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.03%",
- "Error & Exception Exposure": "75.61%",
- "Tech Debt Exposure": "99.53%",
+ "Cognitive Load Exposure": "5.57%",
+ "Error & Exception Exposure": "79.41%",
+ "Tech Debt Exposure": "99.22%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -839653,16 +839653,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.309
+ "Raw Cognitive Density": 0.273
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.04%",
- "Error & Exception Exposure": "64.07%",
- "Tech Debt Exposure": "83.07%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "10.56%",
+ "Error & Exception Exposure": "59.48%",
+ "Tech Debt Exposure": "66.41%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "43.0%",
+ "State Flux Exposure": "40.09%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -839849,16 +839849,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.184
+ "Raw Cognitive Density": 0.153
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.79%",
- "Error & Exception Exposure": "61.48%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "7.49%",
+ "Error & Exception Exposure": "59.01%",
+ "Tech Debt Exposure": "99.95%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.03%",
+ "State Flux Exposure": "17.25%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -840114,21 +840114,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.434
+ "Raw Cognitive Density": 0.415
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.78%",
- "Error & Exception Exposure": "76.88%",
- "Tech Debt Exposure": "29.96%",
- "Testing Exposure": "2.54%",
+ "Cognitive Load Exposure": "18.8%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "21.07%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.55%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "90.38%",
+ "State Flux Exposure": "89.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.53%",
+ "Documentation Exposure": "14.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -840340,16 +840340,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.136
+ "Raw Cognitive Density": 0.126
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.66%",
- "Error & Exception Exposure": "76.45%",
- "Tech Debt Exposure": "19.02%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "7.26%",
+ "Error & Exception Exposure": "81.1%",
+ "Tech Debt Exposure": "15.68%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "20.55%",
+ "State Flux Exposure": "18.66%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -840592,16 +840592,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.41%",
- "Error & Exception Exposure": "77.05%",
+ "Cognitive Load Exposure": "13.89%",
+ "Error & Exception Exposure": "78.05%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "90.89%",
+ "State Flux Exposure": "89.84%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -840810,16 +840810,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.582
+ "Raw Cognitive Density": 0.545
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.1%",
- "Error & Exception Exposure": "78.15%",
- "Tech Debt Exposure": "96.8%",
- "Testing Exposure": "2.59%",
+ "Cognitive Load Exposure": "25.05%",
+ "Error & Exception Exposure": "79.31%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.19%",
+ "State Flux Exposure": "99.09%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -840984,13 +840984,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "26.84%",
- "Error & Exception Exposure": "44.35%",
- "Tech Debt Exposure": "37.27%",
+ "Cognitive Load Exposure": "24.59%",
+ "Error & Exception Exposure": "43.08%",
+ "Tech Debt Exposure": "36.62%",
"Testing Exposure": "21.81%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "4.79%",
- "State Flux Exposure": "25.6%",
+ "Concurrency Exposure": "4.2%",
+ "State Flux Exposure": "23.91%",
"Commented Logic Exposure": "4.19%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -841032,16 +841032,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.813
+ "Raw Cognitive Density": 0.809
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "52.77%",
- "Error & Exception Exposure": "55.63%",
- "Tech Debt Exposure": "49.08%",
+ "Cognitive Load Exposure": "50.04%",
+ "Error & Exception Exposure": "55.41%",
+ "Tech Debt Exposure": "46.47%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "19.14%",
- "State Flux Exposure": "29.23%",
+ "Concurrency Exposure": "16.79%",
+ "State Flux Exposure": "26.81%",
"Commented Logic Exposure": "6.23%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -841825,16 +841825,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.592
+ "Raw Cognitive Density": 0.55
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.73%",
- "Error & Exception Exposure": "63.92%",
+ "Cognitive Load Exposure": "31.0%",
+ "Error & Exception Exposure": "60.43%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "58.94%",
+ "State Flux Exposure": "56.01%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -842049,10 +842049,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "11.51%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.49%",
@@ -842239,16 +842239,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.114
+ "Raw Cognitive Density": 0.098
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.61%",
- "Error & Exception Exposure": "57.84%",
+ "Cognitive Load Exposure": "5.83%",
+ "Error & Exception Exposure": "56.48%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "14.22%",
+ "State Flux Exposure": "12.82%",
"Commented Logic Exposure": "10.53%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -842414,13 +842414,13 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "8.65%",
- "Error & Exception Exposure": "26.39%",
- "Tech Debt Exposure": "48.83%",
- "Testing Exposure": "2.04%",
+ "Cognitive Load Exposure": "6.58%",
+ "Error & Exception Exposure": "19.29%",
+ "Tech Debt Exposure": "47.65%",
+ "Testing Exposure": "2.03%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "12.46%",
- "State Flux Exposure": "25.24%",
+ "Concurrency Exposure": "12.45%",
+ "State Flux Exposure": "23.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "50.0%",
"Instability Exposure": "43.75%",
@@ -842776,12 +842776,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.132
+ "Raw Cognitive Density": 0.074
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.79%",
- "Error & Exception Exposure": "44.65%",
- "Tech Debt Exposure": "99.46%",
+ "Cognitive Load Exposure": "6.26%",
+ "Error & Exception Exposure": "22.67%",
+ "Tech Debt Exposure": "97.7%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -842974,16 +842974,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.64
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.72%",
- "Error & Exception Exposure": "59.96%",
- "Tech Debt Exposure": "99.68%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "23.5%",
+ "Error & Exception Exposure": "42.77%",
+ "Tech Debt Exposure": "93.99%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "99.72%",
- "State Flux Exposure": "57.44%",
+ "Concurrency Exposure": "99.61%",
+ "State Flux Exposure": "51.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -843142,16 +843142,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.229
+ "Raw Cognitive Density": 0.181
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.54%",
- "Error & Exception Exposure": "61.84%",
- "Tech Debt Exposure": "99.99%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "4.65%",
+ "Error & Exception Exposure": "55.41%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "48.35%",
+ "State Flux Exposure": "42.41%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -843430,16 +843430,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.433
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.16%",
- "Error & Exception Exposure": "44.65%",
- "Tech Debt Exposure": "91.48%",
- "Testing Exposure": "2.31%",
+ "Cognitive Load Exposure": "18.2%",
+ "Error & Exception Exposure": "33.47%",
+ "Tech Debt Exposure": "89.52%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.16%",
+ "State Flux Exposure": "95.17%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -844078,13 +844078,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "6.39%",
- "Error & Exception Exposure": "14.88%",
+ "Cognitive Load Exposure": "5.88%",
+ "Error & Exception Exposure": "15.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "16.12%",
+ "State Flux Exposure": "15.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "33.33%",
"Instability Exposure": "50.0%",
@@ -844597,13 +844597,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -844922,10 +844922,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.55%",
+ "Cognitive Load Exposure": "5.53%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -845247,16 +845247,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.326
+ "Raw Cognitive Density": 0.316
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.52%",
- "Error & Exception Exposure": "67.78%",
+ "Cognitive Load Exposure": "14.97%",
+ "Error & Exception Exposure": "70.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "84.42%",
+ "State Flux Exposure": "83.61%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -845404,11 +845404,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "41.1%",
+ "Error & Exception Exposure": "84.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -846032,16 +846032,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.38%",
- "Error & Exception Exposure": "74.99%",
+ "Cognitive Load Exposure": "6.9%",
+ "Error & Exception Exposure": "77.75%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "55.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -846210,10 +846210,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
@@ -846378,10 +846378,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.03
+ "Raw Cognitive Density": 0.025
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.68%",
+ "Cognitive Load Exposure": "4.17%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
@@ -846524,9 +846524,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.75%",
+ "Error & Exception Exposure": "61.74%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.3%",
+ "Testing Exposure": "2.28%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -846732,9 +846732,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.53%",
+ "Error & Exception Exposure": "61.93%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -846970,9 +846970,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.35%",
+ "Error & Exception Exposure": "66.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -847218,9 +847218,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -847446,9 +847446,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.35%",
+ "Error & Exception Exposure": "66.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -847694,9 +847694,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -847932,9 +847932,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.96%",
+ "Error & Exception Exposure": "54.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -848180,9 +848180,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -848408,9 +848408,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -848636,9 +848636,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -848904,9 +848904,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -849172,9 +849172,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.23%",
+ "Error & Exception Exposure": "61.44%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -849430,9 +849430,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.58%",
+ "Error & Exception Exposure": "64.07%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -849688,9 +849688,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -849936,9 +849936,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -850184,9 +850184,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -850402,9 +850402,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -850620,9 +850620,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "70.42%",
+ "Error & Exception Exposure": "67.32%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -850878,9 +850878,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -851078,13 +851078,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "8.19%",
- "Error & Exception Exposure": "51.5%",
- "Tech Debt Exposure": "93.13%",
- "Testing Exposure": "12.12%",
+ "Cognitive Load Exposure": "6.64%",
+ "Error & Exception Exposure": "50.94%",
+ "Tech Debt Exposure": "87.13%",
+ "Testing Exposure": "12.11%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "28.78%",
+ "State Flux Exposure": "26.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -851126,16 +851126,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "77.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "14.19%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -851316,16 +851316,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.376
+ "Raw Cognitive Density": 0.352
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.62%",
- "Error & Exception Exposure": "64.29%",
- "Tech Debt Exposure": "74.49%",
- "Testing Exposure": "2.58%",
+ "Cognitive Load Exposure": "11.23%",
+ "Error & Exception Exposure": "63.87%",
+ "Tech Debt Exposure": "65.73%",
+ "Testing Exposure": "2.55%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "56.29%",
+ "State Flux Exposure": "53.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -851663,16 +851663,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.159
+ "Raw Cognitive Density": 0.147
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.72%",
- "Error & Exception Exposure": "67.42%",
+ "Cognitive Load Exposure": "6.82%",
+ "Error & Exception Exposure": "70.51%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "22.23%",
+ "State Flux Exposure": "20.22%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -852329,12 +852329,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.6%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "62.18%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.45%",
+ "State Flux Exposure": "13.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -852542,7 +852542,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -852707,16 +852707,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.224
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.65%",
- "Error & Exception Exposure": "68.16%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "8.7%",
+ "Error & Exception Exposure": "66.12%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -852923,8 +852923,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.38%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -853119,16 +853119,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.28%",
- "Error & Exception Exposure": "69.54%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "12.15%",
+ "Error & Exception Exposure": "68.01%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -853273,9 +853273,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.58%",
- "Error & Exception Exposure": "61.07%",
- "Tech Debt Exposure": "72.4%",
+ "Cognitive Load Exposure": "3.09%",
+ "Error & Exception Exposure": "61.88%",
+ "Tech Debt Exposure": "61.05%",
"Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -853321,13 +853321,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -853501,13 +853501,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -853682,13 +853682,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -853863,13 +853863,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854044,13 +854044,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854225,13 +854225,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854406,13 +854406,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854587,13 +854587,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854768,13 +854768,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854949,13 +854949,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -855130,13 +855130,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -855311,13 +855311,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -855492,13 +855492,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -855673,13 +855673,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -855853,13 +855853,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -856033,13 +856033,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.5%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "6.5%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -856224,13 +856224,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -856405,13 +856405,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -856591,7 +856591,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -856758,7 +856758,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -856929,7 +856929,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -857096,9 +857096,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -857267,7 +857267,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -857434,9 +857434,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -857600,13 +857600,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -857786,7 +857786,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -857949,13 +857949,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.5%",
- "Error & Exception Exposure": "82.76%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "6.5%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -858152,7 +858152,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -858322,9 +858322,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.38%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -858506,8 +858506,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -858676,9 +858676,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.38%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -858867,7 +858867,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -859034,13 +859034,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -859220,7 +859220,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -859387,7 +859387,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -859556,12 +859556,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.61%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "4.84%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -859742,13 +859742,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.5%",
- "Error & Exception Exposure": "84.18%",
+ "Cognitive Load Exposure": "5.61%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -859943,8 +859943,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -860123,7 +860123,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -860291,7 +860291,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -860459,7 +860459,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -860622,13 +860622,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -860803,13 +860803,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -860961,18 +860961,18 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.94%",
- "Error & Exception Exposure": "21.75%",
- "Tech Debt Exposure": "42.0%",
+ "Cognitive Load Exposure": "7.7%",
+ "Error & Exception Exposure": "22.54%",
+ "Tech Debt Exposure": "39.74%",
"Testing Exposure": "14.91%",
"API Exposure": "1.74%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "23.78%",
+ "State Flux Exposure": "23.53%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "83.33%",
"Instability Exposure": "41.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.75%",
+ "Documentation Exposure": "8.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -861172,7 +861172,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.51%",
"API Exposure": "2.65%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -861468,21 +861468,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.003
+ "Raw Cognitive Density": 0.995
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.65%",
- "Error & Exception Exposure": "69.81%",
- "Tech Debt Exposure": "89.76%",
+ "Cognitive Load Exposure": "36.34%",
+ "Error & Exception Exposure": "75.12%",
+ "Tech Debt Exposure": "88.42%",
"Testing Exposure": "80.0%",
"API Exposure": "3.23%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.64%",
+ "State Flux Exposure": "99.62%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.75%",
+ "Documentation Exposure": "13.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -861768,21 +861768,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.99%",
- "Error & Exception Exposure": "60.72%",
- "Tech Debt Exposure": "62.25%",
+ "Cognitive Load Exposure": "9.88%",
+ "Error & Exception Exposure": "60.14%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.33%",
"API Exposure": "2.79%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "43.05%",
+ "State Flux Exposure": "41.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.94%",
+ "Documentation Exposure": "14.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -861954,7 +861954,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.87%",
+ "Documentation Exposure": "13.59%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -862233,18 +862233,18 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.91%",
- "Error & Exception Exposure": "43.83%",
+ "Cognitive Load Exposure": "2.98%",
+ "Error & Exception Exposure": "46.62%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "48.46%",
"API Exposure": "10.5%",
- "Concurrency Exposure": "4.28%",
+ "Concurrency Exposure": "4.55%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "80.0%",
"Instability Exposure": "40.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.66%",
+ "Documentation Exposure": "45.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -862439,11 +862439,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.135
+ "Raw Cognitive Density": 0.137
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.93%",
- "Error & Exception Exposure": "40.38%",
+ "Cognitive Load Exposure": "3.96%",
+ "Error & Exception Exposure": "45.36%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "12.86%",
@@ -862453,7 +862453,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.04%",
+ "Documentation Exposure": "19.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -863257,11 +863257,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.08
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.21%",
- "Error & Exception Exposure": "96.23%",
+ "Cognitive Load Exposure": "3.46%",
+ "Error & Exception Exposure": "96.81%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "11.68%",
@@ -863271,7 +863271,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "56.88%",
+ "Documentation Exposure": "63.71%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -863415,21 +863415,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.131
+ "Raw Cognitive Density": 0.133
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.88%",
- "Error & Exception Exposure": "34.0%",
+ "Cognitive Load Exposure": "3.91%",
+ "Error & Exception Exposure": "41.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "13.34%",
- "Concurrency Exposure": "21.39%",
+ "Concurrency Exposure": "22.77%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.11%",
+ "Documentation Exposure": "47.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -864015,11 +864015,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.107
+ "Raw Cognitive Density": 0.108
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.55%",
- "Error & Exception Exposure": "48.53%",
+ "Cognitive Load Exposure": "3.56%",
+ "Error & Exception Exposure": "49.81%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "14.61%",
@@ -864029,7 +864029,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "95.26%",
+ "Documentation Exposure": "95.31%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -866414,8 +866414,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "15.94%",
- "Error & Exception Exposure": "72.01%",
+ "Cognitive Load Exposure": "13.96%",
+ "Error & Exception Exposure": "70.82%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -866462,11 +866462,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -866619,11 +866619,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -866776,11 +866776,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -866933,11 +866933,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "71.62%",
+ "Cognitive Load Exposure": "14.19%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -867094,7 +867094,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -867247,11 +867247,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -867404,11 +867404,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -867561,11 +867561,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -869917,9 +869917,9 @@
"Unclassified": "50.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.61%",
+ "Cognitive Load Exposure": "2.59%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "12.64%",
+ "Tech Debt Exposure": "12.32%",
"Testing Exposure": "1.15%",
"API Exposure": "5.51%",
"Concurrency Exposure": "0.0%",
@@ -869928,7 +869928,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.92%",
+ "Documentation Exposure": "10.8%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -870122,12 +870122,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.026
+ "Raw Cognitive Density": 0.025
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.21%",
+ "Cognitive Load Exposure": "5.19%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "25.29%",
+ "Tech Debt Exposure": "24.63%",
"Testing Exposure": "2.3%",
"API Exposure": "11.01%",
"Concurrency Exposure": "0.0%",
@@ -870136,7 +870136,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.84%",
+ "Documentation Exposure": "21.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -870276,9 +870276,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "31.16%",
- "Error & Exception Exposure": "28.53%",
- "Tech Debt Exposure": "22.54%",
+ "Cognitive Load Exposure": "31.04%",
+ "Error & Exception Exposure": "29.82%",
+ "Tech Debt Exposure": "19.97%",
"Testing Exposure": "2.32%",
"API Exposure": "0.82%",
"Concurrency Exposure": "0.0%",
@@ -870287,7 +870287,7 @@
"Specification Exposure": "33.33%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "6.41%",
+ "Documentation Exposure": "5.21%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -870324,13 +870324,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.415
+ "Raw Cognitive Density": 1.402
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.47%",
- "Error & Exception Exposure": "85.59%",
- "Tech Debt Exposure": "67.63%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "93.13%",
+ "Error & Exception Exposure": "89.47%",
+ "Tech Debt Exposure": "59.91%",
+ "Testing Exposure": "2.36%",
"API Exposure": "2.47%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -870338,7 +870338,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.24%",
+ "Documentation Exposure": "15.63%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -870837,8 +870837,8 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.47%",
- "Error & Exception Exposure": "44.76%",
+ "Cognitive Load Exposure": "2.14%",
+ "Error & Exception Exposure": "44.93%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "1.84%",
"API Exposure": "0.0%",
@@ -871203,7 +871203,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "87.06%",
+ "Error & Exception Exposure": "91.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -871387,11 +871387,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -871548,7 +871548,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -871678,12 +871678,12 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.13%",
- "Tech Debt Exposure": "77.95%",
+ "Error & Exception Exposure": "79.56%",
+ "Tech Debt Exposure": "68.06%",
"Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "44.28%",
+ "State Flux Exposure": "42.08%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "90.0%",
"Instability Exposure": "50.0%",
@@ -871729,12 +871729,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.93%",
- "Tech Debt Exposure": "69.19%",
+ "Error & Exception Exposure": "72.2%",
+ "Tech Debt Exposure": "51.84%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "28.42%",
+ "State Flux Exposure": "26.05%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -871915,12 +871915,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "75.66%",
- "Tech Debt Exposure": "85.14%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "75.96%",
+ "Tech Debt Exposure": "69.04%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "35.65%",
+ "State Flux Exposure": "32.95%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -872099,9 +872099,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -872272,12 +872272,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -872429,12 +872429,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.12%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -872599,12 +872599,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.3%",
- "Tech Debt Exposure": "66.13%",
+ "Error & Exception Exposure": "71.57%",
+ "Tech Debt Exposure": "49.12%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "27.42%",
+ "State Flux Exposure": "25.1%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -872785,12 +872785,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.55%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -872968,12 +872968,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "92.01%",
- "Tech Debt Exposure": "95.11%",
- "Testing Exposure": "2.43%",
+ "Error & Exception Exposure": "95.49%",
+ "Tech Debt Exposure": "92.04%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "49.58%",
+ "State Flux Exposure": "46.59%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -873201,12 +873201,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "95.18%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.45%",
+ "Error & Exception Exposure": "97.34%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -873411,12 +873411,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "96.67%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.48%",
+ "Error & Exception Exposure": "98.39%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "72.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -873606,12 +873606,12 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "21.82%",
- "Tech Debt Exposure": "50.27%",
+ "Error & Exception Exposure": "21.38%",
+ "Tech Debt Exposure": "42.76%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "10.82%",
- "State Flux Exposure": "8.42%",
+ "Concurrency Exposure": "10.36%",
+ "State Flux Exposure": "7.78%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -873815,7 +873815,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -873987,7 +873987,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -874630,7 +874630,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -874955,7 +874955,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -875122,12 +875122,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -875290,12 +875290,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -875458,9 +875458,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.05%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "78.05%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -875653,10 +875653,10 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "36.97%",
+ "Concurrency Exposure": "33.33%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -875824,10 +875824,10 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "36.97%",
+ "Concurrency Exposure": "33.33%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -875994,12 +875994,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "99.18%",
- "State Flux Exposure": "37.75%",
+ "Concurrency Exposure": "99.04%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -876165,12 +876165,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -876313,13 +876313,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "4.83%",
- "Error & Exception Exposure": "17.39%",
- "Tech Debt Exposure": "45.98%",
- "Testing Exposure": "2.31%",
+ "Cognitive Load Exposure": "3.96%",
+ "Error & Exception Exposure": "13.48%",
+ "Tech Debt Exposure": "42.89%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "12.32%",
+ "State Flux Exposure": "10.59%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "50.0%",
"Instability Exposure": "50.0%",
@@ -876832,16 +876832,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.149
+ "Raw Cognitive Density": 0.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.3%",
- "Error & Exception Exposure": "50.27%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "7.16%",
+ "Error & Exception Exposure": "36.61%",
+ "Tech Debt Exposure": "99.97%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "27.11%",
+ "State Flux Exposure": "22.64%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -877140,13 +877140,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.136
+ "Raw Cognitive Density": 0.068
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.09%",
+ "Cognitive Load Exposure": "5.09%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.1%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "95.3%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -877328,16 +877328,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.261
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.59%",
- "Error & Exception Exposure": "54.05%",
- "Tech Debt Exposure": "76.8%",
+ "Cognitive Load Exposure": "11.54%",
+ "Error & Exception Exposure": "44.28%",
+ "Tech Debt Exposure": "62.08%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "46.8%",
+ "State Flux Exposure": "40.9%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -877504,7 +877504,7 @@
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "70.36%",
+ "Tech Debt Exposure": "63.25%",
"Testing Exposure": "2.34%",
"API Exposure": "1.74%",
"Concurrency Exposure": "0.0%",
@@ -877513,7 +877513,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.1%",
+ "Documentation Exposure": "7.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -877555,7 +877555,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "62.25%",
+ "Tech Debt Exposure": "59.07%",
"Testing Exposure": "2.35%",
"API Exposure": "3.46%",
"Concurrency Exposure": "0.0%",
@@ -877853,7 +877853,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.61%",
+ "Tech Debt Exposure": "98.86%",
"Testing Exposure": "2.3%",
"API Exposure": "4.56%",
"Concurrency Exposure": "0.0%",
@@ -877862,7 +877862,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.65%",
+ "Documentation Exposure": "15.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -878021,7 +878021,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -878189,8 +878189,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.36%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -878367,8 +878367,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "13.77%",
- "Testing Exposure": "2.37%",
+ "Tech Debt Exposure": "12.11%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.71%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -878686,10 +878686,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "19.02%",
- "Tech Debt Exposure": "49.1%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "19.21%",
+ "Tech Debt Exposure": "48.08%",
+ "Testing Exposure": "2.49%",
"API Exposure": "3.02%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -878697,7 +878697,7 @@
"Specification Exposure": "75.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.34%",
+ "Documentation Exposure": "30.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -878891,12 +878891,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "11.51%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "97.07%",
"Testing Exposure": "2.63%",
"API Exposure": "3.46%",
"Concurrency Exposure": "0.0%",
@@ -878905,7 +878905,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -879089,10 +879089,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.237
+ "Raw Cognitive Density": 0.225
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.41%",
+ "Cognitive Load Exposure": "10.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.64%",
@@ -879103,7 +879103,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.43%",
+ "Documentation Exposure": "31.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -879267,13 +879267,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.41%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -879281,7 +879281,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.91%",
+ "Documentation Exposure": "50.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -880282,9 +880282,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "45.48%",
+ "Error & Exception Exposure": "35.53%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "1.91%",
+ "Testing Exposure": "1.89%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -880490,9 +880490,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "40.44%",
+ "Error & Exception Exposure": "21.58%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -880728,9 +880728,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "45.92%",
+ "Error & Exception Exposure": "27.8%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -880966,9 +880966,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.85%",
+ "Error & Exception Exposure": "67.74%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -881274,9 +881274,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.21%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -881485,8 +881485,8 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.32%",
- "Error & Exception Exposure": "8.37%",
+ "Cognitive Load Exposure": "2.0%",
+ "Error & Exception Exposure": "8.07%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.01%",
"API Exposure": "0.0%",
@@ -882015,10 +882015,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -882172,11 +882172,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "66.98%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -882776,18 +882776,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "68.79%",
- "Error & Exception Exposure": "66.63%",
- "Tech Debt Exposure": "92.34%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "65.53%",
+ "Error & Exception Exposure": "61.46%",
+ "Tech Debt Exposure": "84.51%",
+ "Testing Exposure": "2.41%",
"API Exposure": "1.45%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "90.58%",
+ "State Flux Exposure": "89.12%",
"Commented Logic Exposure": "3.86%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.52%",
+ "Documentation Exposure": "5.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -882824,21 +882824,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.836
+ "Raw Cognitive Density": 0.791
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.5%",
- "Error & Exception Exposure": "64.09%",
- "Tech Debt Exposure": "97.9%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "54.1%",
+ "Error & Exception Exposure": "56.85%",
+ "Tech Debt Exposure": "93.84%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.9%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "81.49%",
+ "State Flux Exposure": "78.62%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.04%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -883012,16 +883012,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.082
+ "Raw Cognitive Density": 1.052
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.08%",
- "Error & Exception Exposure": "69.16%",
- "Tech Debt Exposure": "86.78%",
- "Testing Exposure": "2.46%",
+ "Cognitive Load Exposure": "76.96%",
+ "Error & Exception Exposure": "66.08%",
+ "Tech Debt Exposure": "75.18%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.68%",
+ "State Flux Exposure": "99.61%",
"Commented Logic Exposure": "7.73%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -883176,9 +883176,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.76%",
- "Error & Exception Exposure": "30.73%",
- "Tech Debt Exposure": "13.96%",
+ "Cognitive Load Exposure": "7.21%",
+ "Error & Exception Exposure": "31.88%",
+ "Tech Debt Exposure": "13.76%",
"Testing Exposure": "2.39%",
"API Exposure": "4.12%",
"Concurrency Exposure": "0.0%",
@@ -883187,7 +883187,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.43%",
+ "Documentation Exposure": "31.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -883224,12 +883224,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.173
+ "Raw Cognitive Density": 0.154
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.05%",
- "Error & Exception Exposure": "69.26%",
- "Tech Debt Exposure": "97.7%",
+ "Cognitive Load Exposure": "8.44%",
+ "Error & Exception Exposure": "71.44%",
+ "Tech Debt Exposure": "96.34%",
"Testing Exposure": "2.53%",
"API Exposure": "3.08%",
"Concurrency Exposure": "0.0%",
@@ -883238,7 +883238,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "34.68%",
+ "Documentation Exposure": "21.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -883442,10 +883442,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -883456,7 +883456,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "52.41%",
+ "Documentation Exposure": "29.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -883610,11 +883610,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.46%",
"API Exposure": "3.04%",
@@ -883624,7 +883624,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.8%",
+ "Documentation Exposure": "14.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -883808,11 +883808,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "3.53%",
@@ -883822,7 +883822,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.37%",
+ "Documentation Exposure": "34.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -883986,10 +883986,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.37%",
@@ -884000,7 +884000,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "31.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -884154,10 +884154,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.37%",
@@ -884168,7 +884168,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.91%",
+ "Documentation Exposure": "50.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -884332,10 +884332,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
@@ -884346,7 +884346,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.88%",
+ "Documentation Exposure": "39.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -884476,10 +884476,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "14.33%",
+ "Cognitive Load Exposure": "11.44%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -884524,13 +884524,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -884692,13 +884692,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "10.72%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -884860,13 +884860,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.288
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.39%",
+ "Cognitive Load Exposure": "13.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -886482,10 +886482,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -886530,13 +886530,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -886698,13 +886698,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -886866,13 +886866,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887034,13 +887034,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887202,13 +887202,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887370,13 +887370,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887538,13 +887538,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887706,13 +887706,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887874,13 +887874,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888042,13 +888042,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888210,13 +888210,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888378,13 +888378,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888546,13 +888546,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888714,13 +888714,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888882,13 +888882,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -889050,13 +889050,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -889689,18 +889689,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.39%",
- "Error & Exception Exposure": "27.49%",
- "Tech Debt Exposure": "10.87%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "3.54%",
+ "Error & Exception Exposure": "28.94%",
+ "Tech Debt Exposure": "13.69%",
+ "Testing Exposure": "2.36%",
"API Exposure": "3.24%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "31.44%",
+ "State Flux Exposure": "32.13%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.04%",
+ "Documentation Exposure": "17.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -889752,7 +889752,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.92%",
+ "Documentation Exposure": "13.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -889904,21 +889904,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.232
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.78%",
- "Error & Exception Exposure": "54.98%",
- "Tech Debt Exposure": "21.75%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "7.09%",
+ "Error & Exception Exposure": "57.88%",
+ "Tech Debt Exposure": "27.38%",
+ "Testing Exposure": "2.42%",
"API Exposure": "2.95%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "62.87%",
+ "State Flux Exposure": "64.26%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.16%",
+ "Documentation Exposure": "21.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -890909,10 +890909,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
- "Error & Exception Exposure": "72.4%",
- "Tech Debt Exposure": "73.11%",
- "Testing Exposure": "2.78%",
+ "Cognitive Load Exposure": "19.78%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.71%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -890957,13 +890957,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.4
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
- "Error & Exception Exposure": "72.4%",
- "Tech Debt Exposure": "73.11%",
- "Testing Exposure": "2.78%",
+ "Cognitive Load Exposure": "19.78%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.71%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -894648,8 +894648,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "1.16%",
- "Error & Exception Exposure": "11.14%",
+ "Cognitive Load Exposure": "1.06%",
+ "Error & Exception Exposure": "10.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "4.34%",
@@ -895016,11 +895016,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.054
+ "Raw Cognitive Density": 0.029
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.82%",
- "Error & Exception Exposure": "55.7%",
+ "Cognitive Load Exposure": "5.3%",
+ "Error & Exception Exposure": "50.67%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "2.32%",
@@ -895190,7 +895190,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.31%",
+ "Testing Exposure": "2.3%",
"API Exposure": "19.36%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -895516,10 +895516,10 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "4.1%",
- "Error & Exception Exposure": "22.39%",
- "Tech Debt Exposure": "9.25%",
- "Testing Exposure": "1.9%",
+ "Cognitive Load Exposure": "3.37%",
+ "Error & Exception Exposure": "19.87%",
+ "Tech Debt Exposure": "5.44%",
+ "Testing Exposure": "1.88%",
"API Exposure": "5.94%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -895527,7 +895527,7 @@
"Specification Exposure": "60.0%",
"Instability Exposure": "40.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.12%",
+ "Documentation Exposure": "24.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -895878,13 +895878,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.074
+ "Raw Cognitive Density": 0.048
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.28%",
- "Error & Exception Exposure": "56.77%",
- "Tech Debt Exposure": "21.36%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "5.69%",
+ "Error & Exception Exposure": "50.72%",
+ "Tech Debt Exposure": "12.26%",
+ "Testing Exposure": "2.37%",
"API Exposure": "14.41%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -895892,7 +895892,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.89%",
+ "Documentation Exposure": "99.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -896096,13 +896096,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.04
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "5.52%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.36%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -896264,13 +896264,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.071
+ "Raw Cognitive Density": 0.046
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.21%",
- "Error & Exception Exposure": "55.17%",
- "Tech Debt Exposure": "24.9%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "5.64%",
+ "Error & Exception Exposure": "48.62%",
+ "Tech Debt Exposure": "14.95%",
+ "Testing Exposure": "2.36%",
"API Exposure": "8.22%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -896278,7 +896278,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.79%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -896449,8 +896449,8 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "1.59%",
- "Error & Exception Exposure": "25.9%",
+ "Cognitive Load Exposure": "1.04%",
+ "Error & Exception Exposure": "20.04%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "1.84%",
"API Exposure": "5.05%",
@@ -896460,7 +896460,7 @@
"Specification Exposure": "40.0%",
"Instability Exposure": "40.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "10.29%",
+ "Documentation Exposure": "9.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -896819,7 +896819,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.54%",
+ "Error & Exception Exposure": "55.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "5.59%",
@@ -897134,13 +897134,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.191
+ "Raw Cognitive Density": 0.118
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.96%",
- "Error & Exception Exposure": "59.94%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "44.23%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "9.07%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -897148,7 +897148,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.69%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -897282,13 +897282,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "9.55%",
- "Error & Exception Exposure": "57.23%",
- "Tech Debt Exposure": "37.75%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "10.2%",
+ "Error & Exception Exposure": "61.37%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.43%",
"API Exposure": "3.26%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "91.68%",
+ "State Flux Exposure": "92.13%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -897330,16 +897330,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.55%",
- "Error & Exception Exposure": "57.23%",
- "Tech Debt Exposure": "37.75%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "10.2%",
+ "Error & Exception Exposure": "61.37%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.43%",
"API Exposure": "3.26%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "91.68%",
+ "State Flux Exposure": "92.13%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -898009,7 +898009,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "20.03%",
+ "Error & Exception Exposure": "14.2%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "1.15%",
"API Exposure": "6.74%",
@@ -898019,7 +898019,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.21%",
+ "Documentation Exposure": "48.78%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -898217,7 +898217,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "40.06%",
+ "Error & Exception Exposure": "28.4%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "13.49%",
@@ -898227,7 +898227,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.41%",
+ "Documentation Exposure": "97.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -899206,9 +899206,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.06%",
- "Tech Debt Exposure": "60.43%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "71.72%",
+ "Tech Debt Exposure": "53.79%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -899257,7 +899257,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
@@ -899428,9 +899428,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.03%",
- "Tech Debt Exposure": "93.22%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "61.44%",
+ "Tech Debt Exposure": "88.27%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -899628,8 +899628,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -901351,7 +901351,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "24.39%",
+ "Error & Exception Exposure": "23.33%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "1.56%",
"API Exposure": "0.0%",
@@ -901561,7 +901561,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -901737,9 +901737,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.16%",
+ "Error & Exception Exposure": "70.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -902270,9 +902270,9 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "1.02%",
+ "Cognitive Load Exposure": "0.82%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "8.33%",
+ "Tech Debt Exposure": "3.33%",
"Testing Exposure": "1.92%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -902475,13 +902475,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.067
+ "Raw Cognitive Density": 0.011
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.1%",
+ "Cognitive Load Exposure": "4.95%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "50.0%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "19.96%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -903599,12 +903599,12 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "35.55%",
- "Tech Debt Exposure": "44.04%",
+ "Error & Exception Exposure": "35.1%",
+ "Tech Debt Exposure": "36.55%",
"Testing Exposure": "1.16%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.51%",
+ "State Flux Exposure": "36.36%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
@@ -903650,12 +903650,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "70.21%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "72.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -904782,9 +904782,9 @@
"Static: Literature & Documentation": "25.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.39%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "22.02%",
+ "Tech Debt Exposure": "9.44%",
"Testing Exposure": "1.73%",
"API Exposure": "8.27%",
"Concurrency Exposure": "0.0%",
@@ -904793,7 +904793,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "37.5%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "70.39%",
+ "Documentation Exposure": "61.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -904987,10 +904987,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.141
+ "Raw Cognitive Density": 0.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.36%",
+ "Cognitive Load Exposure": "5.32%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -905001,7 +905001,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "96.86%",
+ "Documentation Exposure": "90.77%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -905144,13 +905144,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
+ "Cognitive Load Exposure": "16.25%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.32%",
"API Exposure": "8.07%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -905158,7 +905158,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.74%",
+ "Documentation Exposure": "57.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -905332,7 +905332,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.96%",
+ "Documentation Exposure": "99.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -905466,7 +905466,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.93%",
+ "Documentation Exposure": "8.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -905674,7 +905674,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.86%",
+ "Documentation Exposure": "17.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -905796,10 +905796,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "73.66%",
+ "Cognitive Load Exposure": "5.95%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -905844,13 +905844,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "73.66%",
+ "Cognitive Load Exposure": "5.95%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -906011,7 +906011,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -906062,7 +906062,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.31%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907108,7 +907108,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907159,7 +907159,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907308,9 +907308,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907359,9 +907359,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907499,9 +907499,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.73%",
- "Error & Exception Exposure": "75.61%",
- "Tech Debt Exposure": "32.37%",
+ "Cognitive Load Exposure": "3.25%",
+ "Error & Exception Exposure": "72.03%",
+ "Tech Debt Exposure": "25.64%",
"Testing Exposure": "2.31%",
"API Exposure": "0.67%",
"Concurrency Exposure": "0.0%",
@@ -907510,7 +907510,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "4.47%",
+ "Documentation Exposure": "3.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -907547,11 +907547,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.012
+ "Raw Cognitive Density": 0.005
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.93%",
- "Error & Exception Exposure": "81.36%",
+ "Cognitive Load Exposure": "4.78%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "2.02%",
@@ -907561,7 +907561,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.4%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -907735,13 +907735,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.074
+ "Raw Cognitive Density": 0.012
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.28%",
- "Error & Exception Exposure": "76.91%",
- "Tech Debt Exposure": "97.12%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "4.97%",
+ "Error & Exception Exposure": "73.3%",
+ "Tech Debt Exposure": "76.92%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907907,7 +907907,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.57%",
+ "Error & Exception Exposure": "55.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -908036,9 +908036,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "21.79%",
+ "Cognitive Load Exposure": "18.58%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "29.36%",
+ "Tech Debt Exposure": "20.75%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -908084,13 +908084,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.95%",
+ "Cognitive Load Exposure": "34.93%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -908252,10 +908252,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.33%",
+ "Cognitive Load Exposure": "5.06%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -908409,10 +908409,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.08%",
+ "Cognitive Load Exposure": "15.76%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -909629,18 +909629,18 @@
"Static: Literature & Documentation": "14.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.57%",
- "Error & Exception Exposure": "21.03%",
- "Tech Debt Exposure": "9.74%",
+ "Cognitive Load Exposure": "1.73%",
+ "Error & Exception Exposure": "18.24%",
+ "Tech Debt Exposure": "3.7%",
"Testing Exposure": "1.98%",
"API Exposure": "4.65%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "11.41%",
+ "State Flux Exposure": "10.66%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "57.14%",
"Instability Exposure": "42.86%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "33.7%",
+ "Documentation Exposure": "29.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -910470,7 +910470,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.54%",
+ "Error & Exception Exposure": "55.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "9.93%",
@@ -910480,7 +910480,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.04%",
+ "Documentation Exposure": "91.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -910626,21 +910626,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.399
+ "Raw Cognitive Density": 0.299
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.98%",
- "Error & Exception Exposure": "77.66%",
- "Tech Debt Exposure": "68.15%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "12.08%",
+ "Error & Exception Exposure": "71.71%",
+ "Tech Debt Exposure": "25.91%",
+ "Testing Exposure": "2.36%",
"API Exposure": "3.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "79.87%",
+ "State Flux Exposure": "74.62%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.89%",
+ "Documentation Exposure": "15.94%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -910804,18 +910804,18 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "15.12%",
- "Error & Exception Exposure": "19.81%",
+ "Cognitive Load Exposure": "13.33%",
+ "Error & Exception Exposure": "15.79%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "14.87%",
+ "Testing Exposure": "1.94%",
"API Exposure": "4.35%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "10.26%",
+ "State Flux Exposure": "9.05%",
"Commented Logic Exposure": "2.22%",
"Specification Exposure": "16.67%",
"Instability Exposure": "41.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.8%",
+ "Documentation Exposure": "24.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -911023,7 +911023,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.24%",
+ "Documentation Exposure": "25.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -911168,21 +911168,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.486
+ "Raw Cognitive Density": 0.414
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.58%",
- "Error & Exception Exposure": "69.25%",
+ "Cognitive Load Exposure": "17.75%",
+ "Error & Exception Exposure": "59.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "5.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "61.57%",
+ "State Flux Exposure": "54.28%",
"Commented Logic Exposure": "13.3%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.78%",
+ "Documentation Exposure": "22.12%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -911327,13 +911327,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.964
+ "Raw Cognitive Density": 0.928
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.16%",
- "Error & Exception Exposure": "49.6%",
+ "Cognitive Load Exposure": "62.26%",
+ "Error & Exception Exposure": "35.18%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -911569,7 +911569,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.24%",
+ "Documentation Exposure": "25.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -911728,7 +911728,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "92.53%",
+ "Documentation Exposure": "70.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -911855,10 +911855,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "4.64%",
+ "Cognitive Load Exposure": "3.21%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "44.04%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "18.88%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -911903,13 +911903,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -912204,8 +912204,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.85%",
- "Error & Exception Exposure": "30.37%",
+ "Cognitive Load Exposure": "2.5%",
+ "Error & Exception Exposure": "27.72%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -912252,13 +912252,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.048
+ "Raw Cognitive Density": 0.014
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.7%",
- "Error & Exception Exposure": "60.74%",
+ "Cognitive Load Exposure": "5.0%",
+ "Error & Exception Exposure": "55.43%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -912564,9 +912564,9 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.62%",
- "Error & Exception Exposure": "27.82%",
- "Tech Debt Exposure": "35.23%",
+ "Cognitive Load Exposure": "1.64%",
+ "Error & Exception Exposure": "22.39%",
+ "Tech Debt Exposure": "15.1%",
"Testing Exposure": "1.85%",
"API Exposure": "5.8%",
"Concurrency Exposure": "0.0%",
@@ -912575,7 +912575,7 @@
"Specification Exposure": "40.0%",
"Instability Exposure": "40.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "57.99%",
+ "Documentation Exposure": "42.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -912769,13 +912769,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.02
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.55%",
- "Error & Exception Exposure": "69.54%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "4.09%",
+ "Error & Exception Exposure": "55.97%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.32%",
"API Exposure": "3.33%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -912783,7 +912783,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.15%",
+ "Documentation Exposure": "16.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -912951,7 +912951,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "97.81%",
+ "Documentation Exposure": "90.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -913101,13 +913101,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.02
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.55%",
- "Error & Exception Exposure": "69.54%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "4.09%",
+ "Error & Exception Exposure": "55.97%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.32%",
"API Exposure": "3.33%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -913115,7 +913115,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.15%",
+ "Documentation Exposure": "16.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -913283,7 +913283,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "97.81%",
+ "Documentation Exposure": "90.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -923729,7 +923729,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "28.67%",
+ "Error & Exception Exposure": "21.8%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -923937,7 +923937,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "57.34%",
+ "Error & Exception Exposure": "43.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -924115,7 +924115,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "57.34%",
+ "Error & Exception Exposure": "43.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -924433,8 +924433,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "1.1%",
- "Error & Exception Exposure": "21.78%",
+ "Cognitive Load Exposure": "0.97%",
+ "Error & Exception Exposure": "20.51%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "5.67%",
@@ -924444,7 +924444,7 @@
"Specification Exposure": "20.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.96%",
+ "Documentation Exposure": "29.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -924495,7 +924495,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.76%",
+ "Documentation Exposure": "12.51%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -924656,7 +924656,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "90.35%",
+ "Documentation Exposure": "88.13%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -924969,7 +924969,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "52.15%",
+ "Error & Exception Exposure": "50.59%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "9.57%",
@@ -924979,7 +924979,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.51%",
+ "Documentation Exposure": "32.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -925133,11 +925133,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.047
+ "Raw Cognitive Density": 0.021
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.49%",
- "Error & Exception Exposure": "56.77%",
+ "Cognitive Load Exposure": "4.87%",
+ "Error & Exception Exposure": "51.98%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "4.01%",
@@ -925147,7 +925147,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.18%",
+ "Documentation Exposure": "15.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -925271,18 +925271,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "12.83%",
- "Error & Exception Exposure": "71.02%",
+ "Cognitive Load Exposure": "10.76%",
+ "Error & Exception Exposure": "68.1%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.34%",
"API Exposure": "5.67%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "61.5%",
+ "State Flux Exposure": "55.89%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.86%",
+ "Documentation Exposure": "25.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -925319,21 +925319,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.376
+ "Raw Cognitive Density": 0.33
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.3%",
- "Error & Exception Exposure": "74.83%",
+ "Cognitive Load Exposure": "14.28%",
+ "Error & Exception Exposure": "72.46%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.33%",
"API Exposure": "5.32%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "90.92%",
+ "State Flux Exposure": "88.12%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.55%",
+ "Documentation Exposure": "24.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -925509,21 +925509,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.185
+ "Raw Cognitive Density": 0.146
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.0%",
- "Error & Exception Exposure": "64.73%",
+ "Cognitive Load Exposure": "7.57%",
+ "Error & Exception Exposure": "59.68%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "5.32%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "29.54%",
+ "State Flux Exposure": "23.7%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.05%",
+ "Documentation Exposure": "21.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -925699,21 +925699,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.322
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.51%",
- "Error & Exception Exposure": "74.72%",
+ "Cognitive Load Exposure": "12.1%",
+ "Error & Exception Exposure": "72.93%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "5.32%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "83.6%",
+ "State Flux Exposure": "79.06%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.95%",
+ "Documentation Exposure": "23.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -925889,21 +925889,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.292
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.27%",
- "Error & Exception Exposure": "72.37%",
+ "Cognitive Load Exposure": "11.53%",
+ "Error & Exception Exposure": "71.59%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.37%",
"API Exposure": "7.11%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "49.45%",
+ "State Flux Exposure": "42.02%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.99%",
+ "Documentation Exposure": "33.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -926119,21 +926119,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.217
+ "Raw Cognitive Density": 0.174
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.06%",
- "Error & Exception Exposure": "68.45%",
+ "Cognitive Load Exposure": "8.29%",
+ "Error & Exception Exposure": "63.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "5.27%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "54.01%",
+ "State Flux Exposure": "46.53%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.78%",
+ "Documentation Exposure": "23.41%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -926306,7 +926306,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.37%",
+ "Documentation Exposure": "8.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -926514,7 +926514,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.47%",
+ "Documentation Exposure": "15.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -926671,7 +926671,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.39%",
+ "Documentation Exposure": "28.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -927104,13 +927104,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.25%",
- "Error & Exception Exposure": "11.63%",
- "Tech Debt Exposure": "14.68%",
+ "Cognitive Load Exposure": "2.26%",
+ "Error & Exception Exposure": "9.4%",
+ "Tech Debt Exposure": "6.29%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "6.29%",
+ "State Flux Exposure": "5.17%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "16.67%",
"Instability Exposure": "50.0%",
@@ -927309,13 +927309,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.04
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "5.52%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.37%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -927801,16 +927801,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "56.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "31.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -928442,7 +928442,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.88%",
+ "Documentation Exposure": "22.05%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -928493,7 +928493,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.86%",
+ "Documentation Exposure": "17.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -928650,7 +928650,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.91%",
+ "Documentation Exposure": "26.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -928961,7 +928961,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.24%",
+ "Documentation Exposure": "25.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -929012,7 +929012,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.24%",
+ "Documentation Exposure": "25.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json
index 2e22d0c7e..623b5505c 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-03T23:51:37.920776+00:00",
- "Total Scan Duration": "46.72 seconds"
+ "Analysis ISO Timestamp": "2026-09-04T15:47:04.820273+00:00",
+ "Total Scan Duration": "45.29 seconds"
},
"Source Control Footprint (Immutable Anchor)": {
"Active Branch": "HEAD",
@@ -236,10 +236,10 @@
}
},
"health": {
- "avg_cognitive_load": 25.039,
- "avg_safety_score": 45.641,
- "avg_tech_debt": 31.075,
- "avg_documentation": 12.205
+ "avg_cognitive_load": 24.193,
+ "avg_safety_score": 45.662,
+ "avg_tech_debt": 28.878,
+ "avg_documentation": 10.281
},
"composition": {
"markdown": {
@@ -584,18 +584,18 @@
"file_count": 12,
"total_mass": 8797.66,
"avg_exposures": {
- "cognitive_load": 49.74,
- "safety_score": 71.79,
- "tech_debt": 41.65,
+ "cognitive_load": 39.94,
+ "safety_score": 75.4,
+ "tech_debt": 40.98,
"verification": 53.75,
"api_exposure": 0.41,
- "concurrency": 40.58,
- "state_flux": 83.27,
+ "concurrency": 39.9,
+ "state_flux": 83.26,
"dead_code": 2.97,
"spec_match": 72.77,
"stability": 41.67,
"churn": 0.0,
- "documentation": 21.52,
+ "documentation": 14.94,
"secrets_risk": 0.0
}
},
@@ -622,13 +622,13 @@
"file_count": 8,
"total_mass": 220.14,
"avg_exposures": {
- "cognitive_load": 8.65,
- "safety_score": 26.39,
- "tech_debt": 48.83,
- "verification": 2.04,
+ "cognitive_load": 6.58,
+ "safety_score": 19.29,
+ "tech_debt": 47.65,
+ "verification": 2.03,
"api_exposure": 0.0,
- "concurrency": 12.46,
- "state_flux": 25.24,
+ "concurrency": 12.45,
+ "state_flux": 23.63,
"dead_code": 0.0,
"spec_match": 50.0,
"stability": 43.75,
@@ -660,18 +660,18 @@
"file_count": 23,
"total_mass": 275.06,
"avg_exposures": {
- "cognitive_load": 7.81,
- "safety_score": 63.23,
- "tech_debt": 26.46,
+ "cognitive_load": 7.28,
+ "safety_score": 66.3,
+ "tech_debt": 24.64,
"verification": 2.28,
"api_exposure": 0.15,
"concurrency": 0.0,
- "state_flux": 11.58,
+ "state_flux": 11.44,
"dead_code": 4.26,
"spec_match": 52.17,
"stability": 47.83,
"churn": 0.0,
- "documentation": 2.17,
+ "documentation": 1.87,
"secrets_risk": 0.0
}
},
@@ -736,8 +736,8 @@
"file_count": 2,
"total_mass": 10009.46,
"avg_exposures": {
- "cognitive_load": 45.78,
- "safety_score": 49.78,
+ "cognitive_load": 45.44,
+ "safety_score": 49.97,
"tech_debt": 4.01,
"verification": 40.0,
"api_exposure": 7.22,
@@ -747,7 +747,7 @@
"spec_match": 50.0,
"stability": 25.0,
"churn": 0.0,
- "documentation": 49.69,
+ "documentation": 49.65,
"secrets_risk": 0.0
}
},
@@ -755,13 +755,13 @@
"file_count": 69,
"total_mass": 866.13,
"avg_exposures": {
- "cognitive_load": 10.93,
- "safety_score": 44.65,
- "tech_debt": 49.65,
+ "cognitive_load": 9.43,
+ "safety_score": 42.98,
+ "tech_debt": 42.47,
"verification": 1.74,
"api_exposure": 0.71,
"concurrency": 0.0,
- "state_flux": 35.32,
+ "state_flux": 34.22,
"dead_code": 3.59,
"spec_match": 79.71,
"stability": 49.28,
@@ -774,18 +774,18 @@
"file_count": 151,
"total_mass": 65117.06,
"avg_exposures": {
- "cognitive_load": 66.07,
- "safety_score": 89.18,
- "tech_debt": 99.18,
- "verification": 57.91,
+ "cognitive_load": 65.33,
+ "safety_score": 89.84,
+ "tech_debt": 98.84,
+ "verification": 57.39,
"api_exposure": 3.56,
"concurrency": 0.0,
- "state_flux": 83.57,
+ "state_flux": 83.07,
"dead_code": 3.05,
"spec_match": 99.34,
"stability": 49.67,
"churn": 0.0,
- "documentation": 13.93,
+ "documentation": 12.23,
"secrets_risk": 0.0
}
},
@@ -793,13 +793,13 @@
"file_count": 45,
"total_mass": 3941.06,
"avg_exposures": {
- "cognitive_load": 61.93,
- "safety_score": 57.62,
- "tech_debt": 45.17,
- "verification": 7.22,
+ "cognitive_load": 61.35,
+ "safety_score": 59.13,
+ "tech_debt": 38.29,
+ "verification": 5.49,
"api_exposure": 1.48,
- "concurrency": 3.48,
- "state_flux": 67.08,
+ "concurrency": 3.23,
+ "state_flux": 67.02,
"dead_code": 4.54,
"spec_match": 68.89,
"stability": 48.89,
@@ -812,10 +812,10 @@
"file_count": 12,
"total_mass": 7618.44,
"avg_exposures": {
- "cognitive_load": 33.37,
- "safety_score": 43.64,
- "tech_debt": 33.68,
- "verification": 40.43,
+ "cognitive_load": 32.61,
+ "safety_score": 45.9,
+ "tech_debt": 32.23,
+ "verification": 40.42,
"api_exposure": 2.51,
"concurrency": 3.79,
"state_flux": 55.64,
@@ -823,7 +823,7 @@
"spec_match": 66.67,
"stability": 33.33,
"churn": 0.0,
- "documentation": 12.12,
+ "documentation": 11.17,
"secrets_risk": 0.0
}
},
@@ -850,8 +850,8 @@
"file_count": 16,
"total_mass": 36981.52,
"avg_exposures": {
- "cognitive_load": 59.92,
- "safety_score": 73.56,
+ "cognitive_load": 59.49,
+ "safety_score": 76.73,
"tech_debt": 22.49,
"verification": 55.29,
"api_exposure": 5.41,
@@ -861,7 +861,7 @@
"spec_match": 81.25,
"stability": 40.62,
"churn": 0.0,
- "documentation": 22.95,
+ "documentation": 22.22,
"secrets_risk": 0.0
}
},
@@ -907,10 +907,10 @@
"file_count": 5,
"total_mass": 23.27,
"avg_exposures": {
- "cognitive_load": 4.1,
- "safety_score": 22.39,
- "tech_debt": 9.25,
- "verification": 1.9,
+ "cognitive_load": 3.37,
+ "safety_score": 19.87,
+ "tech_debt": 5.44,
+ "verification": 1.88,
"api_exposure": 5.94,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -918,7 +918,7 @@
"spec_match": 60.0,
"stability": 40.0,
"churn": 0.0,
- "documentation": 26.12,
+ "documentation": 24.67,
"secrets_risk": 0.0
}
},
@@ -1040,13 +1040,13 @@
"file_count": 11,
"total_mass": 933.96,
"avg_exposures": {
- "cognitive_load": 11.3,
- "safety_score": 15.97,
- "tech_debt": 7.07,
- "verification": 15.62,
+ "cognitive_load": 9.8,
+ "safety_score": 14.63,
+ "tech_debt": 3.91,
+ "verification": 15.61,
"api_exposure": 0.4,
"concurrency": 0.0,
- "state_flux": 19.21,
+ "state_flux": 18.06,
"dead_code": 0.48,
"spec_match": 36.36,
"stability": 31.82,
@@ -1097,8 +1097,8 @@
"file_count": 5,
"total_mass": 22.59,
"avg_exposures": {
- "cognitive_load": 1.59,
- "safety_score": 25.9,
+ "cognitive_load": 1.04,
+ "safety_score": 20.04,
"tech_debt": 0.0,
"verification": 1.84,
"api_exposure": 5.05,
@@ -1108,7 +1108,7 @@
"spec_match": 40.0,
"stability": 40.0,
"churn": 0.0,
- "documentation": 10.29,
+ "documentation": 9.54,
"secrets_risk": 0.0
}
},
@@ -1155,12 +1155,12 @@
"total_mass": 261.84,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 50.02,
- "tech_debt": 47.82,
- "verification": 2.29,
+ "safety_score": 50.57,
+ "tech_debt": 41.75,
+ "verification": 2.28,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 0.45,
+ "state_flux": 0.4,
"dead_code": 0.0,
"spec_match": 96.67,
"stability": 48.33,
@@ -1249,13 +1249,13 @@
"file_count": 26,
"total_mass": 1344.84,
"avg_exposures": {
- "cognitive_load": 29.21,
- "safety_score": 53.16,
- "tech_debt": 32.19,
- "verification": 5.2,
+ "cognitive_load": 27.51,
+ "safety_score": 50.07,
+ "tech_debt": 27.87,
+ "verification": 5.19,
"api_exposure": 1.78,
"concurrency": 0.0,
- "state_flux": 74.09,
+ "state_flux": 73.59,
"dead_code": 1.12,
"spec_match": 50.0,
"stability": 46.15,
@@ -1268,18 +1268,18 @@
"file_count": 21,
"total_mass": 711.96,
"avg_exposures": {
- "cognitive_load": 42.46,
- "safety_score": 66.93,
- "tech_debt": 4.69,
- "verification": 5.95,
+ "cognitive_load": 40.55,
+ "safety_score": 67.27,
+ "tech_debt": 4.62,
+ "verification": 5.93,
"api_exposure": 0.88,
"concurrency": 4.76,
- "state_flux": 73.32,
+ "state_flux": 72.83,
"dead_code": 2.68,
"spec_match": 42.86,
"stability": 45.24,
"churn": 0.0,
- "documentation": 22.75,
+ "documentation": 17.25,
"secrets_risk": 0.0
}
},
@@ -1344,13 +1344,13 @@
"file_count": 7,
"total_mass": 4928.24,
"avg_exposures": {
- "cognitive_load": 60.13,
- "safety_score": 79.18,
- "tech_debt": 4.77,
- "verification": 57.49,
+ "cognitive_load": 59.05,
+ "safety_score": 79.69,
+ "tech_debt": 4.31,
+ "verification": 46.43,
"api_exposure": 0.0,
- "concurrency": 12.31,
- "state_flux": 84.81,
+ "concurrency": 11.86,
+ "state_flux": 84.65,
"dead_code": 9.02,
"spec_match": 78.57,
"stability": 42.86,
@@ -1439,18 +1439,18 @@
"file_count": 6,
"total_mass": 19252.98,
"avg_exposures": {
- "cognitive_load": 47.43,
- "safety_score": 59.68,
- "tech_debt": 19.79,
+ "cognitive_load": 45.34,
+ "safety_score": 60.47,
+ "tech_debt": 19.52,
"verification": 40.77,
"api_exposure": 0.05,
- "concurrency": 5.89,
- "state_flux": 56.17,
+ "concurrency": 5.15,
+ "state_flux": 55.71,
"dead_code": 2.82,
"spec_match": 50.0,
"stability": 41.67,
"churn": 0.0,
- "documentation": 6.01,
+ "documentation": 5.96,
"secrets_risk": 0.0
}
},
@@ -1478,7 +1478,7 @@
"total_mass": 5050.5,
"avg_exposures": {
"cognitive_load": 30.67,
- "safety_score": 63.85,
+ "safety_score": 69.59,
"tech_debt": 81.27,
"verification": 60.3,
"api_exposure": 6.81,
@@ -1488,7 +1488,7 @@
"spec_match": 87.5,
"stability": 43.75,
"churn": 0.0,
- "documentation": 14.47,
+ "documentation": 11.26,
"secrets_risk": 0.0
}
},
@@ -1610,8 +1610,8 @@
"file_count": 6,
"total_mass": 313.92,
"avg_exposures": {
- "cognitive_load": 12.63,
- "safety_score": 27.28,
+ "cognitive_load": 12.1,
+ "safety_score": 29.13,
"tech_debt": 31.29,
"verification": 14.88,
"api_exposure": 2.85,
@@ -1724,13 +1724,13 @@
"file_count": 20,
"total_mass": 790.32,
"avg_exposures": {
- "cognitive_load": 59.75,
- "safety_score": 78.19,
- "tech_debt": 9.64,
- "verification": 13.99,
+ "cognitive_load": 58.0,
+ "safety_score": 79.38,
+ "tech_debt": 7.99,
+ "verification": 13.97,
"api_exposure": 0.0,
- "concurrency": 9.1,
- "state_flux": 74.65,
+ "concurrency": 8.97,
+ "state_flux": 74.38,
"dead_code": 3.0,
"spec_match": 20.0,
"stability": 47.5,
@@ -1743,13 +1743,13 @@
"file_count": 13,
"total_mass": 458.2,
"avg_exposures": {
- "cognitive_load": 40.28,
- "safety_score": 63.68,
+ "cognitive_load": 38.57,
+ "safety_score": 64.63,
"tech_debt": 0.0,
- "verification": 8.25,
+ "verification": 8.24,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 45.66,
+ "state_flux": 45.61,
"dead_code": 2.64,
"spec_match": 7.69,
"stability": 46.15,
@@ -1820,9 +1820,9 @@
"total_mass": 79.62,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 45.48,
+ "safety_score": 35.53,
"tech_debt": 0.0,
- "verification": 1.91,
+ "verification": 1.89,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -1839,9 +1839,9 @@
"total_mass": 259.06,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 65.05,
+ "safety_score": 62.39,
"tech_debt": 0.0,
- "verification": 13.11,
+ "verification": 13.1,
"api_exposure": 0.34,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -1895,12 +1895,12 @@
"file_count": 3,
"total_mass": 1970.88,
"avg_exposures": {
- "cognitive_load": 54.18,
- "safety_score": 64.96,
- "tech_debt": 54.25,
+ "cognitive_load": 53.96,
+ "safety_score": 66.02,
+ "tech_debt": 52.83,
"verification": 53.33,
"api_exposure": 0.0,
- "concurrency": 7.69,
+ "concurrency": 6.37,
"state_flux": 66.67,
"dead_code": 4.19,
"spec_match": 66.67,
@@ -2104,18 +2104,18 @@
"file_count": 11,
"total_mass": 563.96,
"avg_exposures": {
- "cognitive_load": 44.29,
- "safety_score": 56.37,
- "tech_debt": 38.98,
+ "cognitive_load": 44.33,
+ "safety_score": 57.2,
+ "tech_debt": 39.68,
"verification": 36.78,
"api_exposure": 2.79,
- "concurrency": 48.01,
+ "concurrency": 48.16,
"state_flux": 45.45,
"dead_code": 0.0,
"spec_match": 45.45,
"stability": 31.82,
"churn": 0.0,
- "documentation": 15.88,
+ "documentation": 15.9,
"secrets_risk": 0.0
}
},
@@ -2199,18 +2199,18 @@
"file_count": 8,
"total_mass": 1153.74,
"avg_exposures": {
- "cognitive_load": 8.71,
- "safety_score": 33.94,
- "tech_debt": 26.97,
- "verification": 41.19,
+ "cognitive_load": 7.95,
+ "safety_score": 31.46,
+ "tech_debt": 25.93,
+ "verification": 41.18,
"api_exposure": 0.57,
"concurrency": 0.0,
- "state_flux": 19.94,
+ "state_flux": 17.34,
"dead_code": 8.68,
"spec_match": 75.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 14.36,
+ "documentation": 10.57,
"secrets_risk": 0.0
}
},
@@ -2218,13 +2218,13 @@
"file_count": 6,
"total_mass": 95.76,
"avg_exposures": {
- "cognitive_load": 4.83,
- "safety_score": 17.39,
- "tech_debt": 45.98,
- "verification": 2.31,
+ "cognitive_load": 3.96,
+ "safety_score": 13.48,
+ "tech_debt": 42.89,
+ "verification": 2.3,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 12.32,
+ "state_flux": 10.59,
"dead_code": 0.0,
"spec_match": 50.0,
"stability": 50.0,
@@ -2351,18 +2351,18 @@
"file_count": 5,
"total_mass": 1974.82,
"avg_exposures": {
- "cognitive_load": 28.3,
- "safety_score": 51.77,
- "tech_debt": 11.31,
+ "cognitive_load": 28.32,
+ "safety_score": 51.83,
+ "tech_debt": 11.43,
"verification": 48.46,
"api_exposure": 3.53,
"concurrency": 0.0,
- "state_flux": 59.05,
+ "state_flux": 59.1,
"dead_code": 2.27,
"spec_match": 60.0,
"stability": 40.0,
"churn": 0.0,
- "documentation": 22.95,
+ "documentation": 22.99,
"secrets_risk": 0.0
}
},
@@ -2389,18 +2389,18 @@
"file_count": 13,
"total_mass": 2590.98,
"avg_exposures": {
- "cognitive_load": 6.68,
- "safety_score": 60.59,
- "tech_debt": 3.05,
+ "cognitive_load": 6.62,
+ "safety_score": 63.32,
+ "tech_debt": 2.98,
"verification": 68.06,
"api_exposure": 4.5,
- "concurrency": 42.62,
+ "concurrency": 41.02,
"state_flux": 0.0,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 17.71,
+ "documentation": 16.13,
"secrets_risk": 0.0
}
},
@@ -2408,18 +2408,18 @@
"file_count": 3,
"total_mass": 295.4,
"avg_exposures": {
- "cognitive_load": 13.12,
- "safety_score": 44.39,
- "tech_debt": 55.63,
+ "cognitive_load": 12.72,
+ "safety_score": 46.3,
+ "tech_debt": 48.0,
"verification": 28.3,
"api_exposure": 4.88,
"concurrency": 0.0,
- "state_flux": 39.06,
+ "state_flux": 38.1,
"dead_code": 1.8,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 34.15,
+ "documentation": 32.01,
"secrets_risk": 0.0
}
},
@@ -2427,18 +2427,18 @@
"file_count": 4,
"total_mass": 2008.46,
"avg_exposures": {
- "cognitive_load": 24.61,
- "safety_score": 38.44,
- "tech_debt": 10.68,
+ "cognitive_load": 24.33,
+ "safety_score": 39.21,
+ "tech_debt": 10.59,
"verification": 41.18,
"api_exposure": 4.42,
"concurrency": 0.0,
- "state_flux": 34.92,
+ "state_flux": 34.57,
"dead_code": 2.9,
"spec_match": 75.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 27.72,
+ "documentation": 27.7,
"secrets_risk": 0.0
}
},
@@ -2446,13 +2446,13 @@
"file_count": 15,
"total_mass": 217.88,
"avg_exposures": {
- "cognitive_load": 6.39,
- "safety_score": 14.88,
+ "cognitive_load": 5.88,
+ "safety_score": 15.55,
"tech_debt": 0.0,
"verification": 2.32,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 16.12,
+ "state_flux": 15.97,
"dead_code": 0.0,
"spec_match": 33.33,
"stability": 50.0,
@@ -2484,13 +2484,13 @@
"file_count": 20,
"total_mass": 749.94,
"avg_exposures": {
- "cognitive_load": 9.22,
- "safety_score": 52.01,
- "tech_debt": 11.02,
+ "cognitive_load": 8.99,
+ "safety_score": 53.44,
+ "tech_debt": 10.57,
"verification": 10.11,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 39.44,
+ "state_flux": 38.5,
"dead_code": 0.0,
"spec_match": 95.0,
"stability": 50.0,
@@ -2503,18 +2503,18 @@
"file_count": 17,
"total_mass": 1252.02,
"avg_exposures": {
- "cognitive_load": 9.24,
- "safety_score": 30.95,
- "tech_debt": 3.15,
+ "cognitive_load": 8.91,
+ "safety_score": 32.07,
+ "tech_debt": 2.88,
"verification": 25.09,
"api_exposure": 2.02,
- "concurrency": 4.08,
- "state_flux": 1.55,
+ "concurrency": 3.87,
+ "state_flux": 1.48,
"dead_code": 0.0,
"spec_match": 82.35,
"stability": 47.06,
"churn": 0.0,
- "documentation": 8.14,
+ "documentation": 5.18,
"secrets_risk": 0.0
}
},
@@ -2522,13 +2522,13 @@
"file_count": 25,
"total_mass": 443.26,
"avg_exposures": {
- "cognitive_load": 8.79,
- "safety_score": 9.25,
- "tech_debt": 3.23,
+ "cognitive_load": 8.49,
+ "safety_score": 9.33,
+ "tech_debt": 2.71,
"verification": 2.21,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 6.53,
+ "state_flux": 6.35,
"dead_code": 0.26,
"spec_match": 0.0,
"stability": 48.0,
@@ -2541,10 +2541,10 @@
"file_count": 4,
"total_mass": 90.56,
"avg_exposures": {
- "cognitive_load": 7.45,
- "safety_score": 19.02,
- "tech_debt": 49.1,
- "verification": 2.5,
+ "cognitive_load": 6.91,
+ "safety_score": 19.21,
+ "tech_debt": 48.08,
+ "verification": 2.49,
"api_exposure": 3.02,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -2552,7 +2552,7 @@
"spec_match": 75.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 37.34,
+ "documentation": 30.98,
"secrets_risk": 0.0
}
},
@@ -2560,9 +2560,9 @@
"file_count": 20,
"total_mass": 400.96,
"avg_exposures": {
- "cognitive_load": 9.9,
+ "cognitive_load": 9.26,
"safety_score": 0.0,
- "tech_debt": 2.25,
+ "tech_debt": 1.94,
"verification": 2.5,
"api_exposure": 3.12,
"concurrency": 0.0,
@@ -2571,7 +2571,7 @@
"spec_match": 90.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 42.25,
+ "documentation": 36.43,
"secrets_risk": 0.0
}
},
@@ -2579,18 +2579,18 @@
"file_count": 19,
"total_mass": 1933.44,
"avg_exposures": {
- "cognitive_load": 9.39,
- "safety_score": 12.03,
- "tech_debt": 11.97,
- "verification": 47.23,
+ "cognitive_load": 9.13,
+ "safety_score": 12.3,
+ "tech_debt": 11.33,
+ "verification": 47.22,
"api_exposure": 3.33,
"concurrency": 0.0,
- "state_flux": 6.49,
+ "state_flux": 6.28,
"dead_code": 0.63,
"spec_match": 89.47,
"stability": 47.37,
"churn": 0.0,
- "documentation": 20.25,
+ "documentation": 15.43,
"secrets_risk": 0.0
}
},
@@ -2598,18 +2598,18 @@
"file_count": 18,
"total_mass": 378.76,
"avg_exposures": {
- "cognitive_load": 2.81,
- "safety_score": 16.03,
- "tech_debt": 4.79,
+ "cognitive_load": 2.62,
+ "safety_score": 16.63,
+ "tech_debt": 4.41,
"verification": 2.33,
"api_exposure": 2.19,
"concurrency": 0.0,
- "state_flux": 15.32,
+ "state_flux": 15.17,
"dead_code": 0.0,
"spec_match": 27.78,
"stability": 50.0,
"churn": 0.0,
- "documentation": 18.72,
+ "documentation": 17.47,
"secrets_risk": 0.0
}
},
@@ -2617,9 +2617,9 @@
"file_count": 22,
"total_mass": 657.82,
"avg_exposures": {
- "cognitive_load": 10.18,
- "safety_score": 3.17,
- "tech_debt": 40.5,
+ "cognitive_load": 9.49,
+ "safety_score": 3.27,
+ "tech_debt": 37.86,
"verification": 2.41,
"api_exposure": 0.0,
"concurrency": 0.0,
@@ -2636,13 +2636,13 @@
"file_count": 15,
"total_mass": 586.22,
"avg_exposures": {
- "cognitive_load": 15.32,
- "safety_score": 65.55,
+ "cognitive_load": 14.58,
+ "safety_score": 67.47,
"tech_debt": 0.0,
"verification": 2.64,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 45.52,
+ "state_flux": 44.33,
"dead_code": 1.24,
"spec_match": 100.0,
"stability": 50.0,
@@ -2655,9 +2655,9 @@
"file_count": 7,
"total_mass": 60.46,
"avg_exposures": {
- "cognitive_load": 7.76,
- "safety_score": 30.73,
- "tech_debt": 13.96,
+ "cognitive_load": 7.21,
+ "safety_score": 31.88,
+ "tech_debt": 13.76,
"verification": 2.39,
"api_exposure": 4.12,
"concurrency": 0.0,
@@ -2666,7 +2666,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 44.43,
+ "documentation": 31.49,
"secrets_risk": 0.0
}
},
@@ -2674,8 +2674,8 @@
"file_count": 8,
"total_mass": 36203.74,
"avg_exposures": {
- "cognitive_load": 70.55,
- "safety_score": 86.0,
+ "cognitive_load": 70.47,
+ "safety_score": 92.1,
"tech_debt": 39.8,
"verification": 80.0,
"api_exposure": 13.81,
@@ -2685,7 +2685,7 @@
"spec_match": 99.57,
"stability": 50.0,
"churn": 0.0,
- "documentation": 91.74,
+ "documentation": 91.11,
"secrets_risk": 0.0
}
},
@@ -2694,12 +2694,12 @@
"total_mass": 8.82,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 35.55,
- "tech_debt": 44.04,
+ "safety_score": 35.1,
+ "tech_debt": 36.55,
"verification": 1.16,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 37.51,
+ "state_flux": 36.36,
"dead_code": 0.0,
"spec_match": 50.0,
"stability": 25.0,
@@ -2713,9 +2713,9 @@
"total_mass": 3474.0,
"avg_exposures": {
"cognitive_load": 32.63,
- "safety_score": 58.46,
+ "safety_score": 60.76,
"tech_debt": 14.87,
- "verification": 31.85,
+ "verification": 31.86,
"api_exposure": 10.19,
"concurrency": 0.0,
"state_flux": 63.33,
@@ -2723,7 +2723,7 @@
"spec_match": 76.92,
"stability": 42.31,
"churn": 0.0,
- "documentation": 72.85,
+ "documentation": 71.84,
"secrets_risk": 0.0
}
},
@@ -2731,8 +2731,8 @@
"file_count": 12,
"total_mass": 11112.24,
"avg_exposures": {
- "cognitive_load": 46.06,
- "safety_score": 53.69,
+ "cognitive_load": 46.01,
+ "safety_score": 55.78,
"tech_debt": 20.81,
"verification": 34.68,
"api_exposure": 11.86,
@@ -2742,7 +2742,7 @@
"spec_match": 91.67,
"stability": 50.0,
"churn": 0.0,
- "documentation": 88.77,
+ "documentation": 87.61,
"secrets_risk": 0.0
}
},
@@ -2750,18 +2750,18 @@
"file_count": 7,
"total_mass": 43453.05,
"avg_exposures": {
- "cognitive_load": 58.25,
- "safety_score": 74.24,
- "tech_debt": 13.29,
+ "cognitive_load": 58.22,
+ "safety_score": 76.83,
+ "tech_debt": 13.26,
"verification": 57.8,
"api_exposure": 5.21,
"concurrency": 0.0,
- "state_flux": 75.91,
+ "state_flux": 75.37,
"dead_code": 1.73,
"spec_match": 71.43,
"stability": 50.0,
"churn": 0.0,
- "documentation": 42.51,
+ "documentation": 42.43,
"secrets_risk": 0.0
}
},
@@ -2769,10 +2769,10 @@
"file_count": 6,
"total_mass": 3005.8,
"avg_exposures": {
- "cognitive_load": 66.35,
- "safety_score": 75.16,
- "tech_debt": 17.93,
- "verification": 67.1,
+ "cognitive_load": 65.11,
+ "safety_score": 76.33,
+ "tech_debt": 16.63,
+ "verification": 67.09,
"api_exposure": 9.29,
"concurrency": 0.0,
"state_flux": 83.32,
@@ -2780,7 +2780,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 59.98,
+ "documentation": 50.23,
"secrets_risk": 0.0
}
},
@@ -2788,10 +2788,10 @@
"file_count": 18,
"total_mass": 9297.46,
"avg_exposures": {
- "cognitive_load": 16.6,
- "safety_score": 44.4,
+ "cognitive_load": 15.97,
+ "safety_score": 47.09,
"tech_debt": 19.46,
- "verification": 40.92,
+ "verification": 40.93,
"api_exposure": 3.09,
"concurrency": 0.0,
"state_flux": 43.48,
@@ -2799,7 +2799,7 @@
"spec_match": 83.33,
"stability": 44.44,
"churn": 0.0,
- "documentation": 19.33,
+ "documentation": 18.35,
"secrets_risk": 0.0
}
},
@@ -2807,18 +2807,18 @@
"file_count": 7,
"total_mass": 24879.42,
"avg_exposures": {
- "cognitive_load": 37.18,
- "safety_score": 59.45,
- "tech_debt": 13.1,
+ "cognitive_load": 36.83,
+ "safety_score": 60.05,
+ "tech_debt": 12.71,
"verification": 68.57,
"api_exposure": 5.02,
- "concurrency": 2.73,
- "state_flux": 52.14,
+ "concurrency": 2.24,
+ "state_flux": 50.57,
"dead_code": 2.82,
"spec_match": 85.71,
"stability": 42.86,
"churn": 0.0,
- "documentation": 35.36,
+ "documentation": 35.3,
"secrets_risk": 0.0
}
},
@@ -2826,18 +2826,18 @@
"file_count": 10,
"total_mass": 649.07,
"avg_exposures": {
- "cognitive_load": 14.58,
- "safety_score": 36.52,
- "tech_debt": 10.71,
- "verification": 2.1,
+ "cognitive_load": 14.2,
+ "safety_score": 34.57,
+ "tech_debt": 9.24,
+ "verification": 2.09,
"api_exposure": 3.98,
"concurrency": 0.0,
- "state_flux": 34.68,
+ "state_flux": 34.05,
"dead_code": 2.99,
"spec_match": 40.0,
"stability": 45.0,
"churn": 0.0,
- "documentation": 24.68,
+ "documentation": 21.79,
"secrets_risk": 0.0
}
},
@@ -2845,18 +2845,18 @@
"file_count": 7,
"total_mass": 15238.9,
"avg_exposures": {
- "cognitive_load": 25.16,
- "safety_score": 42.59,
- "tech_debt": 44.22,
+ "cognitive_load": 25.19,
+ "safety_score": 42.72,
+ "tech_debt": 45.39,
"verification": 57.48,
"api_exposure": 3.95,
- "concurrency": 24.14,
- "state_flux": 65.6,
+ "concurrency": 25.09,
+ "state_flux": 65.87,
"dead_code": 4.12,
"spec_match": 85.71,
"stability": 42.86,
"churn": 0.0,
- "documentation": 15.16,
+ "documentation": 16.15,
"secrets_risk": 0.0
}
},
@@ -2864,9 +2864,9 @@
"file_count": 6,
"total_mass": 10.42,
"avg_exposures": {
- "cognitive_load": 1.02,
+ "cognitive_load": 0.82,
"safety_score": 0.0,
- "tech_debt": 8.33,
+ "tech_debt": 3.33,
"verification": 1.92,
"api_exposure": 0.0,
"concurrency": 0.0,
@@ -2902,18 +2902,18 @@
"file_count": 15,
"total_mass": 60218.62,
"avg_exposures": {
- "cognitive_load": 72.8,
- "safety_score": 84.82,
- "tech_debt": 4.35,
+ "cognitive_load": 71.9,
+ "safety_score": 86.69,
+ "tech_debt": 4.31,
"verification": 59.2,
"api_exposure": 5.41,
- "concurrency": 4.24,
- "state_flux": 65.72,
+ "concurrency": 3.74,
+ "state_flux": 65.69,
"dead_code": 9.26,
"spec_match": 60.0,
"stability": 46.67,
"churn": 0.0,
- "documentation": 25.21,
+ "documentation": 23.26,
"secrets_risk": 0.0
}
},
@@ -2921,18 +2921,18 @@
"file_count": 8,
"total_mass": 13575.02,
"avg_exposures": {
- "cognitive_load": 33.71,
- "safety_score": 71.92,
- "tech_debt": 23.87,
+ "cognitive_load": 33.73,
+ "safety_score": 71.96,
+ "tech_debt": 24.18,
"verification": 60.29,
"api_exposure": 1.96,
- "concurrency": 5.27,
+ "concurrency": 5.6,
"state_flux": 75.0,
"dead_code": 11.87,
"spec_match": 87.5,
"stability": 43.75,
"churn": 0.0,
- "documentation": 17.47,
+ "documentation": 17.53,
"secrets_risk": 0.0
}
},
@@ -2940,18 +2940,18 @@
"file_count": 9,
"total_mass": 225.04,
"avg_exposures": {
- "cognitive_load": 11.53,
- "safety_score": 63.11,
- "tech_debt": 58.71,
- "verification": 2.19,
+ "cognitive_load": 9.85,
+ "safety_score": 63.68,
+ "tech_debt": 54.97,
+ "verification": 2.17,
"api_exposure": 0.06,
"concurrency": 0.0,
- "state_flux": 41.94,
+ "state_flux": 40.8,
"dead_code": 0.0,
"spec_match": 88.89,
"stability": 44.44,
"churn": 0.0,
- "documentation": 2.5,
+ "documentation": 1.6,
"secrets_risk": 0.0
}
},
@@ -2959,8 +2959,8 @@
"file_count": 5,
"total_mass": 123.62,
"avg_exposures": {
- "cognitive_load": 2.47,
- "safety_score": 44.76,
+ "cognitive_load": 2.14,
+ "safety_score": 44.93,
"tech_debt": 0.0,
"verification": 1.84,
"api_exposure": 0.0,
@@ -2978,13 +2978,13 @@
"file_count": 30,
"total_mass": 521.3,
"avg_exposures": {
- "cognitive_load": 5.31,
- "safety_score": 21.09,
- "tech_debt": 0.65,
+ "cognitive_load": 4.65,
+ "safety_score": 21.0,
+ "tech_debt": 0.53,
"verification": 4.81,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 6.77,
+ "state_flux": 6.38,
"dead_code": 0.0,
"spec_match": 6.67,
"stability": 48.33,
@@ -2997,8 +2997,8 @@
"file_count": 8,
"total_mass": 78.32,
"avg_exposures": {
- "cognitive_load": 2.32,
- "safety_score": 8.37,
+ "cognitive_load": 2.0,
+ "safety_score": 8.07,
"tech_debt": 0.0,
"verification": 2.01,
"api_exposure": 0.0,
@@ -3054,9 +3054,9 @@
"file_count": 4,
"total_mass": 5.63,
"avg_exposures": {
- "cognitive_load": 7.45,
+ "cognitive_load": 5.39,
"safety_score": 0.0,
- "tech_debt": 22.02,
+ "tech_debt": 9.44,
"verification": 1.73,
"api_exposure": 8.27,
"concurrency": 0.0,
@@ -3065,7 +3065,7 @@
"spec_match": 50.0,
"stability": 37.5,
"churn": 0.0,
- "documentation": 70.39,
+ "documentation": 61.93,
"secrets_risk": 0.0
}
},
@@ -3073,9 +3073,9 @@
"file_count": 5,
"total_mass": 1.04,
"avg_exposures": {
- "cognitive_load": 2.62,
- "safety_score": 27.82,
- "tech_debt": 35.23,
+ "cognitive_load": 1.64,
+ "safety_score": 22.39,
+ "tech_debt": 15.1,
"verification": 1.85,
"api_exposure": 5.8,
"concurrency": 0.0,
@@ -3084,7 +3084,7 @@
"spec_match": 40.0,
"stability": 40.0,
"churn": 0.0,
- "documentation": 57.99,
+ "documentation": 42.76,
"secrets_risk": 0.0
}
},
@@ -3092,18 +3092,18 @@
"file_count": 7,
"total_mass": 1.36,
"avg_exposures": {
- "cognitive_load": 2.57,
- "safety_score": 21.03,
- "tech_debt": 9.74,
+ "cognitive_load": 1.73,
+ "safety_score": 18.24,
+ "tech_debt": 3.7,
"verification": 1.98,
"api_exposure": 4.65,
"concurrency": 0.0,
- "state_flux": 11.41,
+ "state_flux": 10.66,
"dead_code": 0.0,
"spec_match": 57.14,
"stability": 42.86,
"churn": 0.0,
- "documentation": 33.7,
+ "documentation": 29.69,
"secrets_risk": 0.0
}
},
@@ -3141,7 +3141,7 @@
"spec_match": 50.0,
"stability": 25.0,
"churn": 0.0,
- "documentation": 23.93,
+ "documentation": 8.6,
"secrets_risk": 0.0
}
},
@@ -3150,7 +3150,7 @@
"total_mass": 17.25,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 20.03,
+ "safety_score": 14.2,
"tech_debt": 0.0,
"verification": 1.15,
"api_exposure": 6.74,
@@ -3160,7 +3160,7 @@
"spec_match": 50.0,
"stability": 25.0,
"churn": 0.0,
- "documentation": 49.21,
+ "documentation": 48.78,
"secrets_risk": 0.0
}
},
@@ -3168,18 +3168,18 @@
"file_count": 6,
"total_mass": 1.19,
"avg_exposures": {
- "cognitive_load": 15.12,
- "safety_score": 19.81,
+ "cognitive_load": 13.33,
+ "safety_score": 15.79,
"tech_debt": 0.0,
- "verification": 14.87,
+ "verification": 1.94,
"api_exposure": 4.35,
"concurrency": 0.0,
- "state_flux": 10.26,
+ "state_flux": 9.05,
"dead_code": 2.22,
"spec_match": 16.67,
"stability": 41.67,
"churn": 0.0,
- "documentation": 43.8,
+ "documentation": 24.06,
"secrets_risk": 0.0
}
},
@@ -3225,18 +3225,18 @@
"file_count": 8,
"total_mass": 2184.62,
"avg_exposures": {
- "cognitive_load": 54.37,
- "safety_score": 50.55,
- "tech_debt": 22.58,
- "verification": 50.68,
+ "cognitive_load": 54.84,
+ "safety_score": 55.0,
+ "tech_debt": 25.9,
+ "verification": 50.69,
"api_exposure": 2.89,
- "concurrency": 2.47,
- "state_flux": 84.18,
+ "concurrency": 2.63,
+ "state_flux": 84.35,
"dead_code": 3.07,
"spec_match": 87.5,
"stability": 43.75,
"churn": 0.0,
- "documentation": 23.88,
+ "documentation": 24.45,
"secrets_risk": 0.0
}
},
@@ -3244,18 +3244,18 @@
"file_count": 6,
"total_mass": 197.74,
"avg_exposures": {
- "cognitive_load": 7.94,
- "safety_score": 21.75,
- "tech_debt": 42.0,
+ "cognitive_load": 7.7,
+ "safety_score": 22.54,
+ "tech_debt": 39.74,
"verification": 14.91,
"api_exposure": 1.74,
"concurrency": 0.0,
- "state_flux": 23.78,
+ "state_flux": 23.53,
"dead_code": 0.0,
"spec_match": 83.33,
"stability": 41.67,
"churn": 0.0,
- "documentation": 11.75,
+ "documentation": 8.87,
"secrets_risk": 0.0
}
},
@@ -3274,7 +3274,7 @@
"spec_match": 0.0,
"stability": 25.0,
"churn": 0.0,
- "documentation": 15.08,
+ "documentation": 12.72,
"secrets_risk": 0.0
}
},
@@ -3282,9 +3282,9 @@
"file_count": 2,
"total_mass": 138.58,
"avg_exposures": {
- "cognitive_load": 2.61,
+ "cognitive_load": 2.59,
"safety_score": 0.0,
- "tech_debt": 12.64,
+ "tech_debt": 12.32,
"verification": 1.15,
"api_exposure": 5.51,
"concurrency": 0.0,
@@ -3293,7 +3293,7 @@
"spec_match": 50.0,
"stability": 25.0,
"churn": 0.0,
- "documentation": 13.92,
+ "documentation": 10.8,
"secrets_risk": 0.0
}
},
@@ -3302,7 +3302,7 @@
"total_mass": 4614.2,
"avg_exposures": {
"cognitive_load": 28.16,
- "safety_score": 71.01,
+ "safety_score": 76.03,
"tech_debt": 65.28,
"verification": 31.22,
"api_exposure": 3.74,
@@ -3320,8 +3320,8 @@
"file_count": 8,
"total_mass": 14227.96,
"avg_exposures": {
- "cognitive_load": 27.45,
- "safety_score": 70.17,
+ "cognitive_load": 26.98,
+ "safety_score": 73.79,
"tech_debt": 13.26,
"verification": 40.86,
"api_exposure": 3.47,
@@ -3415,18 +3415,18 @@
"file_count": 33,
"total_mass": 7381.12,
"avg_exposures": {
- "cognitive_load": 35.89,
- "safety_score": 58.87,
- "tech_debt": 23.27,
+ "cognitive_load": 33.05,
+ "safety_score": 58.17,
+ "tech_debt": 20.03,
"verification": 25.79,
"api_exposure": 1.82,
- "concurrency": 4.34,
- "state_flux": 60.94,
+ "concurrency": 4.16,
+ "state_flux": 60.62,
"dead_code": 3.69,
"spec_match": 39.39,
"stability": 48.48,
"churn": 0.0,
- "documentation": 11.33,
+ "documentation": 6.7,
"secrets_risk": 0.0
}
},
@@ -3434,18 +3434,18 @@
"file_count": 15,
"total_mass": 428.22,
"avg_exposures": {
- "cognitive_load": 34.4,
- "safety_score": 71.12,
- "tech_debt": 17.19,
+ "cognitive_load": 31.22,
+ "safety_score": 70.39,
+ "tech_debt": 14.75,
"verification": 2.17,
"api_exposure": 0.19,
"concurrency": 0.0,
- "state_flux": 69.31,
+ "state_flux": 68.1,
"dead_code": 7.12,
"spec_match": 13.33,
"stability": 46.67,
"churn": 0.0,
- "documentation": 1.93,
+ "documentation": 1.33,
"secrets_risk": 0.0
}
},
@@ -3453,18 +3453,18 @@
"file_count": 21,
"total_mass": 4041.56,
"avg_exposures": {
- "cognitive_load": 56.72,
- "safety_score": 77.83,
- "tech_debt": 11.15,
- "verification": 13.32,
+ "cognitive_load": 53.63,
+ "safety_score": 77.58,
+ "tech_debt": 10.02,
+ "verification": 13.31,
"api_exposure": 1.32,
"concurrency": 0.0,
- "state_flux": 90.15,
+ "state_flux": 90.09,
"dead_code": 1.33,
"spec_match": 33.33,
"stability": 47.62,
"churn": 0.0,
- "documentation": 7.6,
+ "documentation": 4.82,
"secrets_risk": 0.0
}
},
@@ -3472,18 +3472,18 @@
"file_count": 19,
"total_mass": 900.86,
"avg_exposures": {
- "cognitive_load": 31.15,
- "safety_score": 63.89,
- "tech_debt": 14.11,
- "verification": 10.38,
+ "cognitive_load": 28.8,
+ "safety_score": 62.52,
+ "tech_debt": 10.68,
+ "verification": 10.37,
"api_exposure": 1.08,
"concurrency": 0.0,
- "state_flux": 71.56,
+ "state_flux": 70.92,
"dead_code": 1.93,
"spec_match": 31.58,
"stability": 47.37,
"churn": 0.0,
- "documentation": 8.15,
+ "documentation": 4.95,
"secrets_risk": 0.0
}
},
@@ -3491,10 +3491,10 @@
"file_count": 8,
"total_mass": 740.52,
"avg_exposures": {
- "cognitive_load": 26.68,
- "safety_score": 58.99,
+ "cognitive_load": 25.93,
+ "safety_score": 62.99,
"tech_debt": 41.02,
- "verification": 50.61,
+ "verification": 50.62,
"api_exposure": 1.11,
"concurrency": 0.0,
"state_flux": 70.19,
@@ -3502,7 +3502,7 @@
"spec_match": 75.0,
"stability": 43.75,
"churn": 0.0,
- "documentation": 7.86,
+ "documentation": 6.61,
"secrets_risk": 0.0
}
},
@@ -3529,18 +3529,18 @@
"file_count": 14,
"total_mass": 624.28,
"avg_exposures": {
- "cognitive_load": 32.89,
- "safety_score": 32.98,
- "tech_debt": 12.55,
- "verification": 13.3,
+ "cognitive_load": 31.24,
+ "safety_score": 29.42,
+ "tech_debt": 11.99,
+ "verification": 13.29,
"api_exposure": 1.8,
"concurrency": 0.0,
- "state_flux": 45.37,
+ "state_flux": 44.7,
"dead_code": 0.0,
"spec_match": 14.29,
"stability": 46.43,
"churn": 0.0,
- "documentation": 19.98,
+ "documentation": 15.09,
"secrets_risk": 0.0
}
},
@@ -3548,18 +3548,18 @@
"file_count": 9,
"total_mass": 2059.32,
"avg_exposures": {
- "cognitive_load": 29.73,
- "safety_score": 36.82,
+ "cognitive_load": 28.88,
+ "safety_score": 35.08,
"tech_debt": 37.32,
- "verification": 36.63,
+ "verification": 28.06,
"api_exposure": 1.12,
"concurrency": 0.0,
- "state_flux": 40.62,
+ "state_flux": 40.35,
"dead_code": 0.0,
"spec_match": 77.78,
"stability": 44.44,
"churn": 0.0,
- "documentation": 7.2,
+ "documentation": 6.22,
"secrets_risk": 0.0
}
},
@@ -3567,18 +3567,18 @@
"file_count": 20,
"total_mass": 2457.48,
"avg_exposures": {
- "cognitive_load": 53.44,
- "safety_score": 53.76,
- "tech_debt": 9.28,
- "verification": 17.89,
+ "cognitive_load": 50.63,
+ "safety_score": 47.99,
+ "tech_debt": 8.95,
+ "verification": 6.29,
"api_exposure": 1.41,
- "concurrency": 3.28,
- "state_flux": 54.99,
+ "concurrency": 3.09,
+ "state_flux": 54.98,
"dead_code": 0.77,
"spec_match": 25.0,
"stability": 47.5,
"churn": 0.0,
- "documentation": 14.6,
+ "documentation": 8.66,
"secrets_risk": 0.0
}
},
@@ -3586,13 +3586,13 @@
"file_count": 23,
"total_mass": 1005.38,
"avg_exposures": {
- "cognitive_load": 37.59,
- "safety_score": 76.1,
+ "cognitive_load": 36.22,
+ "safety_score": 76.09,
"tech_debt": 0.0,
- "verification": 15.88,
+ "verification": 15.87,
"api_exposure": 0.14,
- "concurrency": 1.33,
- "state_flux": 53.93,
+ "concurrency": 1.18,
+ "state_flux": 53.09,
"dead_code": 4.16,
"spec_match": 13.04,
"stability": 47.83,
@@ -3605,13 +3605,13 @@
"file_count": 15,
"total_mass": 615.66,
"avg_exposures": {
- "cognitive_load": 54.99,
- "safety_score": 58.96,
- "tech_debt": 10.75,
- "verification": 7.37,
+ "cognitive_load": 52.66,
+ "safety_score": 58.91,
+ "tech_debt": 8.21,
+ "verification": 7.35,
"api_exposure": 0.0,
- "concurrency": 5.57,
- "state_flux": 59.08,
+ "concurrency": 5.41,
+ "state_flux": 58.97,
"dead_code": 1.27,
"spec_match": 26.67,
"stability": 46.67,
@@ -3644,7 +3644,7 @@
"total_mass": 10.54,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 24.39,
+ "safety_score": 23.33,
"tech_debt": 0.0,
"verification": 1.56,
"api_exposure": 0.0,
@@ -3663,9 +3663,9 @@
"total_mass": 216.52,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 66.75,
+ "safety_score": 61.74,
"tech_debt": 0.0,
- "verification": 2.3,
+ "verification": 2.28,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -3681,10 +3681,10 @@
"file_count": 11,
"total_mass": 315.54,
"avg_exposures": {
- "cognitive_load": 0.82,
- "safety_score": 27.51,
+ "cognitive_load": 0.6,
+ "safety_score": 26.32,
"tech_debt": 0.0,
- "verification": 2.16,
+ "verification": 2.14,
"api_exposure": 0.32,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -3692,7 +3692,7 @@
"spec_match": 81.82,
"stability": 45.45,
"churn": 0.0,
- "documentation": 3.97,
+ "documentation": 1.98,
"secrets_risk": 0.0
}
},
@@ -3719,18 +3719,18 @@
"file_count": 5,
"total_mass": 181.4,
"avg_exposures": {
- "cognitive_load": 2.91,
- "safety_score": 43.83,
+ "cognitive_load": 2.98,
+ "safety_score": 46.62,
"tech_debt": 0.0,
"verification": 48.46,
"api_exposure": 10.5,
- "concurrency": 4.28,
+ "concurrency": 4.55,
"state_flux": 0.0,
"dead_code": 0.0,
"spec_match": 80.0,
"stability": 40.0,
"churn": 0.0,
- "documentation": 43.66,
+ "documentation": 45.28,
"secrets_risk": 0.0
}
},
@@ -3738,13 +3738,13 @@
"file_count": 2,
"total_mass": 249.69,
"avg_exposures": {
- "cognitive_load": 11.31,
- "safety_score": 30.89,
- "tech_debt": 4.14,
+ "cognitive_load": 11.32,
+ "safety_score": 31.48,
+ "tech_debt": 4.17,
"verification": 40.0,
"api_exposure": 2.63,
"concurrency": 0.0,
- "state_flux": 7.58,
+ "state_flux": 7.97,
"dead_code": 2.95,
"spec_match": 50.0,
"stability": 25.0,
@@ -3757,18 +3757,18 @@
"file_count": 11,
"total_mass": 1472.92,
"avg_exposures": {
- "cognitive_load": 37.3,
- "safety_score": 60.46,
- "tech_debt": 46.65,
- "verification": 44.3,
+ "cognitive_load": 37.33,
+ "safety_score": 62.42,
+ "tech_debt": 46.95,
+ "verification": 58.39,
"api_exposure": 4.25,
- "concurrency": 39.59,
- "state_flux": 47.13,
+ "concurrency": 40.44,
+ "state_flux": 47.21,
"dead_code": 1.55,
"spec_match": 72.73,
"stability": 40.91,
"churn": 0.0,
- "documentation": 23.68,
+ "documentation": 23.84,
"secrets_risk": 0.0
}
},
@@ -3795,8 +3795,8 @@
"file_count": 3,
"total_mass": 451.44,
"avg_exposures": {
- "cognitive_load": 45.35,
- "safety_score": 59.3,
+ "cognitive_load": 45.19,
+ "safety_score": 62.16,
"tech_debt": 0.0,
"verification": 53.33,
"api_exposure": 0.12,
@@ -3806,7 +3806,7 @@
"spec_match": 66.67,
"stability": 33.33,
"churn": 0.0,
- "documentation": 4.38,
+ "documentation": 3.97,
"secrets_risk": 0.0
}
},
@@ -3890,13 +3890,13 @@
"file_count": 50,
"total_mass": 465.28,
"avg_exposures": {
- "cognitive_load": 10.73,
- "safety_score": 78.65,
- "tech_debt": 91.27,
- "verification": 2.38,
+ "cognitive_load": 8.85,
+ "safety_score": 77.07,
+ "tech_debt": 72.2,
+ "verification": 2.37,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 56.44,
+ "state_flux": 53.84,
"dead_code": 1.72,
"spec_match": 100.0,
"stability": 50.0,
@@ -3909,18 +3909,18 @@
"file_count": 71,
"total_mass": 12943.49,
"avg_exposures": {
- "cognitive_load": 34.56,
- "safety_score": 37.59,
- "tech_debt": 31.4,
- "verification": 30.76,
+ "cognitive_load": 34.17,
+ "safety_score": 38.32,
+ "tech_debt": 30.49,
+ "verification": 22.02,
"api_exposure": 1.17,
"concurrency": 0.0,
- "state_flux": 41.33,
+ "state_flux": 41.24,
"dead_code": 0.96,
"spec_match": 39.44,
"stability": 50.0,
"churn": 0.0,
- "documentation": 6.35,
+ "documentation": 5.2,
"secrets_risk": 0.0
}
},
@@ -3928,9 +3928,9 @@
"file_count": 3,
"total_mass": 138.57,
"avg_exposures": {
- "cognitive_load": 31.16,
- "safety_score": 28.53,
- "tech_debt": 22.54,
+ "cognitive_load": 31.04,
+ "safety_score": 29.82,
+ "tech_debt": 19.97,
"verification": 2.32,
"api_exposure": 0.82,
"concurrency": 0.0,
@@ -3939,7 +3939,7 @@
"spec_match": 33.33,
"stability": 50.0,
"churn": 0.0,
- "documentation": 6.41,
+ "documentation": 5.21,
"secrets_risk": 0.0
}
},
@@ -3947,9 +3947,9 @@
"file_count": 3,
"total_mass": 1.75,
"avg_exposures": {
- "cognitive_load": 21.79,
+ "cognitive_load": 18.58,
"safety_score": 0.0,
- "tech_debt": 29.36,
+ "tech_debt": 20.75,
"verification": 2.31,
"api_exposure": 0.0,
"concurrency": 0.0,
@@ -3966,18 +3966,18 @@
"file_count": 65,
"total_mass": 12969.95,
"avg_exposures": {
- "cognitive_load": 39.6,
- "safety_score": 38.28,
- "tech_debt": 22.15,
- "verification": 26.22,
+ "cognitive_load": 39.35,
+ "safety_score": 39.44,
+ "tech_debt": 20.79,
+ "verification": 21.44,
"api_exposure": 2.3,
- "concurrency": 7.41,
- "state_flux": 41.48,
+ "concurrency": 6.67,
+ "state_flux": 41.29,
"dead_code": 4.17,
"spec_match": 50.77,
"stability": 50.0,
"churn": 0.0,
- "documentation": 12.44,
+ "documentation": 9.34,
"secrets_risk": 0.0
}
},
@@ -3985,18 +3985,18 @@
"file_count": 2,
"total_mass": 67.88,
"avg_exposures": {
- "cognitive_load": 68.79,
- "safety_score": 66.63,
- "tech_debt": 92.34,
- "verification": 2.44,
+ "cognitive_load": 65.53,
+ "safety_score": 61.46,
+ "tech_debt": 84.51,
+ "verification": 2.41,
"api_exposure": 1.45,
"concurrency": 0.0,
- "state_flux": 90.58,
+ "state_flux": 89.12,
"dead_code": 3.86,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 12.52,
+ "documentation": 5.96,
"secrets_risk": 0.0
}
},
@@ -4004,18 +4004,18 @@
"file_count": 44,
"total_mass": 1162.14,
"avg_exposures": {
- "cognitive_load": 16.32,
- "safety_score": 25.08,
- "tech_debt": 42.0,
- "verification": 2.29,
+ "cognitive_load": 15.34,
+ "safety_score": 24.18,
+ "tech_debt": 40.14,
+ "verification": 2.28,
"api_exposure": 1.15,
"concurrency": 0.0,
- "state_flux": 27.94,
+ "state_flux": 27.59,
"dead_code": 0.0,
"spec_match": 34.09,
"stability": 50.0,
"churn": 0.0,
- "documentation": 8.35,
+ "documentation": 6.89,
"secrets_risk": 0.0
}
},
@@ -4023,18 +4023,18 @@
"file_count": 7,
"total_mass": 461.14,
"avg_exposures": {
- "cognitive_load": 59.47,
- "safety_score": 77.54,
- "tech_debt": 99.0,
- "verification": 24.6,
+ "cognitive_load": 57.02,
+ "safety_score": 78.12,
+ "tech_debt": 97.59,
+ "verification": 24.58,
"api_exposure": 1.15,
"concurrency": 0.0,
- "state_flux": 99.37,
+ "state_flux": 99.25,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 7.71,
+ "documentation": 5.11,
"secrets_risk": 0.0
}
},
@@ -4042,13 +4042,13 @@
"file_count": 35,
"total_mass": 480.28,
"avg_exposures": {
- "cognitive_load": 2.7,
- "safety_score": 6.35,
+ "cognitive_load": 2.19,
+ "safety_score": 6.1,
"tech_debt": 0.0,
"verification": 2.3,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 1.5,
+ "state_flux": 1.28,
"dead_code": 0.0,
"spec_match": 0.0,
"stability": 50.0,
@@ -4061,18 +4061,18 @@
"file_count": 8,
"total_mass": 533.44,
"avg_exposures": {
- "cognitive_load": 20.19,
- "safety_score": 30.91,
- "tech_debt": 24.6,
- "verification": 21.72,
+ "cognitive_load": 19.98,
+ "safety_score": 30.98,
+ "tech_debt": 24.31,
+ "verification": 12.04,
"api_exposure": 0.62,
"concurrency": 0.0,
- "state_flux": 29.72,
+ "state_flux": 29.2,
"dead_code": 0.0,
"spec_match": 25.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 4.12,
+ "documentation": 2.98,
"secrets_risk": 0.0
}
},
@@ -4082,7 +4082,7 @@
"avg_exposures": {
"cognitive_load": 0.0,
"safety_score": 0.0,
- "tech_debt": 70.36,
+ "tech_debt": 63.25,
"verification": 2.34,
"api_exposure": 1.74,
"concurrency": 0.0,
@@ -4091,7 +4091,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 11.1,
+ "documentation": 7.79,
"secrets_risk": 0.0
}
},
@@ -4099,18 +4099,18 @@
"file_count": 14,
"total_mass": 2283.92,
"avg_exposures": {
- "cognitive_load": 24.11,
- "safety_score": 64.03,
- "tech_debt": 27.61,
+ "cognitive_load": 22.5,
+ "safety_score": 69.44,
+ "tech_debt": 26.75,
"verification": 30.26,
"api_exposure": 5.33,
- "concurrency": 12.44,
- "state_flux": 80.86,
+ "concurrency": 11.49,
+ "state_flux": 80.32,
"dead_code": 0.0,
"spec_match": 7.14,
"stability": 50.0,
"churn": 0.0,
- "documentation": 40.65,
+ "documentation": 25.65,
"secrets_risk": 0.0
}
},
@@ -4118,8 +4118,8 @@
"file_count": 3,
"total_mass": 2606.32,
"avg_exposures": {
- "cognitive_load": 21.01,
- "safety_score": 59.47,
+ "cognitive_load": 19.51,
+ "safety_score": 63.4,
"tech_debt": 42.21,
"verification": 80.0,
"api_exposure": 3.07,
@@ -4129,7 +4129,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 18.69,
+ "documentation": 16.37,
"secrets_risk": 0.0
}
},
@@ -4137,8 +4137,8 @@
"file_count": 4,
"total_mass": 9188.88,
"avg_exposures": {
- "cognitive_load": 21.04,
- "safety_score": 57.74,
+ "cognitive_load": 20.81,
+ "safety_score": 61.26,
"tech_debt": 84.4,
"verification": 41.22,
"api_exposure": 3.61,
@@ -4148,7 +4148,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 31.49,
+ "documentation": 30.04,
"secrets_risk": 0.0
}
},
@@ -4156,10 +4156,10 @@
"file_count": 23,
"total_mass": 3317.3,
"avg_exposures": {
- "cognitive_load": 6.65,
- "safety_score": 37.16,
+ "cognitive_load": 6.59,
+ "safety_score": 39.91,
"tech_debt": 6.79,
- "verification": 15.75,
+ "verification": 15.76,
"api_exposure": 2.75,
"concurrency": 15.55,
"state_flux": 15.57,
@@ -4167,7 +4167,7 @@
"spec_match": 60.87,
"stability": 50.0,
"churn": 0.0,
- "documentation": 21.63,
+ "documentation": 20.23,
"secrets_risk": 0.0
}
},
@@ -4175,8 +4175,8 @@
"file_count": 204,
"total_mass": 7729.24,
"avg_exposures": {
- "cognitive_load": 3.63,
- "safety_score": 12.69,
+ "cognitive_load": 3.6,
+ "safety_score": 13.2,
"tech_debt": 0.0,
"verification": 0.0,
"api_exposure": 9.4,
@@ -4195,7 +4195,7 @@
"total_mass": 3319.48,
"avg_exposures": {
"cognitive_load": 23.56,
- "safety_score": 63.89,
+ "safety_score": 69.47,
"tech_debt": 22.93,
"verification": 80.0,
"api_exposure": 2.97,
@@ -4205,7 +4205,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 21.57,
+ "documentation": 15.72,
"secrets_risk": 6.14
}
},
@@ -4232,18 +4232,18 @@
"file_count": 24,
"total_mass": 2359.8,
"avg_exposures": {
- "cognitive_load": 53.2,
- "safety_score": 88.35,
- "tech_debt": 25.43,
- "verification": 8.81,
+ "cognitive_load": 49.31,
+ "safety_score": 88.53,
+ "tech_debt": 22.3,
+ "verification": 8.8,
"api_exposure": 1.42,
"concurrency": 0.0,
- "state_flux": 93.58,
+ "state_flux": 93.2,
"dead_code": 1.4,
"spec_match": 41.67,
"stability": 50.0,
"churn": 0.0,
- "documentation": 9.21,
+ "documentation": 6.59,
"secrets_risk": 0.0
}
},
@@ -4251,18 +4251,18 @@
"file_count": 11,
"total_mass": 3975.78,
"avg_exposures": {
- "cognitive_load": 30.01,
- "safety_score": 57.22,
- "tech_debt": 20.72,
- "verification": 37.72,
+ "cognitive_load": 27.03,
+ "safety_score": 51.88,
+ "tech_debt": 17.79,
+ "verification": 23.6,
"api_exposure": 2.77,
"concurrency": 0.0,
- "state_flux": 40.36,
+ "state_flux": 39.52,
"dead_code": 1.04,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 38.34,
+ "documentation": 23.93,
"secrets_risk": 0.0
}
},
@@ -4271,7 +4271,7 @@
"total_mass": 4909.34,
"avg_exposures": {
"cognitive_load": 41.52,
- "safety_score": 63.59,
+ "safety_score": 66.78,
"tech_debt": 57.93,
"verification": 41.19,
"api_exposure": 0.27,
@@ -4281,7 +4281,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 7.49,
+ "documentation": 7.09,
"secrets_risk": 0.0
}
},
@@ -4290,7 +4290,7 @@
"total_mass": 2062.6,
"avg_exposures": {
"cognitive_load": 51.98,
- "safety_score": 77.99,
+ "safety_score": 82.8,
"tech_debt": 21.37,
"verification": 35.66,
"api_exposure": 3.37,
@@ -4300,7 +4300,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 25.42,
+ "documentation": 25.17,
"secrets_risk": 0.0
}
},
@@ -4308,18 +4308,18 @@
"file_count": 2,
"total_mass": 45.5,
"avg_exposures": {
- "cognitive_load": 3.39,
- "safety_score": 27.49,
- "tech_debt": 10.87,
- "verification": 2.35,
+ "cognitive_load": 3.54,
+ "safety_score": 28.94,
+ "tech_debt": 13.69,
+ "verification": 2.36,
"api_exposure": 3.24,
"concurrency": 0.0,
- "state_flux": 31.44,
+ "state_flux": 32.13,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 15.04,
+ "documentation": 17.39,
"secrets_risk": 0.0
}
},
@@ -4327,8 +4327,8 @@
"file_count": 2,
"total_mass": 1.17,
"avg_exposures": {
- "cognitive_load": 2.85,
- "safety_score": 30.37,
+ "cognitive_load": 2.5,
+ "safety_score": 27.72,
"tech_debt": 0.0,
"verification": 2.31,
"api_exposure": 0.0,
@@ -4346,10 +4346,10 @@
"file_count": 2,
"total_mass": 1.18,
"avg_exposures": {
- "cognitive_load": 4.64,
+ "cognitive_load": 3.21,
"safety_score": 0.0,
- "tech_debt": 44.04,
- "verification": 2.34,
+ "tech_debt": 18.88,
+ "verification": 2.33,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -4365,8 +4365,8 @@
"file_count": 5,
"total_mass": 23.81,
"avg_exposures": {
- "cognitive_load": 1.16,
- "safety_score": 11.14,
+ "cognitive_load": 1.06,
+ "safety_score": 10.13,
"tech_debt": 0.0,
"verification": 2.3,
"api_exposure": 4.34,
@@ -4384,9 +4384,9 @@
"file_count": 3,
"total_mass": 2.64,
"avg_exposures": {
- "cognitive_load": 3.73,
- "safety_score": 75.61,
- "tech_debt": 32.37,
+ "cognitive_load": 3.25,
+ "safety_score": 72.03,
+ "tech_debt": 25.64,
"verification": 2.31,
"api_exposure": 0.67,
"concurrency": 0.0,
@@ -4395,7 +4395,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 4.47,
+ "documentation": 3.97,
"secrets_risk": 0.0
}
},
@@ -4403,13 +4403,13 @@
"file_count": 7,
"total_mass": 23276.2,
"avg_exposures": {
- "cognitive_load": 19.67,
- "safety_score": 10.54,
- "tech_debt": 34.81,
- "verification": 35.7,
+ "cognitive_load": 19.69,
+ "safety_score": 10.57,
+ "tech_debt": 34.99,
+ "verification": 35.71,
"api_exposure": 0.51,
- "concurrency": 11.33,
- "state_flux": 33.54,
+ "concurrency": 12.01,
+ "state_flux": 34.34,
"dead_code": 6.84,
"spec_match": 100.0,
"stability": 50.0,
@@ -4422,18 +4422,18 @@
"file_count": 18,
"total_mass": 4178.19,
"avg_exposures": {
- "cognitive_load": 38.43,
- "safety_score": 75.7,
- "tech_debt": 60.83,
- "verification": 36.9,
+ "cognitive_load": 38.97,
+ "safety_score": 76.83,
+ "tech_debt": 64.84,
+ "verification": 36.91,
"api_exposure": 1.03,
- "concurrency": 10.58,
+ "concurrency": 10.74,
"state_flux": 88.89,
"dead_code": 4.08,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 23.29,
+ "documentation": 24.62,
"secrets_risk": 0.0
}
},
@@ -4441,18 +4441,18 @@
"file_count": 7,
"total_mass": 485.62,
"avg_exposures": {
- "cognitive_load": 30.33,
- "safety_score": 70.75,
- "tech_debt": 50.18,
- "verification": 2.42,
+ "cognitive_load": 31.06,
+ "safety_score": 73.42,
+ "tech_debt": 57.47,
+ "verification": 2.43,
"api_exposure": 0.88,
"concurrency": 0.0,
- "state_flux": 96.67,
+ "state_flux": 96.82,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 16.75,
+ "documentation": 19.48,
"secrets_risk": 0.0
}
},
@@ -4460,9 +4460,9 @@
"file_count": 1,
"total_mass": 232.14,
"avg_exposures": {
- "cognitive_load": 38.63,
- "safety_score": 97.84,
- "tech_debt": 20.26,
+ "cognitive_load": 38.89,
+ "safety_score": 97.97,
+ "tech_debt": 22.64,
"verification": 80.0,
"api_exposure": 0.32,
"concurrency": 0.0,
@@ -4479,13 +4479,13 @@
"file_count": 5,
"total_mass": 508.82,
"avg_exposures": {
- "cognitive_load": 26.91,
- "safety_score": 69.07,
- "tech_debt": 45.66,
- "verification": 2.42,
+ "cognitive_load": 27.3,
+ "safety_score": 70.14,
+ "tech_debt": 48.46,
+ "verification": 2.44,
"api_exposure": 4.09,
"concurrency": 0.0,
- "state_flux": 79.84,
+ "state_flux": 79.85,
"dead_code": 1.57,
"spec_match": 100.0,
"stability": 50.0,
@@ -4498,13 +4498,13 @@
"file_count": 1,
"total_mass": 20.4,
"avg_exposures": {
- "cognitive_load": 9.55,
- "safety_score": 57.23,
- "tech_debt": 37.75,
- "verification": 2.42,
+ "cognitive_load": 10.2,
+ "safety_score": 61.37,
+ "tech_debt": 50.0,
+ "verification": 2.43,
"api_exposure": 3.26,
"concurrency": 0.0,
- "state_flux": 91.68,
+ "state_flux": 92.13,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
@@ -4517,18 +4517,18 @@
"file_count": 7,
"total_mass": 4362.76,
"avg_exposures": {
- "cognitive_load": 35.29,
- "safety_score": 85.91,
- "tech_debt": 36.63,
- "verification": 57.82,
+ "cognitive_load": 35.34,
+ "safety_score": 86.68,
+ "tech_debt": 37.33,
+ "verification": 57.83,
"api_exposure": 2.61,
- "concurrency": 39.22,
- "state_flux": 91.45,
+ "concurrency": 40.13,
+ "state_flux": 91.65,
"dead_code": 4.41,
"spec_match": 85.37,
"stability": 50.0,
"churn": 0.0,
- "documentation": 39.43,
+ "documentation": 40.39,
"secrets_risk": 0.0
}
},
@@ -4536,13 +4536,13 @@
"file_count": 4,
"total_mass": 223.04,
"avg_exposures": {
- "cognitive_load": 26.84,
- "safety_score": 44.35,
- "tech_debt": 37.27,
+ "cognitive_load": 24.59,
+ "safety_score": 43.08,
+ "tech_debt": 36.62,
"verification": 21.81,
"api_exposure": 0.0,
- "concurrency": 4.79,
- "state_flux": 25.6,
+ "concurrency": 4.2,
+ "state_flux": 23.91,
"dead_code": 4.19,
"spec_match": 100.0,
"stability": 50.0,
@@ -4555,18 +4555,18 @@
"file_count": 17,
"total_mass": 2469.34,
"avg_exposures": {
- "cognitive_load": 63.21,
- "safety_score": 86.95,
- "tech_debt": 2.7,
- "verification": 34.4,
+ "cognitive_load": 61.96,
+ "safety_score": 88.36,
+ "tech_debt": 2.42,
+ "verification": 34.39,
"api_exposure": 0.05,
- "concurrency": 1.08,
- "state_flux": 86.02,
+ "concurrency": 0.94,
+ "state_flux": 85.18,
"dead_code": 3.94,
"spec_match": 41.18,
"stability": 50.0,
"churn": 0.0,
- "documentation": 7.79,
+ "documentation": 5.75,
"secrets_risk": 0.0
}
},
@@ -4574,18 +4574,18 @@
"file_count": 6,
"total_mass": 994.12,
"avg_exposures": {
- "cognitive_load": 76.42,
- "safety_score": 90.09,
- "tech_debt": 33.29,
+ "cognitive_load": 75.7,
+ "safety_score": 90.33,
+ "tech_debt": 33.22,
"verification": 41.22,
"api_exposure": 0.39,
- "concurrency": 16.57,
- "state_flux": 88.57,
+ "concurrency": 16.55,
+ "state_flux": 87.99,
"dead_code": 2.6,
"spec_match": 66.67,
"stability": 50.0,
"churn": 0.0,
- "documentation": 13.29,
+ "documentation": 9.85,
"secrets_risk": 0.0
}
},
@@ -4593,18 +4593,18 @@
"file_count": 24,
"total_mass": 1469.34,
"avg_exposures": {
- "cognitive_load": 51.53,
- "safety_score": 78.69,
+ "cognitive_load": 49.77,
+ "safety_score": 79.55,
"tech_debt": 0.0,
- "verification": 21.88,
+ "verification": 21.86,
"api_exposure": 0.41,
- "concurrency": 0.99,
- "state_flux": 69.9,
+ "concurrency": 0.87,
+ "state_flux": 69.23,
"dead_code": 7.03,
"spec_match": 25.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 6.47,
+ "documentation": 3.66,
"secrets_risk": 0.0
}
},
@@ -4612,18 +4612,18 @@
"file_count": 23,
"total_mass": 6013.0,
"avg_exposures": {
- "cognitive_load": 52.25,
- "safety_score": 57.92,
- "tech_debt": 55.39,
- "verification": 15.97,
+ "cognitive_load": 50.1,
+ "safety_score": 51.31,
+ "tech_debt": 53.45,
+ "verification": 9.23,
"api_exposure": 1.5,
- "concurrency": 16.04,
- "state_flux": 76.75,
+ "concurrency": 15.63,
+ "state_flux": 76.3,
"dead_code": 2.53,
"spec_match": 52.17,
"stability": 50.0,
"churn": 0.0,
- "documentation": 14.6,
+ "documentation": 11.76,
"secrets_risk": 0.0
}
},
@@ -4631,18 +4631,18 @@
"file_count": 13,
"total_mass": 2036.02,
"avg_exposures": {
- "cognitive_load": 73.81,
- "safety_score": 73.86,
- "tech_debt": 17.39,
- "verification": 38.25,
+ "cognitive_load": 72.6,
+ "safety_score": 74.07,
+ "tech_debt": 15.61,
+ "verification": 38.24,
"api_exposure": 0.86,
- "concurrency": 6.47,
- "state_flux": 76.44,
+ "concurrency": 6.3,
+ "state_flux": 76.0,
"dead_code": 0.94,
"spec_match": 61.54,
"stability": 50.0,
"churn": 0.0,
- "documentation": 3.55,
+ "documentation": 3.06,
"secrets_risk": 0.0
}
},
@@ -4650,18 +4650,18 @@
"file_count": 23,
"total_mass": 633.94,
"avg_exposures": {
- "cognitive_load": 22.09,
- "safety_score": 77.22,
- "tech_debt": 50.82,
- "verification": 5.77,
+ "cognitive_load": 21.09,
+ "safety_score": 76.32,
+ "tech_debt": 44.79,
+ "verification": 5.76,
"api_exposure": 0.75,
- "concurrency": 5.95,
- "state_flux": 92.0,
+ "concurrency": 5.79,
+ "state_flux": 91.37,
"dead_code": 0.0,
"spec_match": 65.22,
"stability": 50.0,
"churn": 0.0,
- "documentation": 13.37,
+ "documentation": 9.97,
"secrets_risk": 0.0
}
},
@@ -4669,8 +4669,8 @@
"file_count": 8,
"total_mass": 150.44,
"avg_exposures": {
- "cognitive_load": 15.94,
- "safety_score": 72.01,
+ "cognitive_load": 13.96,
+ "safety_score": 70.82,
"tech_debt": 0.0,
"verification": 2.3,
"api_exposure": 0.0,
@@ -4688,18 +4688,18 @@
"file_count": 24,
"total_mass": 353.34,
"avg_exposures": {
- "cognitive_load": 8.24,
- "safety_score": 45.73,
- "tech_debt": 63.23,
- "verification": 5.65,
+ "cognitive_load": 7.18,
+ "safety_score": 45.89,
+ "tech_debt": 56.82,
+ "verification": 5.64,
"api_exposure": 0.43,
- "concurrency": 1.14,
- "state_flux": 20.04,
+ "concurrency": 1.01,
+ "state_flux": 19.13,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 4.44,
+ "documentation": 4.22,
"secrets_risk": 0.0
}
},
@@ -4707,18 +4707,18 @@
"file_count": 30,
"total_mass": 452.3,
"avg_exposures": {
- "cognitive_load": 7.71,
- "safety_score": 25.89,
- "tech_debt": 92.33,
- "verification": 4.92,
+ "cognitive_load": 6.96,
+ "safety_score": 20.77,
+ "tech_debt": 85.37,
+ "verification": 4.91,
"api_exposure": 0.11,
- "concurrency": 31.78,
- "state_flux": 14.5,
+ "concurrency": 30.47,
+ "state_flux": 13.64,
"dead_code": 0.25,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 0.71,
+ "documentation": 0.4,
"secrets_risk": 0.0
}
},
@@ -4727,12 +4727,12 @@
"total_mass": 97.58,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 21.82,
- "tech_debt": 50.27,
+ "safety_score": 21.38,
+ "tech_debt": 42.76,
"verification": 2.31,
"api_exposure": 0.0,
- "concurrency": 10.82,
- "state_flux": 8.42,
+ "concurrency": 10.36,
+ "state_flux": 7.78,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
@@ -4745,13 +4745,13 @@
"file_count": 8,
"total_mass": 212.52,
"avg_exposures": {
- "cognitive_load": 8.19,
- "safety_score": 51.5,
- "tech_debt": 93.13,
- "verification": 12.12,
+ "cognitive_load": 6.64,
+ "safety_score": 50.94,
+ "tech_debt": 87.13,
+ "verification": 12.11,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 28.78,
+ "state_flux": 26.99,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
@@ -4764,18 +4764,18 @@
"file_count": 24,
"total_mass": 346.56,
"avg_exposures": {
- "cognitive_load": 5.7,
- "safety_score": 14.94,
- "tech_debt": 90.85,
- "verification": 2.36,
+ "cognitive_load": 4.87,
+ "safety_score": 12.0,
+ "tech_debt": 89.7,
+ "verification": 2.33,
"api_exposure": 0.08,
"concurrency": 0.0,
- "state_flux": 5.74,
+ "state_flux": 5.36,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 2.66,
+ "documentation": 2.08,
"secrets_risk": 0.0
}
},
@@ -4783,13 +4783,13 @@
"file_count": 30,
"total_mass": 312.78,
"avg_exposures": {
- "cognitive_load": 3.45,
- "safety_score": 17.2,
- "tech_debt": 91.84,
- "verification": 2.33,
+ "cognitive_load": 3.07,
+ "safety_score": 16.15,
+ "tech_debt": 85.71,
+ "verification": 2.32,
"api_exposure": 0.0,
- "concurrency": 1.63,
- "state_flux": 7.68,
+ "concurrency": 1.5,
+ "state_flux": 7.43,
"dead_code": 0.34,
"spec_match": 100.0,
"stability": 50.0,
@@ -4870,7 +4870,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 16.37,
+ "documentation": 8.93,
"secrets_risk": 0.0
}
},
@@ -4889,7 +4889,7 @@
"spec_match": 50.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 54.88,
+ "documentation": 22.05,
"secrets_risk": 0.0
}
},
@@ -4897,13 +4897,13 @@
"file_count": 6,
"total_mass": 0.08,
"avg_exposures": {
- "cognitive_load": 3.25,
- "safety_score": 11.63,
- "tech_debt": 14.68,
+ "cognitive_load": 2.26,
+ "safety_score": 9.4,
+ "tech_debt": 6.29,
"verification": 2.31,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 6.29,
+ "state_flux": 5.17,
"dead_code": 0.0,
"spec_match": 16.67,
"stability": 50.0,
@@ -4927,7 +4927,7 @@
"spec_match": 0.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 61.24,
+ "documentation": 25.98,
"secrets_risk": 0.0
}
},
@@ -4935,8 +4935,8 @@
"file_count": 5,
"total_mass": 0.19,
"avg_exposures": {
- "cognitive_load": 1.1,
- "safety_score": 21.78,
+ "cognitive_load": 0.97,
+ "safety_score": 20.51,
"tech_debt": 0.0,
"verification": 2.3,
"api_exposure": 5.67,
@@ -4946,7 +4946,7 @@
"spec_match": 20.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 32.96,
+ "documentation": 29.74,
"secrets_risk": 0.0
}
},
@@ -4954,18 +4954,18 @@
"file_count": 5,
"total_mass": 0.15,
"avg_exposures": {
- "cognitive_load": 12.83,
- "safety_score": 71.02,
+ "cognitive_load": 10.76,
+ "safety_score": 68.1,
"tech_debt": 0.0,
- "verification": 2.36,
+ "verification": 2.34,
"api_exposure": 5.67,
"concurrency": 0.0,
- "state_flux": 61.5,
+ "state_flux": 55.89,
"dead_code": 0.0,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 40.86,
+ "documentation": 25.25,
"secrets_risk": 0.0
}
},
@@ -4973,18 +4973,18 @@
"file_count": 5,
"total_mass": 8323.37,
"avg_exposures": {
- "cognitive_load": 18.92,
- "safety_score": 29.61,
- "tech_debt": 39.15,
- "verification": 49.02,
+ "cognitive_load": 19.1,
+ "safety_score": 32.01,
+ "tech_debt": 42.44,
+ "verification": 49.01,
"api_exposure": 8.08,
- "concurrency": 9.69,
- "state_flux": 19.1,
+ "concurrency": 10.25,
+ "state_flux": 19.73,
"dead_code": 3.07,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 32.47,
+ "documentation": 31.94,
"secrets_risk": 0.0
}
},
@@ -4992,18 +4992,18 @@
"file_count": 6,
"total_mass": 7700.5,
"avg_exposures": {
- "cognitive_load": 52.42,
- "safety_score": 68.22,
- "tech_debt": 54.16,
+ "cognitive_load": 50.89,
+ "safety_score": 72.31,
+ "tech_debt": 54.92,
"verification": 80.0,
"api_exposure": 1.54,
- "concurrency": 33.42,
- "state_flux": 84.4,
+ "concurrency": 33.91,
+ "state_flux": 84.91,
"dead_code": 3.33,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 12.75,
+ "documentation": 12.82,
"secrets_risk": 0.0
}
},
@@ -5012,9 +5012,9 @@
"total_mass": 15.76,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 72.06,
- "tech_debt": 60.43,
- "verification": 2.35,
+ "safety_score": 71.72,
+ "tech_debt": 53.79,
+ "verification": 2.34,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5031,17 +5031,17 @@
"total_mass": 312.88,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 45.04,
- "tech_debt": 51.62,
+ "safety_score": 45.62,
+ "tech_debt": 43.22,
"verification": 2.33,
"api_exposure": 0.98,
"concurrency": 0.0,
- "state_flux": 1.22,
+ "state_flux": 1.2,
"dead_code": 0.0,
"spec_match": 98.99,
"stability": 50.0,
"churn": 0.0,
- "documentation": 11.6,
+ "documentation": 7.49,
"secrets_risk": 0.0
}
},
@@ -5050,9 +5050,9 @@
"total_mass": 3.12,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 76.08,
+ "safety_score": 76.85,
"tech_debt": 0.0,
- "verification": 2.35,
+ "verification": 2.34,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5068,9 +5068,9 @@
"file_count": 43,
"total_mass": 204.5,
"avg_exposures": {
- "cognitive_load": 3.58,
- "safety_score": 61.07,
- "tech_debt": 72.4,
+ "cognitive_load": 3.09,
+ "safety_score": 61.88,
+ "tech_debt": 61.05,
"verification": 2.37,
"api_exposure": 0.0,
"concurrency": 0.0,
@@ -5088,12 +5088,12 @@
"total_mass": 97.88,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 79.13,
- "tech_debt": 77.95,
+ "safety_score": 79.56,
+ "tech_debt": 68.06,
"verification": 2.37,
"api_exposure": 0.0,
"concurrency": 0.0,
- "state_flux": 44.28,
+ "state_flux": 42.08,
"dead_code": 0.0,
"spec_match": 90.0,
"stability": 50.0,
@@ -5106,18 +5106,18 @@
"file_count": 98,
"total_mass": 26789.34,
"avg_exposures": {
- "cognitive_load": 36.06,
- "safety_score": 56.65,
- "tech_debt": 18.39,
- "verification": 20.65,
+ "cognitive_load": 34.93,
+ "safety_score": 57.59,
+ "tech_debt": 17.42,
+ "verification": 19.85,
"api_exposure": 4.04,
- "concurrency": 10.09,
- "state_flux": 57.92,
+ "concurrency": 9.74,
+ "state_flux": 57.44,
"dead_code": 3.04,
"spec_match": 98.98,
"stability": 50.0,
"churn": 0.0,
- "documentation": 39.49,
+ "documentation": 31.48,
"secrets_risk": 0.0
}
},
@@ -5125,18 +5125,18 @@
"file_count": 43,
"total_mass": 21390.2,
"avg_exposures": {
- "cognitive_load": 74.01,
- "safety_score": 68.34,
- "tech_debt": 20.15,
- "verification": 47.55,
+ "cognitive_load": 73.23,
+ "safety_score": 64.76,
+ "tech_debt": 19.28,
+ "verification": 34.94,
"api_exposure": 0.66,
- "concurrency": 26.19,
- "state_flux": 91.16,
+ "concurrency": 25.58,
+ "state_flux": 91.11,
"dead_code": 2.82,
"spec_match": 86.05,
"stability": 50.0,
"churn": 0.0,
- "documentation": 23.43,
+ "documentation": 20.27,
"secrets_risk": 0.0
}
},
@@ -5144,10 +5144,10 @@
"file_count": 7,
"total_mass": 1317.6,
"avg_exposures": {
- "cognitive_load": 77.02,
- "safety_score": 94.26,
+ "cognitive_load": 73.86,
+ "safety_score": 96.73,
"tech_debt": 0.0,
- "verification": 35.77,
+ "verification": 35.75,
"api_exposure": 0.64,
"concurrency": 0.0,
"state_flux": 99.99,
@@ -5155,7 +5155,7 @@
"spec_match": 42.86,
"stability": 50.0,
"churn": 0.0,
- "documentation": 16.24,
+ "documentation": 13.44,
"secrets_risk": 0.0
}
},
@@ -5163,18 +5163,18 @@
"file_count": 16,
"total_mass": 3759.8,
"avg_exposures": {
- "cognitive_load": 42.73,
- "safety_score": 84.35,
- "tech_debt": 3.12,
- "verification": 31.53,
+ "cognitive_load": 41.84,
+ "safety_score": 85.7,
+ "tech_debt": 2.86,
+ "verification": 31.52,
"api_exposure": 2.59,
"concurrency": 0.0,
- "state_flux": 96.58,
+ "state_flux": 96.2,
"dead_code": 1.67,
"spec_match": 56.25,
"stability": 50.0,
"churn": 0.0,
- "documentation": 36.18,
+ "documentation": 31.7,
"secrets_risk": 0.0
}
},
@@ -5258,9 +5258,9 @@
"file_count": 5,
"total_mass": 7237.36,
"avg_exposures": {
- "cognitive_load": 40.39,
- "safety_score": 86.28,
- "tech_debt": 47.03,
+ "cognitive_load": 33.8,
+ "safety_score": 90.49,
+ "tech_debt": 45.88,
"verification": 80.0,
"api_exposure": 0.06,
"concurrency": 0.0,
@@ -5277,9 +5277,9 @@
"file_count": 5,
"total_mass": 2298.02,
"avg_exposures": {
- "cognitive_load": 76.42,
- "safety_score": 75.67,
- "tech_debt": 18.83,
+ "cognitive_load": 75.13,
+ "safety_score": 77.95,
+ "tech_debt": 17.72,
"verification": 64.46,
"api_exposure": 0.0,
"concurrency": 40.0,
@@ -5288,7 +5288,7 @@
"spec_match": 80.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 3.47,
+ "documentation": 2.82,
"secrets_risk": 0.0
}
},
@@ -5296,18 +5296,18 @@
"file_count": 8,
"total_mass": 13748.42,
"avg_exposures": {
- "cognitive_load": 79.08,
- "safety_score": 92.96,
- "tech_debt": 67.55,
+ "cognitive_load": 74.69,
+ "safety_score": 96.33,
+ "tech_debt": 66.24,
"verification": 80.0,
"api_exposure": 0.06,
- "concurrency": 16.98,
+ "concurrency": 16.42,
"state_flux": 100.0,
"dead_code": 4.11,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 15.06,
+ "documentation": 12.9,
"secrets_risk": 0.0
}
},
@@ -5315,10 +5315,10 @@
"file_count": 7,
"total_mass": 1830.62,
"avg_exposures": {
- "cognitive_load": 41.41,
- "safety_score": 78.16,
+ "cognitive_load": 40.48,
+ "safety_score": 85.08,
"tech_debt": 69.42,
- "verification": 35.36,
+ "verification": 35.37,
"api_exposure": 3.67,
"concurrency": 14.28,
"state_flux": 99.99,
@@ -5326,7 +5326,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 15.62,
+ "documentation": 13.87,
"secrets_risk": 0.0
}
},
@@ -5334,10 +5334,10 @@
"file_count": 7,
"total_mass": 5611.52,
"avg_exposures": {
- "cognitive_load": 54.67,
- "safety_score": 80.31,
+ "cognitive_load": 51.92,
+ "safety_score": 87.7,
"tech_debt": 51.99,
- "verification": 80.0,
+ "verification": 57.9,
"api_exposure": 5.38,
"concurrency": 2.77,
"state_flux": 100.0,
@@ -5345,7 +5345,7 @@
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 26.6,
+ "documentation": 22.86,
"secrets_risk": 0.0
}
},
@@ -5353,8 +5353,8 @@
"file_count": 1,
"total_mass": 825.8,
"avg_exposures": {
- "cognitive_load": 72.18,
- "safety_score": 80.66,
+ "cognitive_load": 68.88,
+ "safety_score": 87.48,
"tech_debt": 11.45,
"verification": 80.0,
"api_exposure": 1.91,
@@ -5524,18 +5524,18 @@
"file_count": 7,
"total_mass": 6307.04,
"avg_exposures": {
- "cognitive_load": 16.58,
- "safety_score": 50.21,
- "tech_debt": 37.49,
- "verification": 57.86,
+ "cognitive_load": 14.52,
+ "safety_score": 49.39,
+ "tech_debt": 35.85,
+ "verification": 57.85,
"api_exposure": 4.85,
"concurrency": 0.0,
- "state_flux": 10.94,
+ "state_flux": 9.15,
"dead_code": 1.44,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 31.76,
+ "documentation": 21.5,
"secrets_risk": 0.0
}
},
@@ -5543,18 +5543,18 @@
"file_count": 7,
"total_mass": 596.92,
"avg_exposures": {
- "cognitive_load": 18.52,
- "safety_score": 73.66,
- "tech_debt": 83.05,
- "verification": 13.57,
+ "cognitive_load": 16.22,
+ "safety_score": 67.86,
+ "tech_debt": 76.44,
+ "verification": 13.53,
"api_exposure": 2.52,
"concurrency": 0.0,
- "state_flux": 80.71,
+ "state_flux": 78.32,
"dead_code": 0.0,
"spec_match": 86.61,
"stability": 50.0,
"churn": 0.0,
- "documentation": 22.1,
+ "documentation": 10.46,
"secrets_risk": 0.0
}
},
@@ -5565,7 +5565,7 @@
"cognitive_load": 0.0,
"safety_score": 0.0,
"tech_debt": 0.0,
- "verification": 2.32,
+ "verification": 2.31,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5581,10 +5581,10 @@
"file_count": 1,
"total_mass": 38.04,
"avg_exposures": {
- "cognitive_load": 23.87,
- "safety_score": 72.4,
- "tech_debt": 73.11,
- "verification": 2.78,
+ "cognitive_load": 19.78,
+ "safety_score": 68.38,
+ "tech_debt": 37.75,
+ "verification": 2.71,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5600,10 +5600,10 @@
"file_count": 1,
"total_mass": 5.08,
"avg_exposures": {
- "cognitive_load": 7.45,
- "safety_score": 73.66,
+ "cognitive_load": 5.95,
+ "safety_score": 70.21,
"tech_debt": 0.0,
- "verification": 2.36,
+ "verification": 2.35,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5619,10 +5619,10 @@
"file_count": 3,
"total_mass": 56.16,
"avg_exposures": {
- "cognitive_load": 14.33,
+ "cognitive_load": 11.44,
"safety_score": 0.0,
"tech_debt": 0.0,
- "verification": 2.51,
+ "verification": 2.47,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5641,7 +5641,7 @@
"cognitive_load": 0.0,
"safety_score": 0.0,
"tech_debt": 0.0,
- "verification": 2.32,
+ "verification": 2.31,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5658,7 +5658,7 @@
"total_mass": 0.95,
"avg_exposures": {
"cognitive_load": 0.0,
- "safety_score": 28.67,
+ "safety_score": 21.8,
"tech_debt": 0.0,
"verification": 2.3,
"api_exposure": 0.0,
@@ -5676,10 +5676,10 @@
"file_count": 16,
"total_mass": 46.72,
"avg_exposures": {
- "cognitive_load": 7.45,
+ "cognitive_load": 5.95,
"safety_score": 0.0,
"tech_debt": 0.0,
- "verification": 2.34,
+ "verification": 2.33,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5695,10 +5695,10 @@
"file_count": 11,
"total_mass": 388.02,
"avg_exposures": {
- "cognitive_load": 14.08,
- "safety_score": 11.84,
- "tech_debt": 8.66,
- "verification": 2.48,
+ "cognitive_load": 12.1,
+ "safety_score": 8.62,
+ "tech_debt": 7.43,
+ "verification": 2.43,
"api_exposure": 0.0,
"concurrency": 0.0,
"state_flux": 0.0,
@@ -5771,18 +5771,18 @@
"file_count": 18,
"total_mass": 2443.68,
"avg_exposures": {
- "cognitive_load": 63.77,
- "safety_score": 85.43,
- "tech_debt": 61.14,
+ "cognitive_load": 61.9,
+ "safety_score": 86.5,
+ "tech_debt": 54.57,
"verification": 2.33,
"api_exposure": 2.76,
- "concurrency": 1.54,
- "state_flux": 93.02,
+ "concurrency": 1.29,
+ "state_flux": 92.82,
"dead_code": 4.74,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 22.84,
+ "documentation": 14.93,
"secrets_risk": 0.0
}
},
@@ -5790,18 +5790,18 @@
"file_count": 9,
"total_mass": 1844.28,
"avg_exposures": {
- "cognitive_load": 51.01,
- "safety_score": 88.83,
- "tech_debt": 3.99,
- "verification": 10.98,
+ "cognitive_load": 49.96,
+ "safety_score": 90.62,
+ "tech_debt": 3.44,
+ "verification": 10.97,
"api_exposure": 3.97,
"concurrency": 0.0,
- "state_flux": 93.4,
+ "state_flux": 92.61,
"dead_code": 8.02,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 19.37,
+ "documentation": 14.76,
"secrets_risk": 0.0
}
},
@@ -5923,18 +5923,18 @@
"file_count": 4,
"total_mass": 3953.78,
"avg_exposures": {
- "cognitive_load": 34.27,
- "safety_score": 56.48,
- "tech_debt": 69.23,
+ "cognitive_load": 31.17,
+ "safety_score": 52.0,
+ "tech_debt": 66.62,
"verification": 80.0,
"api_exposure": 5.36,
"concurrency": 0.0,
- "state_flux": 39.06,
+ "state_flux": 36.75,
"dead_code": 3.63,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 61.8,
+ "documentation": 53.93,
"secrets_risk": 0.0
}
},
@@ -5942,18 +5942,18 @@
"file_count": 5,
"total_mass": 19657.58,
"avg_exposures": {
- "cognitive_load": 24.28,
- "safety_score": 50.0,
- "tech_debt": 12.64,
- "verification": 80.0,
+ "cognitive_load": 22.29,
+ "safety_score": 42.57,
+ "tech_debt": 12.38,
+ "verification": 49.0,
"api_exposure": 3.65,
- "concurrency": 10.77,
- "state_flux": 12.06,
+ "concurrency": 8.49,
+ "state_flux": 10.88,
"dead_code": 5.11,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 42.11,
+ "documentation": 33.33,
"secrets_risk": 0.0
}
},
@@ -5961,18 +5961,18 @@
"file_count": 6,
"total_mass": 7673.62,
"avg_exposures": {
- "cognitive_load": 28.0,
- "safety_score": 33.88,
- "tech_debt": 11.18,
- "verification": 67.09,
+ "cognitive_load": 24.64,
+ "safety_score": 22.16,
+ "tech_debt": 10.53,
+ "verification": 28.32,
"api_exposure": 1.81,
- "concurrency": 15.89,
- "state_flux": 11.76,
+ "concurrency": 12.18,
+ "state_flux": 9.66,
"dead_code": 2.66,
"spec_match": 100.0,
"stability": 50.0,
"churn": 0.0,
- "documentation": 29.57,
+ "documentation": 25.41,
"secrets_risk": 0.0
}
},
@@ -5980,18 +5980,18 @@
"file_count": 8,
"total_mass": 3155.88,
"avg_exposures": {
- "cognitive_load": 17.18,
- "safety_score": 41.53,
- "tech_debt": 37.6,
- "verification": 50.92,
+ "cognitive_load": 15.86,
+ "safety_score": 32.92,
+ "tech_debt": 36.48,
+ "verification": 41.24,
"api_exposure": 5.9,
- "concurrency": 2.34,
- "state_flux": 17.25,
+ "concurrency": 1.79,
+ "state_flux": 16.21,
"dead_code": 3.69,
"spec_match": 87.5,
"stability": 50.0,
"churn": 0.0,
- "documentation": 60.29,
+ "documentation": 40.9,
"secrets_risk": 0.0
}
}
@@ -6125,12 +6125,12 @@
{
"name": "mach_install_mig.sh",
"path": "shell/darwin-xnu/mach_install_mig.sh",
- "value": 99.9979
+ "value": 99.9999
},
{
"name": "mkautoconfamal.sh",
"path": "shell/sqlite/mkautoconfamal.sh",
- "value": 99.9978
+ "value": 99.9999
}
],
"lowest": [
@@ -6638,13 +6638,13 @@
"path": "abap/abapGit/zcl_abapgit_ajson.clas.abap",
"score": 0.0,
"btw": 0.0,
- "state_mutation": 34.4679
+ "state_mutation": 29.2658
},
{
"path": "abap/abapGit/zcl_abapgit_git_porcelain.clas.abap",
"score": 0.0,
"btw": 0.0,
- "state_mutation": 62.6404
+ "state_mutation": 56.8767
},
{
"path": "abap/abapGit/zcl_abapgit_http_client.clas.abap",
@@ -6656,7 +6656,7 @@
"path": "abap/abapGit/zcl_abapgit_objects.clas.abap",
"score": 0.0,
"btw": 0.0,
- "state_mutation": 30.3741
+ "state_mutation": 25.5489
}
],
"fragile_dependency_chain": [
@@ -6670,13 +6670,13 @@
"path": "abap/abapGit/zcl_abapgit_ajson.clas.abap",
"score": 0.0,
"close": 0.0,
- "err": 50.207
+ "err": 46.6542
},
{
"path": "abap/abapGit/zcl_abapgit_git_porcelain.clas.abap",
"score": 0.0,
"close": 0.0,
- "err": 56.7894
+ "err": 56.5334
},
{
"path": "abap/abapGit/zcl_abapgit_http_client.clas.abap",
@@ -6688,7 +6688,7 @@
"path": "abap/abapGit/zcl_abapgit_objects.clas.abap",
"score": 0.0,
"close": 0.0,
- "err": 46.7539
+ "err": 41.9958
}
],
"undocumented_critical_path": [
@@ -6702,79 +6702,79 @@
"path": "abap/abapGit/zcl_abapgit_ajson.clas.abap",
"score": 0.0,
"pr": 0.0,
- "doc": 13.5585
+ "doc": 12.112
},
{
"path": "abap/abapGit/zcl_abapgit_git_porcelain.clas.abap",
"score": 0.0,
"pr": 0.0,
- "doc": 13.8191
+ "doc": 12.1409
},
{
"path": "abap/abapGit/zcl_abapgit_http_client.clas.abap",
"score": 0.0,
"pr": 0.0,
- "doc": 21.1066
+ "doc": 14.3543
},
{
"path": "abap/abapGit/zcl_abapgit_objects.clas.abap",
"score": 0.0,
"pr": 0.0,
- "doc": 14.1064
+ "doc": 12.4084
}
]
},
"cumulative_risk": {
"highest": [
- {
- "name": "gengc.lua",
- "path": "lua/cosmopolitan/gengc.lua",
- "value": 755.81
- },
{
"name": "frames.ts",
"path": "typescript/playwright/frames.ts",
- "value": 739.26
- },
- {
- "name": "IC2244.2.cbl",
- "path": "cobol/che-che4z_nist_ccvs85/IC2244.2.cbl",
- "value": 737.13
+ "value": 739.93
},
{
"name": "containerbackend.go",
"path": "dockerfile/moby/builder/dockerfile/containerbackend.go",
- "value": 732.36
+ "value": 737.16
},
{
- "name": "bidiConnection.ts",
- "path": "typescript/playwright/bidiConnection.ts",
- "value": 732.29
+ "name": "IC2244.2.cbl",
+ "path": "cobol/che-che4z_nist_ccvs85/IC2244.2.cbl",
+ "value": 735.22
},
{
- "name": "revdeploylibraryios.livecodescript",
- "path": "livecode/livecode/revdeploylibraryios.livecodescript",
- "value": 731.17
+ "name": "bidiConnection.ts",
+ "path": "typescript/playwright/bidiConnection.ts",
+ "value": 733.35
},
{
"name": "IC2014.2.cbl",
"path": "cobol/che-che4z_nist_ccvs85/IC2014.2.cbl",
- "value": 729.56
+ "value": 730.82
},
{
"name": "dispatcher.ts",
"path": "typescript/playwright/dispatcher.ts",
- "value": 728.94
+ "value": 730.12
+ },
+ {
+ "name": "gengc.lua",
+ "path": "lua/cosmopolitan/gengc.lua",
+ "value": 728.16
},
{
"name": "connection.ts",
"path": "typescript/playwright/connection.ts",
- "value": 724.53
+ "value": 726.05
},
{
"name": "kubelet.go",
"path": "go/kubernetes/kubelet.go",
- "value": 722.36
+ "value": 726.0
+ },
+ {
+ "name": "async.ts",
+ "path": "typescript/vscode/async.ts",
+ "value": 723.93
}
],
"lowest": [
@@ -11191,18 +11191,18 @@
"Static: Literature & Documentation": "0.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "66.07%",
- "Error & Exception Exposure": "89.18%",
- "Tech Debt Exposure": "99.18%",
- "Testing Exposure": "57.91%",
+ "Cognitive Load Exposure": "65.33%",
+ "Error & Exception Exposure": "89.84%",
+ "Tech Debt Exposure": "98.84%",
+ "Testing Exposure": "57.39%",
"API Exposure": "3.56%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "83.57%",
+ "State Flux Exposure": "83.07%",
"Commented Logic Exposure": "3.05%",
"Specification Exposure": "99.34%",
"Instability Exposure": "49.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.93%",
+ "Documentation Exposure": "12.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -11396,11 +11396,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.121
+ "Raw Cognitive Density": 1.117
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.03%",
- "Error & Exception Exposure": "99.31%",
+ "Cognitive Load Exposure": "78.76%",
+ "Error & Exception Exposure": "99.86%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.12%",
@@ -12554,11 +12554,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.122
+ "Raw Cognitive Density": 1.117
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.06%",
- "Error & Exception Exposure": "99.26%",
+ "Cognitive Load Exposure": "78.79%",
+ "Error & Exception Exposure": "99.85%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.12%",
@@ -13732,11 +13732,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.475
+ "Raw Cognitive Density": 1.469
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.12%",
- "Error & Exception Exposure": "98.22%",
+ "Cognitive Load Exposure": "91.9%",
+ "Error & Exception Exposure": "99.5%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.1%",
@@ -14934,9 +14934,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.14%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -15152,9 +15152,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.14%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -15370,9 +15370,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.14%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -15584,11 +15584,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.52
+ "Raw Cognitive Density": 1.509
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.61%",
- "Error & Exception Exposure": "96.64%",
+ "Cognitive Load Exposure": "95.41%",
+ "Error & Exception Exposure": "98.77%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "12.33%",
@@ -15598,7 +15598,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "80.35%",
+ "Documentation Exposure": "64.75%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -16256,12 +16256,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.42%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -16490,11 +16490,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.099
+ "Raw Cognitive Density": 1.093
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.18%",
- "Error & Exception Exposure": "97.21%",
+ "Cognitive Load Exposure": "79.76%",
+ "Error & Exception Exposure": "99.06%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.72%",
@@ -16504,7 +16504,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "62.92%",
+ "Documentation Exposure": "47.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -17362,12 +17362,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.66%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.43%",
"API Exposure": "6.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "66.82%",
+ "State Flux Exposure": "62.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -17596,16 +17596,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.498
+ "Raw Cognitive Density": 0.415
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.77%",
- "Error & Exception Exposure": "85.01%",
+ "Cognitive Load Exposure": "20.78%",
+ "Error & Exception Exposure": "85.81%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.57%",
+ "Testing Exposure": "2.53%",
"API Exposure": "3.35%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -17884,11 +17884,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.096
+ "Raw Cognitive Density": 1.09
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.99%",
- "Error & Exception Exposure": "97.36%",
+ "Cognitive Load Exposure": "79.59%",
+ "Error & Exception Exposure": "99.13%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "5.13%",
@@ -18852,13 +18852,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.353
+ "Raw Cognitive Density": 1.291
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.77%",
- "Error & Exception Exposure": "88.02%",
+ "Cognitive Load Exposure": "89.71%",
+ "Error & Exception Exposure": "90.47%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.57%",
+ "Testing Exposure": "2.53%",
"API Exposure": "2.96%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -19170,11 +19170,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.113
+ "Raw Cognitive Density": 1.106
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.04%",
- "Error & Exception Exposure": "97.19%",
+ "Cognitive Load Exposure": "80.59%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.38%",
@@ -19184,7 +19184,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "56.8%",
+ "Documentation Exposure": "39.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -19948,16 +19948,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.403
+ "Raw Cognitive Density": 0.316
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.94%",
- "Error & Exception Exposure": "71.09%",
+ "Cognitive Load Exposure": "14.99%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.44%",
"API Exposure": "5.28%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -20186,16 +20186,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.517
+ "Raw Cognitive Density": 0.431
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "28.29%",
- "Error & Exception Exposure": "73.66%",
+ "Cognitive Load Exposure": "21.84%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.45%",
"API Exposure": "5.21%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -20424,16 +20424,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.397
+ "Raw Cognitive Density": 0.312
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.57%",
- "Error & Exception Exposure": "71.09%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "14.76%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.41%",
"API Exposure": "3.46%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -20642,16 +20642,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.56
+ "Raw Cognitive Density": 0.476
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.88%",
- "Error & Exception Exposure": "89.01%",
+ "Cognitive Load Exposure": "25.06%",
+ "Error & Exception Exposure": "90.73%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.48%",
"API Exposure": "5.07%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.08%",
+ "State Flux Exposure": "83.77%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -20870,11 +20870,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.491
+ "Raw Cognitive Density": 1.481
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.08%",
- "Error & Exception Exposure": "96.86%",
+ "Cognitive Load Exposure": "94.9%",
+ "Error & Exception Exposure": "98.89%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.57%",
@@ -20884,7 +20884,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.58%",
+ "Documentation Exposure": "15.18%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -21658,11 +21658,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.557
+ "Raw Cognitive Density": 1.544
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.19%",
- "Error & Exception Exposure": "96.0%",
+ "Cognitive Load Exposure": "95.99%",
+ "Error & Exception Exposure": "98.41%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.75%",
@@ -22170,12 +22170,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "3.27%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -22408,12 +22408,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -22622,11 +22622,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.074
+ "Raw Cognitive Density": 1.068
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.49%",
- "Error & Exception Exposure": "97.11%",
+ "Cognitive Load Exposure": "78.14%",
+ "Error & Exception Exposure": "98.97%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "14.95%",
@@ -22636,7 +22636,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.63%",
+ "Documentation Exposure": "99.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -23714,12 +23714,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.4%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "6.89%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -23948,11 +23948,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.074
+ "Raw Cognitive Density": 1.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.54%",
- "Error & Exception Exposure": "98.32%",
+ "Cognitive Load Exposure": "78.22%",
+ "Error & Exception Exposure": "99.54%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.74%",
@@ -23962,7 +23962,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "57.72%",
+ "Documentation Exposure": "45.45%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -25236,16 +25236,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.036
+ "Raw Cognitive Density": 0.952
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.84%",
- "Error & Exception Exposure": "83.3%",
+ "Cognitive Load Exposure": "69.17%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.48%",
"API Exposure": "3.25%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -25494,16 +25494,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.834
+ "Raw Cognitive Density": 0.748
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.3%",
- "Error & Exception Exposure": "92.9%",
+ "Cognitive Load Exposure": "49.75%",
+ "Error & Exception Exposure": "94.85%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.48%",
"API Exposure": "8.49%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.85%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -25736,12 +25736,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "3.48%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -25970,11 +25970,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.108
+ "Raw Cognitive Density": 1.101
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.73%",
- "Error & Exception Exposure": "96.93%",
+ "Cognitive Load Exposure": "80.3%",
+ "Error & Exception Exposure": "98.93%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.5%",
@@ -26808,13 +26808,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.098
+ "Raw Cognitive Density": 1.054
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.08%",
- "Error & Exception Exposure": "96.4%",
+ "Cognitive Load Exposure": "77.16%",
+ "Error & Exception Exposure": "98.16%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.71%",
+ "Testing Exposure": "2.65%",
"API Exposure": "3.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -27116,11 +27116,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.13
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.03%",
- "Error & Exception Exposure": "98.27%",
+ "Cognitive Load Exposure": "81.49%",
+ "Error & Exception Exposure": "99.5%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.39%",
@@ -27130,7 +27130,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.48%",
+ "Documentation Exposure": "23.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -27694,21 +27694,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.624
+ "Raw Cognitive Density": 0.543
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.69%",
- "Error & Exception Exposure": "95.63%",
+ "Cognitive Load Exposure": "30.39%",
+ "Error & Exception Exposure": "97.34%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.47%",
"API Exposure": "9.9%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.55%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -27926,12 +27926,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.38%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -28134,12 +28134,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.38%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -28338,11 +28338,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.532
+ "Raw Cognitive Density": 1.519
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.8%",
- "Error & Exception Exposure": "98.1%",
+ "Cognitive Load Exposure": "95.59%",
+ "Error & Exception Exposure": "99.43%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.52%",
@@ -28352,7 +28352,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.5%",
+ "Documentation Exposure": "14.88%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -28890,12 +28890,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.37%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -29098,12 +29098,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "85.81%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.41%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -29312,11 +29312,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.581
+ "Raw Cognitive Density": 1.568
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.53%",
- "Error & Exception Exposure": "96.29%",
+ "Cognitive Load Exposure": "96.35%",
+ "Error & Exception Exposure": "98.57%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.33%",
@@ -29326,7 +29326,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.62%",
+ "Documentation Exposure": "13.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -29834,12 +29834,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -30048,11 +30048,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.463
+ "Raw Cognitive Density": 1.456
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.55%",
- "Error & Exception Exposure": "94.71%",
+ "Cognitive Load Exposure": "94.4%",
+ "Error & Exception Exposure": "97.55%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "13.61%",
@@ -30062,7 +30062,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "95.57%",
+ "Documentation Exposure": "90.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -30916,11 +30916,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.529
+ "Raw Cognitive Density": 1.518
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.76%",
- "Error & Exception Exposure": "96.22%",
+ "Cognitive Load Exposure": "95.58%",
+ "Error & Exception Exposure": "98.55%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.41%",
@@ -31514,11 +31514,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.536
+ "Raw Cognitive Density": 1.525
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.87%",
- "Error & Exception Exposure": "96.47%",
+ "Cognitive Load Exposure": "95.69%",
+ "Error & Exception Exposure": "98.68%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.57%",
@@ -31528,7 +31528,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.35%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -32092,11 +32092,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.546
+ "Raw Cognitive Density": 1.535
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.02%",
- "Error & Exception Exposure": "97.7%",
+ "Cognitive Load Exposure": "95.85%",
+ "Error & Exception Exposure": "99.26%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.53%",
@@ -32780,11 +32780,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.514
+ "Raw Cognitive Density": 1.502
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.5%",
- "Error & Exception Exposure": "93.91%",
+ "Cognitive Load Exposure": "95.3%",
+ "Error & Exception Exposure": "97.11%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.89%",
@@ -33458,11 +33458,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.565
+ "Raw Cognitive Density": 1.553
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.31%",
- "Error & Exception Exposure": "94.92%",
+ "Cognitive Load Exposure": "96.12%",
+ "Error & Exception Exposure": "97.81%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.26%",
@@ -34036,13 +34036,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.147
+ "Raw Cognitive Density": 0.073
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.22%",
- "Error & Exception Exposure": "90.12%",
+ "Cognitive Load Exposure": "6.26%",
+ "Error & Exception Exposure": "91.91%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.45%",
"API Exposure": "6.4%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -34284,11 +34284,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.177
+ "Raw Cognitive Density": 1.172
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.68%",
- "Error & Exception Exposure": "97.36%",
+ "Cognitive Load Exposure": "84.41%",
+ "Error & Exception Exposure": "99.14%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -35272,11 +35272,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.228
+ "Raw Cognitive Density": 1.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.14%",
- "Error & Exception Exposure": "96.95%",
+ "Cognitive Load Exposure": "86.84%",
+ "Error & Exception Exposure": "98.94%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -36070,11 +36070,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.52
+ "Raw Cognitive Density": 1.509
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.61%",
- "Error & Exception Exposure": "95.82%",
+ "Cognitive Load Exposure": "95.41%",
+ "Error & Exception Exposure": "98.34%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -36618,11 +36618,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.143
+ "Raw Cognitive Density": 1.136
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.81%",
- "Error & Exception Exposure": "97.7%",
+ "Cognitive Load Exposure": "82.43%",
+ "Error & Exception Exposure": "99.28%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -37466,11 +37466,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.148
+ "Raw Cognitive Density": 1.141
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.1%",
- "Error & Exception Exposure": "97.5%",
+ "Cognitive Load Exposure": "82.69%",
+ "Error & Exception Exposure": "99.19%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -38234,11 +38234,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.229
+ "Raw Cognitive Density": 1.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.16%",
- "Error & Exception Exposure": "97.0%",
+ "Cognitive Load Exposure": "86.87%",
+ "Error & Exception Exposure": "98.97%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -39052,11 +39052,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.126
+ "Raw Cognitive Density": 1.122
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.82%",
- "Error & Exception Exposure": "98.41%",
+ "Cognitive Load Exposure": "81.56%",
+ "Error & Exception Exposure": "99.57%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -40440,11 +40440,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.147
+ "Raw Cognitive Density": 1.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.04%",
- "Error & Exception Exposure": "97.48%",
+ "Cognitive Load Exposure": "82.64%",
+ "Error & Exception Exposure": "99.18%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -41208,11 +41208,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.148
+ "Raw Cognitive Density": 1.141
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.1%",
- "Error & Exception Exposure": "97.5%",
+ "Cognitive Load Exposure": "82.69%",
+ "Error & Exception Exposure": "99.19%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -41976,11 +41976,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.125
+ "Raw Cognitive Density": 1.121
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.76%",
- "Error & Exception Exposure": "98.4%",
+ "Cognitive Load Exposure": "81.5%",
+ "Error & Exception Exposure": "99.57%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -43364,11 +43364,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.14
+ "Raw Cognitive Density": 1.133
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.64%",
- "Error & Exception Exposure": "97.79%",
+ "Cognitive Load Exposure": "82.23%",
+ "Error & Exception Exposure": "99.31%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -44142,11 +44142,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.131
+ "Raw Cognitive Density": 1.125
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.1%",
- "Error & Exception Exposure": "98.05%",
+ "Cognitive Load Exposure": "81.76%",
+ "Error & Exception Exposure": "99.43%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -45120,11 +45120,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.172
+ "Raw Cognitive Density": 1.168
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.41%",
- "Error & Exception Exposure": "97.59%",
+ "Cognitive Load Exposure": "84.16%",
+ "Error & Exception Exposure": "99.25%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -46258,11 +46258,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.175
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.54%",
- "Error & Exception Exposure": "97.53%",
+ "Cognitive Load Exposure": "84.3%",
+ "Error & Exception Exposure": "99.22%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -47396,11 +47396,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.175
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.54%",
- "Error & Exception Exposure": "97.43%",
+ "Cognitive Load Exposure": "84.3%",
+ "Error & Exception Exposure": "99.18%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -48534,11 +48534,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.162
+ "Raw Cognitive Density": 1.158
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.86%",
- "Error & Exception Exposure": "97.89%",
+ "Cognitive Load Exposure": "83.63%",
+ "Error & Exception Exposure": "99.38%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -49832,11 +49832,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.116
+ "Raw Cognitive Density": 1.112
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.23%",
- "Error & Exception Exposure": "98.23%",
+ "Cognitive Load Exposure": "80.95%",
+ "Error & Exception Exposure": "99.5%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -51090,11 +51090,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.228
+ "Raw Cognitive Density": 1.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.12%",
- "Error & Exception Exposure": "97.02%",
+ "Cognitive Load Exposure": "86.83%",
+ "Error & Exception Exposure": "98.97%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -51928,11 +51928,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.195
+ "Raw Cognitive Density": 1.19
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.56%",
- "Error & Exception Exposure": "97.71%",
+ "Cognitive Load Exposure": "85.31%",
+ "Error & Exception Exposure": "99.29%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -53046,11 +53046,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.126
+ "Raw Cognitive Density": 1.121
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.83%",
- "Error & Exception Exposure": "98.12%",
+ "Cognitive Load Exposure": "81.53%",
+ "Error & Exception Exposure": "99.46%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -54194,11 +54194,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.206
+ "Raw Cognitive Density": 1.199
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.09%",
- "Error & Exception Exposure": "96.92%",
+ "Cognitive Load Exposure": "85.79%",
+ "Error & Exception Exposure": "98.93%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -54982,11 +54982,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.187
+ "Raw Cognitive Density": 1.182
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.15%",
- "Error & Exception Exposure": "97.41%",
+ "Cognitive Load Exposure": "84.9%",
+ "Error & Exception Exposure": "99.17%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -56040,11 +56040,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.175
+ "Raw Cognitive Density": 1.171
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.57%",
- "Error & Exception Exposure": "97.69%",
+ "Cognitive Load Exposure": "84.32%",
+ "Error & Exception Exposure": "99.29%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -57178,11 +57178,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.129
+ "Raw Cognitive Density": 1.123
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.97%",
- "Error & Exception Exposure": "98.12%",
+ "Cognitive Load Exposure": "81.63%",
+ "Error & Exception Exposure": "99.45%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -58166,11 +58166,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.148
+ "Raw Cognitive Density": 1.143
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.07%",
- "Error & Exception Exposure": "97.1%",
+ "Cognitive Load Exposure": "82.83%",
+ "Error & Exception Exposure": "99.03%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -59314,11 +59314,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.179
+ "Raw Cognitive Density": 1.174
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.75%",
- "Error & Exception Exposure": "97.5%",
+ "Cognitive Load Exposure": "84.5%",
+ "Error & Exception Exposure": "99.21%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -60412,11 +60412,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.132
+ "Raw Cognitive Density": 1.126
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.15%",
- "Error & Exception Exposure": "98.11%",
+ "Cognitive Load Exposure": "81.8%",
+ "Error & Exception Exposure": "99.45%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -61390,11 +61390,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.157
+ "Raw Cognitive Density": 1.153
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.61%",
- "Error & Exception Exposure": "97.35%",
+ "Cognitive Load Exposure": "83.35%",
+ "Error & Exception Exposure": "99.14%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -62498,11 +62498,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.543
+ "Raw Cognitive Density": 1.531
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.98%",
- "Error & Exception Exposure": "96.47%",
+ "Cognitive Load Exposure": "95.79%",
+ "Error & Exception Exposure": "98.68%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -63046,16 +63046,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.263
+ "Raw Cognitive Density": 0.225
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.46%",
- "Error & Exception Exposure": "63.18%",
+ "Cognitive Load Exposure": "10.91%",
+ "Error & Exception Exposure": "58.9%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "24.97%",
+ "State Flux Exposure": "21.75%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -63384,16 +63384,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.337
+ "Raw Cognitive Density": 0.306
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.07%",
- "Error & Exception Exposure": "62.15%",
+ "Cognitive Load Exposure": "14.49%",
+ "Error & Exception Exposure": "58.81%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "29.41%",
+ "State Flux Exposure": "25.82%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -63732,16 +63732,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
- "Error & Exception Exposure": "67.05%",
+ "Cognitive Load Exposure": "15.19%",
+ "Error & Exception Exposure": "63.84%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.62%",
+ "Testing Exposure": "2.57%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "63.8%",
+ "State Flux Exposure": "59.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -64060,11 +64060,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.428
+ "Raw Cognitive Density": 1.419
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.78%",
- "Error & Exception Exposure": "95.8%",
+ "Cognitive Load Exposure": "93.57%",
+ "Error & Exception Exposure": "98.36%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.23%",
@@ -64638,11 +64638,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.079
+ "Raw Cognitive Density": 1.074
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.85%",
- "Error & Exception Exposure": "97.14%",
+ "Cognitive Load Exposure": "78.53%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.12%",
@@ -65316,11 +65316,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.061
+ "Raw Cognitive Density": 1.057
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.65%",
- "Error & Exception Exposure": "97.16%",
+ "Cognitive Load Exposure": "77.33%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.09%",
@@ -66044,11 +66044,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.055
+ "Raw Cognitive Density": 1.051
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.23%",
- "Error & Exception Exposure": "96.43%",
+ "Cognitive Load Exposure": "76.92%",
+ "Error & Exception Exposure": "98.71%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.1%",
@@ -66772,11 +66772,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.5
+ "Raw Cognitive Density": 1.489
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.25%",
- "Error & Exception Exposure": "96.09%",
+ "Cognitive Load Exposure": "95.06%",
+ "Error & Exception Exposure": "98.48%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -67390,11 +67390,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.411
+ "Raw Cognitive Density": 1.405
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.37%",
- "Error & Exception Exposure": "97.59%",
+ "Cognitive Load Exposure": "93.23%",
+ "Error & Exception Exposure": "99.24%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.31%",
@@ -68368,11 +68368,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.424
+ "Raw Cognitive Density": 1.418
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.68%",
- "Error & Exception Exposure": "97.49%",
+ "Cognitive Load Exposure": "93.53%",
+ "Error & Exception Exposure": "99.2%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.35%",
@@ -69286,11 +69286,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.425
+ "Raw Cognitive Density": 1.419
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.7%",
- "Error & Exception Exposure": "97.41%",
+ "Cognitive Load Exposure": "93.56%",
+ "Error & Exception Exposure": "99.16%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.34%",
@@ -70204,11 +70204,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.425
+ "Raw Cognitive Density": 1.419
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.7%",
- "Error & Exception Exposure": "97.41%",
+ "Cognitive Load Exposure": "93.56%",
+ "Error & Exception Exposure": "99.16%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.34%",
@@ -71122,11 +71122,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.425
+ "Raw Cognitive Density": 1.419
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.7%",
- "Error & Exception Exposure": "97.41%",
+ "Cognitive Load Exposure": "93.56%",
+ "Error & Exception Exposure": "99.16%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.35%",
@@ -72040,11 +72040,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.424
+ "Raw Cognitive Density": 1.418
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.67%",
- "Error & Exception Exposure": "97.38%",
+ "Cognitive Load Exposure": "93.53%",
+ "Error & Exception Exposure": "99.15%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.34%",
@@ -72958,11 +72958,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.419
+ "Raw Cognitive Density": 1.413
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.56%",
- "Error & Exception Exposure": "97.6%",
+ "Cognitive Load Exposure": "93.42%",
+ "Error & Exception Exposure": "99.24%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.34%",
@@ -73886,11 +73886,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.429
+ "Raw Cognitive Density": 1.423
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.8%",
- "Error & Exception Exposure": "97.39%",
+ "Cognitive Load Exposure": "93.65%",
+ "Error & Exception Exposure": "99.15%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.35%",
@@ -74754,11 +74754,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.043
+ "Raw Cognitive Density": 1.039
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.38%",
- "Error & Exception Exposure": "97.8%",
+ "Cognitive Load Exposure": "76.07%",
+ "Error & Exception Exposure": "99.33%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.31%",
@@ -75702,11 +75702,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.429
+ "Raw Cognitive Density": 1.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.8%",
- "Error & Exception Exposure": "95.66%",
+ "Cognitive Load Exposure": "93.6%",
+ "Error & Exception Exposure": "98.29%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.23%",
@@ -76270,11 +76270,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.065
+ "Raw Cognitive Density": 1.061
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.91%",
- "Error & Exception Exposure": "97.11%",
+ "Cognitive Load Exposure": "77.6%",
+ "Error & Exception Exposure": "99.04%",
"Tech Debt Exposure": "99.99%",
"Testing Exposure": "80.0%",
"API Exposure": "2.1%",
@@ -76958,11 +76958,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.055
+ "Raw Cognitive Density": 1.051
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.23%",
- "Error & Exception Exposure": "96.45%",
+ "Cognitive Load Exposure": "76.92%",
+ "Error & Exception Exposure": "98.72%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.1%",
@@ -77686,11 +77686,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.393
+ "Raw Cognitive Density": 1.386
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.91%",
- "Error & Exception Exposure": "95.85%",
+ "Cognitive Load Exposure": "92.73%",
+ "Error & Exception Exposure": "98.41%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -78484,11 +78484,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.402
+ "Raw Cognitive Density": 1.394
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.13%",
- "Error & Exception Exposure": "95.39%",
+ "Cognitive Load Exposure": "92.93%",
+ "Error & Exception Exposure": "98.13%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.17%",
@@ -79322,16 +79322,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.458
+ "Raw Cognitive Density": 0.407
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.69%",
- "Error & Exception Exposure": "75.75%",
+ "Cognitive Load Exposure": "20.22%",
+ "Error & Exception Exposure": "74.33%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.71%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "32.21%",
+ "State Flux Exposure": "28.41%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -79590,13 +79590,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.157
+ "Raw Cognitive Density": 0.114
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.54%",
- "Error & Exception Exposure": "71.09%",
+ "Cognitive Load Exposure": "7.29%",
+ "Error & Exception Exposure": "69.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -79848,16 +79848,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.231
+ "Raw Cognitive Density": 0.168
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.13%",
- "Error & Exception Exposure": "76.79%",
+ "Cognitive Load Exposure": "8.87%",
+ "Error & Exception Exposure": "76.12%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "18.07%",
+ "State Flux Exposure": "15.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -80106,11 +80106,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.494
+ "Raw Cognitive Density": 1.485
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.14%",
- "Error & Exception Exposure": "97.91%",
+ "Cognitive Load Exposure": "94.97%",
+ "Error & Exception Exposure": "99.36%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.25%",
@@ -81004,11 +81004,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.959
+ "Raw Cognitive Density": 0.947
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.78%",
- "Error & Exception Exposure": "93.96%",
+ "Cognitive Load Exposure": "68.71%",
+ "Error & Exception Exposure": "97.13%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -81492,11 +81492,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.13
+ "Raw Cognitive Density": 1.126
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.04%",
- "Error & Exception Exposure": "97.34%",
+ "Cognitive Load Exposure": "81.8%",
+ "Error & Exception Exposure": "99.14%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.09%",
@@ -82560,11 +82560,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.572
+ "Raw Cognitive Density": 1.559
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.4%",
- "Error & Exception Exposure": "96.9%",
+ "Cognitive Load Exposure": "96.22%",
+ "Error & Exception Exposure": "98.89%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.37%",
@@ -83128,11 +83128,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.129
+ "Raw Cognitive Density": 1.122
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.01%",
- "Error & Exception Exposure": "98.97%",
+ "Cognitive Load Exposure": "81.61%",
+ "Error & Exception Exposure": "99.76%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.26%",
@@ -83876,11 +83876,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.125
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.75%",
- "Error & Exception Exposure": "98.6%",
+ "Cognitive Load Exposure": "81.48%",
+ "Error & Exception Exposure": "99.64%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "12.09%",
@@ -83890,7 +83890,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "64.52%",
+ "Documentation Exposure": "54.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -85094,11 +85094,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.111
+ "Raw Cognitive Density": 1.106
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.9%",
- "Error & Exception Exposure": "98.16%",
+ "Cognitive Load Exposure": "80.62%",
+ "Error & Exception Exposure": "99.48%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.11%",
@@ -86402,11 +86402,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.105
+ "Raw Cognitive Density": 1.099
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.53%",
- "Error & Exception Exposure": "98.01%",
+ "Cognitive Load Exposure": "80.15%",
+ "Error & Exception Exposure": "99.41%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.22%",
@@ -87250,11 +87250,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.083
+ "Raw Cognitive Density": 1.076
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.09%",
- "Error & Exception Exposure": "97.2%",
+ "Cognitive Load Exposure": "78.66%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.65%",
@@ -87264,7 +87264,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.26%",
+ "Documentation Exposure": "28.04%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -87908,11 +87908,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.072
+ "Raw Cognitive Density": 1.066
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.4%",
- "Error & Exception Exposure": "97.21%",
+ "Cognitive Load Exposure": "77.97%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.6%",
@@ -87922,7 +87922,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.17%",
+ "Documentation Exposure": "27.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -88566,13 +88566,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.087
+ "Raw Cognitive Density": 1.082
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.36%",
- "Error & Exception Exposure": "93.45%",
+ "Cognitive Load Exposure": "79.03%",
+ "Error & Exception Exposure": "95.84%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.49%",
"API Exposure": "2.14%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -89774,13 +89774,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.086
+ "Raw Cognitive Density": 1.081
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.33%",
- "Error & Exception Exposure": "90.88%",
+ "Cognitive Load Exposure": "78.98%",
+ "Error & Exception Exposure": "93.03%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.46%",
"API Exposure": "2.16%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -90892,11 +90892,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.042
+ "Raw Cognitive Density": 1.038
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.27%",
- "Error & Exception Exposure": "98.94%",
+ "Cognitive Load Exposure": "75.95%",
+ "Error & Exception Exposure": "99.75%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.1%",
@@ -92240,11 +92240,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.107
+ "Raw Cognitive Density": 1.101
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.69%",
- "Error & Exception Exposure": "99.66%",
+ "Cognitive Load Exposure": "80.3%",
+ "Error & Exception Exposure": "99.95%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.23%",
@@ -93088,12 +93088,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.687
+ "Raw Cognitive Density": 1.681
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.7%",
- "Error & Exception Exposure": "98.71%",
- "Tech Debt Exposure": "99.94%",
+ "Cognitive Load Exposure": "97.64%",
+ "Error & Exception Exposure": "99.67%",
+ "Tech Debt Exposure": "99.93%",
"Testing Exposure": "80.0%",
"API Exposure": "4.2%",
"Concurrency Exposure": "0.0%",
@@ -93102,7 +93102,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.11%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -93666,11 +93666,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.493
+ "Raw Cognitive Density": 1.482
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.13%",
- "Error & Exception Exposure": "94.85%",
+ "Cognitive Load Exposure": "94.92%",
+ "Error & Exception Exposure": "97.74%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.31%",
@@ -94294,11 +94294,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.1
+ "Raw Cognitive Density": 1.093
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.22%",
- "Error & Exception Exposure": "96.61%",
+ "Cognitive Load Exposure": "79.78%",
+ "Error & Exception Exposure": "98.77%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.24%",
@@ -95122,11 +95122,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.109
+ "Raw Cognitive Density": 1.102
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.77%",
- "Error & Exception Exposure": "96.58%",
+ "Cognitive Load Exposure": "80.36%",
+ "Error & Exception Exposure": "98.76%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.17%",
@@ -96040,11 +96040,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.083
+ "Raw Cognitive Density": 1.077
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.1%",
- "Error & Exception Exposure": "98.6%",
+ "Cognitive Load Exposure": "78.71%",
+ "Error & Exception Exposure": "99.63%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.2%",
@@ -96978,11 +96978,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.09
+ "Raw Cognitive Density": 1.086
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.61%",
- "Error & Exception Exposure": "97.69%",
+ "Cognitive Load Exposure": "79.28%",
+ "Error & Exception Exposure": "99.29%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.14%",
@@ -98126,11 +98126,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.094
+ "Raw Cognitive Density": 1.089
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.84%",
- "Error & Exception Exposure": "97.15%",
+ "Cognitive Load Exposure": "79.51%",
+ "Error & Exception Exposure": "99.05%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.46%",
@@ -98140,7 +98140,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.47%",
+ "Documentation Exposure": "24.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -99284,11 +99284,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.146
+ "Raw Cognitive Density": 1.141
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.0%",
- "Error & Exception Exposure": "98.55%",
+ "Cognitive Load Exposure": "82.69%",
+ "Error & Exception Exposure": "99.62%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.45%",
@@ -100262,11 +100262,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.066
+ "Raw Cognitive Density": 1.061
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.95%",
- "Error & Exception Exposure": "97.38%",
+ "Cognitive Load Exposure": "77.61%",
+ "Error & Exception Exposure": "99.15%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.77%",
@@ -100276,7 +100276,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.5%",
+ "Documentation Exposure": "28.78%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -101420,11 +101420,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.087
+ "Raw Cognitive Density": 1.082
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.35%",
- "Error & Exception Exposure": "97.79%",
+ "Cognitive Load Exposure": "79.03%",
+ "Error & Exception Exposure": "99.33%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.27%",
@@ -101434,7 +101434,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.54%",
+ "Documentation Exposure": "23.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -102438,11 +102438,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.062
+ "Raw Cognitive Density": 1.056
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.66%",
- "Error & Exception Exposure": "96.49%",
+ "Cognitive Load Exposure": "77.25%",
+ "Error & Exception Exposure": "98.73%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.52%",
@@ -102452,7 +102452,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.4%",
+ "Documentation Exposure": "26.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -103316,11 +103316,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.152
+ "Raw Cognitive Density": 1.147
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.3%",
- "Error & Exception Exposure": "95.73%",
+ "Cognitive Load Exposure": "83.05%",
+ "Error & Exception Exposure": "98.18%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.36%",
@@ -103330,7 +103330,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.36%",
+ "Documentation Exposure": "38.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -104414,11 +104414,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.175
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.54%",
- "Error & Exception Exposure": "95.14%",
+ "Cognitive Load Exposure": "84.29%",
+ "Error & Exception Exposure": "97.81%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.42%",
@@ -104428,7 +104428,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "51.03%",
+ "Documentation Exposure": "39.38%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -105492,11 +105492,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.072
+ "Raw Cognitive Density": 1.067
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.4%",
- "Error & Exception Exposure": "96.16%",
+ "Cognitive Load Exposure": "78.03%",
+ "Error & Exception Exposure": "98.55%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "12.26%",
@@ -105506,7 +105506,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "72.14%",
+ "Documentation Exposure": "60.68%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -106190,11 +106190,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.177
+ "Raw Cognitive Density": 1.172
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.64%",
- "Error & Exception Exposure": "96.57%",
+ "Cognitive Load Exposure": "84.41%",
+ "Error & Exception Exposure": "98.65%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "13.01%",
@@ -106204,7 +106204,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.23%",
+ "Documentation Exposure": "77.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -107008,11 +107008,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.492
+ "Raw Cognitive Density": 1.483
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.11%",
- "Error & Exception Exposure": "98.01%",
+ "Cognitive Load Exposure": "94.95%",
+ "Error & Exception Exposure": "99.41%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.59%",
@@ -107022,7 +107022,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.24%",
+ "Documentation Exposure": "44.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -107886,11 +107886,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.089
+ "Raw Cognitive Density": 1.083
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.51%",
- "Error & Exception Exposure": "95.71%",
+ "Cognitive Load Exposure": "79.09%",
+ "Error & Exception Exposure": "98.07%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.21%",
@@ -108804,11 +108804,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.07
+ "Raw Cognitive Density": 1.065
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.25%",
- "Error & Exception Exposure": "99.68%",
+ "Cognitive Load Exposure": "77.9%",
+ "Error & Exception Exposure": "99.95%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.16%",
@@ -109866,9 +109866,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "88.56%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Error & Exception Exposure": "90.13%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -110084,12 +110084,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.41%",
"API Exposure": "8.93%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -110298,11 +110298,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.273
+ "Raw Cognitive Density": 1.255
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "89.0%",
- "Error & Exception Exposure": "94.43%",
+ "Cognitive Load Exposure": "88.3%",
+ "Error & Exception Exposure": "97.14%",
"Tech Debt Exposure": "99.99%",
"Testing Exposure": "80.0%",
"API Exposure": "6.25%",
@@ -110736,11 +110736,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.555
+ "Raw Cognitive Density": 1.542
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.16%",
- "Error & Exception Exposure": "96.43%",
+ "Cognitive Load Exposure": "95.96%",
+ "Error & Exception Exposure": "98.64%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.78%",
@@ -111244,11 +111244,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.331
+ "Raw Cognitive Density": 1.324
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.08%",
- "Error & Exception Exposure": "94.98%",
+ "Cognitive Load Exposure": "90.86%",
+ "Error & Exception Exposure": "97.94%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.14%",
@@ -112112,11 +112112,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.408
+ "Raw Cognitive Density": 1.401
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.29%",
- "Error & Exception Exposure": "97.8%",
+ "Cognitive Load Exposure": "93.1%",
+ "Error & Exception Exposure": "99.33%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.18%",
@@ -112950,11 +112950,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.398
+ "Raw Cognitive Density": 1.391
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.02%",
- "Error & Exception Exposure": "98.06%",
+ "Cognitive Load Exposure": "92.84%",
+ "Error & Exception Exposure": "99.44%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.15%",
@@ -113882,12 +113882,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -114048,16 +114048,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.474
+ "Raw Cognitive Density": 0.421
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "24.88%",
- "Error & Exception Exposure": "76.29%",
+ "Cognitive Load Exposure": "21.15%",
+ "Error & Exception Exposure": "74.86%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.66%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "33.26%",
+ "State Flux Exposure": "29.39%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -114316,13 +114316,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.154
+ "Raw Cognitive Density": 0.108
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.44%",
- "Error & Exception Exposure": "79.84%",
+ "Cognitive Load Exposure": "7.11%",
+ "Error & Exception Exposure": "80.4%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -114580,7 +114580,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -114818,7 +114818,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -115055,8 +115055,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -115220,11 +115220,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.578
+ "Raw Cognitive Density": 1.564
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.49%",
- "Error & Exception Exposure": "96.47%",
+ "Cognitive Load Exposure": "96.28%",
+ "Error & Exception Exposure": "98.65%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.42%",
@@ -115694,9 +115694,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -115908,11 +115908,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.148
+ "Raw Cognitive Density": 1.143
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.1%",
- "Error & Exception Exposure": "98.26%",
+ "Cognitive Load Exposure": "82.81%",
+ "Error & Exception Exposure": "99.51%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.16%",
@@ -117026,11 +117026,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.149
+ "Raw Cognitive Density": 1.144
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.14%",
- "Error & Exception Exposure": "98.27%",
+ "Cognitive Load Exposure": "82.85%",
+ "Error & Exception Exposure": "99.52%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.15%",
@@ -118144,13 +118144,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.169
+ "Raw Cognitive Density": 0.113
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.92%",
- "Error & Exception Exposure": "70.11%",
+ "Cognitive Load Exposure": "7.25%",
+ "Error & Exception Exposure": "68.09%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -118389,18 +118389,18 @@
"Static: Literature & Documentation": "6.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "72.8%",
- "Error & Exception Exposure": "84.82%",
- "Tech Debt Exposure": "4.35%",
+ "Cognitive Load Exposure": "71.9%",
+ "Error & Exception Exposure": "86.69%",
+ "Tech Debt Exposure": "4.31%",
"Testing Exposure": "59.2%",
"API Exposure": "5.41%",
- "Concurrency Exposure": "4.24%",
- "State Flux Exposure": "65.72%",
+ "Concurrency Exposure": "3.74%",
+ "State Flux Exposure": "65.69%",
"Commented Logic Exposure": "9.26%",
"Specification Exposure": "60.0%",
"Instability Exposure": "46.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.21%",
+ "Documentation Exposure": "23.26%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -118598,8 +118598,8 @@
"Raw Cognitive Density": 0.561
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.96%",
- "Error & Exception Exposure": "69.07%",
+ "Cognitive Load Exposure": "29.61%",
+ "Error & Exception Exposure": "74.65%",
"Tech Debt Exposure": "16.16%",
"Testing Exposure": "80.0%",
"API Exposure": "7.18%",
@@ -118609,7 +118609,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.95%",
+ "Documentation Exposure": "23.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -118946,7 +118946,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "19.49%",
- "Error & Exception Exposure": "73.36%",
+ "Error & Exception Exposure": "79.89%",
"Tech Debt Exposure": "13.93%",
"Testing Exposure": "80.0%",
"API Exposure": "1.19%",
@@ -118956,7 +118956,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.92%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -119260,13 +119260,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.643
+ "Raw Cognitive Density": 2.611
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.95%",
- "Error & Exception Exposure": "97.69%",
+ "Cognitive Load Exposure": "99.94%",
+ "Error & Exception Exposure": "98.92%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.86%",
+ "Testing Exposure": "2.79%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -119488,16 +119488,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.952
+ "Raw Cognitive Density": 1.921
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.19%",
- "Error & Exception Exposure": "92.37%",
+ "Cognitive Load Exposure": "99.08%",
+ "Error & Exception Exposure": "95.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.7%",
"API Exposure": "16.58%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.38%",
+ "State Flux Exposure": "97.05%",
"Commented Logic Exposure": "68.77%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -119669,12 +119669,12 @@
"Raw Cognitive Density": 1.476
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.81%",
- "Error & Exception Exposure": "98.54%",
- "Tech Debt Exposure": "8.22%",
+ "Cognitive Load Exposure": "94.8%",
+ "Error & Exception Exposure": "99.63%",
+ "Tech Debt Exposure": "8.1%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "18.25%",
+ "Concurrency Exposure": "15.98%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.52%",
"Specification Exposure": "0.0%",
@@ -119850,15 +119850,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.799
+ "Raw Cognitive Density": 1.798
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.52%",
- "Error & Exception Exposure": "99.54%",
- "Tech Debt Exposure": "8.27%",
+ "Cognitive Load Exposure": "98.51%",
+ "Error & Exception Exposure": "99.92%",
+ "Tech Debt Exposure": "8.14%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "23.53%",
+ "Concurrency Exposure": "20.78%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.43%",
"Specification Exposure": "0.0%",
@@ -120036,11 +120036,11 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "98.35%",
- "Error & Exception Exposure": "99.46%",
- "Tech Debt Exposure": "8.31%",
+ "Error & Exception Exposure": "99.9%",
+ "Tech Debt Exposure": "8.17%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "21.88%",
+ "Concurrency Exposure": "19.27%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.47%",
"Specification Exposure": "0.0%",
@@ -120214,13 +120214,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.34
+ "Raw Cognitive Density": 3.3
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "97.37%",
+ "Error & Exception Exposure": "98.75%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.46%",
"API Exposure": "15.01%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -120392,11 +120392,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.71
+ "Raw Cognitive Density": 1.705
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.75%",
- "Error & Exception Exposure": "85.78%",
+ "Cognitive Load Exposure": "80.95%",
+ "Error & Exception Exposure": "89.88%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.02%",
@@ -120406,7 +120406,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.07%",
+ "Documentation Exposure": "20.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -120698,12 +120698,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.922
+ "Raw Cognitive Density": 0.921
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.05%",
- "Error & Exception Exposure": "97.71%",
- "Tech Debt Exposure": "10.29%",
+ "Cognitive Load Exposure": "52.33%",
+ "Error & Exception Exposure": "99.09%",
+ "Tech Debt Exposure": "10.08%",
"Testing Exposure": "80.0%",
"API Exposure": "9.55%",
"Concurrency Exposure": "0.0%",
@@ -120712,7 +120712,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.52%",
+ "Documentation Exposure": "20.13%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -121397,8 +121397,8 @@
"Raw Cognitive Density": 1.772
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.17%",
- "Error & Exception Exposure": "98.79%",
+ "Cognitive Load Exposure": "98.05%",
+ "Error & Exception Exposure": "99.69%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.03%",
@@ -121408,7 +121408,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.1%",
+ "Documentation Exposure": "14.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -122012,8 +122012,8 @@
"Raw Cognitive Density": 0.935
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.72%",
- "Error & Exception Exposure": "69.63%",
+ "Cognitive Load Exposure": "67.69%",
+ "Error & Exception Exposure": "67.8%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "6.92%",
@@ -122023,7 +122023,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.92%",
+ "Documentation Exposure": "17.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -122475,11 +122475,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.94
+ "Raw Cognitive Density": 0.939
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.0%",
- "Error & Exception Exposure": "94.6%",
+ "Cognitive Load Exposure": "67.88%",
+ "Error & Exception Exposure": "97.22%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.17%",
@@ -122694,11 +122694,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.986
+ "Raw Cognitive Density": 0.984
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.02%",
- "Error & Exception Exposure": "98.45%",
+ "Cognitive Load Exposure": "71.85%",
+ "Error & Exception Exposure": "99.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.54%",
@@ -122708,7 +122708,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.77%",
+ "Documentation Exposure": "16.75%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -122875,18 +122875,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "58.25%",
- "Error & Exception Exposure": "74.24%",
- "Tech Debt Exposure": "13.29%",
+ "Cognitive Load Exposure": "58.22%",
+ "Error & Exception Exposure": "76.83%",
+ "Tech Debt Exposure": "13.26%",
"Testing Exposure": "57.8%",
"API Exposure": "5.21%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.91%",
+ "State Flux Exposure": "75.37%",
"Commented Logic Exposure": "1.73%",
"Specification Exposure": "71.43%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.51%",
+ "Documentation Exposure": "42.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -122926,8 +122926,8 @@
"Raw Cognitive Density": 1.502
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.15%",
- "Error & Exception Exposure": "91.47%",
+ "Cognitive Load Exposure": "95.13%",
+ "Error & Exception Exposure": "95.96%",
"Tech Debt Exposure": "8.98%",
"Testing Exposure": "80.0%",
"API Exposure": "11.01%",
@@ -122937,7 +122937,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "81.53%",
+ "Documentation Exposure": "81.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -125118,8 +125118,8 @@
"Raw Cognitive Density": 1.088
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.16%",
- "Error & Exception Exposure": "97.1%",
+ "Cognitive Load Exposure": "79.11%",
+ "Error & Exception Exposure": "99.11%",
"Tech Debt Exposure": "7.91%",
"Testing Exposure": "80.0%",
"API Exposure": "13.6%",
@@ -125129,7 +125129,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.12%",
+ "Documentation Exposure": "98.08%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -126572,8 +126572,8 @@
"Raw Cognitive Density": 1.399
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.38%",
- "Error & Exception Exposure": "92.09%",
+ "Cognitive Load Exposure": "92.26%",
+ "Error & Exception Exposure": "96.45%",
"Tech Debt Exposure": "38.29%",
"Testing Exposure": "80.0%",
"API Exposure": "11.81%",
@@ -126583,7 +126583,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.08%",
+ "Documentation Exposure": "93.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -127446,12 +127446,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "58.26%",
+ "Error & Exception Exposure": "56.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "31.34%",
+ "State Flux Exposure": "27.6%",
"Commented Logic Exposure": "7.29%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -127603,8 +127603,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "71.05%",
- "Error & Exception Exposure": "85.78%",
- "Tech Debt Exposure": "11.71%",
+ "Error & Exception Exposure": "91.62%",
+ "Tech Debt Exposure": "11.69%",
"Testing Exposure": "80.0%",
"API Exposure": "0.03%",
"Concurrency Exposure": "0.0%",
@@ -139246,9 +139246,9 @@
"Raw Cognitive Density": 0.962
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.04%",
- "Error & Exception Exposure": "94.96%",
- "Tech Debt Exposure": "14.4%",
+ "Cognitive Load Exposure": "70.0%",
+ "Error & Exception Exposure": "98.03%",
+ "Tech Debt Exposure": "14.24%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -139474,7 +139474,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "11.78%",
+ "Tech Debt Exposure": "11.69%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -139603,8 +139603,8 @@
"Static: Literature & Documentation": "18.8%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "59.92%",
- "Error & Exception Exposure": "73.56%",
+ "Cognitive Load Exposure": "59.49%",
+ "Error & Exception Exposure": "76.73%",
"Tech Debt Exposure": "22.49%",
"Testing Exposure": "55.29%",
"API Exposure": "5.41%",
@@ -139614,7 +139614,7 @@
"Specification Exposure": "81.25%",
"Instability Exposure": "40.62%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.95%",
+ "Documentation Exposure": "22.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -139968,8 +139968,8 @@
"Raw Cognitive Density": 0.997
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "56.08%",
- "Error & Exception Exposure": "74.48%",
+ "Cognitive Load Exposure": "55.05%",
+ "Error & Exception Exposure": "82.0%",
"Tech Debt Exposure": "9.29%",
"Testing Exposure": "80.0%",
"API Exposure": "15.57%",
@@ -140586,8 +140586,8 @@
"Raw Cognitive Density": 1.387
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.32%",
- "Error & Exception Exposure": "96.25%",
+ "Cognitive Load Exposure": "92.25%",
+ "Error & Exception Exposure": "98.7%",
"Tech Debt Exposure": "97.25%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -140597,7 +140597,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.3%",
+ "Documentation Exposure": "12.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -143901,8 +143901,8 @@
"Raw Cognitive Density": 1.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.69%",
- "Error & Exception Exposure": "90.03%",
+ "Cognitive Load Exposure": "65.17%",
+ "Error & Exception Exposure": "94.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "9.64%",
@@ -143912,7 +143912,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.85%",
+ "Documentation Exposure": "24.4%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -144407,8 +144407,8 @@
"Raw Cognitive Density": 1.522
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.64%",
- "Error & Exception Exposure": "99.68%",
+ "Cognitive Load Exposure": "94.46%",
+ "Error & Exception Exposure": "99.95%",
"Tech Debt Exposure": "14.64%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -144652,8 +144652,8 @@
"Raw Cognitive Density": 1.564
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.35%",
- "Error & Exception Exposure": "98.81%",
+ "Cognitive Load Exposure": "94.01%",
+ "Error & Exception Exposure": "99.73%",
"Tech Debt Exposure": "11.52%",
"Testing Exposure": "80.0%",
"API Exposure": "7.3%",
@@ -145206,7 +145206,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "26.86%",
- "Error & Exception Exposure": "78.3%",
+ "Error & Exception Exposure": "84.79%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "2.98%",
@@ -145365,8 +145365,8 @@
"Raw Cognitive Density": 0.989
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.54%",
- "Error & Exception Exposure": "97.5%",
+ "Cognitive Load Exposure": "70.24%",
+ "Error & Exception Exposure": "99.25%",
"Tech Debt Exposure": "9.45%",
"Testing Exposure": "80.0%",
"API Exposure": "13.04%",
@@ -145376,7 +145376,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "65.04%",
+ "Documentation Exposure": "63.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -147903,8 +147903,8 @@
"Raw Cognitive Density": 1.46
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.15%",
- "Error & Exception Exposure": "88.16%",
+ "Cognitive Load Exposure": "70.72%",
+ "Error & Exception Exposure": "93.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.45%",
@@ -147914,7 +147914,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.84%",
+ "Documentation Exposure": "26.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -148559,8 +148559,8 @@
"Raw Cognitive Density": 1.0
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "71.87%",
- "Error & Exception Exposure": "98.77%",
+ "Cognitive Load Exposure": "71.65%",
+ "Error & Exception Exposure": "99.71%",
"Tech Debt Exposure": "99.91%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -149989,8 +149989,8 @@
"Raw Cognitive Density": 1.309
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.6%",
- "Error & Exception Exposure": "89.88%",
+ "Cognitive Load Exposure": "80.06%",
+ "Error & Exception Exposure": "94.85%",
"Tech Debt Exposure": "99.96%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -150518,8 +150518,8 @@
"Raw Cognitive Density": 1.081
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.54%",
- "Error & Exception Exposure": "78.19%",
+ "Cognitive Load Exposure": "64.08%",
+ "Error & Exception Exposure": "85.51%",
"Tech Debt Exposure": "9.36%",
"Testing Exposure": "80.0%",
"API Exposure": "6.17%",
@@ -150800,8 +150800,8 @@
"Raw Cognitive Density": 1.577
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.41%",
- "Error & Exception Exposure": "94.73%",
+ "Cognitive Load Exposure": "95.22%",
+ "Error & Exception Exposure": "97.94%",
"Tech Debt Exposure": "8.42%",
"Testing Exposure": "80.0%",
"API Exposure": "12.31%",
@@ -150811,7 +150811,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "56.88%",
+ "Documentation Exposure": "55.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -152546,8 +152546,8 @@
"Raw Cognitive Density": 1.285
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.74%",
- "Error & Exception Exposure": "92.18%",
+ "Cognitive Load Exposure": "72.15%",
+ "Error & Exception Exposure": "96.41%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.11%",
@@ -152557,7 +152557,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.61%",
+ "Documentation Exposure": "23.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -153230,8 +153230,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "70.55%",
- "Error & Exception Exposure": "86.0%",
+ "Cognitive Load Exposure": "70.47%",
+ "Error & Exception Exposure": "92.1%",
"Tech Debt Exposure": "39.8%",
"Testing Exposure": "80.0%",
"API Exposure": "13.81%",
@@ -153241,7 +153241,7 @@
"Specification Exposure": "99.57%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "91.74%",
+ "Documentation Exposure": "91.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -153278,11 +153278,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.09
+ "Raw Cognitive Density": 0.089
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.67%",
- "Error & Exception Exposure": "73.78%",
+ "Cognitive Load Exposure": "4.65%",
+ "Error & Exception Exposure": "79.71%",
"Tech Debt Exposure": "99.96%",
"Testing Exposure": "80.0%",
"API Exposure": "11.62%",
@@ -153292,7 +153292,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.97%",
+ "Documentation Exposure": "31.08%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -155879,8 +155879,8 @@
"Raw Cognitive Density": 1.524
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.44%",
- "Error & Exception Exposure": "90.24%",
+ "Cognitive Load Exposure": "94.23%",
+ "Error & Exception Exposure": "95.62%",
"Tech Debt Exposure": "9.09%",
"Testing Exposure": "80.0%",
"API Exposure": "15.95%",
@@ -157195,8 +157195,8 @@
"Raw Cognitive Density": 1.01
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.42%",
- "Error & Exception Exposure": "89.2%",
+ "Cognitive Load Exposure": "73.35%",
+ "Error & Exception Exposure": "94.93%",
"Tech Debt Exposure": "52.88%",
"Testing Exposure": "80.0%",
"API Exposure": "15.55%",
@@ -157967,8 +157967,8 @@
"Raw Cognitive Density": 1.408
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.69%",
- "Error & Exception Exposure": "87.3%",
+ "Cognitive Load Exposure": "92.58%",
+ "Error & Exception Exposure": "94.06%",
"Tech Debt Exposure": "32.24%",
"Testing Exposure": "80.0%",
"API Exposure": "13.63%",
@@ -157978,7 +157978,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.71%",
+ "Documentation Exposure": "99.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -160966,7 +160966,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "71.49%",
- "Error & Exception Exposure": "91.29%",
+ "Error & Exception Exposure": "96.32%",
"Tech Debt Exposure": "8.75%",
"Testing Exposure": "80.0%",
"API Exposure": "13.66%",
@@ -161962,8 +161962,8 @@
"Raw Cognitive Density": 0.931
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.71%",
- "Error & Exception Exposure": "87.37%",
+ "Cognitive Load Exposure": "66.59%",
+ "Error & Exception Exposure": "93.98%",
"Tech Debt Exposure": "11.43%",
"Testing Exposure": "80.0%",
"API Exposure": "12.74%",
@@ -161973,7 +161973,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.66%",
+ "Documentation Exposure": "99.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -163172,8 +163172,8 @@
"Raw Cognitive Density": 1.195
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.32%",
- "Error & Exception Exposure": "81.19%",
+ "Cognitive Load Exposure": "85.27%",
+ "Error & Exception Exposure": "88.27%",
"Tech Debt Exposure": "81.54%",
"Testing Exposure": "80.0%",
"API Exposure": "14.27%",
@@ -163183,7 +163183,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.42%",
+ "Documentation Exposure": "99.38%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -164885,8 +164885,8 @@
"Raw Cognitive Density": 1.034
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.63%",
- "Error & Exception Exposure": "87.65%",
+ "Cognitive Load Exposure": "75.62%",
+ "Error & Exception Exposure": "93.91%",
"Tech Debt Exposure": "22.51%",
"Testing Exposure": "80.0%",
"API Exposure": "13.05%",
@@ -164896,7 +164896,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.26%",
+ "Documentation Exposure": "99.21%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -169227,18 +169227,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "36.06%",
- "Error & Exception Exposure": "56.65%",
- "Tech Debt Exposure": "18.39%",
- "Testing Exposure": "20.65%",
+ "Cognitive Load Exposure": "34.93%",
+ "Error & Exception Exposure": "57.59%",
+ "Tech Debt Exposure": "17.42%",
+ "Testing Exposure": "19.85%",
"API Exposure": "4.04%",
- "Concurrency Exposure": "10.09%",
- "State Flux Exposure": "57.92%",
+ "Concurrency Exposure": "9.74%",
+ "State Flux Exposure": "57.44%",
"Commented Logic Exposure": "3.04%",
"Specification Exposure": "98.98%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.49%",
+ "Documentation Exposure": "31.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -169279,7 +169279,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
"API Exposure": "3.53%",
@@ -169289,7 +169289,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.59%",
+ "Documentation Exposure": "24.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -169457,7 +169457,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "3.53%",
@@ -169467,7 +169467,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -169631,21 +169631,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.165
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
- "Error & Exception Exposure": "85.01%",
+ "Cognitive Load Exposure": "8.79%",
+ "Error & Exception Exposure": "87.78%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.44%",
"API Exposure": "5.29%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.07%",
+ "Documentation Exposure": "50.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -169839,21 +169839,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.32
+ "Raw Cognitive Density": 1.265
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.72%",
- "Error & Exception Exposure": "81.44%",
+ "Cognitive Load Exposure": "88.7%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.66%",
+ "Testing Exposure": "2.63%",
"API Exposure": "7.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.37%",
+ "Documentation Exposure": "74.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -170047,13 +170047,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.144
+ "Raw Cognitive Density": 1.114
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.86%",
- "Error & Exception Exposure": "97.23%",
- "Tech Debt Exposure": "71.28%",
- "Testing Exposure": "2.71%",
+ "Cognitive Load Exposure": "81.07%",
+ "Error & Exception Exposure": "98.86%",
+ "Tech Debt Exposure": "53.78%",
+ "Testing Exposure": "2.68%",
"API Exposure": "8.2%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -170061,7 +170061,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "80.16%",
+ "Documentation Exposure": "70.47%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -170265,21 +170265,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.797
+ "Raw Cognitive Density": 0.77
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.72%",
- "Error & Exception Exposure": "60.38%",
+ "Cognitive Load Exposure": "52.03%",
+ "Error & Exception Exposure": "50.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.65%",
"API Exposure": "2.99%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.58%",
+ "State Flux Exposure": "99.53%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.55%",
+ "Documentation Exposure": "42.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -170523,13 +170523,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.032
+ "Raw Cognitive Density": 0.021
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.68%",
+ "Cognitive Load Exposure": "2.57%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -170693,13 +170693,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.108
+ "Raw Cognitive Density": 0.077
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.56%",
+ "Cognitive Load Exposure": "3.17%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -170863,12 +170863,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.069
+ "Raw Cognitive Density": 1.059
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.15%",
- "Error & Exception Exposure": "94.12%",
- "Tech Debt Exposure": "39.73%",
+ "Cognitive Load Exposure": "77.47%",
+ "Error & Exception Exposure": "97.31%",
+ "Tech Debt Exposure": "34.03%",
"Testing Exposure": "80.0%",
"API Exposure": "4.56%",
"Concurrency Exposure": "0.0%",
@@ -170877,7 +170877,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.58%",
+ "Documentation Exposure": "40.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -171191,13 +171191,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.42%",
+ "Cognitive Load Exposure": "5.36%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -171381,16 +171381,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.84
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.9%",
- "Error & Exception Exposure": "72.4%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -171581,21 +171581,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.88
+ "Raw Cognitive Density": 0.861
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.68%",
- "Error & Exception Exposure": "91.82%",
+ "Cognitive Load Exposure": "60.93%",
+ "Error & Exception Exposure": "95.26%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.75%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.89%",
+ "State Flux Exposure": "99.87%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "86.35%",
+ "Documentation Exposure": "81.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -171863,7 +171863,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.29%",
+ "Documentation Exposure": "35.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -172031,17 +172031,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -172205,21 +172205,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.54
+ "Raw Cognitive Density": 0.5
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.15%",
+ "Cognitive Load Exposure": "26.89%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.47%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -172383,21 +172383,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.96
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "69.85%",
+ "Error & Exception Exposure": "81.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "7.05%",
- "Concurrency Exposure": "99.18%",
- "State Flux Exposure": "99.88%",
+ "Concurrency Exposure": "99.04%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.82%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -172581,13 +172581,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.12
+ "Raw Cognitive Density": 1.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.46%",
- "Error & Exception Exposure": "87.87%",
+ "Cognitive Load Exposure": "78.92%",
+ "Error & Exception Exposure": "90.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.57%",
+ "Testing Exposure": "2.54%",
"API Exposure": "3.22%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -172595,7 +172595,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.54%",
+ "Documentation Exposure": "19.47%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -172759,21 +172759,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.877
+ "Raw Cognitive Density": 0.862
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.42%",
- "Error & Exception Exposure": "78.75%",
+ "Cognitive Load Exposure": "61.05%",
+ "Error & Exception Exposure": "83.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.44%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.79%",
+ "State Flux Exposure": "99.76%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "62.43%",
+ "Documentation Exposure": "53.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -173007,10 +173007,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.118
+ "Raw Cognitive Density": 0.078
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.69%",
+ "Cognitive Load Exposure": "3.19%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
@@ -173177,13 +173177,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.99%",
+ "Cognitive Load Exposure": "4.31%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -173351,17 +173351,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "95.26%",
- "Testing Exposure": "2.39%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "88.08%",
+ "Testing Exposure": "2.38%",
"API Exposure": "6.62%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "66.6%",
+ "Documentation Exposure": "45.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -173545,12 +173545,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.307
+ "Raw Cognitive Density": 1.296
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.29%",
- "Error & Exception Exposure": "98.01%",
- "Tech Debt Exposure": "28.51%",
+ "Cognitive Load Exposure": "89.88%",
+ "Error & Exception Exposure": "99.38%",
+ "Tech Debt Exposure": "23.03%",
"Testing Exposure": "80.0%",
"API Exposure": "6.03%",
"Concurrency Exposure": "0.0%",
@@ -173559,7 +173559,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "58.21%",
+ "Documentation Exposure": "52.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -173756,21 +173756,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.492
+ "Raw Cognitive Density": 1.487
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.11%",
- "Error & Exception Exposure": "74.02%",
- "Tech Debt Exposure": "9.74%",
+ "Cognitive Load Exposure": "95.02%",
+ "Error & Exception Exposure": "78.85%",
+ "Tech Debt Exposure": "9.07%",
"Testing Exposure": "80.0%",
"API Exposure": "11.61%",
- "Concurrency Exposure": "83.8%",
- "State Flux Exposure": "99.97%",
+ "Concurrency Exposure": "81.51%",
+ "State Flux Exposure": "99.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.93%",
+ "Documentation Exposure": "93.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -174740,17 +174740,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.92%",
+ "Error & Exception Exposure": "75.68%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "7.1%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.87%",
+ "State Flux Exposure": "97.6%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "76.24%",
+ "Documentation Exposure": "59.71%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -175114,16 +175114,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.363
+ "Raw Cognitive Density": 0.355
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.51%",
- "Error & Exception Exposure": "68.22%",
+ "Cognitive Load Exposure": "17.06%",
+ "Error & Exception Exposure": "71.71%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.23%",
+ "State Flux Exposure": "95.77%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -175304,21 +175304,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.495
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.5%",
+ "Cognitive Load Exposure": "22.44%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "7.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "78.89%",
+ "Documentation Exposure": "61.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -175512,21 +175512,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "74.89%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.07%",
+ "Documentation Exposure": "50.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -175880,21 +175880,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.464
+ "Raw Cognitive Density": 1.447
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.56%",
- "Error & Exception Exposure": "80.2%",
+ "Cognitive Load Exposure": "94.2%",
+ "Error & Exception Exposure": "85.08%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "5.3%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.8%",
+ "State Flux Exposure": "99.78%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "67.17%",
+ "Documentation Exposure": "59.03%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -176154,15 +176154,15 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "9.9%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.57%",
+ "Documentation Exposure": "90.77%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -176376,21 +176376,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
+ "Cognitive Load Exposure": "15.19%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "55.77%",
+ "Documentation Exposure": "36.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -176734,13 +176734,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.034
+ "Raw Cognitive Density": 1.007
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.68%",
- "Error & Exception Exposure": "95.54%",
+ "Cognitive Load Exposure": "73.63%",
+ "Error & Exception Exposure": "97.87%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.56%",
+ "Testing Exposure": "2.54%",
"API Exposure": "7.42%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -176748,7 +176748,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "71.88%",
+ "Documentation Exposure": "58.53%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -176956,9 +176956,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "82.39%",
+ "Error & Exception Exposure": "84.74%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "7.83%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -176966,7 +176966,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "79.82%",
+ "Documentation Exposure": "64.04%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -177164,17 +177164,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "66.82%",
+ "State Flux Exposure": "64.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.91%",
+ "Documentation Exposure": "50.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -177348,13 +177348,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.157
+ "Raw Cognitive Density": 0.118
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.53%",
- "Error & Exception Exposure": "66.76%",
+ "Cognitive Load Exposure": "7.38%",
+ "Error & Exception Exposure": "64.37%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "6.31%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -177362,7 +177362,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "68.22%",
+ "Documentation Exposure": "49.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -177550,17 +177550,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.07%",
+ "Documentation Exposure": "50.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -177914,21 +177914,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "70.3%",
- "Tech Debt Exposure": "95.26%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "88.08%",
+ "Testing Exposure": "2.42%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "55.77%",
+ "Documentation Exposure": "36.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -178102,13 +178102,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.97
+ "Raw Cognitive Density": 0.93
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.68%",
- "Error & Exception Exposure": "89.9%",
+ "Cognitive Load Exposure": "67.26%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.5%",
"API Exposure": "6.83%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -178116,7 +178116,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.07%",
+ "Documentation Exposure": "50.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -178300,13 +178300,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "13.24%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.67%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -178570,12 +178570,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.123
+ "Raw Cognitive Density": 1.116
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.01%",
- "Error & Exception Exposure": "92.27%",
- "Tech Debt Exposure": "19.19%",
+ "Cognitive Load Exposure": "78.56%",
+ "Error & Exception Exposure": "96.15%",
+ "Tech Debt Exposure": "16.78%",
"Testing Exposure": "80.0%",
"API Exposure": "3.84%",
"Concurrency Exposure": "0.0%",
@@ -178584,7 +178584,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.55%",
+ "Documentation Exposure": "27.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -178920,13 +178920,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.95
+ "Raw Cognitive Density": 0.91
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.72%",
- "Error & Exception Exposure": "89.2%",
+ "Cognitive Load Exposure": "52.38%",
+ "Error & Exception Exposure": "92.19%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.45%",
"API Exposure": "6.48%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -178934,7 +178934,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "66.58%",
+ "Documentation Exposure": "45.41%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -179124,12 +179124,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.46%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -179360,21 +179360,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.529
+ "Raw Cognitive Density": 0.49
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.27%",
- "Error & Exception Exposure": "68.15%",
+ "Cognitive Load Exposure": "26.13%",
+ "Error & Exception Exposure": "66.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.86%",
+ "Testing Exposure": "2.81%",
"API Exposure": "9.51%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.34%",
+ "State Flux Exposure": "13.85%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.21%",
+ "Documentation Exposure": "90.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -179758,13 +179758,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.963
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "83.78%",
+ "Cognitive Load Exposure": "70.1%",
+ "Error & Exception Exposure": "86.59%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.76%",
+ "Testing Exposure": "2.73%",
"API Exposure": "1.24%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -179772,7 +179772,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "64.53%",
+ "Documentation Exposure": "45.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -179970,17 +179970,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.02%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "9.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.84%",
+ "State Flux Exposure": "93.1%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "78.08%",
+ "Documentation Exposure": "69.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -180254,21 +180254,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.932
+ "Raw Cognitive Density": 0.916
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.43%",
- "Error & Exception Exposure": "69.94%",
+ "Cognitive Load Exposure": "65.99%",
+ "Error & Exception Exposure": "71.66%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.13%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.79%",
+ "State Flux Exposure": "99.77%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.76%",
+ "Documentation Exposure": "16.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -180612,21 +180612,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.7
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.02%",
- "Error & Exception Exposure": "79.83%",
+ "Cognitive Load Exposure": "41.1%",
+ "Error & Exception Exposure": "81.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.44%",
"API Exposure": "7.58%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "79.82%",
+ "Documentation Exposure": "64.04%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -180992,21 +180992,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.355
+ "Raw Cognitive Density": 0.333
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.06%",
- "Error & Exception Exposure": "63.53%",
+ "Cognitive Load Exposure": "15.88%",
+ "Error & Exception Exposure": "64.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.5%",
"API Exposure": "8.43%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "64.26%",
+ "State Flux Exposure": "61.46%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "86.52%",
+ "Documentation Exposure": "81.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -181310,16 +181310,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "21.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -181500,13 +181500,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.525
+ "Raw Cognitive Density": 0.47
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "28.89%",
+ "Cognitive Load Exposure": "24.57%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.66%",
+ "Testing Exposure": "2.64%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -181906,7 +181906,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -181914,7 +181914,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -182092,7 +182092,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.59%",
+ "Documentation Exposure": "24.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -182256,21 +182256,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.345
+ "Raw Cognitive Density": 1.343
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.52%",
- "Error & Exception Exposure": "88.97%",
- "Tech Debt Exposure": "9.27%",
+ "Cognitive Load Exposure": "91.47%",
+ "Error & Exception Exposure": "93.75%",
+ "Tech Debt Exposure": "8.94%",
"Testing Exposure": "80.0%",
"API Exposure": "2.93%",
- "Concurrency Exposure": "38.32%",
+ "Concurrency Exposure": "34.62%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "12.47%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.92%",
+ "Documentation Exposure": "21.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -183024,21 +183024,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.583
+ "Raw Cognitive Density": 1.544
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.56%",
- "Error & Exception Exposure": "94.54%",
+ "Cognitive Load Exposure": "95.99%",
+ "Error & Exception Exposure": "96.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.8%",
+ "Testing Exposure": "2.76%",
"API Exposure": "5.28%",
- "Concurrency Exposure": "93.15%",
+ "Concurrency Exposure": "92.06%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.07%",
+ "Documentation Exposure": "49.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -183212,21 +183212,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.86
+ "Raw Cognitive Density": 0.82
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.83%",
- "Error & Exception Exposure": "74.89%",
+ "Cognitive Load Exposure": "56.95%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.57%",
+ "Testing Exposure": "2.55%",
"API Exposure": "6.89%",
- "Concurrency Exposure": "93.5%",
- "State Flux Exposure": "97.07%",
+ "Concurrency Exposure": "92.46%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.82%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -183410,21 +183410,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.8
+ "Raw Cognitive Density": 0.76
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.98%",
- "Error & Exception Exposure": "86.58%",
+ "Cognitive Load Exposure": "51.0%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.7%",
"API Exposure": "5.59%",
- "Concurrency Exposure": "63.03%",
- "State Flux Exposure": "57.44%",
+ "Concurrency Exposure": "59.23%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.25%",
+ "Documentation Exposure": "48.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -183598,21 +183598,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.341
+ "Raw Cognitive Density": 1.317
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.42%",
- "Error & Exception Exposure": "89.26%",
+ "Cognitive Load Exposure": "90.62%",
+ "Error & Exception Exposure": "93.01%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.74%",
+ "Testing Exposure": "2.7%",
"API Exposure": "6.03%",
- "Concurrency Exposure": "47.39%",
+ "Concurrency Exposure": "43.42%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "43.91%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.52%",
+ "Documentation Exposure": "38.66%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -183796,11 +183796,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.14
+ "Raw Cognitive Density": 2.116
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.62%",
- "Error & Exception Exposure": "91.62%",
+ "Cognitive Load Exposure": "99.58%",
+ "Error & Exception Exposure": "94.7%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.78%",
@@ -183810,7 +183810,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "82.5%",
+ "Documentation Exposure": "73.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -184034,21 +184034,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "66.98%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "5.59%",
- "Concurrency Exposure": "93.5%",
- "State Flux Exposure": "21.42%",
+ "Concurrency Exposure": "92.46%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.25%",
+ "Documentation Exposure": "48.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -184226,9 +184226,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "86.58%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -184422,10 +184422,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -184592,21 +184592,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "11.51%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.23%",
+ "Documentation Exposure": "22.59%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -184778,7 +184778,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.48%",
"API Exposure": "7.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -184786,7 +184786,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.63%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -185016,17 +185016,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "55.77%",
+ "Documentation Exposure": "36.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -185200,12 +185200,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.308
+ "Raw Cognitive Density": 1.285
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.31%",
- "Error & Exception Exposure": "98.4%",
- "Tech Debt Exposure": "78.23%",
+ "Cognitive Load Exposure": "89.47%",
+ "Error & Exception Exposure": "99.49%",
+ "Tech Debt Exposure": "66.77%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -185390,10 +185390,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -185560,10 +185560,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.027
+ "Raw Cognitive Density": 0.018
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.63%",
+ "Cognitive Load Exposure": "2.54%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
@@ -185734,17 +185734,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "8.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "77.93%",
+ "Documentation Exposure": "59.59%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -185938,13 +185938,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.25
+ "Raw Cognitive Density": 1.21
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.08%",
- "Error & Exception Exposure": "91.52%",
+ "Cognitive Load Exposure": "86.29%",
+ "Error & Exception Exposure": "94.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.65%",
+ "Testing Exposure": "2.63%",
"API Exposure": "3.41%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -185952,7 +185952,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.59%",
+ "Documentation Exposure": "24.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -186116,13 +186116,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.31%",
+ "Cognitive Load Exposure": "3.72%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -186286,10 +186286,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.125
+ "Raw Cognitive Density": 0.089
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.79%",
+ "Cognitive Load Exposure": "3.32%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
@@ -186624,13 +186624,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.033
+ "Raw Cognitive Density": 0.024
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.68%",
+ "Cognitive Load Exposure": "2.6%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "5.97%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -186924,11 +186924,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.168
+ "Raw Cognitive Density": 1.158
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.2%",
- "Error & Exception Exposure": "84.93%",
+ "Cognitive Load Exposure": "83.65%",
+ "Error & Exception Exposure": "89.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.23%",
@@ -186938,7 +186938,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "78.39%",
+ "Documentation Exposure": "73.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -187256,17 +187256,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "67.54%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.07%",
+ "Documentation Exposure": "50.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -187450,11 +187450,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.109
+ "Raw Cognitive Density": 1.087
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.76%",
- "Error & Exception Exposure": "97.76%",
+ "Cognitive Load Exposure": "79.38%",
+ "Error & Exception Exposure": "99.2%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "1.92%",
@@ -187464,7 +187464,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.84%",
+ "Documentation Exposure": "32.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -187668,11 +187668,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.272
+ "Raw Cognitive Density": 1.263
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.99%",
- "Error & Exception Exposure": "97.47%",
+ "Cognitive Load Exposure": "88.63%",
+ "Error & Exception Exposure": "99.16%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.77%",
@@ -187682,7 +187682,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "52.08%",
+ "Documentation Exposure": "45.83%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -187946,21 +187946,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.34
+ "Raw Cognitive Density": 1.336
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.38%",
- "Error & Exception Exposure": "91.72%",
- "Tech Debt Exposure": "21.51%",
+ "Cognitive Load Exposure": "91.24%",
+ "Error & Exception Exposure": "95.75%",
+ "Tech Debt Exposure": "19.79%",
"Testing Exposure": "80.0%",
"API Exposure": "8.34%",
- "Concurrency Exposure": "34.44%",
+ "Concurrency Exposure": "30.92%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "72.17%",
+ "Documentation Exposure": "68.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -188514,21 +188514,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.349
+ "Raw Cognitive Density": 1.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.64%",
- "Error & Exception Exposure": "92.49%",
- "Tech Debt Exposure": "21.09%",
+ "Cognitive Load Exposure": "91.38%",
+ "Error & Exception Exposure": "96.0%",
+ "Tech Debt Exposure": "17.74%",
"Testing Exposure": "80.0%",
"API Exposure": "2.57%",
- "Concurrency Exposure": "56.48%",
+ "Concurrency Exposure": "52.51%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.88%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.77%",
+ "Documentation Exposure": "16.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -188792,21 +188792,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.94
+ "Raw Cognitive Density": 1.934
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.15%",
- "Error & Exception Exposure": "96.44%",
- "Tech Debt Exposure": "69.92%",
+ "Cognitive Load Exposure": "99.13%",
+ "Error & Exception Exposure": "98.62%",
+ "Tech Debt Exposure": "67.78%",
"Testing Exposure": "80.0%",
"API Exposure": "7.66%",
- "Concurrency Exposure": "88.6%",
+ "Concurrency Exposure": "86.88%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "9.5%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.91%",
+ "Documentation Exposure": "22.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -189170,12 +189170,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.752
+ "Raw Cognitive Density": 1.751
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.82%",
- "Error & Exception Exposure": "97.97%",
- "Tech Debt Exposure": "10.23%",
+ "Cognitive Load Exposure": "94.21%",
+ "Error & Exception Exposure": "99.43%",
+ "Tech Debt Exposure": "10.02%",
"Testing Exposure": "80.0%",
"API Exposure": "8.36%",
"Concurrency Exposure": "0.0%",
@@ -189184,7 +189184,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.13%",
+ "Documentation Exposure": "39.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -190248,21 +190248,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.393
+ "Raw Cognitive Density": 1.384
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.89%",
- "Error & Exception Exposure": "80.01%",
+ "Cognitive Load Exposure": "92.65%",
+ "Error & Exception Exposure": "85.53%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.93%",
+ "State Flux Exposure": "99.92%",
"Commented Logic Exposure": "8.29%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.63%",
+ "Documentation Exposure": "34.88%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -190759,18 +190759,18 @@
"Raw Cognitive Density": 1.327
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.96%",
- "Error & Exception Exposure": "97.67%",
- "Tech Debt Exposure": "18.49%",
+ "Cognitive Load Exposure": "90.94%",
+ "Error & Exception Exposure": "99.3%",
+ "Tech Debt Exposure": "18.21%",
"Testing Exposure": "80.0%",
"API Exposure": "9.89%",
- "Concurrency Exposure": "52.22%",
+ "Concurrency Exposure": "48.22%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "9.15%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.7%",
+ "Documentation Exposure": "24.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -192514,21 +192514,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.859
+ "Raw Cognitive Density": 1.858
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.12%",
- "Error & Exception Exposure": "90.74%",
- "Tech Debt Exposure": "22.28%",
+ "Cognitive Load Exposure": "97.63%",
+ "Error & Exception Exposure": "94.68%",
+ "Tech Debt Exposure": "21.77%",
"Testing Exposure": "80.0%",
"API Exposure": "1.09%",
- "Concurrency Exposure": "45.05%",
+ "Concurrency Exposure": "41.13%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "14.63%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.72%",
+ "Documentation Exposure": "18.34%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -193222,12 +193222,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.263
+ "Raw Cognitive Density": 1.258
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.63%",
- "Error & Exception Exposure": "81.46%",
- "Tech Debt Exposure": "20.51%",
+ "Cognitive Load Exposure": "88.42%",
+ "Error & Exception Exposure": "84.6%",
+ "Tech Debt Exposure": "18.4%",
"Testing Exposure": "80.0%",
"API Exposure": "0.3%",
"Concurrency Exposure": "0.0%",
@@ -193620,16 +193620,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.584
+ "Raw Cognitive Density": 0.569
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.02%",
- "Error & Exception Exposure": "69.43%",
+ "Cognitive Load Exposure": "32.67%",
+ "Error & Exception Exposure": "72.62%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.82%",
+ "State Flux Exposure": "97.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -193960,16 +193960,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -194155,7 +194155,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -194370,13 +194370,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
+ "Cognitive Load Exposure": "21.08%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.71%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -194600,16 +194600,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.648
+ "Raw Cognitive Density": 0.635
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.92%",
- "Error & Exception Exposure": "73.39%",
- "Tech Debt Exposure": "88.85%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "38.66%",
+ "Error & Exception Exposure": "77.8%",
+ "Tech Debt Exposure": "86.44%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.71%",
+ "State Flux Exposure": "99.68%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -195035,7 +195035,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -195266,7 +195266,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "8.19%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -195274,7 +195274,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "78.41%",
+ "Documentation Exposure": "60.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -195445,18 +195445,18 @@
"Static: Literature & Documentation": "14.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "37.18%",
- "Error & Exception Exposure": "59.45%",
- "Tech Debt Exposure": "13.1%",
+ "Cognitive Load Exposure": "36.83%",
+ "Error & Exception Exposure": "60.05%",
+ "Tech Debt Exposure": "12.71%",
"Testing Exposure": "68.57%",
"API Exposure": "5.02%",
- "Concurrency Exposure": "2.73%",
- "State Flux Exposure": "52.14%",
+ "Concurrency Exposure": "2.24%",
+ "State Flux Exposure": "50.57%",
"Commented Logic Exposure": "2.82%",
"Specification Exposure": "85.71%",
"Instability Exposure": "42.86%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.36%",
+ "Documentation Exposure": "35.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -195496,8 +195496,8 @@
"Raw Cognitive Density": 1.52
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.58%",
- "Error & Exception Exposure": "98.8%",
+ "Cognitive Load Exposure": "94.4%",
+ "Error & Exception Exposure": "99.72%",
"Tech Debt Exposure": "7.92%",
"Testing Exposure": "80.0%",
"API Exposure": "14.53%",
@@ -195507,7 +195507,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.76%",
+ "Documentation Exposure": "99.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -196803,7 +196803,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "93.94%",
- "Error & Exception Exposure": "98.42%",
+ "Error & Exception Exposure": "99.6%",
"Tech Debt Exposure": "20.13%",
"Testing Exposure": "80.0%",
"API Exposure": "13.64%",
@@ -196813,7 +196813,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.71%",
+ "Documentation Exposure": "99.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -199944,18 +199944,18 @@
"Raw Cognitive Density": 0.404
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.86%",
- "Error & Exception Exposure": "62.14%",
- "Tech Debt Exposure": "10.86%",
+ "Cognitive Load Exposure": "19.72%",
+ "Error & Exception Exposure": "65.49%",
+ "Tech Debt Exposure": "10.75%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "87.83%",
+ "State Flux Exposure": "85.77%",
"Commented Logic Exposure": "5.13%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.03%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -200236,16 +200236,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.519
+ "Raw Cognitive Density": 0.518
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.79%",
- "Error & Exception Exposure": "55.18%",
- "Tech Debt Exposure": "9.39%",
+ "Cognitive Load Exposure": "24.0%",
+ "Error & Exception Exposure": "56.49%",
+ "Tech Debt Exposure": "9.22%",
"Testing Exposure": "80.0%",
"API Exposure": "6.95%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "45.57%",
+ "State Flux Exposure": "41.15%",
"Commented Logic Exposure": "4.94%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -200644,21 +200644,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.281
+ "Raw Cognitive Density": 0.277
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.3%",
- "Error & Exception Exposure": "52.42%",
- "Tech Debt Exposure": "28.87%",
+ "Cognitive Load Exposure": "13.1%",
+ "Error & Exception Exposure": "52.31%",
+ "Tech Debt Exposure": "27.29%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "12.65%",
+ "State Flux Exposure": "10.79%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.16%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -200942,16 +200942,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.271
+ "Raw Cognitive Density": 0.266
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.82%",
- "Error & Exception Exposure": "49.16%",
- "Tech Debt Exposure": "14.55%",
+ "Cognitive Load Exposure": "12.63%",
+ "Error & Exception Exposure": "46.75%",
+ "Tech Debt Exposure": "13.63%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "19.11%",
- "State Flux Exposure": "18.91%",
+ "Concurrency Exposure": "15.67%",
+ "State Flux Exposure": "16.3%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -201136,13 +201136,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "19.67%",
- "Error & Exception Exposure": "10.54%",
- "Tech Debt Exposure": "34.81%",
- "Testing Exposure": "35.7%",
+ "Cognitive Load Exposure": "19.69%",
+ "Error & Exception Exposure": "10.57%",
+ "Tech Debt Exposure": "34.99%",
+ "Testing Exposure": "35.71%",
"API Exposure": "0.51%",
- "Concurrency Exposure": "11.33%",
- "State Flux Exposure": "33.54%",
+ "Concurrency Exposure": "12.01%",
+ "State Flux Exposure": "34.34%",
"Commented Logic Exposure": "6.84%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -201187,12 +201187,12 @@
"Raw Cognitive Density": 0.402
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.96%",
- "Error & Exception Exposure": "17.75%",
- "Tech Debt Exposure": "20.03%",
+ "Cognitive Load Exposure": "9.97%",
+ "Error & Exception Exposure": "17.79%",
+ "Tech Debt Exposure": "20.18%",
"Testing Exposure": "80.0%",
"API Exposure": "0.1%",
- "Concurrency Exposure": "30.23%",
+ "Concurrency Exposure": "31.95%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.58%",
"Specification Exposure": "100.0%",
@@ -203835,9 +203835,9 @@
"Raw Cognitive Density": 0.77
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.98%",
+ "Cognitive Load Exposure": "26.02%",
"Error & Exception Exposure": "0.63%",
- "Tech Debt Exposure": "16.18%",
+ "Tech Debt Exposure": "16.38%",
"Testing Exposure": "80.0%",
"API Exposure": "1.6%",
"Concurrency Exposure": "0.0%",
@@ -205459,13 +205459,13 @@
"Raw Cognitive Density": 0.538
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.98%",
- "Error & Exception Exposure": "4.4%",
- "Tech Debt Exposure": "26.63%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "15.0%",
+ "Error & Exception Exposure": "4.41%",
+ "Tech Debt Exposure": "26.85%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.93%",
- "Concurrency Exposure": "26.87%",
- "State Flux Exposure": "30.7%",
+ "Concurrency Exposure": "28.47%",
+ "State Flux Exposure": "31.99%",
"Commented Logic Exposure": "10.73%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -208878,13 +208878,13 @@
"Raw Cognitive Density": 0.427
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.78%",
- "Error & Exception Exposure": "7.87%",
- "Tech Debt Exposure": "17.53%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "10.79%",
+ "Error & Exception Exposure": "7.9%",
+ "Tech Debt Exposure": "17.7%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.15%",
- "Concurrency Exposure": "22.24%",
- "State Flux Exposure": "22.29%",
+ "Concurrency Exposure": "23.66%",
+ "State Flux Exposure": "23.35%",
"Commented Logic Exposure": "10.44%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -211789,13 +211789,13 @@
"Raw Cognitive Density": 0.558
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.85%",
- "Error & Exception Exposure": "16.07%",
- "Tech Debt Exposure": "42.23%",
- "Testing Exposure": "2.47%",
+ "Cognitive Load Exposure": "15.86%",
+ "Error & Exception Exposure": "16.11%",
+ "Tech Debt Exposure": "42.47%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.13%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "31.91%",
+ "State Flux Exposure": "33.22%",
"Commented Logic Exposure": "5.45%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -214945,16 +214945,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.763
+ "Raw Cognitive Density": 0.764
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.66%",
- "Error & Exception Exposure": "13.07%",
+ "Cognitive Load Exposure": "25.68%",
+ "Error & Exception Exposure": "13.1%",
"Tech Debt Exposure": "99.58%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.54%",
"API Exposure": "0.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "60.24%",
+ "State Flux Exposure": "61.66%",
"Commented Logic Exposure": "5.09%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -219214,16 +219214,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.949
+ "Raw Cognitive Density": 0.95
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.47%",
- "Error & Exception Exposure": "13.98%",
- "Tech Debt Exposure": "21.48%",
+ "Cognitive Load Exposure": "34.5%",
+ "Error & Exception Exposure": "14.04%",
+ "Tech Debt Exposure": "21.76%",
"Testing Exposure": "80.0%",
"API Exposure": "0.48%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "89.62%",
+ "State Flux Exposure": "90.16%",
"Commented Logic Exposure": "5.36%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -219948,18 +219948,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "74.01%",
- "Error & Exception Exposure": "68.34%",
- "Tech Debt Exposure": "20.15%",
- "Testing Exposure": "47.55%",
+ "Cognitive Load Exposure": "73.23%",
+ "Error & Exception Exposure": "64.76%",
+ "Tech Debt Exposure": "19.28%",
+ "Testing Exposure": "34.94%",
"API Exposure": "0.66%",
- "Concurrency Exposure": "26.19%",
- "State Flux Exposure": "91.16%",
+ "Concurrency Exposure": "25.58%",
+ "State Flux Exposure": "91.11%",
"Commented Logic Exposure": "2.82%",
"Specification Exposure": "86.05%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.43%",
+ "Documentation Exposure": "20.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -219996,21 +219996,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.152
+ "Raw Cognitive Density": 1.142
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.31%",
- "Error & Exception Exposure": "92.66%",
+ "Cognitive Load Exposure": "82.76%",
+ "Error & Exception Exposure": "94.75%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.2%",
- "Concurrency Exposure": "62.15%",
+ "Concurrency Exposure": "58.32%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.22%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.51%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -220332,21 +220332,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.583
+ "Raw Cognitive Density": 1.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.55%",
- "Error & Exception Exposure": "90.4%",
- "Tech Debt Exposure": "14.75%",
+ "Cognitive Load Exposure": "96.51%",
+ "Error & Exception Exposure": "88.15%",
+ "Tech Debt Exposure": "14.23%",
"Testing Exposure": "80.0%",
"API Exposure": "0.13%",
- "Concurrency Exposure": "41.79%",
+ "Concurrency Exposure": "37.96%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.6%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.92%",
+ "Documentation Exposure": "13.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -221119,13 +221119,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.206
+ "Raw Cognitive Density": 1.201
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.1%",
- "Error & Exception Exposure": "70.04%",
- "Tech Debt Exposure": "78.94%",
- "Testing Exposure": "2.63%",
+ "Cognitive Load Exposure": "85.85%",
+ "Error & Exception Exposure": "43.75%",
+ "Tech Debt Exposure": "76.7%",
+ "Testing Exposure": "2.6%",
"API Exposure": "0.23%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -221133,7 +221133,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.06%",
+ "Documentation Exposure": "22.18%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -221486,13 +221486,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.083
+ "Raw Cognitive Density": 3.044
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.99%",
- "Error & Exception Exposure": "98.21%",
+ "Error & Exception Exposure": "98.15%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.71%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -221676,11 +221676,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.135
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.36%",
- "Error & Exception Exposure": "87.62%",
+ "Cognitive Load Exposure": "81.48%",
+ "Error & Exception Exposure": "91.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.26%",
@@ -221690,7 +221690,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.53%",
+ "Documentation Exposure": "13.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -221904,12 +221904,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.016
+ "Raw Cognitive Density": 1.009
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.38%",
- "Error & Exception Exposure": "3.02%",
- "Tech Debt Exposure": "13.46%",
+ "Cognitive Load Exposure": "73.82%",
+ "Error & Exception Exposure": "0.13%",
+ "Tech Debt Exposure": "11.47%",
"Testing Exposure": "80.0%",
"API Exposure": "5.87%",
"Concurrency Exposure": "0.0%",
@@ -221918,7 +221918,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "83.48%",
+ "Documentation Exposure": "80.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -222255,11 +222255,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.311
+ "Raw Cognitive Density": 2.276
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.81%",
- "Error & Exception Exposure": "97.78%",
+ "Cognitive Load Exposure": "99.78%",
+ "Error & Exception Exposure": "98.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -222513,16 +222513,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.64
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "81.44%",
+ "Cognitive Load Exposure": "39.17%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -222683,21 +222683,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.201
+ "Raw Cognitive Density": 1.195
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.85%",
- "Error & Exception Exposure": "86.7%",
- "Tech Debt Exposure": "47.27%",
+ "Cognitive Load Exposure": "85.59%",
+ "Error & Exception Exposure": "81.17%",
+ "Tech Debt Exposure": "43.88%",
"Testing Exposure": "80.0%",
"API Exposure": "1.68%",
- "Concurrency Exposure": "40.8%",
+ "Concurrency Exposure": "37.0%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.04%",
+ "Documentation Exposure": "53.73%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -223283,10 +223283,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -223451,11 +223451,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.248
+ "Raw Cognitive Density": 1.238
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.98%",
- "Error & Exception Exposure": "96.92%",
+ "Cognitive Load Exposure": "87.58%",
+ "Error & Exception Exposure": "97.2%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.17%",
@@ -223465,7 +223465,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.55%",
+ "Documentation Exposure": "16.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -223791,12 +223791,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.063
+ "Raw Cognitive Density": 1.057
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.8%",
- "Error & Exception Exposure": "75.01%",
- "Tech Debt Exposure": "16.27%",
+ "Cognitive Load Exposure": "77.36%",
+ "Error & Exception Exposure": "74.64%",
+ "Tech Debt Exposure": "14.25%",
"Testing Exposure": "80.0%",
"API Exposure": "0.34%",
"Concurrency Exposure": "0.0%",
@@ -223805,7 +223805,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.53%",
+ "Documentation Exposure": "24.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -224239,12 +224239,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.267
+ "Raw Cognitive Density": 1.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.76%",
- "Error & Exception Exposure": "88.15%",
- "Tech Debt Exposure": "97.97%",
+ "Cognitive Load Exposure": "88.49%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "97.61%",
"Testing Exposure": "80.0%",
"API Exposure": "0.41%",
"Concurrency Exposure": "0.0%",
@@ -224253,7 +224253,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.1%",
+ "Documentation Exposure": "31.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -224619,12 +224619,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.587
+ "Raw Cognitive Density": 4.585
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "63.91%",
- "Tech Debt Exposure": "23.67%",
+ "Error & Exception Exposure": "42.26%",
+ "Tech Debt Exposure": "22.66%",
"Testing Exposure": "80.0%",
"API Exposure": "0.16%",
"Concurrency Exposure": "100.0%",
@@ -224633,7 +224633,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.16%",
+ "Documentation Exposure": "17.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -225544,17 +225544,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "3.02%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.82%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -225738,13 +225738,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.297
+ "Raw Cognitive Density": 2.284
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.8%",
- "Error & Exception Exposure": "87.37%",
- "Tech Debt Exposure": "91.67%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "99.78%",
+ "Error & Exception Exposure": "88.45%",
+ "Tech Debt Exposure": "88.7%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -226028,13 +226028,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.787
+ "Raw Cognitive Density": 1.785
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.45%",
- "Error & Exception Exposure": "98.66%",
- "Tech Debt Exposure": "14.39%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "98.43%",
+ "Error & Exception Exposure": "99.14%",
+ "Tech Debt Exposure": "13.64%",
+ "Testing Exposure": "2.72%",
"API Exposure": "0.48%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -226042,7 +226042,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.01%",
+ "Documentation Exposure": "21.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -226808,21 +226808,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.392
+ "Raw Cognitive Density": 1.388
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.88%",
- "Error & Exception Exposure": "98.12%",
- "Tech Debt Exposure": "16.11%",
+ "Cognitive Load Exposure": "92.77%",
+ "Error & Exception Exposure": "98.99%",
+ "Tech Debt Exposure": "14.8%",
"Testing Exposure": "80.0%",
"API Exposure": "0.09%",
- "Concurrency Exposure": "95.13%",
+ "Concurrency Exposure": "94.33%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.09%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.19%",
+ "Documentation Exposure": "17.03%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -227238,13 +227238,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.794
+ "Raw Cognitive Density": 2.787
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.97%",
- "Error & Exception Exposure": "88.81%",
- "Tech Debt Exposure": "35.5%",
- "Testing Exposure": "80.0%",
+ "Error & Exception Exposure": "75.99%",
+ "Tech Debt Exposure": "32.56%",
+ "Testing Exposure": "2.8%",
"API Exposure": "0.72%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -227252,7 +227252,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.55%",
+ "Documentation Exposure": "36.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -227608,13 +227608,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.064
+ "Raw Cognitive Density": 1.036
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.85%",
- "Error & Exception Exposure": "84.02%",
+ "Cognitive Load Exposure": "75.82%",
+ "Error & Exception Exposure": "86.61%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.51%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -227796,21 +227796,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.172
+ "Raw Cognitive Density": 1.169
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.39%",
- "Error & Exception Exposure": "25.07%",
- "Tech Debt Exposure": "12.59%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "84.25%",
+ "Error & Exception Exposure": "4.57%",
+ "Tech Debt Exposure": "11.88%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "56.06%",
+ "Concurrency Exposure": "52.09%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.18%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.46%",
+ "Documentation Exposure": "12.55%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -228167,16 +228167,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.649
+ "Raw Cognitive Density": 0.614
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.05%",
- "Error & Exception Exposure": "78.34%",
+ "Cognitive Load Exposure": "36.73%",
+ "Error & Exception Exposure": "80.26%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.82%",
+ "State Flux Exposure": "99.8%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -228345,21 +228345,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.78
+ "Raw Cognitive Density": 1.776
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.4%",
- "Error & Exception Exposure": "98.91%",
- "Tech Debt Exposure": "12.03%",
- "Testing Exposure": "2.59%",
+ "Cognitive Load Exposure": "98.38%",
+ "Error & Exception Exposure": "99.41%",
+ "Tech Debt Exposure": "11.08%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.11%",
- "Concurrency Exposure": "99.9%",
+ "Concurrency Exposure": "99.88%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.29%",
+ "Documentation Exposure": "16.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -228855,12 +228855,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.186
+ "Raw Cognitive Density": 2.168
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.68%",
- "Error & Exception Exposure": "76.19%",
- "Tech Debt Exposure": "98.36%",
+ "Cognitive Load Exposure": "99.66%",
+ "Error & Exception Exposure": "63.5%",
+ "Tech Debt Exposure": "97.43%",
"Testing Exposure": "80.0%",
"API Exposure": "0.17%",
"Concurrency Exposure": "100.0%",
@@ -228869,7 +228869,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "51.41%",
+ "Documentation Exposure": "37.4%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -229065,13 +229065,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.938
+ "Raw Cognitive Density": 0.909
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.0%",
- "Error & Exception Exposure": "96.4%",
+ "Cognitive Load Exposure": "65.42%",
+ "Error & Exception Exposure": "98.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -229263,12 +229263,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.299
+ "Raw Cognitive Density": 1.289
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "89.97%",
- "Error & Exception Exposure": "93.75%",
- "Tech Debt Exposure": "39.25%",
+ "Cognitive Load Exposure": "89.62%",
+ "Error & Exception Exposure": "95.38%",
+ "Tech Debt Exposure": "33.63%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -229277,7 +229277,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.09%",
+ "Documentation Exposure": "21.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -229563,13 +229563,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.031
+ "Raw Cognitive Density": 1.016
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.44%",
- "Error & Exception Exposure": "93.87%",
- "Tech Debt Exposure": "96.88%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "74.36%",
+ "Error & Exception Exposure": "96.38%",
+ "Tech Debt Exposure": "95.59%",
+ "Testing Exposure": "2.58%",
"API Exposure": "2.13%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -229577,7 +229577,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.77%",
+ "Documentation Exposure": "53.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -229861,13 +229861,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.0%",
- "Error & Exception Exposure": "78.78%",
+ "Cognitive Load Exposure": "43.05%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -230039,21 +230039,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.371
+ "Raw Cognitive Density": 1.361
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.29%",
- "Error & Exception Exposure": "33.53%",
+ "Cognitive Load Exposure": "92.0%",
+ "Error & Exception Exposure": "12.36%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "25.85%",
+ "Concurrency Exposure": "22.9%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.74%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.2%",
+ "Documentation Exposure": "23.36%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -230329,13 +230329,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.277
+ "Raw Cognitive Density": 2.274
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.78%",
- "Error & Exception Exposure": "64.39%",
- "Tech Debt Exposure": "34.03%",
- "Testing Exposure": "2.61%",
+ "Error & Exception Exposure": "43.24%",
+ "Tech Debt Exposure": "32.78%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.09%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -230343,7 +230343,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.76%",
+ "Documentation Exposure": "14.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -231220,13 +231220,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.999
+ "Raw Cognitive Density": 0.993
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.0%",
- "Error & Exception Exposure": "83.03%",
- "Tech Debt Exposure": "73.21%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "72.58%",
+ "Error & Exception Exposure": "83.59%",
+ "Tech Debt Exposure": "70.54%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.05%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -231234,7 +231234,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.59%",
+ "Documentation Exposure": "11.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -231500,11 +231500,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.658
+ "Raw Cognitive Density": 1.655
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.42%",
- "Error & Exception Exposure": "2.53%",
+ "Cognitive Load Exposure": "97.39%",
+ "Error & Exception Exposure": "0.11%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -231514,7 +231514,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.4%",
+ "Documentation Exposure": "12.59%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -232038,11 +232038,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.724
+ "Raw Cognitive Density": 0.718
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.39%",
- "Error & Exception Exposure": "78.26%",
+ "Cognitive Load Exposure": "46.81%",
+ "Error & Exception Exposure": "83.42%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -232232,17 +232232,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "5.29%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.82%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -232406,21 +232406,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.458
+ "Raw Cognitive Density": 1.455
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.44%",
- "Error & Exception Exposure": "98.78%",
- "Tech Debt Exposure": "20.45%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "94.37%",
+ "Error & Exception Exposure": "99.1%",
+ "Tech Debt Exposure": "19.2%",
+ "Testing Exposure": "2.73%",
"API Exposure": "0.14%",
- "Concurrency Exposure": "66.89%",
+ "Concurrency Exposure": "63.25%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.85%",
+ "Documentation Exposure": "16.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -233046,13 +233046,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -233214,12 +233214,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.083
+ "Raw Cognitive Density": 1.077
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.14%",
- "Error & Exception Exposure": "13.43%",
- "Tech Debt Exposure": "15.79%",
+ "Cognitive Load Exposure": "78.74%",
+ "Error & Exception Exposure": "1.36%",
+ "Tech Debt Exposure": "13.89%",
"Testing Exposure": "80.0%",
"API Exposure": "0.19%",
"Concurrency Exposure": "0.0%",
@@ -233228,7 +233228,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.74%",
+ "Documentation Exposure": "23.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -233632,13 +233632,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -233810,13 +233810,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.833
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.26%",
- "Error & Exception Exposure": "79.78%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "81.76%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.98%",
@@ -233988,11 +233988,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.313
+ "Raw Cognitive Density": 1.305
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.48%",
- "Error & Exception Exposure": "98.33%",
+ "Cognitive Load Exposure": "90.19%",
+ "Error & Exception Exposure": "99.14%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.08%",
@@ -234002,7 +234002,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.34%",
+ "Documentation Exposure": "26.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -234276,15 +234276,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.405
+ "Raw Cognitive Density": 1.399
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.22%",
- "Error & Exception Exposure": "1.87%",
- "Tech Debt Exposure": "13.81%",
- "Testing Exposure": "2.51%",
+ "Cognitive Load Exposure": "93.05%",
+ "Error & Exception Exposure": "0.07%",
+ "Tech Debt Exposure": "12.43%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "37.78%",
+ "Concurrency Exposure": "34.09%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -234624,13 +234624,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.096
+ "Raw Cognitive Density": 1.087
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.93%",
- "Error & Exception Exposure": "26.34%",
+ "Cognitive Load Exposure": "79.41%",
+ "Error & Exception Exposure": "5.75%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -234638,7 +234638,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.69%",
+ "Documentation Exposure": "20.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -234932,13 +234932,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.02
+ "Raw Cognitive Density": 0.98
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.65%",
- "Error & Exception Exposure": "85.01%",
+ "Cognitive Load Exposure": "71.5%",
+ "Error & Exception Exposure": "87.78%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.48%",
"API Exposure": "6.17%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -234946,7 +234946,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "96.5%",
+ "Documentation Exposure": "93.51%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -235106,18 +235106,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "24.28%",
- "Error & Exception Exposure": "50.0%",
- "Tech Debt Exposure": "12.64%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "22.29%",
+ "Error & Exception Exposure": "42.57%",
+ "Tech Debt Exposure": "12.38%",
+ "Testing Exposure": "49.0%",
"API Exposure": "3.65%",
- "Concurrency Exposure": "10.77%",
- "State Flux Exposure": "12.06%",
+ "Concurrency Exposure": "8.49%",
+ "State Flux Exposure": "10.88%",
"Commented Logic Exposure": "5.11%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.11%",
+ "Documentation Exposure": "33.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -235157,10 +235157,10 @@
"Raw Cognitive Density": 0.577
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.54%",
- "Error & Exception Exposure": "37.95%",
- "Tech Debt Exposure": "15.61%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "16.66%",
+ "Error & Exception Exposure": "25.04%",
+ "Tech Debt Exposure": "15.31%",
+ "Testing Exposure": "2.53%",
"API Exposure": "2.19%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -235168,7 +235168,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.69%",
+ "Documentation Exposure": "16.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -237175,18 +237175,18 @@
"Raw Cognitive Density": 0.454
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.73%",
- "Error & Exception Exposure": "59.02%",
- "Tech Debt Exposure": "16.61%",
+ "Cognitive Load Exposure": "11.71%",
+ "Error & Exception Exposure": "57.68%",
+ "Tech Debt Exposure": "16.42%",
"Testing Exposure": "80.0%",
"API Exposure": "4.38%",
- "Concurrency Exposure": "33.98%",
+ "Concurrency Exposure": "27.21%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.7%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.55%",
+ "Documentation Exposure": "32.53%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -241704,12 +241704,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.382
+ "Raw Cognitive Density": 0.381
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.97%",
- "Error & Exception Exposure": "45.38%",
- "Tech Debt Exposure": "8.87%",
+ "Cognitive Load Exposure": "9.29%",
+ "Error & Exception Exposure": "36.56%",
+ "Tech Debt Exposure": "8.65%",
"Testing Exposure": "80.0%",
"API Exposure": "7.57%",
"Concurrency Exposure": "0.0%",
@@ -241718,7 +241718,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "85.21%",
+ "Documentation Exposure": "80.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -243760,13 +243760,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.556
+ "Raw Cognitive Density": 0.554
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.75%",
- "Error & Exception Exposure": "64.72%",
- "Tech Debt Exposure": "13.62%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "15.69%",
+ "Error & Exception Exposure": "61.09%",
+ "Tech Debt Exposure": "13.14%",
+ "Testing Exposure": "2.49%",
"API Exposure": "3.82%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -243774,7 +243774,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.51%",
+ "Documentation Exposure": "19.45%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -245219,18 +245219,18 @@
"Raw Cognitive Density": 0.863
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "59.38%",
- "Error & Exception Exposure": "42.96%",
- "Tech Debt Exposure": "8.51%",
+ "Cognitive Load Exposure": "58.12%",
+ "Error & Exception Exposure": "32.49%",
+ "Tech Debt Exposure": "8.39%",
"Testing Exposure": "80.0%",
"API Exposure": "0.29%",
- "Concurrency Exposure": "19.86%",
- "State Flux Exposure": "60.28%",
+ "Concurrency Exposure": "15.25%",
+ "State Flux Exposure": "54.41%",
"Commented Logic Exposure": "5.08%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.58%",
+ "Documentation Exposure": "17.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -246052,18 +246052,18 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "47.43%",
- "Error & Exception Exposure": "59.68%",
- "Tech Debt Exposure": "19.79%",
+ "Cognitive Load Exposure": "45.34%",
+ "Error & Exception Exposure": "60.47%",
+ "Tech Debt Exposure": "19.52%",
"Testing Exposure": "40.77%",
"API Exposure": "0.05%",
- "Concurrency Exposure": "5.89%",
- "State Flux Exposure": "56.17%",
+ "Concurrency Exposure": "5.15%",
+ "State Flux Exposure": "55.71%",
"Commented Logic Exposure": "2.82%",
"Specification Exposure": "50.0%",
"Instability Exposure": "41.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "6.01%",
+ "Documentation Exposure": "5.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -246415,15 +246415,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.535
+ "Raw Cognitive Density": 1.534
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.85%",
- "Error & Exception Exposure": "96.6%",
- "Tech Debt Exposure": "15.7%",
+ "Cognitive Load Exposure": "95.84%",
+ "Error & Exception Exposure": "98.84%",
+ "Tech Debt Exposure": "15.58%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
- "Concurrency Exposure": "18.19%",
+ "Concurrency Exposure": "15.93%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.2%",
"Specification Exposure": "100.0%",
@@ -248283,16 +248283,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.608
+ "Raw Cognitive Density": 0.569
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.31%",
- "Error & Exception Exposure": "68.15%",
+ "Cognitive Load Exposure": "22.83%",
+ "Error & Exception Exposure": "66.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.02%",
+ "State Flux Exposure": "34.27%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -248443,12 +248443,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.1
+ "Raw Cognitive Density": 1.094
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.22%",
- "Error & Exception Exposure": "96.75%",
- "Tech Debt Exposure": "94.12%",
+ "Cognitive Load Exposure": "79.82%",
+ "Error & Exception Exposure": "98.84%",
+ "Tech Debt Exposure": "92.68%",
"Testing Exposure": "80.0%",
"API Exposure": "0.25%",
"Concurrency Exposure": "0.0%",
@@ -248457,7 +248457,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.24%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -248717,15 +248717,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.689
+ "Raw Cognitive Density": 1.688
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.2%",
- "Error & Exception Exposure": "96.58%",
- "Tech Debt Exposure": "8.93%",
+ "Cognitive Load Exposure": "73.53%",
+ "Error & Exception Exposure": "98.83%",
+ "Tech Debt Exposure": "8.86%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
- "Concurrency Exposure": "17.14%",
+ "Concurrency Exposure": "14.98%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.97%",
"Specification Exposure": "100.0%",
@@ -249487,18 +249487,18 @@
"Static: Literature & Documentation": "14.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "25.16%",
- "Error & Exception Exposure": "42.59%",
- "Tech Debt Exposure": "44.22%",
+ "Cognitive Load Exposure": "25.19%",
+ "Error & Exception Exposure": "42.72%",
+ "Tech Debt Exposure": "45.39%",
"Testing Exposure": "57.48%",
"API Exposure": "3.95%",
- "Concurrency Exposure": "24.14%",
- "State Flux Exposure": "65.6%",
+ "Concurrency Exposure": "25.09%",
+ "State Flux Exposure": "65.87%",
"Commented Logic Exposure": "4.12%",
"Specification Exposure": "85.71%",
"Instability Exposure": "42.86%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.16%",
+ "Documentation Exposure": "16.15%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -249696,18 +249696,18 @@
"Raw Cognitive Density": 0.666
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.84%",
- "Error & Exception Exposure": "45.37%",
- "Tech Debt Exposure": "61.57%",
+ "Cognitive Load Exposure": "20.85%",
+ "Error & Exception Exposure": "45.45%",
+ "Tech Debt Exposure": "61.8%",
"Testing Exposure": "80.0%",
"API Exposure": "5.04%",
- "Concurrency Exposure": "30.43%",
- "State Flux Exposure": "91.73%",
+ "Concurrency Exposure": "32.15%",
+ "State Flux Exposure": "92.17%",
"Commented Logic Exposure": "5.31%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.36%",
+ "Documentation Exposure": "19.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -252181,16 +252181,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.597
+ "Raw Cognitive Density": 0.599
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.58%",
- "Error & Exception Exposure": "57.64%",
- "Tech Debt Exposure": "63.67%",
+ "Cognitive Load Exposure": "17.66%",
+ "Error & Exception Exposure": "58.12%",
+ "Tech Debt Exposure": "64.65%",
"Testing Exposure": "80.0%",
"API Exposure": "6.49%",
- "Concurrency Exposure": "75.62%",
- "State Flux Exposure": "96.25%",
+ "Concurrency Exposure": "77.07%",
+ "State Flux Exposure": "96.46%",
"Commented Logic Exposure": "6.22%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -252910,8 +252910,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "81.76%",
- "Testing Exposure": "2.35%",
+ "Tech Debt Exposure": "88.08%",
+ "Testing Exposure": "2.36%",
"API Exposure": "9.9%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -252919,7 +252919,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.14%",
+ "Documentation Exposure": "41.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -253110,9 +253110,9 @@
"Raw Cognitive Density": 1.055
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.84%",
- "Error & Exception Exposure": "78.67%",
- "Tech Debt Exposure": "8.73%",
+ "Cognitive Load Exposure": "63.85%",
+ "Error & Exception Exposure": "78.69%",
+ "Tech Debt Exposure": "8.76%",
"Testing Exposure": "80.0%",
"API Exposure": "0.79%",
"Concurrency Exposure": "0.0%",
@@ -258018,21 +258018,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.898
+ "Raw Cognitive Density": 0.899
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.5%",
- "Error & Exception Exposure": "65.31%",
- "Tech Debt Exposure": "14.89%",
+ "Cognitive Load Exposure": "61.56%",
+ "Error & Exception Exposure": "65.44%",
+ "Tech Debt Exposure": "15.13%",
"Testing Exposure": "80.0%",
"API Exposure": "2.54%",
- "Concurrency Exposure": "29.64%",
- "State Flux Exposure": "99.44%",
+ "Concurrency Exposure": "31.33%",
+ "State Flux Exposure": "99.48%",
"Commented Logic Exposure": "5.61%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.84%",
+ "Documentation Exposure": "15.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -258746,16 +258746,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.471
+ "Raw Cognitive Density": 0.472
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
- "Error & Exception Exposure": "51.15%",
- "Tech Debt Exposure": "78.91%",
+ "Cognitive Load Exposure": "12.38%",
+ "Error & Exception Exposure": "51.34%",
+ "Tech Debt Exposure": "79.3%",
"Testing Exposure": "80.0%",
"API Exposure": "2.92%",
- "Concurrency Exposure": "33.25%",
- "State Flux Exposure": "71.82%",
+ "Concurrency Exposure": "35.05%",
+ "State Flux Exposure": "73.02%",
"Commented Logic Exposure": "5.24%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -260364,8 +260364,8 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "27.45%",
- "Error & Exception Exposure": "70.17%",
+ "Cognitive Load Exposure": "26.98%",
+ "Error & Exception Exposure": "73.79%",
"Tech Debt Exposure": "13.26%",
"Testing Exposure": "40.86%",
"API Exposure": "3.47%",
@@ -260573,7 +260573,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "5.19%",
- "Error & Exception Exposure": "52.04%",
+ "Error & Exception Exposure": "53.77%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -260736,7 +260736,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "48.01%",
- "Error & Exception Exposure": "94.6%",
+ "Error & Exception Exposure": "98.11%",
"Tech Debt Exposure": "14.62%",
"Testing Exposure": "80.0%",
"API Exposure": "9.32%",
@@ -261611,7 +261611,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "45.96%",
- "Error & Exception Exposure": "96.8%",
+ "Error & Exception Exposure": "98.99%",
"Tech Debt Exposure": "9.5%",
"Testing Exposure": "80.0%",
"API Exposure": "8.8%",
@@ -263063,7 +263063,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "38.03%",
- "Error & Exception Exposure": "93.18%",
+ "Error & Exception Exposure": "97.22%",
"Tech Debt Exposure": "81.98%",
"Testing Exposure": "80.0%",
"API Exposure": "1.6%",
@@ -265483,7 +265483,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "34.93%",
- "Error & Exception Exposure": "87.96%",
+ "Error & Exception Exposure": "94.49%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.0%",
@@ -265942,8 +265942,8 @@
"Raw Cognitive Density": 1.028
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.4%",
- "Error & Exception Exposure": "78.17%",
+ "Cognitive Load Exposure": "37.61%",
+ "Error & Exception Exposure": "86.08%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
@@ -266155,7 +266155,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.1%",
- "Error & Exception Exposure": "58.6%",
+ "Error & Exception Exposure": "61.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -266623,18 +266623,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "79.08%",
- "Error & Exception Exposure": "92.96%",
- "Tech Debt Exposure": "67.55%",
+ "Cognitive Load Exposure": "74.69%",
+ "Error & Exception Exposure": "96.33%",
+ "Tech Debt Exposure": "66.24%",
"Testing Exposure": "80.0%",
"API Exposure": "0.06%",
- "Concurrency Exposure": "16.98%",
+ "Concurrency Exposure": "16.42%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "4.11%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "12.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -266671,12 +266671,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.476
+ "Raw Cognitive Density": 2.473
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.74%",
- "Error & Exception Exposure": "95.81%",
- "Tech Debt Exposure": "36.98%",
+ "Cognitive Load Exposure": "81.3%",
+ "Error & Exception Exposure": "98.37%",
+ "Tech Debt Exposure": "34.08%",
"Testing Exposure": "80.0%",
"API Exposure": "0.02%",
"Concurrency Exposure": "100.0%",
@@ -266685,7 +266685,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.36%",
+ "Documentation Exposure": "15.36%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -266982,12 +266982,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.073
+ "Raw Cognitive Density": 1.051
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.36%",
- "Error & Exception Exposure": "86.5%",
- "Tech Debt Exposure": "100.0%",
+ "Cognitive Load Exposure": "68.66%",
+ "Error & Exception Exposure": "90.2%",
+ "Tech Debt Exposure": "99.99%",
"Testing Exposure": "80.0%",
"API Exposure": "0.15%",
"Concurrency Exposure": "0.0%",
@@ -266996,7 +266996,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.62%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -267240,12 +267240,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.212
+ "Raw Cognitive Density": 1.21
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.41%",
- "Error & Exception Exposure": "94.33%",
- "Tech Debt Exposure": "52.63%",
+ "Cognitive Load Exposure": "86.3%",
+ "Error & Exception Exposure": "97.59%",
+ "Tech Debt Exposure": "50.5%",
"Testing Exposure": "80.0%",
"API Exposure": "0.02%",
"Concurrency Exposure": "0.0%",
@@ -267254,7 +267254,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.78%",
+ "Documentation Exposure": "16.31%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -267692,12 +267692,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.026
+ "Raw Cognitive Density": 1.023
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "52.56%",
- "Error & Exception Exposure": "89.4%",
- "Tech Debt Exposure": "73.15%",
+ "Cognitive Load Exposure": "52.41%",
+ "Error & Exception Exposure": "94.17%",
+ "Tech Debt Exposure": "70.98%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -268177,12 +268177,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.61
+ "Raw Cognitive Density": 1.607
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.17%",
- "Error & Exception Exposure": "95.08%",
- "Tech Debt Exposure": "88.52%",
+ "Cognitive Load Exposure": "72.32%",
+ "Error & Exception Exposure": "98.03%",
+ "Tech Debt Exposure": "87.95%",
"Testing Exposure": "80.0%",
"API Exposure": "0.31%",
"Concurrency Exposure": "0.0%",
@@ -268191,7 +268191,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.2%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -268671,12 +268671,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.682
+ "Raw Cognitive Density": 1.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.19%",
- "Error & Exception Exposure": "95.31%",
- "Tech Debt Exposure": "73.41%",
+ "Cognitive Load Exposure": "96.85%",
+ "Error & Exception Exposure": "98.19%",
+ "Tech Debt Exposure": "72.22%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
"Concurrency Exposure": "0.0%",
@@ -268685,7 +268685,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.76%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -269344,15 +269344,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.226
+ "Raw Cognitive Density": 1.225
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.03%",
- "Error & Exception Exposure": "96.74%",
- "Tech Debt Exposure": "80.03%",
+ "Cognitive Load Exposure": "72.01%",
+ "Error & Exception Exposure": "98.9%",
+ "Tech Debt Exposure": "79.54%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "17.7%",
+ "Concurrency Exposure": "15.49%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.09%",
"Specification Exposure": "100.0%",
@@ -270350,15 +270350,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.163
+ "Raw Cognitive Density": 1.162
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.2%",
- "Error & Exception Exposure": "90.52%",
- "Tech Debt Exposure": "35.64%",
+ "Cognitive Load Exposure": "67.67%",
+ "Error & Exception Exposure": "95.18%",
+ "Tech Debt Exposure": "34.64%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
- "Concurrency Exposure": "18.13%",
+ "Concurrency Exposure": "15.87%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.19%",
"Specification Exposure": "100.0%",
@@ -271153,18 +271153,18 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "33.71%",
- "Error & Exception Exposure": "71.92%",
- "Tech Debt Exposure": "23.87%",
+ "Cognitive Load Exposure": "33.73%",
+ "Error & Exception Exposure": "71.96%",
+ "Tech Debt Exposure": "24.18%",
"Testing Exposure": "60.29%",
"API Exposure": "1.96%",
- "Concurrency Exposure": "5.27%",
+ "Concurrency Exposure": "5.6%",
"State Flux Exposure": "75.0%",
"Commented Logic Exposure": "11.87%",
"Specification Exposure": "87.5%",
"Instability Exposure": "43.75%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.47%",
+ "Documentation Exposure": "17.53%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -271358,12 +271358,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.97
+ "Raw Cognitive Density": 0.973
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.33%",
- "Error & Exception Exposure": "94.7%",
- "Tech Debt Exposure": "14.59%",
+ "Cognitive Load Exposure": "35.48%",
+ "Error & Exception Exposure": "94.9%",
+ "Tech Debt Exposure": "15.76%",
"Testing Exposure": "80.0%",
"API Exposure": "0.02%",
"Concurrency Exposure": "0.0%",
@@ -271592,15 +271592,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.114
+ "Raw Cognitive Density": 1.115
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.55%",
- "Error & Exception Exposure": "96.3%",
- "Tech Debt Exposure": "40.96%",
+ "Cognitive Load Exposure": "40.58%",
+ "Error & Exception Exposure": "96.34%",
+ "Tech Debt Exposure": "41.85%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
- "Concurrency Exposure": "29.93%",
+ "Concurrency Exposure": "31.64%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.37%",
"Specification Exposure": "100.0%",
@@ -272302,12 +272302,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.434
+ "Raw Cognitive Density": 1.435
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "46.96%",
- "Error & Exception Exposure": "96.79%",
- "Tech Debt Exposure": "8.72%",
+ "Error & Exception Exposure": "96.8%",
+ "Tech Debt Exposure": "8.77%",
"Testing Exposure": "80.0%",
"API Exposure": "0.33%",
"Concurrency Exposure": "0.0%",
@@ -274932,8 +274932,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "47.6%",
- "Error & Exception Exposure": "94.07%",
- "Tech Debt Exposure": "17.86%",
+ "Error & Exception Exposure": "94.1%",
+ "Tech Debt Exposure": "18.1%",
"Testing Exposure": "80.0%",
"API Exposure": "2.01%",
"Concurrency Exposure": "0.0%",
@@ -276725,12 +276725,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.846
+ "Raw Cognitive Density": 1.847
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.38%",
- "Error & Exception Exposure": "97.06%",
- "Tech Debt Exposure": "99.73%",
+ "Cognitive Load Exposure": "49.39%",
+ "Error & Exception Exposure": "97.1%",
+ "Tech Debt Exposure": "99.74%",
"Testing Exposure": "80.0%",
"API Exposure": "4.18%",
"Concurrency Exposure": "0.0%",
@@ -276739,7 +276739,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "68.24%",
+ "Documentation Exposure": "68.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -277962,12 +277962,12 @@
"Raw Cognitive Density": 2.163
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.82%",
- "Error & Exception Exposure": "96.4%",
- "Tech Debt Exposure": "9.1%",
+ "Cognitive Load Exposure": "49.83%",
+ "Error & Exception Exposure": "96.42%",
+ "Tech Debt Exposure": "9.18%",
"Testing Exposure": "80.0%",
"API Exposure": "3.05%",
- "Concurrency Exposure": "12.25%",
+ "Concurrency Exposure": "13.14%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "11.12%",
"Specification Exposure": "100.0%",
@@ -280024,18 +280024,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "39.6%",
- "Error & Exception Exposure": "38.28%",
- "Tech Debt Exposure": "22.15%",
- "Testing Exposure": "26.22%",
+ "Cognitive Load Exposure": "39.35%",
+ "Error & Exception Exposure": "39.44%",
+ "Tech Debt Exposure": "20.79%",
+ "Testing Exposure": "21.44%",
"API Exposure": "2.3%",
- "Concurrency Exposure": "7.41%",
- "State Flux Exposure": "41.48%",
+ "Concurrency Exposure": "6.67%",
+ "State Flux Exposure": "41.29%",
"Commented Logic Exposure": "4.17%",
"Specification Exposure": "50.77%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.44%",
+ "Documentation Exposure": "9.34%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -280229,21 +280229,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.373
+ "Raw Cognitive Density": 0.336
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.11%",
- "Error & Exception Exposure": "57.83%",
- "Tech Debt Exposure": "97.94%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "16.0%",
+ "Error & Exception Exposure": "53.35%",
+ "Tech Debt Exposure": "96.09%",
+ "Testing Exposure": "2.35%",
"API Exposure": "1.34%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "14.82%",
+ "State Flux Exposure": "12.68%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.16%",
+ "Documentation Exposure": "14.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -280920,12 +280920,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.377
+ "Raw Cognitive Density": 1.373
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.47%",
- "Error & Exception Exposure": "89.72%",
- "Tech Debt Exposure": "71.57%",
+ "Cognitive Load Exposure": "92.35%",
+ "Error & Exception Exposure": "94.28%",
+ "Tech Debt Exposure": "70.1%",
"Testing Exposure": "80.0%",
"API Exposure": "3.8%",
"Concurrency Exposure": "0.0%",
@@ -281613,12 +281613,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.627
+ "Raw Cognitive Density": 1.622
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.09%",
- "Error & Exception Exposure": "93.98%",
- "Tech Debt Exposure": "45.95%",
+ "Cognitive Load Exposure": "97.04%",
+ "Error & Exception Exposure": "97.18%",
+ "Tech Debt Exposure": "43.91%",
"Testing Exposure": "80.0%",
"API Exposure": "1.93%",
"Concurrency Exposure": "0.0%",
@@ -282045,12 +282045,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.718
+ "Raw Cognitive Density": 1.711
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.96%",
- "Error & Exception Exposure": "90.13%",
- "Tech Debt Exposure": "70.09%",
+ "Cognitive Load Exposure": "97.9%",
+ "Error & Exception Exposure": "94.36%",
+ "Tech Debt Exposure": "67.56%",
"Testing Exposure": "80.0%",
"API Exposure": "2.02%",
"Concurrency Exposure": "0.0%",
@@ -282478,12 +282478,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.708
+ "Raw Cognitive Density": 1.704
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.88%",
- "Error & Exception Exposure": "96.45%",
- "Tech Debt Exposure": "48.18%",
+ "Cognitive Load Exposure": "97.85%",
+ "Error & Exception Exposure": "98.65%",
+ "Tech Debt Exposure": "46.57%",
"Testing Exposure": "80.0%",
"API Exposure": "1.87%",
"Concurrency Exposure": "0.0%",
@@ -283000,12 +283000,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.638
+ "Raw Cognitive Density": 1.633
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.21%",
- "Error & Exception Exposure": "93.91%",
- "Tech Debt Exposure": "57.5%",
+ "Cognitive Load Exposure": "97.16%",
+ "Error & Exception Exposure": "97.09%",
+ "Tech Debt Exposure": "55.18%",
"Testing Exposure": "80.0%",
"API Exposure": "1.96%",
"Concurrency Exposure": "0.0%",
@@ -283462,12 +283462,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.593
+ "Raw Cognitive Density": 1.588
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.69%",
- "Error & Exception Exposure": "93.17%",
- "Tech Debt Exposure": "63.69%",
+ "Cognitive Load Exposure": "96.62%",
+ "Error & Exception Exposure": "96.63%",
+ "Tech Debt Exposure": "61.47%",
"Testing Exposure": "80.0%",
"API Exposure": "1.96%",
"Concurrency Exposure": "0.0%",
@@ -283955,12 +283955,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.611
+ "Raw Cognitive Density": 1.607
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.9%",
- "Error & Exception Exposure": "95.2%",
- "Tech Debt Exposure": "65.08%",
+ "Cognitive Load Exposure": "96.86%",
+ "Error & Exception Exposure": "97.96%",
+ "Tech Debt Exposure": "63.78%",
"Testing Exposure": "80.0%",
"API Exposure": "1.82%",
"Concurrency Exposure": "0.0%",
@@ -284848,12 +284848,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.575
+ "Raw Cognitive Density": 1.57
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.45%",
- "Error & Exception Exposure": "94.68%",
- "Tech Debt Exposure": "57.23%",
+ "Cognitive Load Exposure": "96.38%",
+ "Error & Exception Exposure": "97.59%",
+ "Tech Debt Exposure": "55.01%",
"Testing Exposure": "80.0%",
"API Exposure": "1.95%",
"Concurrency Exposure": "0.0%",
@@ -285320,13 +285320,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.587
+ "Raw Cognitive Density": 1.583
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.6%",
- "Error & Exception Exposure": "94.7%",
- "Tech Debt Exposure": "59.59%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "96.55%",
+ "Error & Exception Exposure": "97.6%",
+ "Tech Debt Exposure": "57.73%",
+ "Testing Exposure": "2.4%",
"API Exposure": "1.91%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -285832,12 +285832,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.809
+ "Raw Cognitive Density": 1.804
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.58%",
- "Error & Exception Exposure": "92.38%",
- "Tech Debt Exposure": "53.17%",
+ "Cognitive Load Exposure": "98.55%",
+ "Error & Exception Exposure": "96.1%",
+ "Tech Debt Exposure": "50.96%",
"Testing Exposure": "80.0%",
"API Exposure": "3.86%",
"Concurrency Exposure": "0.0%",
@@ -286578,21 +286578,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.512
+ "Raw Cognitive Density": 1.486
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.46%",
- "Error & Exception Exposure": "74.7%",
- "Tech Debt Exposure": "94.67%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "95.01%",
+ "Error & Exception Exposure": "77.18%",
+ "Tech Debt Exposure": "92.0%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.47%",
- "Concurrency Exposure": "69.77%",
- "State Flux Exposure": "99.94%",
+ "Concurrency Exposure": "64.49%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -286829,21 +286829,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.512
+ "Raw Cognitive Density": 1.486
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.46%",
- "Error & Exception Exposure": "74.7%",
- "Tech Debt Exposure": "94.67%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "95.01%",
+ "Error & Exception Exposure": "77.18%",
+ "Tech Debt Exposure": "92.0%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.47%",
- "Concurrency Exposure": "69.77%",
- "State Flux Exposure": "99.94%",
+ "Concurrency Exposure": "64.49%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -287080,21 +287080,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.512
+ "Raw Cognitive Density": 1.486
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.46%",
- "Error & Exception Exposure": "74.7%",
- "Tech Debt Exposure": "94.67%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "95.01%",
+ "Error & Exception Exposure": "77.18%",
+ "Tech Debt Exposure": "92.0%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.47%",
- "Concurrency Exposure": "69.77%",
- "State Flux Exposure": "99.94%",
+ "Concurrency Exposure": "64.49%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -287331,21 +287331,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.512
+ "Raw Cognitive Density": 1.486
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.46%",
- "Error & Exception Exposure": "74.7%",
- "Tech Debt Exposure": "94.67%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "95.01%",
+ "Error & Exception Exposure": "77.18%",
+ "Tech Debt Exposure": "92.0%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.46%",
- "Concurrency Exposure": "69.77%",
- "State Flux Exposure": "99.94%",
+ "Concurrency Exposure": "64.49%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -287582,21 +287582,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.512
+ "Raw Cognitive Density": 1.486
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.46%",
- "Error & Exception Exposure": "74.7%",
- "Tech Debt Exposure": "94.67%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "95.01%",
+ "Error & Exception Exposure": "77.18%",
+ "Tech Debt Exposure": "92.0%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.46%",
- "Concurrency Exposure": "69.77%",
- "State Flux Exposure": "99.94%",
+ "Concurrency Exposure": "64.49%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.06%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -287833,21 +287833,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.709
+ "Raw Cognitive Density": 1.704
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.89%",
- "Error & Exception Exposure": "86.25%",
+ "Cognitive Load Exposure": "97.84%",
+ "Error & Exception Exposure": "91.3%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.94%",
- "Concurrency Exposure": "34.78%",
+ "Concurrency Exposure": "29.55%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.82%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.94%",
+ "Documentation Exposure": "29.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -288531,21 +288531,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.694
+ "Raw Cognitive Density": 1.689
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.76%",
- "Error & Exception Exposure": "86.29%",
- "Tech Debt Exposure": "9.78%",
+ "Cognitive Load Exposure": "97.72%",
+ "Error & Exception Exposure": "90.95%",
+ "Tech Debt Exposure": "9.13%",
"Testing Exposure": "80.0%",
"API Exposure": "10.11%",
- "Concurrency Exposure": "29.93%",
+ "Concurrency Exposure": "25.15%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "9.81%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.4%",
+ "Documentation Exposure": "31.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -289767,13 +289767,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.594
+ "Raw Cognitive Density": 1.586
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.7%",
- "Error & Exception Exposure": "81.83%",
- "Tech Debt Exposure": "90.75%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "96.59%",
+ "Error & Exception Exposure": "86.21%",
+ "Tech Debt Exposure": "89.43%",
+ "Testing Exposure": "2.4%",
"API Exposure": "1.03%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -290194,11 +290194,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.411
+ "Raw Cognitive Density": 1.401
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.36%",
- "Error & Exception Exposure": "82.55%",
+ "Cognitive Load Exposure": "93.12%",
+ "Error & Exception Exposure": "87.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.25%",
@@ -290208,7 +290208,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.51%",
+ "Documentation Exposure": "28.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -290729,12 +290729,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.92%",
+ "Cognitive Load Exposure": "14.76%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -290897,21 +290897,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.398
+ "Raw Cognitive Density": 1.39
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.05%",
- "Error & Exception Exposure": "76.86%",
+ "Cognitive Load Exposure": "92.83%",
+ "Error & Exception Exposure": "81.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.82%",
- "Concurrency Exposure": "21.4%",
+ "Concurrency Exposure": "17.64%",
"State Flux Exposure": "99.99%",
"Commented Logic Exposure": "5.93%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.1%",
+ "Documentation Exposure": "34.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -291497,17 +291497,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "71.71%",
+ "Documentation Exposure": "48.29%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -291834,17 +291834,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "71.71%",
+ "Documentation Exposure": "48.29%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -292168,11 +292168,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.632
+ "Raw Cognitive Density": 1.626
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.15%",
- "Error & Exception Exposure": "86.88%",
+ "Cognitive Load Exposure": "97.08%",
+ "Error & Exception Exposure": "91.64%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "9.2%",
@@ -292182,7 +292182,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.59%",
+ "Documentation Exposure": "20.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -292760,13 +292760,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.666
+ "Raw Cognitive Density": 1.659
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.5%",
- "Error & Exception Exposure": "85.59%",
+ "Cognitive Load Exposure": "97.43%",
+ "Error & Exception Exposure": "90.14%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.4%",
"API Exposure": "8.83%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -292774,7 +292774,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.79%",
+ "Documentation Exposure": "19.56%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -293167,10 +293167,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.92%",
+ "Cognitive Load Exposure": "14.76%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
@@ -293181,7 +293181,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.77%",
+ "Documentation Exposure": "24.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -293335,12 +293335,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.92%",
+ "Cognitive Load Exposure": "14.76%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -293660,21 +293660,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.909
+ "Raw Cognitive Density": 1.899
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.04%",
- "Error & Exception Exposure": "83.31%",
+ "Cognitive Load Exposure": "99.0%",
+ "Error & Exception Exposure": "87.36%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.44%",
"API Exposure": "9.41%",
- "Concurrency Exposure": "28.14%",
+ "Concurrency Exposure": "23.55%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "10.76%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.9%",
+ "Documentation Exposure": "32.15%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -295196,17 +295196,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "61.25%",
+ "Error & Exception Exposure": "58.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "2.98%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "38.92%",
+ "State Flux Exposure": "34.74%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.8%",
+ "Documentation Exposure": "18.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -295674,13 +295674,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.299
+ "Raw Cognitive Density": 1.279
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.0%",
- "Error & Exception Exposure": "82.68%",
+ "Cognitive Load Exposure": "89.23%",
+ "Error & Exception Exposure": "86.93%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.37%",
"API Exposure": "7.88%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -295688,7 +295688,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.67%",
+ "Documentation Exposure": "16.68%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -296116,11 +296116,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.567
+ "Raw Cognitive Density": 1.546
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.33%",
- "Error & Exception Exposure": "88.74%",
+ "Cognitive Load Exposure": "96.03%",
+ "Error & Exception Exposure": "92.41%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.3%",
@@ -296130,7 +296130,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "52.02%",
+ "Documentation Exposure": "35.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -296723,21 +296723,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.745
+ "Raw Cognitive Density": 1.741
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.16%",
- "Error & Exception Exposure": "86.55%",
+ "Cognitive Load Exposure": "98.14%",
+ "Error & Exception Exposure": "91.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.5%",
- "Concurrency Exposure": "18.68%",
+ "Concurrency Exposure": "15.3%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "12.73%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.08%",
+ "Documentation Exposure": "13.47%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -297343,18 +297343,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "34.56%",
- "Error & Exception Exposure": "37.59%",
- "Tech Debt Exposure": "31.4%",
- "Testing Exposure": "30.76%",
+ "Cognitive Load Exposure": "34.17%",
+ "Error & Exception Exposure": "38.32%",
+ "Tech Debt Exposure": "30.49%",
+ "Testing Exposure": "22.02%",
"API Exposure": "1.17%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "41.33%",
+ "State Flux Exposure": "41.24%",
"Commented Logic Exposure": "0.96%",
"Specification Exposure": "39.44%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "6.35%",
+ "Documentation Exposure": "5.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -297391,13 +297391,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.979
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "72.76%",
- "Tech Debt Exposure": "96.19%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "71.44%",
+ "Error & Exception Exposure": "71.39%",
+ "Tech Debt Exposure": "93.75%",
+ "Testing Exposure": "2.49%",
"API Exposure": "2.63%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -297405,7 +297405,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.15%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -297621,13 +297621,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.109
+ "Raw Cognitive Density": 1.085
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.75%",
- "Error & Exception Exposure": "74.67%",
- "Tech Debt Exposure": "95.77%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "79.27%",
+ "Error & Exception Exposure": "73.24%",
+ "Tech Debt Exposure": "92.68%",
+ "Testing Exposure": "2.5%",
"API Exposure": "2.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -297635,7 +297635,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.77%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -297841,13 +297841,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.1
+ "Raw Cognitive Density": 1.077
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.22%",
- "Error & Exception Exposure": "74.54%",
- "Tech Debt Exposure": "95.59%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "78.71%",
+ "Error & Exception Exposure": "73.11%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.5%",
"API Exposure": "2.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -297855,7 +297855,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.91%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -298061,12 +298061,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.114
+ "Raw Cognitive Density": 1.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.1%",
- "Error & Exception Exposure": "81.18%",
- "Tech Debt Exposure": "86.91%",
+ "Cognitive Load Exposure": "80.76%",
+ "Error & Exception Exposure": "84.41%",
+ "Tech Debt Exposure": "85.29%",
"Testing Exposure": "80.0%",
"API Exposure": "3.39%",
"Concurrency Exposure": "0.0%",
@@ -298075,7 +298075,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.31%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -298455,13 +298455,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.158
+ "Raw Cognitive Density": 1.135
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.63%",
- "Error & Exception Exposure": "80.75%",
- "Tech Debt Exposure": "95.59%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "82.32%",
+ "Error & Exception Exposure": "81.46%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.5%",
"API Exposure": "2.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -298469,7 +298469,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.91%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -298675,12 +298675,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.123
+ "Raw Cognitive Density": 1.116
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.63%",
- "Error & Exception Exposure": "82.23%",
- "Tech Debt Exposure": "91.71%",
+ "Cognitive Load Exposure": "81.19%",
+ "Error & Exception Exposure": "85.32%",
+ "Tech Debt Exposure": "90.22%",
"Testing Exposure": "80.0%",
"API Exposure": "2.24%",
"Concurrency Exposure": "0.0%",
@@ -298689,7 +298689,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.29%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -299030,13 +299030,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.113
+ "Raw Cognitive Density": 1.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.06%",
- "Error & Exception Exposure": "80.75%",
- "Tech Debt Exposure": "88.73%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "80.76%",
+ "Error & Exception Exposure": "83.92%",
+ "Tech Debt Exposure": "87.46%",
+ "Testing Exposure": "2.51%",
"API Exposure": "2.1%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -299044,7 +299044,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.26%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -299464,12 +299464,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.126
+ "Raw Cognitive Density": 1.121
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.83%",
- "Error & Exception Exposure": "84.53%",
- "Tech Debt Exposure": "93.6%",
+ "Cognitive Load Exposure": "81.5%",
+ "Error & Exception Exposure": "88.26%",
+ "Tech Debt Exposure": "92.73%",
"Testing Exposure": "80.0%",
"API Exposure": "2.14%",
"Concurrency Exposure": "0.0%",
@@ -299478,7 +299478,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.53%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -300055,12 +300055,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.478
+ "Raw Cognitive Density": 1.477
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.5%",
- "Error & Exception Exposure": "89.82%",
- "Tech Debt Exposure": "61.61%",
+ "Cognitive Load Exposure": "94.25%",
+ "Error & Exception Exposure": "94.09%",
+ "Tech Debt Exposure": "61.08%",
"Testing Exposure": "80.0%",
"API Exposure": "1.66%",
"Concurrency Exposure": "0.0%",
@@ -301399,12 +301399,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.465
+ "Raw Cognitive Density": 1.459
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.97%",
- "Error & Exception Exposure": "83.87%",
- "Tech Debt Exposure": "96.18%",
+ "Cognitive Load Exposure": "91.78%",
+ "Error & Exception Exposure": "88.47%",
+ "Tech Debt Exposure": "95.77%",
"Testing Exposure": "80.0%",
"API Exposure": "3.21%",
"Concurrency Exposure": "0.0%",
@@ -302100,12 +302100,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.221
+ "Raw Cognitive Density": 1.204
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.82%",
- "Error & Exception Exposure": "92.29%",
- "Tech Debt Exposure": "90.39%",
+ "Cognitive Load Exposure": "86.01%",
+ "Error & Exception Exposure": "95.26%",
+ "Tech Debt Exposure": "85.94%",
"Testing Exposure": "80.0%",
"API Exposure": "2.48%",
"Concurrency Exposure": "0.0%",
@@ -302114,7 +302114,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.77%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -302338,16 +302338,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.49%",
- "Error & Exception Exposure": "64.59%",
+ "Cognitive Load Exposure": "8.48%",
+ "Error & Exception Exposure": "59.01%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -302652,12 +302652,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.2
+ "Raw Cognitive Density": 1.193
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.81%",
- "Error & Exception Exposure": "92.78%",
- "Tech Debt Exposure": "86.36%",
+ "Cognitive Load Exposure": "85.46%",
+ "Error & Exception Exposure": "96.15%",
+ "Tech Debt Exposure": "84.11%",
"Testing Exposure": "80.0%",
"API Exposure": "2.18%",
"Concurrency Exposure": "0.0%",
@@ -303305,13 +303305,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.564
+ "Raw Cognitive Density": 1.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.23%",
- "Error & Exception Exposure": "87.29%",
- "Tech Debt Exposure": "82.47%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "94.47%",
+ "Error & Exception Exposure": "91.53%",
+ "Tech Debt Exposure": "81.46%",
+ "Testing Exposure": "2.45%",
"API Exposure": "1.9%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -304072,12 +304072,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.583
+ "Raw Cognitive Density": 1.577
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.75%",
- "Error & Exception Exposure": "85.87%",
- "Tech Debt Exposure": "95.88%",
+ "Cognitive Load Exposure": "93.46%",
+ "Error & Exception Exposure": "90.18%",
+ "Tech Debt Exposure": "95.39%",
"Testing Exposure": "80.0%",
"API Exposure": "3.24%",
"Concurrency Exposure": "0.0%",
@@ -304761,13 +304761,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.513
+ "Raw Cognitive Density": 1.51
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.54%",
- "Error & Exception Exposure": "85.99%",
- "Tech Debt Exposure": "81.06%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "93.84%",
+ "Error & Exception Exposure": "89.98%",
+ "Tech Debt Exposure": "80.08%",
+ "Testing Exposure": "2.44%",
"API Exposure": "1.89%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -305570,12 +305570,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.213
+ "Raw Cognitive Density": 1.197
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.43%",
- "Error & Exception Exposure": "93.12%",
- "Tech Debt Exposure": "86.86%",
+ "Cognitive Load Exposure": "85.66%",
+ "Error & Exception Exposure": "95.98%",
+ "Tech Debt Exposure": "81.6%",
"Testing Exposure": "80.0%",
"API Exposure": "2.45%",
"Concurrency Exposure": "0.0%",
@@ -305584,7 +305584,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.64%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -305808,16 +305808,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.169
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.12%",
- "Error & Exception Exposure": "63.01%",
+ "Cognitive Load Exposure": "7.59%",
+ "Error & Exception Exposure": "58.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.43%",
+ "State Flux Exposure": "16.77%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -306122,12 +306122,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.521
+ "Raw Cognitive Density": 1.513
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.63%",
- "Error & Exception Exposure": "93.98%",
- "Tech Debt Exposure": "49.0%",
+ "Cognitive Load Exposure": "95.48%",
+ "Error & Exception Exposure": "97.0%",
+ "Tech Debt Exposure": "45.25%",
"Testing Exposure": "80.0%",
"API Exposure": "4.28%",
"Concurrency Exposure": "0.0%",
@@ -306136,7 +306136,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.92%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -306556,12 +306556,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.326
+ "Raw Cognitive Density": 1.308
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.91%",
- "Error & Exception Exposure": "90.63%",
- "Tech Debt Exposure": "84.75%",
+ "Cognitive Load Exposure": "90.31%",
+ "Error & Exception Exposure": "93.99%",
+ "Tech Debt Exposure": "78.23%",
"Testing Exposure": "80.0%",
"API Exposure": "2.49%",
"Concurrency Exposure": "0.0%",
@@ -306570,7 +306570,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.29%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -306940,12 +306940,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.211
+ "Raw Cognitive Density": 1.206
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.35%",
- "Error & Exception Exposure": "98.41%",
- "Tech Debt Exposure": "68.15%",
+ "Cognitive Load Exposure": "86.08%",
+ "Error & Exception Exposure": "99.49%",
+ "Tech Debt Exposure": "65.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.12%",
"Concurrency Exposure": "0.0%",
@@ -307424,12 +307424,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.551
+ "Raw Cognitive Density": 1.534
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.11%",
- "Error & Exception Exposure": "90.84%",
- "Tech Debt Exposure": "91.45%",
+ "Cognitive Load Exposure": "95.83%",
+ "Error & Exception Exposure": "94.38%",
+ "Tech Debt Exposure": "88.55%",
"Testing Exposure": "80.0%",
"API Exposure": "2.39%",
"Concurrency Exposure": "0.0%",
@@ -307438,7 +307438,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.97%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -307848,12 +307848,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.198
+ "Raw Cognitive Density": 1.193
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.71%",
- "Error & Exception Exposure": "96.03%",
- "Tech Debt Exposure": "68.96%",
+ "Cognitive Load Exposure": "85.47%",
+ "Error & Exception Exposure": "98.32%",
+ "Tech Debt Exposure": "66.28%",
"Testing Exposure": "80.0%",
"API Exposure": "4.16%",
"Concurrency Exposure": "0.0%",
@@ -307862,7 +307862,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.75%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -308521,12 +308521,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.217
+ "Raw Cognitive Density": 1.211
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.62%",
- "Error & Exception Exposure": "98.2%",
- "Tech Debt Exposure": "67.89%",
+ "Cognitive Load Exposure": "86.36%",
+ "Error & Exception Exposure": "99.4%",
+ "Tech Debt Exposure": "64.73%",
"Testing Exposure": "80.0%",
"API Exposure": "2.12%",
"Concurrency Exposure": "0.0%",
@@ -309005,12 +309005,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.611
+ "Raw Cognitive Density": 1.59
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.9%",
- "Error & Exception Exposure": "96.44%",
- "Tech Debt Exposure": "96.01%",
+ "Cognitive Load Exposure": "96.64%",
+ "Error & Exception Exposure": "98.46%",
+ "Tech Debt Exposure": "94.28%",
"Testing Exposure": "80.0%",
"API Exposure": "2.43%",
"Concurrency Exposure": "0.0%",
@@ -309019,7 +309019,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.72%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -309429,12 +309429,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.205
+ "Raw Cognitive Density": 1.196
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.08%",
- "Error & Exception Exposure": "95.25%",
- "Tech Debt Exposure": "86.68%",
+ "Cognitive Load Exposure": "85.6%",
+ "Error & Exception Exposure": "97.71%",
+ "Tech Debt Exposure": "83.55%",
"Testing Exposure": "80.0%",
"API Exposure": "2.3%",
"Concurrency Exposure": "0.0%",
@@ -309443,7 +309443,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.32%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -309873,12 +309873,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.22
+ "Raw Cognitive Density": 1.208
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.77%",
- "Error & Exception Exposure": "93.15%",
- "Tech Debt Exposure": "94.15%",
+ "Cognitive Load Exposure": "86.21%",
+ "Error & Exception Exposure": "96.2%",
+ "Tech Debt Exposure": "92.27%",
"Testing Exposure": "80.0%",
"API Exposure": "2.35%",
"Concurrency Exposure": "0.0%",
@@ -309887,7 +309887,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.4%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -310317,10 +310317,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.33%",
+ "Cognitive Load Exposure": "5.06%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -310631,16 +310631,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.92%",
- "Error & Exception Exposure": "66.12%",
+ "Cognitive Load Exposure": "14.76%",
+ "Error & Exception Exposure": "59.53%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -310788,13 +310788,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.385
+ "Raw Cognitive Density": 1.337
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.78%",
- "Error & Exception Exposure": "98.59%",
+ "Cognitive Load Exposure": "77.59%",
+ "Error & Exception Exposure": "99.48%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.7%",
+ "Testing Exposure": "2.64%",
"API Exposure": "4.92%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -310802,7 +310802,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.19%",
+ "Documentation Exposure": "19.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -311123,13 +311123,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.037
+ "Raw Cognitive Density": 1.027
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.54%",
- "Error & Exception Exposure": "91.69%",
+ "Cognitive Load Exposure": "63.89%",
+ "Error & Exception Exposure": "94.47%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.45%",
"API Exposure": "9.35%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -311137,7 +311137,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "48.14%",
+ "Documentation Exposure": "37.88%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -311421,13 +311421,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.118
+ "Raw Cognitive Density": 1.092
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.36%",
- "Error & Exception Exposure": "89.37%",
- "Tech Debt Exposure": "97.7%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "79.71%",
+ "Error & Exception Exposure": "92.77%",
+ "Tech Debt Exposure": "94.07%",
+ "Testing Exposure": "2.38%",
"API Exposure": "4.33%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -311435,7 +311435,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.25%",
+ "Documentation Exposure": "13.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -314244,8 +314244,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "46.06%",
- "Error & Exception Exposure": "53.69%",
+ "Cognitive Load Exposure": "46.01%",
+ "Error & Exception Exposure": "55.78%",
"Tech Debt Exposure": "20.81%",
"Testing Exposure": "34.68%",
"API Exposure": "11.86%",
@@ -314255,7 +314255,7 @@
"Specification Exposure": "91.67%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "88.77%",
+ "Documentation Exposure": "87.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -314295,8 +314295,8 @@
"Raw Cognitive Density": 1.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.24%",
- "Error & Exception Exposure": "91.84%",
+ "Cognitive Load Exposure": "83.15%",
+ "Error & Exception Exposure": "96.65%",
"Tech Debt Exposure": "45.54%",
"Testing Exposure": "80.0%",
"API Exposure": "11.17%",
@@ -314306,7 +314306,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "95.33%",
+ "Documentation Exposure": "94.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -315479,7 +315479,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.27%",
+ "Documentation Exposure": "29.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -315630,7 +315630,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "85.73%",
- "Error & Exception Exposure": "72.97%",
+ "Error & Exception Exposure": "80.51%",
"Tech Debt Exposure": "11.1%",
"Testing Exposure": "80.0%",
"API Exposure": "8.75%",
@@ -315640,7 +315640,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "85.4%",
+ "Documentation Exposure": "84.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -316946,7 +316946,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "88.69%",
- "Error & Exception Exposure": "95.49%",
+ "Error & Exception Exposure": "98.57%",
"Tech Debt Exposure": "10.5%",
"Testing Exposure": "80.0%",
"API Exposure": "12.12%",
@@ -316956,7 +316956,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "96.46%",
+ "Documentation Exposure": "95.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -317371,7 +317371,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.81%",
- "Error & Exception Exposure": "17.18%",
+ "Error & Exception Exposure": "14.19%",
"Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.3%",
"API Exposure": "15.12%",
@@ -317532,7 +317532,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "22.15%",
- "Error & Exception Exposure": "46.61%",
+ "Error & Exception Exposure": "47.05%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
"API Exposure": "5.97%",
@@ -317542,7 +317542,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "85.33%",
+ "Documentation Exposure": "84.02%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -317796,7 +317796,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "15.61%",
- "Error & Exception Exposure": "41.37%",
+ "Error & Exception Exposure": "41.22%",
"Tech Debt Exposure": "42.21%",
"Testing Exposure": "2.3%",
"API Exposure": "14.77%",
@@ -317806,7 +317806,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "100.0%",
+ "Documentation Exposure": "99.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -317956,8 +317956,8 @@
"Raw Cognitive Density": 1.017
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "71.66%",
- "Error & Exception Exposure": "94.04%",
+ "Cognitive Load Exposure": "71.18%",
+ "Error & Exception Exposure": "97.76%",
"Tech Debt Exposure": "17.03%",
"Testing Exposure": "80.0%",
"API Exposure": "12.76%",
@@ -317967,7 +317967,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.6%",
+ "Documentation Exposure": "99.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -318482,7 +318482,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.79%",
+ "Documentation Exposure": "81.26%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -318631,7 +318631,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "71.61%",
- "Error & Exception Exposure": "94.37%",
+ "Error & Exception Exposure": "97.82%",
"Tech Debt Exposure": "15.07%",
"Testing Exposure": "80.0%",
"API Exposure": "15.01%",
@@ -319170,7 +319170,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "85.43%",
- "Error & Exception Exposure": "90.38%",
+ "Error & Exception Exposure": "95.6%",
"Tech Debt Exposure": "8.22%",
"Testing Exposure": "2.3%",
"API Exposure": "13.09%",
@@ -319180,7 +319180,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "83.05%",
+ "Documentation Exposure": "81.66%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -319322,8 +319322,8 @@
"Unclassified": "50.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "45.78%",
- "Error & Exception Exposure": "49.78%",
+ "Cognitive Load Exposure": "45.44%",
+ "Error & Exception Exposure": "49.97%",
"Tech Debt Exposure": "4.01%",
"Testing Exposure": "40.0%",
"API Exposure": "7.22%",
@@ -319333,7 +319333,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.69%",
+ "Documentation Exposure": "49.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -319533,8 +319533,8 @@
"Raw Cognitive Density": 1.508
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.56%",
- "Error & Exception Exposure": "99.56%",
+ "Cognitive Load Exposure": "90.88%",
+ "Error & Exception Exposure": "99.93%",
"Tech Debt Exposure": "8.03%",
"Testing Exposure": "80.0%",
"API Exposure": "14.44%",
@@ -319544,7 +319544,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.37%",
+ "Documentation Exposure": "99.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -320993,10 +320993,10 @@
"Static: Literature & Documentation": "11.1%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "16.6%",
- "Error & Exception Exposure": "44.4%",
+ "Cognitive Load Exposure": "15.97%",
+ "Error & Exception Exposure": "47.09%",
"Tech Debt Exposure": "19.46%",
- "Testing Exposure": "40.92%",
+ "Testing Exposure": "40.93%",
"API Exposure": "3.09%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "43.48%",
@@ -321004,7 +321004,7 @@
"Specification Exposure": "83.33%",
"Instability Exposure": "44.44%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.33%",
+ "Documentation Exposure": "18.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -321045,7 +321045,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "25.6%",
- "Error & Exception Exposure": "75.93%",
+ "Error & Exception Exposure": "82.22%",
"Tech Debt Exposure": "46.53%",
"Testing Exposure": "80.0%",
"API Exposure": "13.37%",
@@ -321055,7 +321055,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.95%",
+ "Documentation Exposure": "99.94%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -321778,8 +321778,8 @@
"Raw Cognitive Density": 0.427
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.56%",
- "Error & Exception Exposure": "52.61%",
+ "Cognitive Load Exposure": "12.14%",
+ "Error & Exception Exposure": "54.27%",
"Tech Debt Exposure": "8.89%",
"Testing Exposure": "80.0%",
"API Exposure": "1.37%",
@@ -322751,7 +322751,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.41%",
- "Error & Exception Exposure": "55.68%",
+ "Error & Exception Exposure": "58.99%",
"Tech Debt Exposure": "73.49%",
"Testing Exposure": "80.0%",
"API Exposure": "1.75%",
@@ -322955,7 +322955,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "16.02%",
- "Error & Exception Exposure": "46.24%",
+ "Error & Exception Exposure": "47.63%",
"Tech Debt Exposure": "10.17%",
"Testing Exposure": "80.0%",
"API Exposure": "1.69%",
@@ -325812,8 +325812,8 @@
"Raw Cognitive Density": 0.873
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.15%",
- "Error & Exception Exposure": "73.05%",
+ "Cognitive Load Exposure": "57.46%",
+ "Error & Exception Exposure": "79.8%",
"Tech Debt Exposure": "20.47%",
"Testing Exposure": "80.0%",
"API Exposure": "4.36%",
@@ -325823,7 +325823,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.79%",
+ "Documentation Exposure": "14.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -326693,8 +326693,8 @@
"Raw Cognitive Density": 0.561
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.96%",
- "Error & Exception Exposure": "67.34%",
+ "Cognitive Load Exposure": "30.79%",
+ "Error & Exception Exposure": "72.63%",
"Tech Debt Exposure": "45.55%",
"Testing Exposure": "80.0%",
"API Exposure": "3.86%",
@@ -326704,7 +326704,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.99%",
+ "Documentation Exposure": "17.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -326926,8 +326926,8 @@
"Raw Cognitive Density": 1.009
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "52.28%",
- "Error & Exception Exposure": "80.35%",
+ "Cognitive Load Exposure": "48.48%",
+ "Error & Exception Exposure": "87.09%",
"Tech Debt Exposure": "24.01%",
"Testing Exposure": "80.0%",
"API Exposure": "6.77%",
@@ -326937,7 +326937,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.29%",
+ "Documentation Exposure": "51.73%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -327545,10 +327545,10 @@
"Raw Cognitive Density": 0.448
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.93%",
- "Error & Exception Exposure": "78.61%",
+ "Cognitive Load Exposure": "18.21%",
+ "Error & Exception Exposure": "85.04%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.47%",
"API Exposure": "1.79%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "98.15%",
@@ -327738,8 +327738,8 @@
"Raw Cognitive Density": 0.371
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.07%",
- "Error & Exception Exposure": "78.45%",
+ "Cognitive Load Exposure": "12.2%",
+ "Error & Exception Exposure": "84.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
"API Exposure": "2.2%",
@@ -327932,9 +327932,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "59.53%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.4%",
"API Exposure": "3.51%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "33.63%",
@@ -328299,8 +328299,8 @@
"Raw Cognitive Density": 0.662
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.39%",
- "Error & Exception Exposure": "33.79%",
+ "Cognitive Load Exposure": "27.29%",
+ "Error & Exception Exposure": "32.3%",
"Tech Debt Exposure": "94.57%",
"Testing Exposure": "80.0%",
"API Exposure": "5.31%",
@@ -328310,7 +328310,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.74%",
+ "Documentation Exposure": "27.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -329578,7 +329578,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.79%",
- "Error & Exception Exposure": "39.69%",
+ "Error & Exception Exposure": "38.32%",
"Tech Debt Exposure": "14.36%",
"Testing Exposure": "2.33%",
"API Exposure": "0.01%",
@@ -329752,8 +329752,8 @@
"Raw Cognitive Density": 0.46
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.75%",
- "Error & Exception Exposure": "57.99%",
+ "Cognitive Load Exposure": "14.32%",
+ "Error & Exception Exposure": "61.77%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.41%",
"API Exposure": "3.05%",
@@ -329919,8 +329919,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "21.04%",
- "Error & Exception Exposure": "57.74%",
+ "Cognitive Load Exposure": "20.81%",
+ "Error & Exception Exposure": "61.26%",
"Tech Debt Exposure": "84.4%",
"Testing Exposure": "41.22%",
"API Exposure": "3.61%",
@@ -329930,7 +329930,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.49%",
+ "Documentation Exposure": "30.04%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -329972,9 +329972,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "63.74%",
+ "Error & Exception Exposure": "68.01%",
"Tech Debt Exposure": "98.9%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.37%",
"API Exposure": "5.29%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "33.63%",
@@ -329982,7 +329982,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.18%",
+ "Documentation Exposure": "38.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -330163,7 +330163,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "51.64%",
+ "Error & Exception Exposure": "54.23%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "2.51%",
"API Exposure": "0.0%",
@@ -330481,8 +330481,8 @@
"Raw Cognitive Density": 0.45
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.32%",
- "Error & Exception Exposure": "49.6%",
+ "Cognitive Load Exposure": "20.99%",
+ "Error & Exception Exposure": "51.39%",
"Tech Debt Exposure": "61.64%",
"Testing Exposure": "80.0%",
"API Exposure": "0.41%",
@@ -330492,7 +330492,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.74%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -331484,8 +331484,8 @@
"Raw Cognitive Density": 0.918
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.85%",
- "Error & Exception Exposure": "65.98%",
+ "Cognitive Load Exposure": "62.25%",
+ "Error & Exception Exposure": "71.4%",
"Tech Debt Exposure": "77.07%",
"Testing Exposure": "80.0%",
"API Exposure": "8.74%",
@@ -331495,7 +331495,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "72.03%",
+ "Documentation Exposure": "69.77%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -336417,18 +336417,18 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "49.74%",
- "Error & Exception Exposure": "71.79%",
- "Tech Debt Exposure": "41.65%",
+ "Cognitive Load Exposure": "39.94%",
+ "Error & Exception Exposure": "75.4%",
+ "Tech Debt Exposure": "40.98%",
"Testing Exposure": "53.75%",
"API Exposure": "0.41%",
- "Concurrency Exposure": "40.58%",
- "State Flux Exposure": "83.27%",
+ "Concurrency Exposure": "39.9%",
+ "State Flux Exposure": "83.26%",
"Commented Logic Exposure": "2.97%",
"Specification Exposure": "72.77%",
"Instability Exposure": "41.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.52%",
+ "Documentation Exposure": "14.94%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -336779,12 +336779,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.166
+ "Raw Cognitive Density": 1.163
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "57.14%",
- "Error & Exception Exposure": "86.94%",
- "Tech Debt Exposure": "91.26%",
+ "Cognitive Load Exposure": "41.96%",
+ "Error & Exception Exposure": "92.02%",
+ "Tech Debt Exposure": "90.68%",
"Testing Exposure": "80.0%",
"API Exposure": "1.21%",
"Concurrency Exposure": "0.0%",
@@ -336793,7 +336793,7 @@
"Specification Exposure": "91.3%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "67.49%",
+ "Documentation Exposure": "37.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -337403,12 +337403,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.2
+ "Raw Cognitive Density": 1.192
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "56.98%",
- "Error & Exception Exposure": "87.49%",
- "Tech Debt Exposure": "98.37%",
+ "Cognitive Load Exposure": "42.71%",
+ "Error & Exception Exposure": "91.23%",
+ "Tech Debt Exposure": "98.02%",
"Testing Exposure": "80.0%",
"API Exposure": "0.06%",
"Concurrency Exposure": "0.0%",
@@ -337759,12 +337759,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.52
+ "Raw Cognitive Density": 1.519
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "71.38%",
- "Error & Exception Exposure": "80.79%",
- "Tech Debt Exposure": "36.39%",
+ "Cognitive Load Exposure": "55.22%",
+ "Error & Exception Exposure": "86.35%",
+ "Tech Debt Exposure": "35.6%",
"Testing Exposure": "80.0%",
"API Exposure": "0.41%",
"Concurrency Exposure": "99.99%",
@@ -337773,7 +337773,7 @@
"Specification Exposure": "96.97%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.76%",
+ "Documentation Exposure": "12.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -338597,21 +338597,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.605
+ "Raw Cognitive Density": 1.602
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.89%",
- "Error & Exception Exposure": "94.25%",
- "Tech Debt Exposure": "68.15%",
+ "Cognitive Load Exposure": "51.91%",
+ "Error & Exception Exposure": "97.37%",
+ "Tech Debt Exposure": "66.56%",
"Testing Exposure": "80.0%",
"API Exposure": "0.31%",
- "Concurrency Exposure": "50.54%",
+ "Concurrency Exposure": "48.54%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.63%",
"Specification Exposure": "89.19%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.96%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -339132,8 +339132,8 @@
"Raw Cognitive Density": 1.412
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.98%",
- "Error & Exception Exposure": "95.12%",
+ "Cognitive Load Exposure": "47.7%",
+ "Error & Exception Exposure": "98.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.91%",
@@ -339143,7 +339143,7 @@
"Specification Exposure": "98.35%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "55.02%",
+ "Documentation Exposure": "40.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -341722,21 +341722,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.147
+ "Raw Cognitive Density": 1.146
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.04%",
- "Error & Exception Exposure": "83.9%",
- "Tech Debt Exposure": "32.64%",
+ "Cognitive Load Exposure": "56.34%",
+ "Error & Exception Exposure": "89.82%",
+ "Tech Debt Exposure": "32.1%",
"Testing Exposure": "80.0%",
"API Exposure": "0.51%",
- "Concurrency Exposure": "31.77%",
+ "Concurrency Exposure": "30.06%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "96.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.0%",
+ "Documentation Exposure": "16.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -342649,21 +342649,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.465
+ "Raw Cognitive Density": 1.464
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.44%",
- "Error & Exception Exposure": "90.55%",
- "Tech Debt Exposure": "25.58%",
+ "Cognitive Load Exposure": "57.68%",
+ "Error & Exception Exposure": "95.14%",
+ "Tech Debt Exposure": "25.39%",
"Testing Exposure": "80.0%",
"API Exposure": "0.36%",
- "Concurrency Exposure": "83.67%",
+ "Concurrency Exposure": "82.55%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "98.6%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.39%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -345703,15 +345703,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.346
+ "Raw Cognitive Density": 1.333
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.78%",
- "Error & Exception Exposure": "81.79%",
+ "Cognitive Load Exposure": "45.58%",
+ "Error & Exception Exposure": "86.54%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.52%",
"API Exposure": "0.67%",
- "Concurrency Exposure": "95.52%",
+ "Concurrency Exposure": "95.17%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.71%",
"Specification Exposure": "50.0%",
@@ -345886,16 +345886,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.813
+ "Raw Cognitive Density": 0.809
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.59%",
- "Error & Exception Exposure": "68.67%",
- "Tech Debt Exposure": "74.78%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "31.56%",
+ "Error & Exception Exposure": "72.31%",
+ "Tech Debt Exposure": "72.68%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.06%",
- "Concurrency Exposure": "84.48%",
- "State Flux Exposure": "99.23%",
+ "Concurrency Exposure": "83.4%",
+ "State Flux Exposure": "99.18%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "90.0%",
"Instability Exposure": "50.0%",
@@ -346150,15 +346150,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.647
+ "Raw Cognitive Density": 1.642
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "48.66%",
- "Error & Exception Exposure": "91.96%",
- "Tech Debt Exposure": "72.66%",
+ "Cognitive Load Exposure": "48.63%",
+ "Error & Exception Exposure": "95.93%",
+ "Tech Debt Exposure": "70.75%",
"Testing Exposure": "80.0%",
"API Exposure": "0.36%",
- "Concurrency Exposure": "41.03%",
+ "Concurrency Exposure": "39.11%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.53%",
"Specification Exposure": "78.57%",
@@ -346570,18 +346570,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "18.92%",
- "Error & Exception Exposure": "29.61%",
- "Tech Debt Exposure": "39.15%",
- "Testing Exposure": "49.02%",
+ "Cognitive Load Exposure": "19.1%",
+ "Error & Exception Exposure": "32.01%",
+ "Tech Debt Exposure": "42.44%",
+ "Testing Exposure": "49.01%",
"API Exposure": "8.08%",
- "Concurrency Exposure": "9.69%",
- "State Flux Exposure": "19.1%",
+ "Concurrency Exposure": "10.25%",
+ "State Flux Exposure": "19.73%",
"Commented Logic Exposure": "3.07%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.47%",
+ "Documentation Exposure": "31.94%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -346622,17 +346622,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "13.1%",
- "Error & Exception Exposure": "40.31%",
- "Tech Debt Exposure": "14.74%",
+ "Error & Exception Exposure": "39.74%",
+ "Tech Debt Exposure": "14.83%",
"Testing Exposure": "80.0%",
"API Exposure": "5.71%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.09%",
+ "State Flux Exposure": "13.79%",
"Commented Logic Exposure": "4.93%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.27%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -347535,18 +347535,18 @@
"Raw Cognitive Density": 0.346
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.44%",
- "Error & Exception Exposure": "40.11%",
- "Tech Debt Exposure": "16.45%",
+ "Cognitive Load Exposure": "16.43%",
+ "Error & Exception Exposure": "40.12%",
+ "Tech Debt Exposure": "16.54%",
"Testing Exposure": "80.0%",
"API Exposure": "11.13%",
- "Concurrency Exposure": "14.16%",
- "State Flux Exposure": "21.96%",
+ "Concurrency Exposure": "15.16%",
+ "State Flux Exposure": "23.0%",
"Commented Logic Exposure": "5.36%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.18%",
+ "Documentation Exposure": "23.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -348983,18 +348983,18 @@
"Raw Cognitive Density": 0.533
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.49%",
- "Error & Exception Exposure": "40.83%",
- "Tech Debt Exposure": "28.61%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "29.5%",
+ "Error & Exception Exposure": "42.68%",
+ "Tech Debt Exposure": "28.76%",
+ "Testing Exposure": "2.62%",
"API Exposure": "5.9%",
- "Concurrency Exposure": "34.28%",
- "State Flux Exposure": "60.45%",
+ "Concurrency Exposure": "36.1%",
+ "State Flux Exposure": "61.87%",
"Commented Logic Exposure": "5.07%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.98%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -350712,13 +350712,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.54
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.03%",
+ "Cognitive Load Exposure": "25.49%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "62.25%",
- "Testing Exposure": "2.42%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.43%",
"API Exposure": "14.68%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -350880,13 +350880,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.341
+ "Raw Cognitive Density": 0.353
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.55%",
- "Error & Exception Exposure": "26.78%",
- "Tech Debt Exposure": "73.68%",
- "Testing Exposure": "2.68%",
+ "Cognitive Load Exposure": "10.98%",
+ "Error & Exception Exposure": "37.51%",
+ "Tech Debt Exposure": "78.98%",
+ "Testing Exposure": "80.0%",
"API Exposure": "2.97%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -351049,8 +351049,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.63%",
- "Error & Exception Exposure": "12.69%",
+ "Cognitive Load Exposure": "3.6%",
+ "Error & Exception Exposure": "13.2%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.4%",
@@ -351258,7 +351258,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.95%",
- "Error & Exception Exposure": "55.34%",
+ "Error & Exception Exposure": "57.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "17.65%",
@@ -351994,7 +351994,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "44.56%",
+ "Error & Exception Exposure": "45.36%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.59%",
@@ -352389,7 +352389,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "3.72%",
- "Error & Exception Exposure": "55.76%",
+ "Error & Exception Exposure": "58.49%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "5.59%",
@@ -352572,7 +352572,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "49.85%",
+ "Error & Exception Exposure": "50.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.16%",
@@ -352767,7 +352767,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "44.28%",
+ "Error & Exception Exposure": "44.42%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.75%",
@@ -352951,7 +352951,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "51.44%",
+ "Error & Exception Exposure": "52.88%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "4.85%",
@@ -353134,7 +353134,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "47.73%",
+ "Error & Exception Exposure": "48.77%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.14%",
@@ -353583,7 +353583,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "47.56%",
+ "Error & Exception Exposure": "48.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.6%",
@@ -354721,7 +354721,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "31.38%",
+ "Error & Exception Exposure": "29.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.12%",
@@ -355138,8 +355138,8 @@
"Raw Cognitive Density": 0.065
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.14%",
- "Error & Exception Exposure": "9.05%",
+ "Cognitive Load Exposure": "1.99%",
+ "Error & Exception Exposure": "6.48%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.72%",
@@ -355639,8 +355639,8 @@
"Raw Cognitive Density": 1.077
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.21%",
- "Error & Exception Exposure": "46.62%",
+ "Cognitive Load Exposure": "33.3%",
+ "Error & Exception Exposure": "47.88%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.09%",
@@ -355874,7 +355874,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.3%",
- "Error & Exception Exposure": "26.83%",
+ "Error & Exception Exposure": "24.27%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.57%",
@@ -356494,7 +356494,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "16.81%",
- "Error & Exception Exposure": "12.32%",
+ "Error & Exception Exposure": "9.72%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.65%",
@@ -356914,7 +356914,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "3.57%",
- "Error & Exception Exposure": "5.49%",
+ "Error & Exception Exposure": "3.54%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "13.1%",
@@ -357981,8 +357981,8 @@
"Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.09%",
- "Error & Exception Exposure": "44.94%",
+ "Cognitive Load Exposure": "2.98%",
+ "Error & Exception Exposure": "49.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.7%",
@@ -358224,8 +358224,8 @@
"Raw Cognitive Density": 0.283
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.0%",
- "Error & Exception Exposure": "47.84%",
+ "Cognitive Load Exposure": "5.88%",
+ "Error & Exception Exposure": "78.78%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.17%",
@@ -359481,7 +359481,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "20.38%",
- "Error & Exception Exposure": "3.92%",
+ "Error & Exception Exposure": "2.43%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "14.27%",
@@ -360145,7 +360145,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "52.95%",
+ "Error & Exception Exposure": "55.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.98%",
@@ -360623,7 +360623,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "14.84%",
+ "Error & Exception Exposure": "12.31%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.19%",
@@ -361966,7 +361966,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "49.68%",
+ "Error & Exception Exposure": "52.14%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.03%",
@@ -362208,7 +362208,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "49.6%",
- "Error & Exception Exposure": "48.18%",
+ "Error & Exception Exposure": "48.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.46%",
@@ -362936,7 +362936,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "23.35%",
- "Error & Exception Exposure": "2.09%",
+ "Error & Exception Exposure": "1.17%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "10.21%",
@@ -363158,7 +363158,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "3.71%",
- "Error & Exception Exposure": "37.1%",
+ "Error & Exception Exposure": "39.18%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "13.22%",
@@ -363664,7 +363664,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "22.61%",
- "Error & Exception Exposure": "49.16%",
+ "Error & Exception Exposure": "80.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "10.43%",
@@ -364029,7 +364029,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "44.88%",
+ "Error & Exception Exposure": "45.72%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "5.59%",
@@ -364648,7 +364648,7 @@
"Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.37%",
+ "Cognitive Load Exposure": "3.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -364855,7 +364855,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "33.68%",
+ "Error & Exception Exposure": "32.27%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.74%",
@@ -365463,7 +365463,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "4.18%",
- "Error & Exception Exposure": "23.5%",
+ "Error & Exception Exposure": "21.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.78%",
@@ -366512,7 +366512,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.98%",
- "Error & Exception Exposure": "38.67%",
+ "Error & Exception Exposure": "37.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.53%",
@@ -368084,7 +368084,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "41.82%",
+ "Error & Exception Exposure": "42.56%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "3.66%",
@@ -369082,7 +369082,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.54%",
- "Error & Exception Exposure": "48.9%",
+ "Error & Exception Exposure": "48.75%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.06%",
@@ -369516,7 +369516,7 @@
"Raw Cognitive Density": 0.029
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.04%",
+ "Cognitive Load Exposure": "1.93%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -369809,8 +369809,8 @@
"Raw Cognitive Density": 0.726
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.75%",
- "Error & Exception Exposure": "28.26%",
+ "Cognitive Load Exposure": "19.03%",
+ "Error & Exception Exposure": "26.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "6.39%",
@@ -370055,7 +370055,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "4.58%",
- "Error & Exception Exposure": "48.31%",
+ "Error & Exception Exposure": "80.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "14.82%",
@@ -370358,7 +370358,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "4.99%",
- "Error & Exception Exposure": "41.2%",
+ "Error & Exception Exposure": "43.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "13.57%",
@@ -370600,7 +370600,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "24.31%",
+ "Error & Exception Exposure": "21.66%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.29%",
@@ -370845,7 +370845,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "5.4%",
- "Error & Exception Exposure": "10.41%",
+ "Error & Exception Exposure": "8.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.2%",
@@ -371337,8 +371337,8 @@
"Raw Cognitive Density": 1.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.03%",
- "Error & Exception Exposure": "48.14%",
+ "Cognitive Load Exposure": "37.62%",
+ "Error & Exception Exposure": "49.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.19%",
@@ -372335,7 +372335,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "38.55%",
+ "Error & Exception Exposure": "37.28%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.48%",
@@ -373205,8 +373205,8 @@
"Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.47%",
- "Error & Exception Exposure": "44.52%",
+ "Cognitive Load Exposure": "2.38%",
+ "Error & Exception Exposure": "45.3%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.19%",
@@ -373388,7 +373388,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "46.57%",
+ "Error & Exception Exposure": "46.84%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "6.58%",
@@ -373580,7 +373580,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "43.08%",
+ "Error & Exception Exposure": "43.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.19%",
@@ -373771,7 +373771,7 @@
"Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.28%",
+ "Cognitive Load Exposure": "2.07%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -373954,7 +373954,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.61%",
- "Error & Exception Exposure": "41.53%",
+ "Error & Exception Exposure": "40.25%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.34%",
@@ -375178,7 +375178,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "50.21%",
+ "Error & Exception Exposure": "51.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.76%",
@@ -375633,7 +375633,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "0.94%",
+ "Error & Exception Exposure": "0.46%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "14.02%",
@@ -377650,7 +377650,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "3.91%",
+ "Error & Exception Exposure": "2.3%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.08%",
@@ -378345,7 +378345,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "47.22%",
+ "Error & Exception Exposure": "50.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.18%",
@@ -379605,7 +379605,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "3.02%",
- "Error & Exception Exposure": "48.68%",
+ "Error & Exception Exposure": "50.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "6.9%",
@@ -379799,7 +379799,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "50.32%",
+ "Error & Exception Exposure": "51.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.96%",
@@ -381063,7 +381063,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "47.67%",
+ "Error & Exception Exposure": "48.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.19%",
@@ -381258,7 +381258,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "40.21%",
+ "Error & Exception Exposure": "39.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "8.73%",
@@ -381462,7 +381462,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "16.21%",
+ "Error & Exception Exposure": "13.14%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "13.17%",
@@ -383937,7 +383937,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "46.97%",
+ "Error & Exception Exposure": "48.16%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.76%",
@@ -384342,7 +384342,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "12.28%",
- "Error & Exception Exposure": "31.25%",
+ "Error & Exception Exposure": "29.79%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "11.12%",
@@ -384746,7 +384746,7 @@
"Raw Cognitive Density": 0.241
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.11%",
+ "Cognitive Load Exposure": "4.99%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -385942,7 +385942,7 @@
"Raw Cognitive Density": 0.023
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.56%",
+ "Cognitive Load Exposure": "2.55%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -386299,7 +386299,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "36.94%",
+ "Error & Exception Exposure": "36.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.16%",
@@ -394094,7 +394094,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "56.92%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.9%",
@@ -395411,7 +395411,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "29.28%",
+ "Error & Exception Exposure": "27.86%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "13.16%",
@@ -395673,7 +395673,7 @@
"Raw Cognitive Density": 0.423
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.54%",
+ "Cognitive Load Exposure": "8.17%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -396892,7 +396892,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "21.69%",
- "Error & Exception Exposure": "45.68%",
+ "Error & Exception Exposure": "47.43%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "7.1%",
@@ -398085,7 +398085,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "8.24%",
- "Error & Exception Exposure": "39.42%",
+ "Error & Exception Exposure": "39.07%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "9.43%",
@@ -399944,7 +399944,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "40.17%",
+ "Error & Exception Exposure": "39.3%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "6.73%",
@@ -401627,7 +401627,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "4.01%",
- "Error & Exception Exposure": "64.96%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "5.59%",
@@ -401810,8 +401810,8 @@
"Raw Cognitive Density": 0.034
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.5%",
- "Error & Exception Exposure": "46.24%",
+ "Cognitive Load Exposure": "2.47%",
+ "Error & Exception Exposure": "46.48%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "6.55%",
@@ -402006,7 +402006,7 @@
"Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.47%",
+ "Cognitive Load Exposure": "2.38%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -402200,7 +402200,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "30.41%",
- "Error & Exception Exposure": "41.72%",
+ "Error & Exception Exposure": "41.51%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "10.7%",
@@ -402453,8 +402453,8 @@
"Raw Cognitive Density": 1.115
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.11%",
- "Error & Exception Exposure": "37.6%",
+ "Cognitive Load Exposure": "29.44%",
+ "Error & Exception Exposure": "39.04%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "12.68%",
@@ -402947,7 +402947,7 @@
"Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "2.47%",
+ "Cognitive Load Exposure": "2.38%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -403092,18 +403092,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "52.42%",
- "Error & Exception Exposure": "68.22%",
- "Tech Debt Exposure": "54.16%",
+ "Cognitive Load Exposure": "50.89%",
+ "Error & Exception Exposure": "72.31%",
+ "Tech Debt Exposure": "54.92%",
"Testing Exposure": "80.0%",
"API Exposure": "1.54%",
- "Concurrency Exposure": "33.42%",
- "State Flux Exposure": "84.4%",
+ "Concurrency Exposure": "33.91%",
+ "State Flux Exposure": "84.91%",
"Commented Logic Exposure": "3.33%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.75%",
+ "Documentation Exposure": "12.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -403142,12 +403142,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.275
+ "Raw Cognitive Density": 1.277
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "44.55%",
- "Error & Exception Exposure": "91.24%",
- "Tech Debt Exposure": "44.92%",
+ "Cognitive Load Exposure": "44.59%",
+ "Error & Exception Exposure": "96.2%",
+ "Tech Debt Exposure": "45.97%",
"Testing Exposure": "80.0%",
"API Exposure": "1.9%",
"Concurrency Exposure": "0.0%",
@@ -403662,21 +403662,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.021
+ "Raw Cognitive Density": 1.023
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.71%",
- "Error & Exception Exposure": "96.41%",
- "Tech Debt Exposure": "70.77%",
+ "Cognitive Load Exposure": "74.87%",
+ "Error & Exception Exposure": "98.91%",
+ "Tech Debt Exposure": "71.89%",
"Testing Exposure": "80.0%",
"API Exposure": "2.07%",
- "Concurrency Exposure": "75.79%",
+ "Concurrency Exposure": "77.23%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.84%",
+ "Documentation Exposure": "13.15%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -404252,9 +404252,9 @@
"Raw Cognitive Density": 1.53
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.16%",
- "Error & Exception Exposure": "76.02%",
- "Tech Debt Exposure": "46.56%",
+ "Cognitive Load Exposure": "69.18%",
+ "Error & Exception Exposure": "84.69%",
+ "Tech Debt Exposure": "46.95%",
"Testing Exposure": "80.0%",
"API Exposure": "1.63%",
"Concurrency Exposure": "100.0%",
@@ -405692,16 +405692,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.515
+ "Raw Cognitive Density": 0.517
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.03%",
- "Error & Exception Exposure": "56.86%",
- "Tech Debt Exposure": "89.15%",
+ "Cognitive Load Exposure": "14.12%",
+ "Error & Exception Exposure": "61.0%",
+ "Tech Debt Exposure": "89.55%",
"Testing Exposure": "80.0%",
"API Exposure": "1.93%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "54.96%",
+ "State Flux Exposure": "56.44%",
"Commented Logic Exposure": "5.06%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -406223,21 +406223,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.857
+ "Raw Cognitive Density": 0.859
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.53%",
- "Error & Exception Exposure": "47.87%",
- "Tech Debt Exposure": "21.55%",
+ "Cognitive Load Exposure": "60.75%",
+ "Error & Exception Exposure": "50.0%",
+ "Tech Debt Exposure": "22.59%",
"Testing Exposure": "80.0%",
"API Exposure": "0.01%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "53.38%",
+ "State Flux Exposure": "54.87%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.98%",
+ "Documentation Exposure": "16.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -406671,16 +406671,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.1
+ "Raw Cognitive Density": 1.101
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.57%",
- "Error & Exception Exposure": "40.88%",
- "Tech Debt Exposure": "52.0%",
+ "Cognitive Load Exposure": "41.83%",
+ "Error & Exception Exposure": "43.07%",
+ "Tech Debt Exposure": "52.57%",
"Testing Exposure": "80.0%",
"API Exposure": "1.69%",
- "Concurrency Exposure": "24.71%",
- "State Flux Exposure": "98.04%",
+ "Concurrency Exposure": "26.23%",
+ "State Flux Exposure": "98.15%",
"Commented Logic Exposure": "4.97%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -407613,18 +407613,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "28.0%",
- "Error & Exception Exposure": "33.88%",
- "Tech Debt Exposure": "11.18%",
- "Testing Exposure": "67.09%",
+ "Cognitive Load Exposure": "24.64%",
+ "Error & Exception Exposure": "22.16%",
+ "Tech Debt Exposure": "10.53%",
+ "Testing Exposure": "28.32%",
"API Exposure": "1.81%",
- "Concurrency Exposure": "15.89%",
- "State Flux Exposure": "11.76%",
+ "Concurrency Exposure": "12.18%",
+ "State Flux Exposure": "9.66%",
"Commented Logic Exposure": "2.66%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.57%",
+ "Documentation Exposure": "25.41%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -407661,21 +407661,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.414
+ "Raw Cognitive Density": 0.409
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.49%",
- "Error & Exception Exposure": "42.33%",
- "Tech Debt Exposure": "18.18%",
+ "Cognitive Load Exposure": "13.49%",
+ "Error & Exception Exposure": "30.86%",
+ "Tech Debt Exposure": "16.9%",
"Testing Exposure": "80.0%",
"API Exposure": "2.91%",
- "Concurrency Exposure": "18.82%",
+ "Concurrency Exposure": "14.41%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.26%",
+ "Documentation Exposure": "31.53%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -408274,21 +408274,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.768
+ "Raw Cognitive Density": 0.764
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "32.22%",
- "Error & Exception Exposure": "33.1%",
- "Tech Debt Exposure": "20.51%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "25.72%",
+ "Error & Exception Exposure": "18.85%",
+ "Tech Debt Exposure": "19.03%",
+ "Testing Exposure": "2.42%",
"API Exposure": "1.9%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "25.4%",
+ "State Flux Exposure": "21.12%",
"Commented Logic Exposure": "4.94%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.08%",
+ "Documentation Exposure": "18.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -409036,21 +409036,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.498
+ "Raw Cognitive Density": 0.496
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.37%",
- "Error & Exception Exposure": "25.69%",
- "Tech Debt Exposure": "10.95%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "17.66%",
+ "Error & Exception Exposure": "12.77%",
+ "Tech Debt Exposure": "10.38%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.58%",
- "Concurrency Exposure": "17.47%",
- "State Flux Exposure": "13.19%",
+ "Concurrency Exposure": "13.32%",
+ "State Flux Exposure": "10.67%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.31%",
+ "Documentation Exposure": "13.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -409932,21 +409932,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.806
+ "Raw Cognitive Density": 0.805
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.53%",
- "Error & Exception Exposure": "23.85%",
- "Tech Debt Exposure": "8.85%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "45.41%",
+ "Error & Exception Exposure": "10.67%",
+ "Tech Debt Exposure": "8.72%",
+ "Testing Exposure": "2.51%",
"API Exposure": "1.94%",
- "Concurrency Exposure": "17.17%",
- "State Flux Exposure": "20.87%",
+ "Concurrency Exposure": "13.08%",
+ "State Flux Exposure": "17.18%",
"Commented Logic Exposure": "5.29%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.42%",
+ "Documentation Exposure": "32.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -412073,21 +412073,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.47
+ "Raw Cognitive Density": 0.467
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.55%",
- "Error & Exception Exposure": "51.8%",
- "Tech Debt Exposure": "8.61%",
+ "Cognitive Load Exposure": "19.29%",
+ "Error & Exception Exposure": "47.02%",
+ "Tech Debt Exposure": "8.14%",
"Testing Exposure": "80.0%",
"API Exposure": "2.76%",
- "Concurrency Exposure": "19.67%",
+ "Concurrency Exposure": "15.1%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.71%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.14%",
+ "Documentation Exposure": "34.73%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -412794,21 +412794,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.502
+ "Raw Cognitive Density": 0.496
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.84%",
- "Error & Exception Exposure": "26.53%",
+ "Cognitive Load Exposure": "26.25%",
+ "Error & Exception Exposure": "12.8%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.56%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.75%",
- "Concurrency Exposure": "22.22%",
- "State Flux Exposure": "11.13%",
+ "Concurrency Exposure": "17.18%",
+ "State Flux Exposure": "8.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.21%",
+ "Documentation Exposure": "21.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -413132,10 +413132,10 @@
"Static: Literature & Documentation": "33.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "33.37%",
- "Error & Exception Exposure": "43.64%",
- "Tech Debt Exposure": "33.68%",
- "Testing Exposure": "40.43%",
+ "Cognitive Load Exposure": "32.61%",
+ "Error & Exception Exposure": "45.9%",
+ "Tech Debt Exposure": "32.23%",
+ "Testing Exposure": "40.42%",
"API Exposure": "2.51%",
"Concurrency Exposure": "3.79%",
"State Flux Exposure": "55.64%",
@@ -413143,7 +413143,7 @@
"Specification Exposure": "66.67%",
"Instability Exposure": "33.33%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.12%",
+ "Documentation Exposure": "11.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -413820,8 +413820,8 @@
"Raw Cognitive Density": 0.764
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "44.91%",
- "Error & Exception Exposure": "50.86%",
+ "Cognitive Load Exposure": "43.78%",
+ "Error & Exception Exposure": "54.34%",
"Tech Debt Exposure": "97.75%",
"Testing Exposure": "80.0%",
"API Exposure": "1.64%",
@@ -413831,7 +413831,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.37%",
+ "Documentation Exposure": "18.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -415484,8 +415484,8 @@
"Raw Cognitive Density": 0.808
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.03%",
- "Error & Exception Exposure": "71.74%",
+ "Cognitive Load Exposure": "34.9%",
+ "Error & Exception Exposure": "78.81%",
"Tech Debt Exposure": "8.73%",
"Testing Exposure": "80.0%",
"API Exposure": "2.78%",
@@ -415495,7 +415495,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.87%",
+ "Documentation Exposure": "16.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -417413,8 +417413,8 @@
"Raw Cognitive Density": 0.383
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.43%",
- "Error & Exception Exposure": "56.26%",
+ "Cognitive Load Exposure": "14.85%",
+ "Error & Exception Exposure": "60.58%",
"Tech Debt Exposure": "10.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.16%",
@@ -417424,7 +417424,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.19%",
+ "Documentation Exposure": "12.5%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -417987,8 +417987,8 @@
"Raw Cognitive Density": 1.052
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.71%",
- "Error & Exception Exposure": "70.14%",
+ "Cognitive Load Exposure": "68.42%",
+ "Error & Exception Exposure": "77.07%",
"Tech Debt Exposure": "99.99%",
"Testing Exposure": "80.0%",
"API Exposure": "0.34%",
@@ -418422,13 +418422,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.962
+ "Raw Cognitive Density": 0.933
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.01%",
- "Error & Exception Exposure": "82.04%",
- "Tech Debt Exposure": "64.46%",
- "Testing Exposure": "2.53%",
+ "Cognitive Load Exposure": "67.55%",
+ "Error & Exception Exposure": "82.98%",
+ "Tech Debt Exposure": "47.03%",
+ "Testing Exposure": "2.48%",
"API Exposure": "2.9%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -418604,7 +418604,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "71.4%",
- "Error & Exception Exposure": "93.42%",
+ "Error & Exception Exposure": "97.17%",
"Tech Debt Exposure": "23.28%",
"Testing Exposure": "80.0%",
"API Exposure": "8.72%",
@@ -418881,7 +418881,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.58%",
+ "Testing Exposure": "2.59%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -419188,8 +419188,8 @@
"Raw Cognitive Density": 1.43
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.95%",
- "Error & Exception Exposure": "99.23%",
+ "Cognitive Load Exposure": "90.45%",
+ "Error & Exception Exposure": "99.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "11.58%",
@@ -419199,7 +419199,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "53.21%",
+ "Documentation Exposure": "50.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -419957,18 +419957,18 @@
"Static: Literature & Documentation": "3.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "35.89%",
- "Error & Exception Exposure": "58.87%",
- "Tech Debt Exposure": "23.27%",
+ "Cognitive Load Exposure": "33.05%",
+ "Error & Exception Exposure": "58.17%",
+ "Tech Debt Exposure": "20.03%",
"Testing Exposure": "25.79%",
"API Exposure": "1.82%",
- "Concurrency Exposure": "4.34%",
- "State Flux Exposure": "60.94%",
+ "Concurrency Exposure": "4.16%",
+ "State Flux Exposure": "60.62%",
"Commented Logic Exposure": "3.69%",
"Specification Exposure": "39.39%",
"Instability Exposure": "48.48%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.33%",
+ "Documentation Exposure": "6.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -420319,16 +420319,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.5
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.89%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "22.44%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -420497,12 +420497,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.872
+ "Raw Cognitive Density": 0.854
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.96%",
- "Error & Exception Exposure": "79.65%",
- "Tech Debt Exposure": "52.28%",
+ "Cognitive Load Exposure": "60.22%",
+ "Error & Exception Exposure": "82.24%",
+ "Tech Debt Exposure": "40.95%",
"Testing Exposure": "80.0%",
"API Exposure": "5.08%",
"Concurrency Exposure": "0.0%",
@@ -420685,12 +420685,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.094
+ "Raw Cognitive Density": 1.047
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.85%",
- "Error & Exception Exposure": "86.12%",
- "Tech Debt Exposure": "73.41%",
+ "Cognitive Load Exposure": "52.68%",
+ "Error & Exception Exposure": "87.78%",
+ "Tech Debt Exposure": "46.1%",
"Testing Exposure": "2.31%",
"API Exposure": "6.16%",
"Concurrency Exposure": "0.0%",
@@ -420699,7 +420699,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "53.65%",
+ "Documentation Exposure": "29.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -421171,7 +421171,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.35%",
+ "Error & Exception Exposure": "71.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -421328,7 +421328,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "70.3%",
+ "Error & Exception Exposure": "68.26%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -421799,17 +421799,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "29.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -421956,17 +421956,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "29.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -422423,12 +422423,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.992
+ "Raw Cognitive Density": 0.968
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.77%",
- "Error & Exception Exposure": "85.9%",
- "Tech Debt Exposure": "51.98%",
+ "Cognitive Load Exposure": "36.95%",
+ "Error & Exception Exposure": "88.97%",
+ "Tech Debt Exposure": "37.38%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -422437,7 +422437,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.57%",
+ "Documentation Exposure": "17.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -422601,13 +422601,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.455
+ "Raw Cognitive Density": 1.406
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "57.24%",
- "Error & Exception Exposure": "95.15%",
- "Tech Debt Exposure": "94.42%",
- "Testing Exposure": "2.52%",
+ "Cognitive Load Exposure": "46.62%",
+ "Error & Exception Exposure": "96.84%",
+ "Tech Debt Exposure": "83.18%",
+ "Testing Exposure": "2.48%",
"API Exposure": "6.03%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -422615,7 +422615,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.44%",
+ "Documentation Exposure": "18.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -422779,13 +422779,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.077
+ "Raw Cognitive Density": 2.019
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.51%",
- "Error & Exception Exposure": "98.56%",
+ "Cognitive Load Exposure": "99.38%",
+ "Error & Exception Exposure": "99.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -422936,12 +422936,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.974
+ "Raw Cognitive Density": 0.967
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.95%",
- "Error & Exception Exposure": "84.79%",
- "Tech Debt Exposure": "42.23%",
+ "Cognitive Load Exposure": "55.44%",
+ "Error & Exception Exposure": "88.57%",
+ "Tech Debt Exposure": "37.98%",
"Testing Exposure": "80.0%",
"API Exposure": "3.26%",
"Concurrency Exposure": "0.0%",
@@ -422950,7 +422950,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.39%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -423174,12 +423174,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.999
+ "Raw Cognitive Density": 0.989
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.04%",
- "Error & Exception Exposure": "93.17%",
- "Tech Debt Exposure": "24.52%",
+ "Cognitive Load Exposure": "72.27%",
+ "Error & Exception Exposure": "96.45%",
+ "Tech Debt Exposure": "20.31%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -423362,15 +423362,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.893
+ "Raw Cognitive Density": 0.885
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.97%",
- "Error & Exception Exposure": "76.21%",
+ "Cognitive Load Exposure": "63.15%",
+ "Error & Exception Exposure": "78.14%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "43.1%",
+ "Concurrency Exposure": "37.34%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -423580,12 +423580,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.987
+ "Raw Cognitive Density": 0.984
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.73%",
- "Error & Exception Exposure": "93.02%",
- "Tech Debt Exposure": "78.3%",
+ "Cognitive Load Exposure": "66.25%",
+ "Error & Exception Exposure": "96.65%",
+ "Tech Debt Exposure": "76.11%",
"Testing Exposure": "80.0%",
"API Exposure": "5.03%",
"Concurrency Exposure": "0.0%",
@@ -423594,7 +423594,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.1%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -423952,11 +423952,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.636
+ "Raw Cognitive Density": 0.619
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.83%",
- "Error & Exception Exposure": "51.03%",
+ "Cognitive Load Exposure": "37.22%",
+ "Error & Exception Exposure": "33.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -424111,12 +424111,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.249
+ "Raw Cognitive Density": 1.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.54%",
- "Error & Exception Exposure": "96.01%",
- "Tech Debt Exposure": "26.0%",
+ "Cognitive Load Exposure": "53.67%",
+ "Error & Exception Exposure": "98.29%",
+ "Tech Debt Exposure": "22.21%",
"Testing Exposure": "80.0%",
"API Exposure": "5.18%",
"Concurrency Exposure": "0.0%",
@@ -424313,12 +424313,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.48%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -424466,11 +424466,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.087
+ "Raw Cognitive Density": 1.043
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.38%",
- "Error & Exception Exposure": "81.56%",
+ "Cognitive Load Exposure": "76.39%",
+ "Error & Exception Exposure": "78.26%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "5.8%",
@@ -424480,7 +424480,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.68%",
+ "Documentation Exposure": "21.8%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -424783,9 +424783,9 @@
"Raw Cognitive Density": 0.958
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.45%",
- "Error & Exception Exposure": "86.73%",
- "Tech Debt Exposure": "46.22%",
+ "Cognitive Load Exposure": "59.24%",
+ "Error & Exception Exposure": "92.12%",
+ "Tech Debt Exposure": "45.6%",
"Testing Exposure": "80.0%",
"API Exposure": "7.29%",
"Concurrency Exposure": "0.0%",
@@ -424794,7 +424794,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.37%",
+ "Documentation Exposure": "16.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -425692,16 +425692,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "32.18%",
- "Tech Debt Exposure": "99.75%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "11.33%",
+ "Tech Debt Exposure": "98.9%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -425852,12 +425852,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.872
+ "Raw Cognitive Density": 0.854
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.96%",
- "Error & Exception Exposure": "79.65%",
- "Tech Debt Exposure": "52.28%",
+ "Cognitive Load Exposure": "60.22%",
+ "Error & Exception Exposure": "82.24%",
+ "Tech Debt Exposure": "40.95%",
"Testing Exposure": "80.0%",
"API Exposure": "5.08%",
"Concurrency Exposure": "0.0%",
@@ -425866,7 +425866,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.49%",
+ "Documentation Exposure": "14.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -426040,11 +426040,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.028
+ "Raw Cognitive Density": 0.991
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.57%",
- "Error & Exception Exposure": "99.53%",
+ "Cognitive Load Exposure": "63.19%",
+ "Error & Exception Exposure": "99.89%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
@@ -426199,12 +426199,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.023
+ "Raw Cognitive Density": 1.002
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.86%",
- "Error & Exception Exposure": "94.11%",
- "Tech Debt Exposure": "28.36%",
+ "Cognitive Load Exposure": "73.24%",
+ "Error & Exception Exposure": "96.95%",
+ "Tech Debt Exposure": "18.98%",
"Testing Exposure": "80.0%",
"API Exposure": "4.23%",
"Concurrency Exposure": "0.0%",
@@ -426213,7 +426213,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.27%",
+ "Documentation Exposure": "19.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -426407,11 +426407,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.14
+ "Raw Cognitive Density": 1.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.64%",
- "Error & Exception Exposure": "84.52%",
+ "Cognitive Load Exposure": "78.92%",
+ "Error & Exception Exposure": "84.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -426540,9 +426540,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "40.39%",
- "Error & Exception Exposure": "86.28%",
- "Tech Debt Exposure": "47.03%",
+ "Cognitive Load Exposure": "33.8%",
+ "Error & Exception Exposure": "90.49%",
+ "Tech Debt Exposure": "45.88%",
"Testing Exposure": "80.0%",
"API Exposure": "0.06%",
"Concurrency Exposure": "0.0%",
@@ -426588,12 +426588,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.763
+ "Raw Cognitive Density": 0.757
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.63%",
- "Error & Exception Exposure": "82.4%",
- "Tech Debt Exposure": "16.34%",
+ "Cognitive Load Exposure": "25.37%",
+ "Error & Exception Exposure": "87.38%",
+ "Tech Debt Exposure": "14.6%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -426867,11 +426867,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.064
+ "Raw Cognitive Density": 1.063
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "59.29%",
- "Error & Exception Exposure": "94.37%",
+ "Cognitive Load Exposure": "46.92%",
+ "Error & Exception Exposure": "97.67%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -429017,12 +429017,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.1
+ "Raw Cognitive Density": 1.096
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "50.85%",
- "Error & Exception Exposure": "96.69%",
- "Tech Debt Exposure": "82.34%",
+ "Cognitive Load Exposure": "39.97%",
+ "Error & Exception Exposure": "98.82%",
+ "Tech Debt Exposure": "80.01%",
"Testing Exposure": "80.0%",
"API Exposure": "0.21%",
"Concurrency Exposure": "0.0%",
@@ -429428,12 +429428,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.781
+ "Raw Cognitive Density": 0.779
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.53%",
- "Error & Exception Exposure": "75.26%",
- "Tech Debt Exposure": "16.74%",
+ "Cognitive Load Exposure": "26.47%",
+ "Error & Exception Exposure": "80.17%",
+ "Tech Debt Exposure": "16.17%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -430409,12 +430409,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.86
+ "Raw Cognitive Density": 0.857
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.66%",
- "Error & Exception Exposure": "82.69%",
- "Tech Debt Exposure": "19.72%",
+ "Cognitive Load Exposure": "30.28%",
+ "Error & Exception Exposure": "88.38%",
+ "Tech Debt Exposure": "18.63%",
"Testing Exposure": "80.0%",
"API Exposure": "0.07%",
"Concurrency Exposure": "0.0%",
@@ -430712,18 +430712,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "16.58%",
- "Error & Exception Exposure": "50.21%",
- "Tech Debt Exposure": "37.49%",
- "Testing Exposure": "57.86%",
+ "Cognitive Load Exposure": "14.52%",
+ "Error & Exception Exposure": "49.39%",
+ "Tech Debt Exposure": "35.85%",
+ "Testing Exposure": "57.85%",
"API Exposure": "4.85%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "10.94%",
+ "State Flux Exposure": "9.15%",
"Commented Logic Exposure": "1.44%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.76%",
+ "Documentation Exposure": "21.5%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -430760,13 +430760,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.333
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.62%",
+ "Cognitive Load Exposure": "11.47%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.33%",
- "Testing Exposure": "2.65%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.57%",
"API Exposure": "3.08%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -430774,7 +430774,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "34.35%",
+ "Documentation Exposure": "13.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -430963,12 +430963,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.294
+ "Raw Cognitive Density": 0.293
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.65%",
- "Error & Exception Exposure": "59.73%",
- "Tech Debt Exposure": "8.35%",
+ "Cognitive Load Exposure": "13.43%",
+ "Error & Exception Exposure": "61.73%",
+ "Tech Debt Exposure": "8.14%",
"Testing Exposure": "80.0%",
"API Exposure": "9.31%",
"Concurrency Exposure": "0.0%",
@@ -430977,7 +430977,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.95%",
+ "Documentation Exposure": "29.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -432591,13 +432591,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.103
+ "Raw Cognitive Density": 0.076
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.8%",
- "Error & Exception Exposure": "58.85%",
+ "Cognitive Load Exposure": "6.02%",
+ "Error & Exception Exposure": "55.67%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.36%",
"API Exposure": "1.05%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -432605,7 +432605,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.11%",
+ "Documentation Exposure": "17.08%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -432923,21 +432923,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.564
+ "Raw Cognitive Density": 0.559
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.61%",
- "Error & Exception Exposure": "64.61%",
- "Tech Debt Exposure": "31.5%",
+ "Cognitive Load Exposure": "20.95%",
+ "Error & Exception Exposure": "66.2%",
+ "Tech Debt Exposure": "29.61%",
"Testing Exposure": "80.0%",
"API Exposure": "4.95%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "11.26%",
+ "State Flux Exposure": "9.08%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.44%",
+ "Documentation Exposure": "19.21%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -433887,21 +433887,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.418
+ "Raw Cognitive Density": 0.414
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.32%",
- "Error & Exception Exposure": "50.0%",
- "Tech Debt Exposure": "71.83%",
+ "Cognitive Load Exposure": "16.42%",
+ "Error & Exception Exposure": "44.12%",
+ "Tech Debt Exposure": "69.35%",
"Testing Exposure": "80.0%",
"API Exposure": "7.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "40.64%",
+ "State Flux Exposure": "35.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.69%",
+ "Documentation Exposure": "31.24%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -435160,21 +435160,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.477
+ "Raw Cognitive Density": 0.475
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.97%",
- "Error & Exception Exposure": "53.95%",
- "Tech Debt Exposure": "35.69%",
+ "Cognitive Load Exposure": "21.33%",
+ "Error & Exception Exposure": "51.56%",
+ "Tech Debt Exposure": "33.87%",
"Testing Exposure": "80.0%",
"API Exposure": "4.67%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "11.01%",
+ "State Flux Exposure": "8.87%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.94%",
+ "Documentation Exposure": "21.12%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -436523,21 +436523,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.352
+ "Raw Cognitive Density": 0.349
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.08%",
- "Error & Exception Exposure": "64.35%",
- "Tech Debt Exposure": "15.74%",
+ "Cognitive Load Exposure": "12.04%",
+ "Error & Exception Exposure": "66.43%",
+ "Tech Debt Exposure": "14.71%",
"Testing Exposure": "80.0%",
"API Exposure": "3.08%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.67%",
+ "State Flux Exposure": "11.07%",
"Commented Logic Exposure": "5.24%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.83%",
+ "Documentation Exposure": "18.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -437790,18 +437790,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "52.25%",
- "Error & Exception Exposure": "57.92%",
- "Tech Debt Exposure": "55.39%",
- "Testing Exposure": "15.97%",
+ "Cognitive Load Exposure": "50.1%",
+ "Error & Exception Exposure": "51.31%",
+ "Tech Debt Exposure": "53.45%",
+ "Testing Exposure": "9.23%",
"API Exposure": "1.5%",
- "Concurrency Exposure": "16.04%",
- "State Flux Exposure": "76.75%",
+ "Concurrency Exposure": "15.63%",
+ "State Flux Exposure": "76.3%",
"Commented Logic Exposure": "2.53%",
"Specification Exposure": "52.17%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.6%",
+ "Documentation Exposure": "11.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -437838,21 +437838,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.46
+ "Raw Cognitive Density": 2.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.89%",
- "Error & Exception Exposure": "51.61%",
+ "Cognitive Load Exposure": "99.87%",
+ "Error & Exception Exposure": "31.62%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.55%",
"API Exposure": "7.78%",
- "Concurrency Exposure": "25.6%",
+ "Concurrency Exposure": "22.68%",
"State Flux Exposure": "99.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "89.43%",
+ "Documentation Exposure": "74.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -438026,13 +438026,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.123
+ "Raw Cognitive Density": 3.117
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.74%",
- "Error & Exception Exposure": "61.93%",
- "Tech Debt Exposure": "99.94%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "87.91%",
+ "Error & Exception Exposure": "46.67%",
+ "Tech Debt Exposure": "99.92%",
+ "Testing Exposure": "2.71%",
"API Exposure": "2.98%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -438040,7 +438040,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.45%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -438366,21 +438366,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.682
+ "Raw Cognitive Density": 2.675
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.75%",
+ "Cognitive Load Exposure": "92.94%",
"Error & Exception Exposure": "79.12%",
- "Tech Debt Exposure": "30.29%",
+ "Tech Debt Exposure": "26.72%",
"Testing Exposure": "80.0%",
"API Exposure": "6.14%",
- "Concurrency Exposure": "81.71%",
+ "Concurrency Exposure": "79.2%",
"State Flux Exposure": "99.97%",
"Commented Logic Exposure": "5.68%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.19%",
+ "Documentation Exposure": "30.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -438727,12 +438727,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.012
+ "Raw Cognitive Density": 2.993
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "69.99%",
- "Error & Exception Exposure": "77.15%",
- "Tech Debt Exposure": "99.53%",
+ "Error & Exception Exposure": "75.1%",
+ "Tech Debt Exposure": "99.25%",
"Testing Exposure": "80.0%",
"API Exposure": "10.47%",
"Concurrency Exposure": "0.0%",
@@ -438741,7 +438741,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.7%",
+ "Documentation Exposure": "99.19%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -438965,13 +438965,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.45
+ "Raw Cognitive Density": 1.41
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.07%",
- "Error & Exception Exposure": "77.28%",
+ "Cognitive Load Exposure": "52.27%",
+ "Error & Exception Exposure": "69.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -439148,10 +439148,10 @@
"Raw Cognitive Density": 2.952
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.65%",
- "Error & Exception Exposure": "34.5%",
- "Tech Debt Exposure": "95.43%",
- "Testing Exposure": "2.75%",
+ "Cognitive Load Exposure": "96.09%",
+ "Error & Exception Exposure": "16.39%",
+ "Tech Debt Exposure": "95.31%",
+ "Testing Exposure": "2.63%",
"API Exposure": "0.02%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -440349,17 +440349,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "57.34%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "47.86%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.2%",
+ "Documentation Exposure": "21.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -440515,21 +440515,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.726
+ "Raw Cognitive Density": 4.712
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.8%",
- "Error & Exception Exposure": "83.0%",
+ "Cognitive Load Exposure": "93.01%",
+ "Error & Exception Exposure": "80.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.61%",
"API Exposure": "3.49%",
- "Concurrency Exposure": "98.73%",
+ "Concurrency Exposure": "98.51%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.35%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.0%",
+ "Documentation Exposure": "21.26%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -440773,16 +440773,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.516
+ "Raw Cognitive Density": 0.484
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "28.14%",
- "Error & Exception Exposure": "81.27%",
+ "Cognitive Load Exposure": "25.68%",
+ "Error & Exception Exposure": "83.79%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "59.87%",
+ "State Flux Exposure": "56.95%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -441109,13 +441109,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.37
+ "Raw Cognitive Density": 1.33
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.2%",
- "Error & Exception Exposure": "68.72%",
- "Tech Debt Exposure": "73.11%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "72.84%",
+ "Error & Exception Exposure": "53.85%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -441277,15 +441277,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.9
+ "Raw Cognitive Density": 2.86
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.99%",
- "Error & Exception Exposure": "76.45%",
+ "Cognitive Load Exposure": "49.99%",
+ "Error & Exception Exposure": "75.92%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.81%",
+ "Testing Exposure": "2.76%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "63.03%",
+ "Concurrency Exposure": "59.23%",
"State Flux Exposure": "99.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
@@ -441489,15 +441489,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.167
+ "Raw Cognitive Density": 4.163
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "38.13%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "80.0%",
+ "Error & Exception Exposure": "15.36%",
+ "Tech Debt Exposure": "86.5%",
+ "Testing Exposure": "2.9%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "99.88%",
+ "Concurrency Exposure": "99.85%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "5.34%",
"Specification Exposure": "100.0%",
@@ -441845,12 +441845,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "70.83%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -442043,12 +442043,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "59.21%",
+ "Error & Exception Exposure": "47.86%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -442207,16 +442207,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.04
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "89.54%",
+ "Cognitive Load Exposure": "76.13%",
+ "Error & Exception Exposure": "91.01%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.81%",
+ "Testing Exposure": "2.74%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -442398,16 +442398,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.6
+ "Raw Cognitive Density": 4.594
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "27.42%",
- "Tech Debt Exposure": "99.94%",
- "Testing Exposure": "2.55%",
+ "Error & Exception Exposure": "9.47%",
+ "Tech Debt Exposure": "99.92%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.37%",
+ "State Flux Exposure": "99.29%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -442734,7 +442734,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -443020,9 +443020,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.9%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -443194,16 +443194,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.721
+ "Raw Cognitive Density": 0.691
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.06%",
- "Error & Exception Exposure": "81.03%",
+ "Cognitive Load Exposure": "44.14%",
+ "Error & Exception Exposure": "83.7%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "69.87%",
+ "State Flux Exposure": "67.29%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -443540,16 +443540,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.38
+ "Raw Cognitive Density": 1.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.55%",
- "Error & Exception Exposure": "75.13%",
- "Tech Debt Exposure": "99.75%",
+ "Cognitive Load Exposure": "91.37%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "99.33%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -443714,12 +443714,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.66%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -443858,10 +443858,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "54.67%",
- "Error & Exception Exposure": "80.31%",
+ "Cognitive Load Exposure": "51.92%",
+ "Error & Exception Exposure": "87.7%",
"Tech Debt Exposure": "51.99%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "57.9%",
"API Exposure": "5.38%",
"Concurrency Exposure": "2.77%",
"State Flux Exposure": "100.0%",
@@ -443869,7 +443869,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.6%",
+ "Documentation Exposure": "22.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -443909,8 +443909,8 @@
"Raw Cognitive Density": 1.464
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "59.12%",
- "Error & Exception Exposure": "90.52%",
+ "Cognitive Load Exposure": "52.86%",
+ "Error & Exception Exposure": "95.87%",
"Tech Debt Exposure": "35.38%",
"Testing Exposure": "80.0%",
"API Exposure": "5.75%",
@@ -443920,7 +443920,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.84%",
+ "Documentation Exposure": "22.58%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -444713,7 +444713,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "48.21%",
- "Error & Exception Exposure": "75.59%",
+ "Error & Exception Exposure": "84.35%",
"Tech Debt Exposure": "65.76%",
"Testing Exposure": "80.0%",
"API Exposure": "7.74%",
@@ -444723,7 +444723,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.45%",
+ "Documentation Exposure": "21.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -445682,10 +445682,10 @@
"Raw Cognitive Density": 1.409
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.89%",
- "Error & Exception Exposure": "67.48%",
+ "Cognitive Load Exposure": "72.81%",
+ "Error & Exception Exposure": "77.79%",
"Tech Debt Exposure": "74.49%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.77%",
"API Exposure": "4.98%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -445693,7 +445693,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.95%",
+ "Documentation Exposure": "25.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -445963,8 +445963,8 @@
"Raw Cognitive Density": 1.019
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.34%",
- "Error & Exception Exposure": "72.32%",
+ "Cognitive Load Exposure": "50.76%",
+ "Error & Exception Exposure": "81.7%",
"Tech Debt Exposure": "28.87%",
"Testing Exposure": "80.0%",
"API Exposure": "1.48%",
@@ -446235,10 +446235,10 @@
"Raw Cognitive Density": 1.016
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.83%",
- "Error & Exception Exposure": "88.94%",
+ "Cognitive Load Exposure": "61.98%",
+ "Error & Exception Exposure": "94.58%",
"Tech Debt Exposure": "20.8%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.5%",
"API Exposure": "5.12%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -446246,7 +446246,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.97%",
+ "Documentation Exposure": "23.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -446514,7 +446514,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "38.93%",
- "Error & Exception Exposure": "91.35%",
+ "Error & Exception Exposure": "96.25%",
"Tech Debt Exposure": "83.75%",
"Testing Exposure": "80.0%",
"API Exposure": "8.2%",
@@ -446524,7 +446524,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.45%",
+ "Documentation Exposure": "19.29%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -447623,8 +447623,8 @@
"Raw Cognitive Density": 0.936
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "42.38%",
- "Error & Exception Exposure": "75.97%",
+ "Cognitive Load Exposure": "37.89%",
+ "Error & Exception Exposure": "83.38%",
"Tech Debt Exposure": "54.89%",
"Testing Exposure": "80.0%",
"API Exposure": "4.41%",
@@ -447634,7 +447634,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.63%",
+ "Documentation Exposure": "35.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -447964,7 +447964,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "30.67%",
- "Error & Exception Exposure": "63.85%",
+ "Error & Exception Exposure": "69.59%",
"Tech Debt Exposure": "81.27%",
"Testing Exposure": "60.3%",
"API Exposure": "6.81%",
@@ -447974,7 +447974,7 @@
"Specification Exposure": "87.5%",
"Instability Exposure": "43.75%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.47%",
+ "Documentation Exposure": "11.26%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -448172,7 +448172,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "27.46%",
- "Error & Exception Exposure": "67.38%",
+ "Error & Exception Exposure": "73.69%",
"Tech Debt Exposure": "98.18%",
"Testing Exposure": "80.0%",
"API Exposure": "9.17%",
@@ -448182,7 +448182,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.15%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -449404,7 +449404,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "35.28%",
- "Error & Exception Exposure": "82.61%",
+ "Error & Exception Exposure": "89.64%",
"Tech Debt Exposure": "79.59%",
"Testing Exposure": "80.0%",
"API Exposure": "5.05%",
@@ -450124,7 +450124,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "43.87%",
- "Error & Exception Exposure": "91.94%",
+ "Error & Exception Exposure": "96.53%",
"Tech Debt Exposure": "97.52%",
"Testing Exposure": "80.0%",
"API Exposure": "12.0%",
@@ -450134,7 +450134,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.58%",
+ "Documentation Exposure": "18.55%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -451446,7 +451446,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "37.89%",
- "Error & Exception Exposure": "73.56%",
+ "Error & Exception Exposure": "82.05%",
"Tech Debt Exposure": "83.64%",
"Testing Exposure": "80.0%",
"API Exposure": "5.49%",
@@ -452495,7 +452495,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.58%",
- "Error & Exception Exposure": "54.94%",
+ "Error & Exception Exposure": "59.87%",
"Tech Debt Exposure": "98.77%",
"Testing Exposure": "2.4%",
"API Exposure": "5.58%",
@@ -452867,7 +452867,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "42.3%",
- "Error & Exception Exposure": "69.7%",
+ "Error & Exception Exposure": "76.92%",
"Tech Debt Exposure": "96.78%",
"Testing Exposure": "80.0%",
"API Exposure": "8.34%",
@@ -452877,7 +452877,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.31%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -454695,7 +454695,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "41.0%",
- "Error & Exception Exposure": "70.68%",
+ "Error & Exception Exposure": "77.98%",
"Tech Debt Exposure": "95.71%",
"Testing Exposure": "80.0%",
"API Exposure": "8.88%",
@@ -454705,7 +454705,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.93%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -455758,13 +455758,13 @@
"Static: Literature & Documentation": "14.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "60.13%",
- "Error & Exception Exposure": "79.18%",
- "Tech Debt Exposure": "4.77%",
- "Testing Exposure": "57.49%",
+ "Cognitive Load Exposure": "59.05%",
+ "Error & Exception Exposure": "79.69%",
+ "Tech Debt Exposure": "4.31%",
+ "Testing Exposure": "46.43%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "12.31%",
- "State Flux Exposure": "84.81%",
+ "Concurrency Exposure": "11.86%",
+ "State Flux Exposure": "84.65%",
"Commented Logic Exposure": "9.02%",
"Specification Exposure": "78.57%",
"Instability Exposure": "42.86%",
@@ -455963,15 +455963,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.315
+ "Raw Cognitive Density": 1.289
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.56%",
- "Error & Exception Exposure": "98.73%",
+ "Cognitive Load Exposure": "89.63%",
+ "Error & Exception Exposure": "99.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "86.16%",
+ "Concurrency Exposure": "83.04%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.35%",
"Specification Exposure": "100.0%",
@@ -456141,12 +456141,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.044
+ "Raw Cognitive Density": 1.042
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.43%",
- "Error & Exception Exposure": "93.82%",
- "Tech Debt Exposure": "11.04%",
+ "Cognitive Load Exposure": "76.3%",
+ "Error & Exception Exposure": "96.68%",
+ "Tech Debt Exposure": "10.41%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -457039,16 +457039,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "71.62%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -457207,13 +457207,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.088
+ "Raw Cognitive Density": 1.078
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.44%",
- "Error & Exception Exposure": "94.75%",
+ "Cognitive Load Exposure": "78.76%",
+ "Error & Exception Exposure": "96.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.6%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -457505,12 +457505,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.069
+ "Raw Cognitive Density": 1.066
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.11%",
- "Error & Exception Exposure": "98.2%",
- "Tech Debt Exposure": "9.46%",
+ "Cognitive Load Exposure": "74.56%",
+ "Error & Exception Exposure": "99.46%",
+ "Tech Debt Exposure": "8.91%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -457863,12 +457863,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.056
+ "Raw Cognitive Density": 1.048
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.3%",
- "Error & Exception Exposure": "97.11%",
- "Tech Debt Exposure": "12.89%",
+ "Cognitive Load Exposure": "76.74%",
+ "Error & Exception Exposure": "98.77%",
+ "Tech Debt Exposure": "10.84%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -458268,7 +458268,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "41.52%",
- "Error & Exception Exposure": "63.59%",
+ "Error & Exception Exposure": "66.78%",
"Tech Debt Exposure": "57.93%",
"Testing Exposure": "41.19%",
"API Exposure": "0.27%",
@@ -458278,7 +458278,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.49%",
+ "Documentation Exposure": "7.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -458320,7 +458320,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "88.72%",
- "Error & Exception Exposure": "95.0%",
+ "Error & Exception Exposure": "98.13%",
"Tech Debt Exposure": "42.11%",
"Testing Exposure": "80.0%",
"API Exposure": "1.64%",
@@ -458330,7 +458330,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.86%",
+ "Documentation Exposure": "12.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -459405,7 +459405,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "9.97%",
- "Error & Exception Exposure": "52.36%",
+ "Error & Exception Exposure": "54.28%",
"Tech Debt Exposure": "92.41%",
"Testing Exposure": "2.47%",
"API Exposure": "0.0%",
@@ -459590,7 +459590,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "86.25%",
- "Error & Exception Exposure": "84.33%",
+ "Error & Exception Exposure": "90.48%",
"Tech Debt Exposure": "19.45%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -459600,7 +459600,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.75%",
+ "Documentation Exposure": "12.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -460034,7 +460034,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "59.53%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -460224,7 +460224,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "64.14%",
- "Error & Exception Exposure": "90.34%",
+ "Error & Exception Exposure": "95.2%",
"Tech Debt Exposure": "69.08%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -460234,7 +460234,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.3%",
+ "Documentation Exposure": "17.26%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -468757,7 +468757,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "28.16%",
- "Error & Exception Exposure": "71.01%",
+ "Error & Exception Exposure": "76.03%",
"Tech Debt Exposure": "65.28%",
"Testing Exposure": "31.22%",
"API Exposure": "3.74%",
@@ -468965,7 +468965,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "34.62%",
- "Error & Exception Exposure": "88.89%",
+ "Error & Exception Exposure": "94.46%",
"Tech Debt Exposure": "75.32%",
"Testing Exposure": "80.0%",
"API Exposure": "6.32%",
@@ -469700,7 +469700,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "43.4%",
- "Error & Exception Exposure": "79.66%",
+ "Error & Exception Exposure": "86.91%",
"Tech Debt Exposure": "99.95%",
"Testing Exposure": "80.0%",
"API Exposure": "5.64%",
@@ -470447,7 +470447,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "19.59%",
- "Error & Exception Exposure": "64.17%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.42%",
"API Exposure": "1.07%",
@@ -470640,7 +470640,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "30.81%",
- "Error & Exception Exposure": "79.03%",
+ "Error & Exception Exposure": "86.56%",
"Tech Debt Exposure": "99.55%",
"Testing Exposure": "2.44%",
"API Exposure": "1.26%",
@@ -470848,7 +470848,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "32.42%",
- "Error & Exception Exposure": "91.73%",
+ "Error & Exception Exposure": "96.33%",
"Tech Debt Exposure": "73.68%",
"Testing Exposure": "2.48%",
"API Exposure": "3.62%",
@@ -471059,7 +471059,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "36.38%",
- "Error & Exception Exposure": "95.53%",
+ "Error & Exception Exposure": "98.48%",
"Tech Debt Exposure": "74.86%",
"Testing Exposure": "80.0%",
"API Exposure": "7.16%",
@@ -472669,7 +472669,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "28.08%",
- "Error & Exception Exposure": "69.03%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "98.9%",
"Testing Exposure": "2.41%",
"API Exposure": "4.83%",
@@ -472849,18 +472849,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "35.29%",
- "Error & Exception Exposure": "85.91%",
- "Tech Debt Exposure": "36.63%",
- "Testing Exposure": "57.82%",
+ "Cognitive Load Exposure": "35.34%",
+ "Error & Exception Exposure": "86.68%",
+ "Tech Debt Exposure": "37.33%",
+ "Testing Exposure": "57.83%",
"API Exposure": "2.61%",
- "Concurrency Exposure": "39.22%",
- "State Flux Exposure": "91.45%",
+ "Concurrency Exposure": "40.13%",
+ "State Flux Exposure": "91.65%",
"Commented Logic Exposure": "4.41%",
"Specification Exposure": "85.37%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.43%",
+ "Documentation Exposure": "40.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -472897,21 +472897,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.047
+ "Raw Cognitive Density": 1.048
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.32%",
- "Error & Exception Exposure": "86.89%",
- "Tech Debt Exposure": "78.24%",
- "Testing Exposure": "2.47%",
+ "Cognitive Load Exposure": "38.37%",
+ "Error & Exception Exposure": "87.07%",
+ "Tech Debt Exposure": "79.08%",
+ "Testing Exposure": "2.48%",
"API Exposure": "2.07%",
- "Concurrency Exposure": "74.67%",
+ "Concurrency Exposure": "76.15%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.12%",
"Specification Exposure": "97.56%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.2%",
+ "Documentation Exposure": "46.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -473474,12 +473474,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.152
+ "Raw Cognitive Density": 1.154
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.65%",
- "Error & Exception Exposure": "96.8%",
- "Tech Debt Exposure": "58.56%",
+ "Cognitive Load Exposure": "41.71%",
+ "Error & Exception Exposure": "96.88%",
+ "Tech Debt Exposure": "60.58%",
"Testing Exposure": "80.0%",
"API Exposure": "0.48%",
"Concurrency Exposure": "0.0%",
@@ -473908,21 +473908,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.969
+ "Raw Cognitive Density": 0.972
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.28%",
- "Error & Exception Exposure": "82.87%",
- "Tech Debt Exposure": "90.24%",
+ "Cognitive Load Exposure": "35.44%",
+ "Error & Exception Exposure": "83.49%",
+ "Tech Debt Exposure": "91.47%",
"Testing Exposure": "80.0%",
"API Exposure": "6.03%",
- "Concurrency Exposure": "73.32%",
+ "Concurrency Exposure": "74.85%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.17%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.45%",
+ "Documentation Exposure": "98.55%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -474197,17 +474197,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.12%",
+ "Error & Exception Exposure": "59.32%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "4.23%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "40.13%",
+ "State Flux Exposure": "41.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.44%",
+ "Documentation Exposure": "24.31%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -474354,12 +474354,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.37
+ "Raw Cognitive Density": 1.371
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "46.14%",
- "Error & Exception Exposure": "93.12%",
- "Tech Debt Exposure": "17.07%",
+ "Cognitive Load Exposure": "46.15%",
+ "Error & Exception Exposure": "93.18%",
+ "Tech Debt Exposure": "17.35%",
"Testing Exposure": "80.0%",
"API Exposure": "1.48%",
"Concurrency Exposure": "0.0%",
@@ -474368,7 +474368,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.12%",
+ "Documentation Exposure": "20.36%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -474832,15 +474832,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.082
+ "Raw Cognitive Density": 1.083
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.52%",
- "Error & Exception Exposure": "92.76%",
- "Tech Debt Exposure": "12.26%",
+ "Cognitive Load Exposure": "39.57%",
+ "Error & Exception Exposure": "92.87%",
+ "Tech Debt Exposure": "12.84%",
"Testing Exposure": "80.0%",
"API Exposure": "0.9%",
- "Concurrency Exposure": "78.38%",
+ "Concurrency Exposure": "79.7%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.13%",
"Specification Exposure": "100.0%",
@@ -475290,21 +475290,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.367
+ "Raw Cognitive Density": 1.37
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "46.09%",
- "Error & Exception Exposure": "93.8%",
+ "Cognitive Load Exposure": "46.14%",
+ "Error & Exception Exposure": "93.94%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.08%",
- "Concurrency Exposure": "48.19%",
+ "Concurrency Exposure": "50.19%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "67.98%",
+ "Documentation Exposure": "68.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -475675,18 +475675,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "38.43%",
- "Error & Exception Exposure": "75.7%",
- "Tech Debt Exposure": "60.83%",
- "Testing Exposure": "36.9%",
+ "Cognitive Load Exposure": "38.97%",
+ "Error & Exception Exposure": "76.83%",
+ "Tech Debt Exposure": "64.84%",
+ "Testing Exposure": "36.91%",
"API Exposure": "1.03%",
- "Concurrency Exposure": "10.58%",
+ "Concurrency Exposure": "10.74%",
"State Flux Exposure": "88.89%",
"Commented Logic Exposure": "4.08%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.29%",
+ "Documentation Exposure": "24.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -475723,12 +475723,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.948
+ "Raw Cognitive Density": 0.956
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.43%",
- "Error & Exception Exposure": "98.64%",
- "Tech Debt Exposure": "99.05%",
+ "Cognitive Load Exposure": "34.77%",
+ "Error & Exception Exposure": "98.74%",
+ "Tech Debt Exposure": "99.22%",
"Testing Exposure": "80.0%",
"API Exposure": "3.06%",
"Concurrency Exposure": "0.0%",
@@ -475737,7 +475737,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.12%",
+ "Documentation Exposure": "47.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -476036,21 +476036,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.039
+ "Raw Cognitive Density": 1.042
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "42.25%",
- "Error & Exception Exposure": "96.56%",
- "Tech Debt Exposure": "41.17%",
+ "Cognitive Load Exposure": "42.38%",
+ "Error & Exception Exposure": "96.68%",
+ "Tech Debt Exposure": "44.08%",
"Testing Exposure": "80.0%",
"API Exposure": "2.21%",
- "Concurrency Exposure": "69.5%",
+ "Concurrency Exposure": "71.17%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.29%",
+ "Documentation Exposure": "55.77%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -476353,7 +476353,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "37.75%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -476516,12 +476516,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.04
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.42%",
+ "Cognitive Load Exposure": "4.76%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "81.76%",
+ "Tech Debt Exposure": "88.08%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -476698,12 +476698,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.352
+ "Raw Cognitive Density": 2.361
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "64.5%",
- "Error & Exception Exposure": "96.89%",
- "Tech Debt Exposure": "96.99%",
+ "Error & Exception Exposure": "97.15%",
+ "Tech Debt Exposure": "97.82%",
"Testing Exposure": "80.0%",
"API Exposure": "1.91%",
"Concurrency Exposure": "100.0%",
@@ -476712,7 +476712,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.08%",
+ "Documentation Exposure": "45.78%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -476937,12 +476937,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.972
+ "Raw Cognitive Density": 0.975
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.0%",
- "Error & Exception Exposure": "88.11%",
- "Tech Debt Exposure": "22.47%",
+ "Cognitive Load Exposure": "40.1%",
+ "Error & Exception Exposure": "88.38%",
+ "Tech Debt Exposure": "23.48%",
"Testing Exposure": "80.0%",
"API Exposure": "0.79%",
"Concurrency Exposure": "0.0%",
@@ -476951,7 +476951,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.93%",
+ "Documentation Exposure": "15.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -477331,13 +477331,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.946
+ "Raw Cognitive Density": 0.964
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.35%",
- "Error & Exception Exposure": "85.23%",
- "Tech Debt Exposure": "99.05%",
- "Testing Exposure": "2.56%",
+ "Cognitive Load Exposure": "35.1%",
+ "Error & Exception Exposure": "87.11%",
+ "Tech Debt Exposure": "99.39%",
+ "Testing Exposure": "2.59%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -477534,11 +477534,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.966
+ "Raw Cognitive Density": 0.974
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.87%",
- "Error & Exception Exposure": "87.86%",
+ "Cognitive Load Exposure": "39.21%",
+ "Error & Exception Exposure": "88.67%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -477701,12 +477701,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.998
+ "Raw Cognitive Density": 1.0
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.46%",
- "Error & Exception Exposure": "97.19%",
- "Tech Debt Exposure": "94.82%",
+ "Cognitive Load Exposure": "36.53%",
+ "Error & Exception Exposure": "97.24%",
+ "Tech Debt Exposure": "95.15%",
"Testing Exposure": "80.0%",
"API Exposure": "0.04%",
"Concurrency Exposure": "0.0%",
@@ -478172,13 +478172,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "75.29%",
- "Tech Debt Exposure": "81.76%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "88.08%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -478356,15 +478356,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.884
+ "Raw Cognitive Density": 0.895
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.55%",
- "Error & Exception Exposure": "75.14%",
- "Tech Debt Exposure": "19.04%",
+ "Cognitive Load Exposure": "32.04%",
+ "Error & Exception Exposure": "77.04%",
+ "Tech Debt Exposure": "23.43%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "20.86%",
+ "Concurrency Exposure": "22.21%",
"State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -478554,12 +478554,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.335
+ "Raw Cognitive Density": 1.342
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "59.61%",
- "Error & Exception Exposure": "89.06%",
- "Tech Debt Exposure": "95.56%",
+ "Cognitive Load Exposure": "59.75%",
+ "Error & Exception Exposure": "89.58%",
+ "Tech Debt Exposure": "96.29%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -478568,7 +478568,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.32%",
+ "Documentation Exposure": "14.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -478865,13 +478865,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.888
+ "Raw Cognitive Density": 0.897
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.79%",
- "Error & Exception Exposure": "89.73%",
- "Tech Debt Exposure": "71.92%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "52.48%",
+ "Error & Exception Exposure": "90.55%",
+ "Tech Debt Exposure": "78.32%",
+ "Testing Exposure": "2.47%",
"API Exposure": "3.34%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -478879,7 +478879,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "85.17%",
+ "Documentation Exposure": "87.02%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -479123,13 +479123,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.762
+ "Raw Cognitive Density": 0.778
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.81%",
- "Error & Exception Exposure": "54.33%",
- "Tech Debt Exposure": "90.57%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "27.64%",
+ "Error & Exception Exposure": "57.89%",
+ "Tech Debt Exposure": "94.57%",
+ "Testing Exposure": "2.44%",
"API Exposure": "2.14%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -479137,7 +479137,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.23%",
+ "Documentation Exposure": "53.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -479337,12 +479337,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.892
+ "Raw Cognitive Density": 0.896
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "46.12%",
- "Error & Exception Exposure": "94.02%",
- "Tech Debt Exposure": "80.32%",
+ "Cognitive Load Exposure": "46.35%",
+ "Error & Exception Exposure": "94.23%",
+ "Tech Debt Exposure": "82.29%",
"Testing Exposure": "80.0%",
"API Exposure": "2.77%",
"Concurrency Exposure": "0.0%",
@@ -479351,7 +479351,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "70.31%",
+ "Documentation Exposure": "71.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -479737,13 +479737,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.963
+ "Raw Cognitive Density": 0.977
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.13%",
- "Error & Exception Exposure": "70.77%",
- "Tech Debt Exposure": "23.75%",
- "Testing Exposure": "2.54%",
+ "Cognitive Load Exposure": "71.23%",
+ "Error & Exception Exposure": "73.31%",
+ "Tech Debt Exposure": "30.29%",
+ "Testing Exposure": "2.57%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -479933,13 +479933,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.917
+ "Raw Cognitive Density": 0.929
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "33.04%",
- "Error & Exception Exposure": "84.35%",
- "Tech Debt Exposure": "21.26%",
- "Testing Exposure": "2.54%",
+ "Cognitive Load Exposure": "33.57%",
+ "Error & Exception Exposure": "85.81%",
+ "Tech Debt Exposure": "26.66%",
+ "Testing Exposure": "2.56%",
"API Exposure": "2.24%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -479947,7 +479947,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.77%",
+ "Documentation Exposure": "40.29%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -480134,12 +480134,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.44%",
- "Error & Exception Exposure": "79.48%",
- "Tech Debt Exposure": "37.75%",
+ "Cognitive Load Exposure": "36.01%",
+ "Error & Exception Exposure": "82.14%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -480281,18 +480281,18 @@
"Static: Literature & Documentation": "4.8%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "56.72%",
- "Error & Exception Exposure": "77.83%",
- "Tech Debt Exposure": "11.15%",
- "Testing Exposure": "13.32%",
+ "Cognitive Load Exposure": "53.63%",
+ "Error & Exception Exposure": "77.58%",
+ "Tech Debt Exposure": "10.02%",
+ "Testing Exposure": "13.31%",
"API Exposure": "1.32%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "90.15%",
+ "State Flux Exposure": "90.09%",
"Commented Logic Exposure": "1.33%",
"Specification Exposure": "33.33%",
"Instability Exposure": "47.62%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.6%",
+ "Documentation Exposure": "4.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -480486,21 +480486,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.837
+ "Raw Cognitive Density": 0.825
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.29%",
- "Error & Exception Exposure": "77.74%",
- "Tech Debt Exposure": "68.72%",
+ "Cognitive Load Exposure": "28.71%",
+ "Error & Exception Exposure": "80.63%",
+ "Tech Debt Exposure": "61.96%",
"Testing Exposure": "80.0%",
"API Exposure": "8.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.42%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -480724,11 +480724,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.23
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.21%",
- "Error & Exception Exposure": "93.7%",
+ "Cognitive Load Exposure": "84.29%",
+ "Error & Exception Exposure": "95.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -480881,12 +480881,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.082
+ "Raw Cognitive Density": 1.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.43%",
- "Error & Exception Exposure": "94.63%",
- "Tech Debt Exposure": "70.72%",
+ "Cognitive Load Exposure": "64.6%",
+ "Error & Exception Exposure": "97.69%",
+ "Tech Debt Exposure": "69.39%",
"Testing Exposure": "80.0%",
"API Exposure": "1.79%",
"Concurrency Exposure": "0.0%",
@@ -481409,12 +481409,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.233
+ "Raw Cognitive Density": 1.231
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.0%",
- "Error & Exception Exposure": "97.43%",
- "Tech Debt Exposure": "13.22%",
+ "Cognitive Load Exposure": "78.32%",
+ "Error & Exception Exposure": "99.14%",
+ "Tech Debt Exposure": "12.5%",
"Testing Exposure": "80.0%",
"API Exposure": "1.9%",
"Concurrency Exposure": "0.0%",
@@ -481784,16 +481784,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.96
+ "Raw Cognitive Density": 0.9
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.85%",
- "Error & Exception Exposure": "83.3%",
+ "Cognitive Load Exposure": "64.57%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -481941,16 +481941,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.909
+ "Raw Cognitive Density": 0.855
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.39%",
- "Error & Exception Exposure": "78.72%",
+ "Cognitive Load Exposure": "60.3%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.99%",
+ "State Flux Exposure": "99.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -482098,13 +482098,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.977
+ "Raw Cognitive Density": 0.952
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "71.25%",
- "Error & Exception Exposure": "97.52%",
+ "Cognitive Load Exposure": "69.14%",
+ "Error & Exception Exposure": "99.02%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.58%",
+ "Testing Exposure": "2.54%",
"API Exposure": "2.64%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -482112,7 +482112,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.92%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -482308,16 +482308,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.74
+ "Raw Cognitive Density": 0.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.0%",
- "Error & Exception Exposure": "85.81%",
+ "Cognitive Load Exposure": "43.05%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.67%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -482465,11 +482465,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.02
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "81.63%",
+ "Cognitive Load Exposure": "74.65%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -482624,21 +482624,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.6
+ "Raw Cognitive Density": 0.54
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.43%",
- "Error & Exception Exposure": "69.7%",
+ "Cognitive Load Exposure": "15.08%",
+ "Error & Exception Exposure": "60.96%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "3.35%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.67%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.5%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -482781,11 +482781,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.97
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "68.59%",
+ "Cognitive Load Exposure": "70.71%",
+ "Error & Exception Exposure": "59.79%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -482949,11 +482949,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.056
+ "Raw Cognitive Density": 1.026
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.29%",
- "Error & Exception Exposure": "93.79%",
+ "Cognitive Load Exposure": "75.06%",
+ "Error & Exception Exposure": "96.28%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -483108,13 +483108,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.112
+ "Raw Cognitive Density": 1.09
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.95%",
- "Error & Exception Exposure": "92.75%",
- "Tech Debt Exposure": "81.6%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "79.6%",
+ "Error & Exception Exposure": "95.81%",
+ "Tech Debt Exposure": "66.63%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -483278,13 +483278,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.011
+ "Raw Cognitive Density": 0.977
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.0%",
- "Error & Exception Exposure": "97.32%",
+ "Cognitive Load Exposure": "35.64%",
+ "Error & Exception Exposure": "98.77%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "2.83%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -483438,11 +483438,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.02
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "85.81%",
+ "Cognitive Load Exposure": "74.65%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -483595,13 +483595,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.07
+ "Raw Cognitive Density": 1.01
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.25%",
- "Error & Exception Exposure": "91.81%",
+ "Cognitive Load Exposure": "73.89%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.45%",
"API Exposure": "3.48%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -483609,7 +483609,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "29.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -483763,16 +483763,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.48
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.35%",
- "Error & Exception Exposure": "69.48%",
+ "Cognitive Load Exposure": "21.08%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -483922,11 +483922,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.136
+ "Raw Cognitive Density": 1.093
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.19%",
- "Error & Exception Exposure": "92.54%",
+ "Cognitive Load Exposure": "39.88%",
+ "Error & Exception Exposure": "94.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "2.88%",
@@ -483936,7 +483936,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.01%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -484079,11 +484079,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.057
+ "Raw Cognitive Density": 1.0
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.32%",
- "Error & Exception Exposure": "82.18%",
+ "Cognitive Load Exposure": "73.11%",
+ "Error & Exception Exposure": "81.45%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -484212,18 +484212,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "30.01%",
- "Error & Exception Exposure": "57.22%",
- "Tech Debt Exposure": "20.72%",
- "Testing Exposure": "37.72%",
+ "Cognitive Load Exposure": "27.03%",
+ "Error & Exception Exposure": "51.88%",
+ "Tech Debt Exposure": "17.79%",
+ "Testing Exposure": "23.6%",
"API Exposure": "2.77%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "40.36%",
+ "State Flux Exposure": "39.52%",
"Commented Logic Exposure": "1.04%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.34%",
+ "Documentation Exposure": "23.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -484260,13 +484260,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.03
+ "Raw Cognitive Density": 0.97
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.4%",
- "Error & Exception Exposure": "97.17%",
+ "Cognitive Load Exposure": "70.68%",
+ "Error & Exception Exposure": "98.52%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -484428,11 +484428,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.046
+ "Raw Cognitive Density": 2.026
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.35%",
- "Error & Exception Exposure": "97.83%",
+ "Cognitive Load Exposure": "89.25%",
+ "Error & Exception Exposure": "99.16%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -484646,21 +484646,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.73
+ "Raw Cognitive Density": 0.722
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "33.99%",
- "Error & Exception Exposure": "53.14%",
+ "Cognitive Load Exposure": "24.27%",
+ "Error & Exception Exposure": "44.46%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.57%",
"API Exposure": "2.28%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "85.98%",
+ "State Flux Exposure": "82.83%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.7%",
+ "Documentation Exposure": "28.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -485080,13 +485080,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.332
+ "Raw Cognitive Density": 0.326
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.7%",
- "Error & Exception Exposure": "37.63%",
- "Tech Debt Exposure": "10.31%",
- "Testing Exposure": "2.46%",
+ "Cognitive Load Exposure": "13.66%",
+ "Error & Exception Exposure": "25.39%",
+ "Tech Debt Exposure": "9.01%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.07%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -485094,7 +485094,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.46%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -485365,21 +485365,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.55
+ "Raw Cognitive Density": 0.544
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "24.5%",
- "Error & Exception Exposure": "54.14%",
- "Tech Debt Exposure": "25.38%",
- "Testing Exposure": "2.66%",
+ "Cognitive Load Exposure": "19.86%",
+ "Error & Exception Exposure": "47.62%",
+ "Tech Debt Exposure": "22.58%",
+ "Testing Exposure": "2.53%",
"API Exposure": "2.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "58.38%",
+ "State Flux Exposure": "52.46%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.07%",
+ "Documentation Exposure": "33.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -485842,13 +485842,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.326
+ "Raw Cognitive Density": 0.308
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.42%",
- "Error & Exception Exposure": "55.15%",
- "Tech Debt Exposure": "18.51%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "5.1%",
+ "Error & Exception Exposure": "49.75%",
+ "Tech Debt Exposure": "12.63%",
+ "Testing Exposure": "2.33%",
"API Exposure": "3.6%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -485856,7 +485856,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.34%",
+ "Documentation Exposure": "14.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -486048,12 +486048,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.068
+ "Raw Cognitive Density": 0.053
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.06%",
- "Error & Exception Exposure": "35.04%",
- "Tech Debt Exposure": "15.46%",
+ "Cognitive Load Exposure": "2.9%",
+ "Error & Exception Exposure": "21.96%",
+ "Tech Debt Exposure": "11.35%",
"Testing Exposure": "2.31%",
"API Exposure": "12.28%",
"Concurrency Exposure": "0.0%",
@@ -486062,7 +486062,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "93.44%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -486221,16 +486221,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.964
+ "Raw Cognitive Density": 0.935
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.08%",
- "Error & Exception Exposure": "55.92%",
- "Tech Debt Exposure": "46.38%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "33.84%",
+ "Error & Exception Exposure": "39.89%",
+ "Tech Debt Exposure": "29.53%",
+ "Testing Exposure": "2.51%",
"API Exposure": "0.41%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.57%",
+ "State Flux Exposure": "99.45%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -486432,13 +486432,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.318
+ "Raw Cognitive Density": 0.227
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.06%",
- "Error & Exception Exposure": "88.31%",
- "Tech Debt Exposure": "99.78%",
- "Testing Exposure": "2.72%",
+ "Cognitive Load Exposure": "10.98%",
+ "Error & Exception Exposure": "88.84%",
+ "Tech Debt Exposure": "98.87%",
+ "Testing Exposure": "2.62%",
"API Exposure": "1.99%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -486446,7 +486446,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "77.03%",
+ "Documentation Exposure": "55.53%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -486672,10 +486672,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.642
+ "Raw Cognitive Density": 0.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.69%",
+ "Cognitive Load Exposure": "17.72%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -486686,7 +486686,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.09%",
+ "Documentation Exposure": "80.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -486904,12 +486904,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.229
+ "Raw Cognitive Density": 0.228
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.89%",
- "Error & Exception Exposure": "55.09%",
- "Tech Debt Exposure": "12.05%",
+ "Cognitive Load Exposure": "9.07%",
+ "Error & Exception Exposure": "55.14%",
+ "Tech Debt Exposure": "11.67%",
"Testing Exposure": "80.0%",
"API Exposure": "0.82%",
"Concurrency Exposure": "0.0%",
@@ -486918,7 +486918,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.72%",
+ "Documentation Exposure": "14.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -488335,18 +488335,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "34.27%",
- "Error & Exception Exposure": "56.48%",
- "Tech Debt Exposure": "69.23%",
+ "Cognitive Load Exposure": "31.17%",
+ "Error & Exception Exposure": "52.0%",
+ "Tech Debt Exposure": "66.62%",
"Testing Exposure": "80.0%",
"API Exposure": "5.36%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "39.06%",
+ "State Flux Exposure": "36.75%",
"Commented Logic Exposure": "3.63%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.8%",
+ "Documentation Exposure": "53.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -488383,12 +488383,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.247
+ "Raw Cognitive Density": 0.227
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.91%",
- "Error & Exception Exposure": "60.1%",
- "Tech Debt Exposure": "97.84%",
+ "Cognitive Load Exposure": "5.49%",
+ "Error & Exception Exposure": "56.0%",
+ "Tech Debt Exposure": "96.44%",
"Testing Exposure": "80.0%",
"API Exposure": "4.44%",
"Concurrency Exposure": "0.0%",
@@ -488397,7 +488397,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.97%",
+ "Documentation Exposure": "63.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -488854,21 +488854,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.94
+ "Raw Cognitive Density": 0.935
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.29%",
- "Error & Exception Exposure": "61.94%",
- "Tech Debt Exposure": "13.16%",
+ "Cognitive Load Exposure": "63.02%",
+ "Error & Exception Exposure": "58.59%",
+ "Tech Debt Exposure": "11.75%",
"Testing Exposure": "80.0%",
"API Exposure": "0.37%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.15%",
+ "State Flux Exposure": "95.16%",
"Commented Logic Exposure": "9.27%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.54%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -489158,21 +489158,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.839
+ "Raw Cognitive Density": 0.828
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "48.92%",
- "Error & Exception Exposure": "54.9%",
- "Tech Debt Exposure": "65.9%",
+ "Cognitive Load Exposure": "41.49%",
+ "Error & Exception Exposure": "49.5%",
+ "Tech Debt Exposure": "58.29%",
"Testing Exposure": "80.0%",
"API Exposure": "3.01%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "48.26%",
+ "State Flux Exposure": "42.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "48.68%",
+ "Documentation Exposure": "40.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -489549,16 +489549,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.408
+ "Raw Cognitive Density": 0.405
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.99%",
- "Error & Exception Exposure": "48.96%",
+ "Cognitive Load Exposure": "14.66%",
+ "Error & Exception Exposure": "43.91%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "13.61%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "11.82%",
+ "State Flux Exposure": "9.54%",
"Commented Logic Exposure": "5.24%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -496498,13 +496498,13 @@
"Static: Literature & Documentation": "2.2%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "61.93%",
- "Error & Exception Exposure": "57.62%",
- "Tech Debt Exposure": "45.17%",
- "Testing Exposure": "7.22%",
+ "Cognitive Load Exposure": "61.35%",
+ "Error & Exception Exposure": "59.13%",
+ "Tech Debt Exposure": "38.29%",
+ "Testing Exposure": "5.49%",
"API Exposure": "1.48%",
- "Concurrency Exposure": "3.48%",
- "State Flux Exposure": "67.08%",
+ "Concurrency Exposure": "3.23%",
+ "State Flux Exposure": "67.02%",
"Commented Logic Exposure": "4.54%",
"Specification Exposure": "68.89%",
"Instability Exposure": "48.89%",
@@ -496703,13 +496703,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.216
+ "Raw Cognitive Density": 1.202
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.57%",
- "Error & Exception Exposure": "78.55%",
- "Tech Debt Exposure": "49.12%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "85.91%",
+ "Error & Exception Exposure": "81.66%",
+ "Tech Debt Exposure": "40.44%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.39%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -496915,13 +496915,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.302
+ "Raw Cognitive Density": 1.278
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.08%",
- "Error & Exception Exposure": "80.5%",
- "Tech Debt Exposure": "70.54%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "89.2%",
+ "Error & Exception Exposure": "82.66%",
+ "Tech Debt Exposure": "56.9%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.56%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -497116,13 +497116,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.392
+ "Raw Cognitive Density": 1.361
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.88%",
- "Error & Exception Exposure": "85.62%",
- "Tech Debt Exposure": "87.8%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "92.0%",
+ "Error & Exception Exposure": "87.9%",
+ "Tech Debt Exposure": "76.57%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -497317,16 +497317,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.011
+ "Raw Cognitive Density": 0.977
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.99%",
- "Error & Exception Exposure": "72.45%",
- "Tech Debt Exposure": "91.13%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "71.28%",
+ "Error & Exception Exposure": "70.87%",
+ "Tech Debt Exposure": "81.42%",
+ "Testing Exposure": "2.37%",
"API Exposure": "2.88%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.77%",
+ "State Flux Exposure": "99.73%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -497507,12 +497507,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.174
+ "Raw Cognitive Density": 1.167
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.5%",
- "Error & Exception Exposure": "78.79%",
- "Tech Debt Exposure": "38.27%",
+ "Cognitive Load Exposure": "84.11%",
+ "Error & Exception Exposure": "83.18%",
+ "Tech Debt Exposure": "34.03%",
"Testing Exposure": "80.0%",
"API Exposure": "2.17%",
"Concurrency Exposure": "0.0%",
@@ -497749,13 +497749,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.424
+ "Raw Cognitive Density": 1.39
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.68%",
- "Error & Exception Exposure": "82.52%",
- "Tech Debt Exposure": "75.98%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "92.84%",
+ "Error & Exception Exposure": "83.91%",
+ "Tech Debt Exposure": "57.66%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.7%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -497939,13 +497939,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.264
+ "Raw Cognitive Density": 1.243
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.64%",
- "Error & Exception Exposure": "90.6%",
- "Tech Debt Exposure": "60.13%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "87.79%",
+ "Error & Exception Exposure": "93.97%",
+ "Tech Debt Exposure": "47.43%",
+ "Testing Exposure": "2.37%",
"API Exposure": "2.64%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -498129,16 +498129,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.104
+ "Raw Cognitive Density": 1.075
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.46%",
- "Error & Exception Exposure": "76.6%",
- "Tech Debt Exposure": "40.68%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "78.62%",
+ "Error & Exception Exposure": "77.52%",
+ "Tech Debt Exposure": "25.26%",
+ "Testing Exposure": "2.37%",
"API Exposure": "2.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -498466,13 +498466,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.414
+ "Raw Cognitive Density": 1.391
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.44%",
- "Error & Exception Exposure": "83.5%",
- "Tech Debt Exposure": "67.79%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "92.86%",
+ "Error & Exception Exposure": "86.15%",
+ "Tech Debt Exposure": "54.28%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.52%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -498667,13 +498667,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.453
+ "Raw Cognitive Density": 1.423
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.33%",
- "Error & Exception Exposure": "81.23%",
- "Tech Debt Exposure": "84.66%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "93.66%",
+ "Error & Exception Exposure": "82.31%",
+ "Tech Debt Exposure": "72.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "2.65%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -498867,16 +498867,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.948
+ "Raw Cognitive Density": 0.918
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.86%",
- "Error & Exception Exposure": "74.0%",
- "Tech Debt Exposure": "86.78%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "66.15%",
+ "Error & Exception Exposure": "73.61%",
+ "Tech Debt Exposure": "75.18%",
+ "Testing Exposure": "2.36%",
"API Exposure": "2.83%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.91%",
+ "State Flux Exposure": "99.89%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -499057,13 +499057,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.339
+ "Raw Cognitive Density": 1.317
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.33%",
- "Error & Exception Exposure": "84.62%",
- "Tech Debt Exposure": "77.27%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "90.63%",
+ "Error & Exception Exposure": "87.82%",
+ "Tech Debt Exposure": "66.63%",
+ "Testing Exposure": "2.4%",
"API Exposure": "2.52%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -499269,13 +499269,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.385
+ "Raw Cognitive Density": 1.354
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.7%",
- "Error & Exception Exposure": "85.43%",
- "Tech Debt Exposure": "95.11%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "91.81%",
+ "Error & Exception Exposure": "87.71%",
+ "Tech Debt Exposure": "89.91%",
+ "Testing Exposure": "2.4%",
"API Exposure": "2.71%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -499480,15 +499480,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.578
+ "Raw Cognitive Density": 1.561
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.48%",
- "Error & Exception Exposure": "80.49%",
- "Tech Debt Exposure": "33.3%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "96.25%",
+ "Error & Exception Exposure": "83.06%",
+ "Tech Debt Exposure": "24.77%",
+ "Testing Exposure": "2.37%",
"API Exposure": "2.55%",
- "Concurrency Exposure": "92.4%",
+ "Concurrency Exposure": "90.53%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.85%",
"Specification Exposure": "100.0%",
@@ -499658,13 +499658,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.105
+ "Raw Cognitive Density": 1.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.5%",
- "Error & Exception Exposure": "85.15%",
- "Tech Debt Exposure": "30.1%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "80.25%",
+ "Error & Exception Exposure": "89.79%",
+ "Tech Debt Exposure": "28.01%",
+ "Testing Exposure": "2.4%",
"API Exposure": "2.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -499940,13 +499940,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.378
+ "Raw Cognitive Density": 1.341
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.5%",
- "Error & Exception Exposure": "82.53%",
- "Tech Debt Exposure": "81.21%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "91.42%",
+ "Error & Exception Exposure": "83.85%",
+ "Tech Debt Exposure": "63.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.8%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -500131,13 +500131,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.191
+ "Raw Cognitive Density": 1.164
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.39%",
- "Error & Exception Exposure": "88.77%",
- "Tech Debt Exposure": "60.54%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "83.99%",
+ "Error & Exception Exposure": "91.89%",
+ "Tech Debt Exposure": "43.84%",
+ "Testing Exposure": "2.36%",
"API Exposure": "2.76%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -500466,16 +500466,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.95
+ "Raw Cognitive Density": 0.944
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.02%",
- "Error & Exception Exposure": "53.67%",
- "Tech Debt Exposure": "13.87%",
- "Testing Exposure": "2.31%",
+ "Cognitive Load Exposure": "68.48%",
+ "Error & Exception Exposure": "52.98%",
+ "Tech Debt Exposure": "12.12%",
+ "Testing Exposure": "2.3%",
"API Exposure": "2.21%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.21%",
+ "State Flux Exposure": "16.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -500644,13 +500644,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.409
+ "Raw Cognitive Density": 1.374
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.31%",
- "Error & Exception Exposure": "87.21%",
- "Tech Debt Exposure": "78.98%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "92.37%",
+ "Error & Exception Exposure": "89.77%",
+ "Tech Debt Exposure": "60.85%",
+ "Testing Exposure": "2.36%",
"API Exposure": "2.86%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -500822,15 +500822,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.082
+ "Raw Cognitive Density": 2.067
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.52%",
- "Error & Exception Exposure": "92.18%",
- "Tech Debt Exposure": "68.57%",
+ "Cognitive Load Exposure": "99.49%",
+ "Error & Exception Exposure": "95.69%",
+ "Tech Debt Exposure": "62.58%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "45.84%",
+ "Concurrency Exposure": "39.97%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -501083,12 +501083,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.929
+ "Raw Cognitive Density": 1.913
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.11%",
- "Error & Exception Exposure": "97.41%",
- "Tech Debt Exposure": "74.49%",
+ "Cognitive Load Exposure": "99.05%",
+ "Error & Exception Exposure": "99.05%",
+ "Tech Debt Exposure": "68.61%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -501344,12 +501344,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.953
+ "Raw Cognitive Density": 1.936
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.19%",
- "Error & Exception Exposure": "97.45%",
- "Tech Debt Exposure": "78.43%",
+ "Cognitive Load Exposure": "99.14%",
+ "Error & Exception Exposure": "99.06%",
+ "Tech Debt Exposure": "72.78%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -501605,12 +501605,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.964
+ "Raw Cognitive Density": 1.947
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.23%",
- "Error & Exception Exposure": "97.43%",
- "Tech Debt Exposure": "79.22%",
+ "Cognitive Load Exposure": "99.17%",
+ "Error & Exception Exposure": "99.05%",
+ "Tech Debt Exposure": "73.63%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -501866,12 +501866,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.791
+ "Raw Cognitive Density": 1.775
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.47%",
- "Error & Exception Exposure": "96.18%",
- "Tech Debt Exposure": "73.18%",
+ "Cognitive Load Exposure": "98.37%",
+ "Error & Exception Exposure": "98.37%",
+ "Tech Debt Exposure": "67.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -502127,13 +502127,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.22
+ "Raw Cognitive Density": 1.199
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.75%",
- "Error & Exception Exposure": "79.28%",
- "Tech Debt Exposure": "62.58%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "85.75%",
+ "Error & Exception Exposure": "81.62%",
+ "Tech Debt Exposure": "49.56%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.56%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -502329,13 +502329,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.333
+ "Raw Cognitive Density": 1.302
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.16%",
- "Error & Exception Exposure": "83.92%",
- "Tech Debt Exposure": "87.29%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "90.1%",
+ "Error & Exception Exposure": "85.94%",
+ "Tech Debt Exposure": "75.87%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.69%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -502529,16 +502529,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.167
+ "Raw Cognitive Density": 1.137
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.11%",
- "Error & Exception Exposure": "73.46%",
- "Tech Debt Exposure": "84.11%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "82.48%",
+ "Error & Exception Exposure": "72.78%",
+ "Tech Debt Exposure": "71.74%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.81%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.93%",
+ "State Flux Exposure": "99.92%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -502719,12 +502719,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.37
+ "Raw Cognitive Density": 1.361
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.28%",
- "Error & Exception Exposure": "80.17%",
- "Tech Debt Exposure": "58.78%",
+ "Cognitive Load Exposure": "92.02%",
+ "Error & Exception Exposure": "83.75%",
+ "Tech Debt Exposure": "53.08%",
"Testing Exposure": "80.0%",
"API Exposure": "2.21%",
"Concurrency Exposure": "0.0%",
@@ -502971,13 +502971,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.442
+ "Raw Cognitive Density": 1.417
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.1%",
- "Error & Exception Exposure": "87.34%",
- "Tech Debt Exposure": "75.63%",
- "Testing Exposure": "2.46%",
+ "Cognitive Load Exposure": "93.5%",
+ "Error & Exception Exposure": "89.93%",
+ "Tech Debt Exposure": "62.04%",
+ "Testing Exposure": "2.42%",
"API Exposure": "2.61%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -503171,13 +503171,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.355
+ "Raw Cognitive Density": 1.336
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.83%",
- "Error & Exception Exposure": "90.25%",
- "Tech Debt Exposure": "53.08%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "91.26%",
+ "Error & Exception Exposure": "93.72%",
+ "Tech Debt Exposure": "41.59%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.6%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -503361,15 +503361,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.537
+ "Raw Cognitive Density": 1.532
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.89%",
- "Error & Exception Exposure": "85.54%",
- "Tech Debt Exposure": "14.16%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "95.8%",
+ "Error & Exception Exposure": "91.08%",
+ "Tech Debt Exposure": "12.99%",
+ "Testing Exposure": "2.33%",
"API Exposure": "2.07%",
- "Concurrency Exposure": "18.29%",
+ "Concurrency Exposure": "14.97%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -503559,10 +503559,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.33%",
+ "Cognitive Load Exposure": "5.06%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -505262,18 +505262,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "42.73%",
- "Error & Exception Exposure": "84.35%",
- "Tech Debt Exposure": "3.12%",
- "Testing Exposure": "31.53%",
+ "Cognitive Load Exposure": "41.84%",
+ "Error & Exception Exposure": "85.7%",
+ "Tech Debt Exposure": "2.86%",
+ "Testing Exposure": "31.52%",
"API Exposure": "2.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.58%",
+ "State Flux Exposure": "96.2%",
"Commented Logic Exposure": "1.67%",
"Specification Exposure": "56.25%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.18%",
+ "Documentation Exposure": "31.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -505310,11 +505310,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.219
+ "Raw Cognitive Density": 1.208
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.71%",
- "Error & Exception Exposure": "93.65%",
+ "Cognitive Load Exposure": "86.18%",
+ "Error & Exception Exposure": "96.41%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.15%",
@@ -505324,7 +505324,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "52.14%",
+ "Documentation Exposure": "39.68%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -505631,13 +505631,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.097
+ "Raw Cognitive Density": 1.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.01%",
- "Error & Exception Exposure": "95.4%",
+ "Cognitive Load Exposure": "78.25%",
+ "Error & Exception Exposure": "97.79%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.76%",
+ "Testing Exposure": "2.72%",
"API Exposure": "9.3%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -505645,7 +505645,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.63%",
+ "Documentation Exposure": "99.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -505892,12 +505892,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.23
+ "Raw Cognitive Density": 1.227
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.05%",
- "Error & Exception Exposure": "98.02%",
- "Tech Debt Exposure": "16.14%",
+ "Cognitive Load Exposure": "60.96%",
+ "Error & Exception Exposure": "99.4%",
+ "Tech Debt Exposure": "15.16%",
"Testing Exposure": "80.0%",
"API Exposure": "2.07%",
"Concurrency Exposure": "0.0%",
@@ -505906,7 +505906,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.01%",
+ "Documentation Exposure": "41.02%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -506462,12 +506462,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.221
+ "Raw Cognitive Density": 1.216
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.8%",
- "Error & Exception Exposure": "94.72%",
- "Tech Debt Exposure": "20.63%",
+ "Cognitive Load Exposure": "86.58%",
+ "Error & Exception Exposure": "97.76%",
+ "Tech Debt Exposure": "18.72%",
"Testing Exposure": "80.0%",
"API Exposure": "8.13%",
"Concurrency Exposure": "0.0%",
@@ -506476,7 +506476,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.83%",
+ "Documentation Exposure": "98.32%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -506993,12 +506993,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.139
+ "Raw Cognitive Density": 1.134
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.55%",
- "Error & Exception Exposure": "98.18%",
- "Tech Debt Exposure": "13.09%",
+ "Cognitive Load Exposure": "82.29%",
+ "Error & Exception Exposure": "99.46%",
+ "Tech Debt Exposure": "11.89%",
"Testing Exposure": "80.0%",
"API Exposure": "0.54%",
"Concurrency Exposure": "0.0%",
@@ -507007,7 +507007,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.23%",
+ "Documentation Exposure": "12.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -507392,10 +507392,10 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -507558,12 +507558,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.4%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -507726,12 +507726,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.4%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -507894,12 +507894,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.89%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -508062,12 +508062,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "81.44%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -508232,10 +508232,10 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -508394,21 +508394,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.92
+ "Raw Cognitive Density": 0.88
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.37%",
- "Error & Exception Exposure": "78.56%",
+ "Cognitive Load Exposure": "62.71%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.69%",
+ "Testing Exposure": "2.64%",
"API Exposure": "5.99%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "89.62%",
+ "Documentation Exposure": "67.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -508592,13 +508592,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.74
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.0%",
- "Error & Exception Exposure": "87.31%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "90.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.51%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -508797,11 +508797,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.944
+ "Raw Cognitive Density": 0.94
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.46%",
- "Error & Exception Exposure": "95.32%",
+ "Cognitive Load Exposure": "68.1%",
+ "Error & Exception Exposure": "98.11%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "1.71%",
@@ -508811,7 +508811,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.85%",
+ "Documentation Exposure": "18.32%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -509392,11 +509392,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.169
+ "Raw Cognitive Density": 1.148
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.26%",
- "Error & Exception Exposure": "87.56%",
+ "Cognitive Load Exposure": "83.08%",
+ "Error & Exception Exposure": "91.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "1.38%",
@@ -509406,7 +509406,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.73%",
+ "Documentation Exposure": "30.81%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -509633,21 +509633,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.4%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.53%",
"API Exposure": "10.09%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.77%",
+ "Documentation Exposure": "99.31%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -509842,9 +509842,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "32.63%",
- "Error & Exception Exposure": "58.46%",
+ "Error & Exception Exposure": "60.76%",
"Tech Debt Exposure": "14.87%",
- "Testing Exposure": "31.85%",
+ "Testing Exposure": "31.86%",
"API Exposure": "10.19%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "63.33%",
@@ -509852,7 +509852,7 @@
"Specification Exposure": "76.92%",
"Instability Exposure": "42.31%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "72.85%",
+ "Documentation Exposure": "71.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -509893,7 +509893,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "92.28%",
- "Error & Exception Exposure": "96.07%",
+ "Error & Exception Exposure": "98.61%",
"Tech Debt Exposure": "18.47%",
"Testing Exposure": "80.0%",
"API Exposure": "12.71%",
@@ -509903,7 +509903,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "96.78%",
+ "Documentation Exposure": "96.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -510212,7 +510212,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "56.54%",
+ "Error & Exception Exposure": "58.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "8.23%",
@@ -510222,7 +510222,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.49%",
+ "Documentation Exposure": "14.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -510372,9 +510372,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "26.56%",
- "Error & Exception Exposure": "71.53%",
+ "Error & Exception Exposure": "77.35%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.44%",
"API Exposure": "13.33%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "97.11%",
@@ -510664,9 +510664,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "99.85%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.49%",
"API Exposure": "9.23%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "94.88%",
@@ -510674,7 +510674,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "93.16%",
+ "Documentation Exposure": "91.81%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -510867,7 +510867,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.93%",
+ "Documentation Exposure": "36.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -511014,7 +511014,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "73.88%",
- "Error & Exception Exposure": "97.76%",
+ "Error & Exception Exposure": "99.35%",
"Tech Debt Exposure": "46.93%",
"Testing Exposure": "80.0%",
"API Exposure": "13.31%",
@@ -511024,7 +511024,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "97.45%",
+ "Documentation Exposure": "97.13%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -511343,7 +511343,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.85%",
+ "Error & Exception Exposure": "87.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "12.78%",
@@ -511353,7 +511353,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.98%",
+ "Documentation Exposure": "99.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -511506,7 +511506,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "73.64%",
- "Error & Exception Exposure": "95.75%",
+ "Error & Exception Exposure": "98.45%",
"Tech Debt Exposure": "14.87%",
"Testing Exposure": "80.0%",
"API Exposure": "13.25%",
@@ -511516,7 +511516,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.44%",
+ "Documentation Exposure": "99.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -511915,7 +511915,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "65.84%",
- "Error & Exception Exposure": "95.96%",
+ "Error & Exception Exposure": "98.57%",
"Tech Debt Exposure": "13.23%",
"Testing Exposure": "80.0%",
"API Exposure": "13.52%",
@@ -511925,7 +511925,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.78%",
+ "Documentation Exposure": "99.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -512237,7 +512237,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "70.9%",
- "Error & Exception Exposure": "98.53%",
+ "Error & Exception Exposure": "99.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "12.33%",
@@ -512247,7 +512247,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.08%",
+ "Documentation Exposure": "97.71%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -512786,7 +512786,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "23.56%",
- "Error & Exception Exposure": "63.89%",
+ "Error & Exception Exposure": "69.47%",
"Tech Debt Exposure": "22.93%",
"Testing Exposure": "80.0%",
"API Exposure": "2.97%",
@@ -512796,7 +512796,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.57%",
+ "Documentation Exposure": "15.72%",
"Hardcoded Payload Artifacts": "6.14%"
},
"Files": {
@@ -512838,7 +512838,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.53%",
- "Error & Exception Exposure": "72.05%",
+ "Error & Exception Exposure": "79.34%",
"Tech Debt Exposure": "55.89%",
"Testing Exposure": "80.0%",
"API Exposure": "1.79%",
@@ -512848,7 +512848,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.27%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -514183,7 +514183,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "33.39%",
- "Error & Exception Exposure": "68.59%",
+ "Error & Exception Exposure": "75.23%",
"Tech Debt Exposure": "11.53%",
"Testing Exposure": "80.0%",
"API Exposure": "3.29%",
@@ -514193,7 +514193,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.69%",
+ "Documentation Exposure": "14.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -515907,7 +515907,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "25.62%",
- "Error & Exception Exposure": "43.8%",
+ "Error & Exception Exposure": "45.82%",
"Tech Debt Exposure": "13.92%",
"Testing Exposure": "80.0%",
"API Exposure": "3.52%",
@@ -515917,7 +515917,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.41%",
+ "Documentation Exposure": "24.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -516361,7 +516361,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.72%",
- "Error & Exception Exposure": "71.12%",
+ "Error & Exception Exposure": "77.49%",
"Tech Debt Exposure": "10.38%",
"Testing Exposure": "80.0%",
"API Exposure": "3.28%",
@@ -517288,10 +517288,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "6.65%",
- "Error & Exception Exposure": "37.16%",
+ "Cognitive Load Exposure": "6.59%",
+ "Error & Exception Exposure": "39.91%",
"Tech Debt Exposure": "6.79%",
- "Testing Exposure": "15.75%",
+ "Testing Exposure": "15.76%",
"API Exposure": "2.75%",
"Concurrency Exposure": "15.55%",
"State Flux Exposure": "15.57%",
@@ -517299,7 +517299,7 @@
"Specification Exposure": "60.87%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.63%",
+ "Documentation Exposure": "20.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -517668,7 +517668,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "3.54%",
- "Error & Exception Exposure": "58.96%",
+ "Error & Exception Exposure": "62.44%",
"Tech Debt Exposure": "8.59%",
"Testing Exposure": "80.0%",
"API Exposure": "8.02%",
@@ -518181,9 +518181,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.55%",
+ "Error & Exception Exposure": "69.12%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.34%",
"API Exposure": "5.3%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -518191,7 +518191,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.53%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -518526,7 +518526,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "53.96%",
+ "Error & Exception Exposure": "56.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "1.12%",
@@ -518536,7 +518536,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.14%",
+ "Documentation Exposure": "36.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -518702,7 +518702,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "27.75%",
- "Error & Exception Exposure": "81.45%",
+ "Error & Exception Exposure": "88.28%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
"API Exposure": "4.7%",
@@ -518712,7 +518712,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.75%",
+ "Documentation Exposure": "53.36%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -518977,7 +518977,7 @@
"Raw Cognitive Density": 0.226
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.96%",
+ "Cognitive Load Exposure": "6.26%",
"Error & Exception Exposure": "74.75%",
"Tech Debt Exposure": "17.84%",
"Testing Exposure": "2.53%",
@@ -518988,7 +518988,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.01%",
+ "Documentation Exposure": "14.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -519396,7 +519396,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.06%",
- "Error & Exception Exposure": "79.64%",
+ "Error & Exception Exposure": "86.63%",
"Tech Debt Exposure": "92.09%",
"Testing Exposure": "2.49%",
"API Exposure": "3.86%",
@@ -519406,7 +519406,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.92%",
+ "Documentation Exposure": "29.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -519810,7 +519810,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "2.43%",
- "Error & Exception Exposure": "59.28%",
+ "Error & Exception Exposure": "62.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.79%",
@@ -520071,7 +520071,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.85%",
- "Error & Exception Exposure": "75.48%",
+ "Error & Exception Exposure": "81.94%",
"Tech Debt Exposure": "26.16%",
"Testing Exposure": "80.0%",
"API Exposure": "0.77%",
@@ -520501,8 +520501,8 @@
"Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.59%",
- "Error & Exception Exposure": "48.31%",
+ "Cognitive Load Exposure": "6.9%",
+ "Error & Exception Exposure": "60.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "7.21%",
@@ -520512,7 +520512,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.36%",
+ "Documentation Exposure": "38.56%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -520689,7 +520689,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "13.61%",
- "Error & Exception Exposure": "65.62%",
+ "Error & Exception Exposure": "71.33%",
"Tech Debt Exposure": "11.4%",
"Testing Exposure": "80.0%",
"API Exposure": "3.37%",
@@ -521534,9 +521534,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "15.56%",
- "Error & Exception Exposure": "70.63%",
+ "Error & Exception Exposure": "77.52%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.51%",
"API Exposure": "3.31%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.62%",
@@ -522204,7 +522204,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "60.0%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -522367,7 +522367,7 @@
"Raw Cognitive Density": 0.202
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.26%",
+ "Cognitive Load Exposure": "9.12%",
"Error & Exception Exposure": "62.11%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -522378,7 +522378,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "86.23%",
+ "Documentation Exposure": "85.81%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -522738,18 +522738,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "17.18%",
- "Error & Exception Exposure": "41.53%",
- "Tech Debt Exposure": "37.6%",
- "Testing Exposure": "50.92%",
+ "Cognitive Load Exposure": "15.86%",
+ "Error & Exception Exposure": "32.92%",
+ "Tech Debt Exposure": "36.48%",
+ "Testing Exposure": "41.24%",
"API Exposure": "5.9%",
- "Concurrency Exposure": "2.34%",
- "State Flux Exposure": "17.25%",
+ "Concurrency Exposure": "1.79%",
+ "State Flux Exposure": "16.21%",
"Commented Logic Exposure": "3.69%",
"Specification Exposure": "87.5%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "60.29%",
+ "Documentation Exposure": "40.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -522787,21 +522787,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.271
+ "Raw Cognitive Density": 0.261
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.41%",
- "Error & Exception Exposure": "64.2%",
- "Tech Debt Exposure": "85.57%",
+ "Cognitive Load Exposure": "6.21%",
+ "Error & Exception Exposure": "64.18%",
+ "Tech Debt Exposure": "82.12%",
"Testing Exposure": "80.0%",
"API Exposure": "6.95%",
- "Concurrency Exposure": "18.71%",
- "State Flux Exposure": "12.31%",
+ "Concurrency Exposure": "14.32%",
+ "State Flux Exposure": "9.94%",
"Commented Logic Exposure": "5.87%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.42%",
+ "Documentation Exposure": "31.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -523220,13 +523220,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.654
+ "Raw Cognitive Density": 0.569
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.24%",
- "Error & Exception Exposure": "38.52%",
+ "Cognitive Load Exposure": "16.34%",
+ "Error & Exception Exposure": "14.44%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.48%",
"API Exposure": "3.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -523234,7 +523234,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "87.13%",
+ "Documentation Exposure": "51.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -523460,21 +523460,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.514
+ "Raw Cognitive Density": 0.507
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.66%",
- "Error & Exception Exposure": "33.73%",
- "Tech Debt Exposure": "13.97%",
+ "Cognitive Load Exposure": "13.73%",
+ "Error & Exception Exposure": "19.14%",
+ "Tech Debt Exposure": "12.15%",
"Testing Exposure": "80.0%",
"API Exposure": "1.23%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "12.57%",
+ "State Flux Exposure": "10.16%",
"Commented Logic Exposure": "12.91%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.03%",
+ "Documentation Exposure": "15.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -523792,21 +523792,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.858
+ "Raw Cognitive Density": 0.85
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "32.19%",
- "Error & Exception Exposure": "25.24%",
+ "Cognitive Load Exposure": "29.92%",
+ "Error & Exception Exposure": "8.95%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.44%",
"API Exposure": "1.1%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.49%",
+ "State Flux Exposure": "96.84%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.67%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -524157,7 +524157,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.74%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -524304,21 +524304,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.35
+ "Raw Cognitive Density": 1.342
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.84%",
- "Error & Exception Exposure": "65.25%",
- "Tech Debt Exposure": "31.03%",
+ "Cognitive Load Exposure": "45.72%",
+ "Error & Exception Exposure": "63.97%",
+ "Tech Debt Exposure": "28.14%",
"Testing Exposure": "80.0%",
"API Exposure": "4.41%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.67%",
+ "State Flux Exposure": "12.75%",
"Commented Logic Exposure": "5.61%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.06%",
+ "Documentation Exposure": "41.32%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -525017,13 +525017,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.409
+ "Raw Cognitive Density": 0.374
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.17%",
- "Error & Exception Exposure": "42.46%",
+ "Cognitive Load Exposure": "9.09%",
+ "Error & Exception Exposure": "26.11%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.7%",
"API Exposure": "5.34%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -525031,7 +525031,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.31%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -525378,12 +525378,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.057
+ "Raw Cognitive Density": 0.056
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.89%",
- "Error & Exception Exposure": "62.87%",
- "Tech Debt Exposure": "70.24%",
+ "Cognitive Load Exposure": "5.86%",
+ "Error & Exception Exposure": "66.55%",
+ "Tech Debt Exposure": "69.46%",
"Testing Exposure": "80.0%",
"API Exposure": "16.29%",
"Concurrency Exposure": "0.0%",
@@ -533763,10 +533763,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "66.35%",
- "Error & Exception Exposure": "75.16%",
- "Tech Debt Exposure": "17.93%",
- "Testing Exposure": "67.1%",
+ "Cognitive Load Exposure": "65.11%",
+ "Error & Exception Exposure": "76.33%",
+ "Tech Debt Exposure": "16.63%",
+ "Testing Exposure": "67.09%",
"API Exposure": "9.29%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "83.32%",
@@ -533774,7 +533774,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.98%",
+ "Documentation Exposure": "50.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -533815,7 +533815,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "92.59%",
- "Error & Exception Exposure": "98.17%",
+ "Error & Exception Exposure": "99.51%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "14.95%",
@@ -533825,7 +533825,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.98%",
+ "Documentation Exposure": "99.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -534385,11 +534385,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.325
+ "Raw Cognitive Density": 1.306
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.9%",
- "Error & Exception Exposure": "84.59%",
+ "Cognitive Load Exposure": "90.25%",
+ "Error & Exception Exposure": "88.59%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.13%",
@@ -534399,7 +534399,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.03%",
+ "Documentation Exposure": "20.83%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -534813,12 +534813,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.35
+ "Raw Cognitive Density": 1.334
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.69%",
- "Error & Exception Exposure": "91.12%",
- "Tech Debt Exposure": "30.43%",
+ "Cognitive Load Exposure": "91.17%",
+ "Error & Exception Exposure": "94.85%",
+ "Tech Debt Exposure": "24.56%",
"Testing Exposure": "80.0%",
"API Exposure": "10.29%",
"Concurrency Exposure": "0.0%",
@@ -534827,7 +534827,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "69.84%",
+ "Documentation Exposure": "53.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -535861,12 +535861,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.961
+ "Raw Cognitive Density": 0.958
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "69.91%",
- "Error & Exception Exposure": "98.98%",
- "Tech Debt Exposure": "77.16%",
+ "Cognitive Load Exposure": "69.67%",
+ "Error & Exception Exposure": "99.76%",
+ "Tech Debt Exposure": "75.2%",
"Testing Exposure": "80.0%",
"API Exposure": "1.88%",
"Concurrency Exposure": "0.0%",
@@ -536561,21 +536561,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.78
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "53.0%",
- "Error & Exception Exposure": "78.12%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.55%",
"API Exposure": "4.67%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.92%",
+ "State Flux Exposure": "99.9%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.12%",
+ "Documentation Exposure": "15.45%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -536730,8 +536730,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "21.01%",
- "Error & Exception Exposure": "59.47%",
+ "Cognitive Load Exposure": "19.51%",
+ "Error & Exception Exposure": "63.4%",
"Tech Debt Exposure": "42.21%",
"Testing Exposure": "80.0%",
"API Exposure": "3.07%",
@@ -536741,7 +536741,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.69%",
+ "Documentation Exposure": "16.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -536782,8 +536782,8 @@
"Raw Cognitive Density": 0.757
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.57%",
- "Error & Exception Exposure": "63.63%",
+ "Cognitive Load Exposure": "32.89%",
+ "Error & Exception Exposure": "68.88%",
"Tech Debt Exposure": "92.48%",
"Testing Exposure": "80.0%",
"API Exposure": "4.18%",
@@ -536793,7 +536793,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.79%",
+ "Documentation Exposure": "24.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -537322,8 +537322,8 @@
"Raw Cognitive Density": 0.466
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.86%",
- "Error & Exception Exposure": "58.95%",
+ "Cognitive Load Exposure": "14.37%",
+ "Error & Exception Exposure": "62.7%",
"Tech Debt Exposure": "21.86%",
"Testing Exposure": "80.0%",
"API Exposure": "4.83%",
@@ -537333,7 +537333,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.37%",
+ "Documentation Exposure": "12.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -538077,8 +538077,8 @@
"Raw Cognitive Density": 0.284
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.6%",
- "Error & Exception Exposure": "55.82%",
+ "Cognitive Load Exposure": "11.28%",
+ "Error & Exception Exposure": "58.62%",
"Tech Debt Exposure": "12.3%",
"Testing Exposure": "80.0%",
"API Exposure": "0.2%",
@@ -538927,18 +538927,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "6.68%",
- "Error & Exception Exposure": "60.59%",
- "Tech Debt Exposure": "3.05%",
+ "Cognitive Load Exposure": "6.62%",
+ "Error & Exception Exposure": "63.32%",
+ "Tech Debt Exposure": "2.98%",
"Testing Exposure": "68.06%",
"API Exposure": "4.5%",
- "Concurrency Exposure": "42.62%",
+ "Concurrency Exposure": "41.02%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.71%",
+ "Documentation Exposure": "16.13%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -538975,21 +538975,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.178
+ "Raw Cognitive Density": 0.175
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.21%",
- "Error & Exception Exposure": "68.04%",
+ "Cognitive Load Exposure": "9.12%",
+ "Error & Exception Exposure": "72.81%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.06%",
- "Concurrency Exposure": "77.02%",
+ "Concurrency Exposure": "75.58%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.97%",
+ "Documentation Exposure": "18.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -539233,21 +539233,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.108
+ "Raw Cognitive Density": 0.107
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.11%",
- "Error & Exception Exposure": "63.72%",
+ "Cognitive Load Exposure": "7.1%",
+ "Error & Exception Exposure": "67.8%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.36%",
- "Concurrency Exposure": "67.87%",
+ "Concurrency Exposure": "66.1%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.06%",
+ "Documentation Exposure": "15.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -539685,17 +539685,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "62.1%",
+ "Error & Exception Exposure": "64.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "3.97%",
- "Concurrency Exposure": "43.1%",
+ "Concurrency Exposure": "41.15%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.74%",
+ "Documentation Exposure": "18.36%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -539859,21 +539859,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.15
+ "Raw Cognitive Density": 0.149
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.32%",
- "Error & Exception Exposure": "57.09%",
+ "Cognitive Load Exposure": "8.28%",
+ "Error & Exception Exposure": "59.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "1.94%",
- "Concurrency Exposure": "28.68%",
+ "Concurrency Exposure": "27.07%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.24%",
+ "Documentation Exposure": "14.56%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -540087,21 +540087,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.074
+ "Raw Cognitive Density": 0.072
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.28%",
- "Error & Exception Exposure": "62.25%",
+ "Cognitive Load Exposure": "6.23%",
+ "Error & Exception Exposure": "65.48%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.21%",
- "Concurrency Exposure": "36.7%",
+ "Concurrency Exposure": "34.86%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.52%",
+ "Documentation Exposure": "13.32%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -540295,21 +540295,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.104
+ "Raw Cognitive Density": 0.103
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.02%",
- "Error & Exception Exposure": "55.75%",
+ "Cognitive Load Exposure": "6.99%",
+ "Error & Exception Exposure": "57.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "1.93%",
- "Concurrency Exposure": "23.56%",
+ "Concurrency Exposure": "22.15%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.01%",
+ "Documentation Exposure": "14.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -540513,21 +540513,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.154
+ "Raw Cognitive Density": 0.153
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.45%",
- "Error & Exception Exposure": "55.81%",
- "Tech Debt Exposure": "8.79%",
+ "Cognitive Load Exposure": "8.42%",
+ "Error & Exception Exposure": "57.51%",
+ "Tech Debt Exposure": "8.64%",
"Testing Exposure": "80.0%",
"API Exposure": "1.86%",
- "Concurrency Exposure": "26.09%",
+ "Concurrency Exposure": "24.58%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.29%",
+ "Documentation Exposure": "13.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -540761,21 +540761,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.234
+ "Raw Cognitive Density": 0.225
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.27%",
- "Error & Exception Exposure": "76.28%",
+ "Cognitive Load Exposure": "10.92%",
+ "Error & Exception Exposure": "81.24%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.46%",
"API Exposure": "5.4%",
- "Concurrency Exposure": "87.32%",
+ "Concurrency Exposure": "86.41%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.95%",
+ "Documentation Exposure": "28.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -540949,21 +540949,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.048
+ "Raw Cognitive Density": 0.047
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.7%",
- "Error & Exception Exposure": "59.75%",
+ "Cognitive Load Exposure": "5.66%",
+ "Error & Exception Exposure": "62.44%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.83%",
- "Concurrency Exposure": "29.33%",
+ "Concurrency Exposure": "27.7%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.57%",
+ "Documentation Exposure": "14.47%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -541167,21 +541167,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.065
+ "Raw Cognitive Density": 0.063
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.07%",
- "Error & Exception Exposure": "61.18%",
- "Tech Debt Exposure": "17.47%",
+ "Cognitive Load Exposure": "6.02%",
+ "Error & Exception Exposure": "64.23%",
+ "Tech Debt Exposure": "16.83%",
"Testing Exposure": "80.0%",
"API Exposure": "4.92%",
- "Concurrency Exposure": "41.18%",
+ "Concurrency Exposure": "39.26%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.29%",
+ "Documentation Exposure": "15.04%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -541428,18 +541428,18 @@
"Raw Cognitive Density": 0.102
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.98%",
- "Error & Exception Exposure": "58.68%",
- "Tech Debt Exposure": "13.38%",
+ "Cognitive Load Exposure": "6.96%",
+ "Error & Exception Exposure": "61.37%",
+ "Tech Debt Exposure": "13.26%",
"Testing Exposure": "80.0%",
"API Exposure": "6.86%",
- "Concurrency Exposure": "46.2%",
+ "Concurrency Exposure": "44.22%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.92%",
+ "Documentation Exposure": "13.12%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -541983,21 +541983,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.016
+ "Raw Cognitive Density": 0.015
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.04%",
- "Error & Exception Exposure": "53.25%",
+ "Cognitive Load Exposure": "5.03%",
+ "Error & Exception Exposure": "54.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.3%",
- "Concurrency Exposure": "20.1%",
+ "Concurrency Exposure": "18.84%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.28%",
+ "Documentation Exposure": "14.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -542181,21 +542181,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.032
+ "Raw Cognitive Density": 0.031
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.35%",
- "Error & Exception Exposure": "53.83%",
+ "Cognitive Load Exposure": "5.34%",
+ "Error & Exception Exposure": "54.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.89%",
- "Concurrency Exposure": "26.86%",
+ "Concurrency Exposure": "25.32%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.33%",
+ "Documentation Exposure": "14.8%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -542365,18 +542365,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "63.21%",
- "Error & Exception Exposure": "86.95%",
- "Tech Debt Exposure": "2.7%",
- "Testing Exposure": "34.4%",
+ "Cognitive Load Exposure": "61.96%",
+ "Error & Exception Exposure": "88.36%",
+ "Tech Debt Exposure": "2.42%",
+ "Testing Exposure": "34.39%",
"API Exposure": "0.05%",
- "Concurrency Exposure": "1.08%",
- "State Flux Exposure": "86.02%",
+ "Concurrency Exposure": "0.94%",
+ "State Flux Exposure": "85.18%",
"Commented Logic Exposure": "3.94%",
"Specification Exposure": "41.18%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.79%",
+ "Documentation Exposure": "5.75%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -542413,16 +542413,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.7
+ "Raw Cognitive Density": 1.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.81%",
- "Error & Exception Exposure": "99.94%",
+ "Cognitive Load Exposure": "97.44%",
+ "Error & Exception Exposure": "99.99%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -542631,16 +542631,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.48
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.35%",
- "Error & Exception Exposure": "73.41%",
+ "Cognitive Load Exposure": "22.44%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -542819,16 +542819,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "77.0%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -542997,16 +542997,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "75.13%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -543175,16 +543175,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.646
+ "Raw Cognitive Density": 0.615
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.76%",
- "Error & Exception Exposure": "89.06%",
+ "Cognitive Load Exposure": "36.85%",
+ "Error & Exception Exposure": "91.68%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "83.09%",
+ "State Flux Exposure": "81.34%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -543373,16 +543373,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.72
+ "Raw Cognitive Density": 1.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.98%",
- "Error & Exception Exposure": "83.12%",
+ "Cognitive Load Exposure": "97.63%",
+ "Error & Exception Exposure": "84.74%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -543551,16 +543551,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.22
+ "Raw Cognitive Density": 1.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.76%",
- "Error & Exception Exposure": "94.42%",
+ "Cognitive Load Exposure": "84.81%",
+ "Error & Exception Exposure": "96.86%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.69%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -543729,16 +543729,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.8
+ "Raw Cognitive Density": 2.76
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.97%",
- "Error & Exception Exposure": "86.58%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.59%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.69%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -543917,10 +543917,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.513
+ "Raw Cognitive Density": 1.496
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.48%",
+ "Cognitive Load Exposure": "95.18%",
"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": "17.47%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -544175,16 +544175,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.96
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "77.23%",
+ "Cognitive Load Exposure": "69.85%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.58%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "12.83%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -544373,11 +544373,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.514
+ "Raw Cognitive Density": 2.491
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.91%",
- "Error & Exception Exposure": "96.71%",
+ "Error & Exception Exposure": "98.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -544387,7 +544387,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.29%",
+ "Documentation Exposure": "36.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -544581,21 +544581,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.568
+ "Raw Cognitive Density": 0.565
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "32.54%",
- "Error & Exception Exposure": "91.21%",
+ "Cognitive Load Exposure": "32.3%",
+ "Error & Exception Exposure": "95.62%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "18.33%",
- "State Flux Exposure": "92.77%",
+ "Concurrency Exposure": "16.05%",
+ "State Flux Exposure": "91.92%",
"Commented Logic Exposure": "7.14%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.1%",
+ "Documentation Exposure": "14.75%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -544851,12 +544851,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.464
+ "Raw Cognitive Density": 2.459
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.89%",
- "Error & Exception Exposure": "99.99%",
- "Tech Debt Exposure": "11.43%",
+ "Error & Exception Exposure": "100.0%",
+ "Tech Debt Exposure": "10.18%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -545193,12 +545193,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -545357,13 +545357,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.84
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.9%",
- "Error & Exception Exposure": "91.52%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "94.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -545535,21 +545535,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.621
+ "Raw Cognitive Density": 0.615
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.69%",
- "Error & Exception Exposure": "84.72%",
- "Tech Debt Exposure": "34.54%",
+ "Cognitive Load Exposure": "35.62%",
+ "Error & Exception Exposure": "90.05%",
+ "Tech Debt Exposure": "30.98%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.66%",
+ "State Flux Exposure": "99.61%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.18%",
+ "Documentation Exposure": "14.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -545727,11 +545727,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.983
+ "Raw Cognitive Density": 3.974
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "86.94%",
+ "Error & Exception Exposure": "89.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -545741,7 +545741,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.45%",
+ "Documentation Exposure": "19.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -545922,18 +545922,18 @@
"Static: Literature & Documentation": "5.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "53.44%",
- "Error & Exception Exposure": "53.76%",
- "Tech Debt Exposure": "9.28%",
- "Testing Exposure": "17.89%",
+ "Cognitive Load Exposure": "50.63%",
+ "Error & Exception Exposure": "47.99%",
+ "Tech Debt Exposure": "8.95%",
+ "Testing Exposure": "6.29%",
"API Exposure": "1.41%",
- "Concurrency Exposure": "3.28%",
- "State Flux Exposure": "54.99%",
+ "Concurrency Exposure": "3.09%",
+ "State Flux Exposure": "54.98%",
"Commented Logic Exposure": "0.77%",
"Specification Exposure": "25.0%",
"Instability Exposure": "47.5%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.6%",
+ "Documentation Exposure": "8.66%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -546127,15 +546127,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.921
+ "Raw Cognitive Density": 3.896
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.37%",
- "Error & Exception Exposure": "78.78%",
+ "Cognitive Load Exposure": "75.61%",
+ "Error & Exception Exposure": "37.89%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.99%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "65.54%",
+ "Concurrency Exposure": "61.85%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
@@ -546347,13 +546347,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "62.88%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "56.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -546528,13 +546528,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.45
+ "Raw Cognitive Density": 3.41
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "74.41%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.92%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.8%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -546712,7 +546712,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -546874,13 +546874,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.679
+ "Raw Cognitive Density": 1.642
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.63%",
- "Error & Exception Exposure": "91.33%",
+ "Cognitive Load Exposure": "97.25%",
+ "Error & Exception Exposure": "93.78%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.58%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -547072,13 +547072,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.861
+ "Raw Cognitive Density": 1.824
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.84%",
- "Error & Exception Exposure": "96.21%",
+ "Cognitive Load Exposure": "98.66%",
+ "Error & Exception Exposure": "98.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.73%",
+ "Testing Exposure": "2.7%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -547290,10 +547290,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
@@ -547460,16 +547460,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.42
+ "Raw Cognitive Density": 1.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.58%",
- "Error & Exception Exposure": "63.18%",
+ "Cognitive Load Exposure": "92.55%",
+ "Error & Exception Exposure": "50.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.69%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -547638,12 +547638,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.723
+ "Raw Cognitive Density": 1.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.0%",
- "Error & Exception Exposure": "96.91%",
- "Tech Debt Exposure": "9.43%",
+ "Cognitive Load Exposure": "97.98%",
+ "Error & Exception Exposure": "98.91%",
+ "Tech Debt Exposure": "8.99%",
"Testing Exposure": "80.0%",
"API Exposure": "1.05%",
"Concurrency Exposure": "0.0%",
@@ -547652,7 +547652,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.9%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -548078,16 +548078,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.34
+ "Raw Cognitive Density": 1.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.37%",
- "Error & Exception Exposure": "80.24%",
+ "Cognitive Load Exposure": "90.03%",
+ "Error & Exception Exposure": "81.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.58%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -548280,7 +548280,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "8.19%",
@@ -548290,7 +548290,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "64.8%",
+ "Documentation Exposure": "33.24%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -548444,13 +548444,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.274
+ "Raw Cognitive Density": 4.262
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.94%",
- "Error & Exception Exposure": "65.83%",
- "Tech Debt Exposure": "76.43%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "88.24%",
+ "Error & Exception Exposure": "55.97%",
+ "Tech Debt Exposure": "70.73%",
+ "Testing Exposure": "2.8%",
"API Exposure": "6.29%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -548458,7 +548458,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.31%",
+ "Documentation Exposure": "26.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -548728,13 +548728,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 5.15
+ "Raw Cognitive Density": 5.11
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "58.59%",
+ "Error & Exception Exposure": "35.43%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -548949,13 +548949,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 7.5
+ "Raw Cognitive Density": 7.462
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.38%",
- "Error & Exception Exposure": "91.83%",
+ "Cognitive Load Exposure": "50.0%",
+ "Error & Exception Exposure": "90.75%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.77%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -549190,13 +549190,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.79
+ "Raw Cognitive Density": 4.763
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.0%",
- "Error & Exception Exposure": "82.63%",
+ "Cognitive Load Exposure": "60.0%",
+ "Error & Exception Exposure": "78.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.71%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -549204,7 +549204,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.69%",
+ "Documentation Exposure": "21.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -549385,7 +549385,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "78.5%",
+ "Documentation Exposure": "51.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -549539,13 +549539,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.66
+ "Raw Cognitive Density": 0.62
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.1%",
- "Error & Exception Exposure": "62.58%",
+ "Cognitive Load Exposure": "37.29%",
+ "Error & Exception Exposure": "54.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.41%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -549553,7 +549553,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.71%",
+ "Documentation Exposure": "28.38%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -550039,18 +550039,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "63.77%",
- "Error & Exception Exposure": "85.43%",
- "Tech Debt Exposure": "61.14%",
+ "Cognitive Load Exposure": "61.9%",
+ "Error & Exception Exposure": "86.5%",
+ "Tech Debt Exposure": "54.57%",
"Testing Exposure": "2.33%",
"API Exposure": "2.76%",
- "Concurrency Exposure": "1.54%",
- "State Flux Exposure": "93.02%",
+ "Concurrency Exposure": "1.29%",
+ "State Flux Exposure": "92.82%",
"Commented Logic Exposure": "4.74%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.84%",
+ "Documentation Exposure": "14.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -550087,11 +550087,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.039
+ "Raw Cognitive Density": 1.024
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.09%",
- "Error & Exception Exposure": "97.13%",
+ "Cognitive Load Exposure": "74.93%",
+ "Error & Exception Exposure": "98.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "6.68%",
@@ -550101,7 +550101,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.18%",
+ "Documentation Exposure": "26.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -550329,12 +550329,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.911
+ "Raw Cognitive Density": 0.857
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.54%",
- "Error & Exception Exposure": "84.62%",
- "Tech Debt Exposure": "99.39%",
+ "Cognitive Load Exposure": "60.55%",
+ "Error & Exception Exposure": "85.03%",
+ "Tech Debt Exposure": "97.7%",
"Testing Exposure": "2.35%",
"API Exposure": "1.47%",
"Concurrency Exposure": "0.0%",
@@ -550343,7 +550343,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.09%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -550519,21 +550519,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.657
+ "Raw Cognitive Density": 0.639
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.77%",
- "Error & Exception Exposure": "78.28%",
- "Tech Debt Exposure": "92.2%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "39.04%",
+ "Error & Exception Exposure": "82.0%",
+ "Tech Debt Exposure": "88.27%",
+ "Testing Exposure": "2.33%",
"API Exposure": "1.28%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.95%",
+ "State Flux Exposure": "99.94%",
"Commented Logic Exposure": "6.88%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.66%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -550750,12 +550750,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.04
+ "Raw Cognitive Density": 1.027
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.15%",
- "Error & Exception Exposure": "96.5%",
- "Tech Debt Exposure": "57.2%",
+ "Cognitive Load Exposure": "75.16%",
+ "Error & Exception Exposure": "98.53%",
+ "Tech Debt Exposure": "48.88%",
"Testing Exposure": "2.32%",
"API Exposure": "1.17%",
"Concurrency Exposure": "0.0%",
@@ -550961,13 +550961,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.001
+ "Raw Cognitive Density": 0.986
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.2%",
- "Error & Exception Exposure": "94.71%",
+ "Cognitive Load Exposure": "72.01%",
+ "Error & Exception Exposure": "97.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "7.29%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -550975,7 +550975,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.14%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -551211,13 +551211,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.056
+ "Raw Cognitive Density": 1.042
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.27%",
- "Error & Exception Exposure": "76.47%",
- "Tech Debt Exposure": "69.22%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "76.3%",
+ "Error & Exception Exposure": "76.49%",
+ "Tech Debt Exposure": "61.49%",
+ "Testing Exposure": "2.32%",
"API Exposure": "1.22%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -551225,7 +551225,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.74%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -551432,21 +551432,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "15.19%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.33%",
"API Exposure": "1.6%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "14.19%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.8%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -551612,13 +551612,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.34%",
"API Exposure": "1.6%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -551626,7 +551626,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.09%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -551792,12 +551792,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.052
+ "Raw Cognitive Density": 1.043
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.97%",
- "Error & Exception Exposure": "88.76%",
- "Tech Debt Exposure": "78.1%",
+ "Cognitive Load Exposure": "76.36%",
+ "Error & Exception Exposure": "93.04%",
+ "Tech Debt Exposure": "72.08%",
"Testing Exposure": "2.31%",
"API Exposure": "1.13%",
"Concurrency Exposure": "0.0%",
@@ -551993,12 +551993,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.051
+ "Raw Cognitive Density": 1.019
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.93%",
- "Error & Exception Exposure": "95.94%",
- "Tech Debt Exposure": "47.98%",
+ "Cognitive Load Exposure": "74.56%",
+ "Error & Exception Exposure": "97.97%",
+ "Tech Debt Exposure": "29.17%",
"Testing Exposure": "2.31%",
"API Exposure": "1.39%",
"Concurrency Exposure": "0.0%",
@@ -552007,7 +552007,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.63%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -552164,21 +552164,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.78
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "53.0%",
- "Error & Exception Exposure": "74.16%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.33%",
"API Exposure": "1.5%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.99%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -552346,21 +552346,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.817
+ "Raw Cognitive Density": 0.802
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "56.64%",
- "Error & Exception Exposure": "74.62%",
- "Tech Debt Exposure": "58.58%",
+ "Cognitive Load Exposure": "55.18%",
+ "Error & Exception Exposure": "77.61%",
+ "Tech Debt Exposure": "49.38%",
"Testing Exposure": "2.34%",
"API Exposure": "7.74%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.47%",
+ "State Flux Exposure": "99.36%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.39%",
+ "Documentation Exposure": "32.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -552597,13 +552597,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.003
+ "Raw Cognitive Density": 0.998
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.34%",
- "Error & Exception Exposure": "82.83%",
- "Tech Debt Exposure": "11.64%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "72.94%",
+ "Error & Exception Exposure": "86.84%",
+ "Tech Debt Exposure": "10.38%",
+ "Testing Exposure": "2.33%",
"API Exposure": "9.44%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -552611,7 +552611,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.01%",
+ "Documentation Exposure": "30.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -553000,13 +553000,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.991
+ "Raw Cognitive Density": 0.98
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.4%",
- "Error & Exception Exposure": "94.77%",
- "Tech Debt Exposure": "34.56%",
- "Testing Exposure": "2.32%",
+ "Cognitive Load Exposure": "71.54%",
+ "Error & Exception Exposure": "97.48%",
+ "Tech Debt Exposure": "28.82%",
+ "Testing Exposure": "2.31%",
"API Exposure": "1.16%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -553201,15 +553201,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.034
+ "Raw Cognitive Density": 1.03
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.72%",
- "Error & Exception Exposure": "95.92%",
- "Tech Debt Exposure": "40.91%",
+ "Cognitive Load Exposure": "75.41%",
+ "Error & Exception Exposure": "98.31%",
+ "Tech Debt Exposure": "37.2%",
"Testing Exposure": "2.31%",
"API Exposure": "1.01%",
- "Concurrency Exposure": "27.76%",
+ "Concurrency Exposure": "23.21%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.84%",
"Specification Exposure": "100.0%",
@@ -553422,12 +553422,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.065
+ "Raw Cognitive Density": 1.054
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.88%",
- "Error & Exception Exposure": "90.54%",
- "Tech Debt Exposure": "33.98%",
+ "Cognitive Load Exposure": "77.15%",
+ "Error & Exception Exposure": "94.18%",
+ "Tech Debt Exposure": "28.36%",
"Testing Exposure": "2.31%",
"API Exposure": "1.17%",
"Concurrency Exposure": "0.0%",
@@ -553436,7 +553436,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.25%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -553623,13 +553623,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.157
+ "Raw Cognitive Density": 1.102
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.61%",
- "Error & Exception Exposure": "88.28%",
- "Tech Debt Exposure": "84.11%",
- "Testing Exposure": "2.32%",
+ "Cognitive Load Exposure": "80.34%",
+ "Error & Exception Exposure": "89.17%",
+ "Tech Debt Exposure": "56.9%",
+ "Testing Exposure": "2.31%",
"API Exposure": "1.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -553637,7 +553637,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.14%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -553793,13 +553793,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.906
+ "Raw Cognitive Density": 0.89
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.12%",
- "Error & Exception Exposure": "81.49%",
- "Tech Debt Exposure": "98.06%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "63.6%",
+ "Error & Exception Exposure": "84.57%",
+ "Tech Debt Exposure": "96.45%",
+ "Testing Exposure": "2.32%",
"API Exposure": "1.25%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -553807,7 +553807,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.23%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -558395,18 +558395,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "53.2%",
- "Error & Exception Exposure": "88.35%",
- "Tech Debt Exposure": "25.43%",
- "Testing Exposure": "8.81%",
+ "Cognitive Load Exposure": "49.31%",
+ "Error & Exception Exposure": "88.53%",
+ "Tech Debt Exposure": "22.3%",
+ "Testing Exposure": "8.8%",
"API Exposure": "1.42%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.58%",
+ "State Flux Exposure": "93.2%",
"Commented Logic Exposure": "1.4%",
"Specification Exposure": "41.67%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "9.21%",
+ "Documentation Exposure": "6.59%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -558443,11 +558443,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.263
+ "Raw Cognitive Density": 1.224
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.61%",
- "Error & Exception Exposure": "95.93%",
+ "Cognitive Load Exposure": "86.96%",
+ "Error & Exception Exposure": "97.8%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -558600,13 +558600,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.156
+ "Raw Cognitive Density": 1.146
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.51%",
- "Error & Exception Exposure": "93.12%",
- "Tech Debt Exposure": "29.43%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "82.99%",
+ "Error & Exception Exposure": "95.95%",
+ "Tech Debt Exposure": "24.85%",
+ "Testing Exposure": "2.35%",
"API Exposure": "4.58%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -558614,7 +558614,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.36%",
+ "Documentation Exposure": "13.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -558801,13 +558801,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.093
+ "Raw Cognitive Density": 1.076
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.94%",
- "Error & Exception Exposure": "96.69%",
- "Tech Debt Exposure": "95.03%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "39.31%",
+ "Error & Exception Exposure": "98.59%",
+ "Tech Debt Exposure": "90.86%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -558979,13 +558979,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.925
+ "Raw Cognitive Density": 0.877
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.78%",
- "Error & Exception Exposure": "88.7%",
+ "Cognitive Load Exposure": "62.43%",
+ "Error & Exception Exposure": "91.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.49%",
"API Exposure": "5.01%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -558993,7 +558993,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "53.02%",
+ "Documentation Exposure": "34.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -559173,12 +559173,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.06%",
+ "Error & Exception Exposure": "58.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -559326,16 +559326,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.9
+ "Raw Cognitive Density": 0.84
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.57%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "58.9%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -559483,16 +559483,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.8
+ "Raw Cognitive Density": 0.74
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.98%",
- "Error & Exception Exposure": "83.3%",
+ "Cognitive Load Exposure": "49.0%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -559640,11 +559640,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.309
+ "Raw Cognitive Density": 1.274
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.17%",
- "Error & Exception Exposure": "93.12%",
+ "Cognitive Load Exposure": "44.52%",
+ "Error & Exception Exposure": "93.95%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -559799,11 +559799,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.05
+ "Raw Cognitive Density": 0.99
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.85%",
- "Error & Exception Exposure": "89.9%",
+ "Cognitive Load Exposure": "72.31%",
+ "Error & Exception Exposure": "91.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -559956,21 +559956,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.76
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.5%",
- "Error & Exception Exposure": "76.31%",
+ "Cognitive Load Exposure": "22.51%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "3.15%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.65%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -560113,11 +560113,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.01
+ "Raw Cognitive Density": 0.95
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.94%",
- "Error & Exception Exposure": "85.59%",
+ "Cognitive Load Exposure": "34.5%",
+ "Error & Exception Exposure": "85.18%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "3.06%",
@@ -560270,16 +560270,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "72.4%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -560427,12 +560427,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.116
+ "Raw Cognitive Density": 1.108
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.01%",
- "Error & Exception Exposure": "99.44%",
- "Tech Debt Exposure": "82.47%",
+ "Cognitive Load Exposure": "55.49%",
+ "Error & Exception Exposure": "99.89%",
+ "Tech Debt Exposure": "79.17%",
"Testing Exposure": "80.0%",
"API Exposure": "2.23%",
"Concurrency Exposure": "0.0%",
@@ -560719,12 +560719,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -560872,13 +560872,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.168
+ "Raw Cognitive Density": 1.146
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.03%",
- "Error & Exception Exposure": "98.16%",
- "Tech Debt Exposure": "48.14%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "41.48%",
+ "Error & Exception Exposure": "99.31%",
+ "Tech Debt Exposure": "34.65%",
+ "Testing Exposure": "2.38%",
"API Exposure": "2.59%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -561050,12 +561050,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.949
+ "Raw Cognitive Density": 0.943
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.92%",
- "Error & Exception Exposure": "94.76%",
- "Tech Debt Exposure": "32.87%",
+ "Cognitive Load Exposure": "68.36%",
+ "Error & Exception Exposure": "97.67%",
+ "Tech Debt Exposure": "29.39%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -561064,7 +561064,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.87%",
+ "Documentation Exposure": "13.71%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -561278,13 +561278,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.23
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.61%",
- "Error & Exception Exposure": "99.72%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "42.15%",
+ "Error & Exception Exposure": "99.93%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.42%",
"API Exposure": "3.07%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -561292,7 +561292,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.81%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -561476,11 +561476,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.046
+ "Raw Cognitive Density": 0.991
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.59%",
- "Error & Exception Exposure": "91.46%",
+ "Cognitive Load Exposure": "72.37%",
+ "Error & Exception Exposure": "93.56%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -561633,16 +561633,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.62
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "37.29%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -561790,13 +561790,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.307
+ "Raw Cognitive Density": 1.273
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.13%",
- "Error & Exception Exposure": "99.71%",
- "Tech Debt Exposure": "91.13%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "44.5%",
+ "Error & Exception Exposure": "99.93%",
+ "Tech Debt Exposure": "81.42%",
+ "Testing Exposure": "2.35%",
"API Exposure": "2.69%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -561978,13 +561978,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.17
+ "Raw Cognitive Density": 1.11
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.29%",
- "Error & Exception Exposure": "94.75%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "80.85%",
+ "Error & Exception Exposure": "96.59%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -562146,11 +562146,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.97
+ "Raw Cognitive Density": 0.91
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.68%",
- "Error & Exception Exposure": "96.37%",
+ "Cognitive Load Exposure": "65.48%",
+ "Error & Exception Exposure": "97.93%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -562303,21 +562303,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.561
+ "Raw Cognitive Density": 0.549
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.97%",
- "Error & Exception Exposure": "76.91%",
- "Tech Debt Exposure": "43.13%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "30.95%",
+ "Error & Exception Exposure": "81.34%",
+ "Tech Debt Exposure": "32.71%",
+ "Testing Exposure": "2.34%",
"API Exposure": "4.74%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.96%",
+ "State Flux Exposure": "99.95%",
"Commented Logic Exposure": "6.06%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.05%",
+ "Documentation Exposure": "12.5%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -562481,11 +562481,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.12
+ "Raw Cognitive Density": 1.065
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.48%",
- "Error & Exception Exposure": "98.76%",
+ "Cognitive Load Exposure": "77.89%",
+ "Error & Exception Exposure": "99.53%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "3.02%",
@@ -562495,7 +562495,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.66%",
+ "Documentation Exposure": "12.51%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -562614,9 +562614,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "76.42%",
- "Error & Exception Exposure": "75.67%",
- "Tech Debt Exposure": "18.83%",
+ "Cognitive Load Exposure": "75.13%",
+ "Error & Exception Exposure": "77.95%",
+ "Tech Debt Exposure": "17.72%",
"Testing Exposure": "64.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "40.0%",
@@ -562625,7 +562625,7 @@
"Specification Exposure": "80.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "3.47%",
+ "Documentation Exposure": "2.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -562662,11 +562662,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.843
+ "Raw Cognitive Density": 3.838
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.3%",
- "Error & Exception Exposure": "95.32%",
+ "Cognitive Load Exposure": "97.17%",
+ "Error & Exception Exposure": "98.06%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -563093,10 +563093,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.98%",
+ "Cognitive Load Exposure": "11.37%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -563254,12 +563254,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.369
+ "Raw Cognitive Density": 4.362
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.42%",
- "Error & Exception Exposure": "93.21%",
- "Tech Debt Exposure": "73.03%",
+ "Cognitive Load Exposure": "97.36%",
+ "Error & Exception Exposure": "96.46%",
+ "Tech Debt Exposure": "70.35%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "100.0%",
@@ -563781,11 +563781,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.124
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.56%",
- "Error & Exception Exposure": "98.07%",
+ "Cognitive Load Exposure": "79.51%",
+ "Error & Exception Exposure": "99.43%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -563795,7 +563795,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.36%",
+ "Documentation Exposure": "14.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -564033,12 +564033,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.434
+ "Raw Cognitive Density": 1.424
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.85%",
- "Error & Exception Exposure": "91.74%",
- "Tech Debt Exposure": "21.11%",
+ "Cognitive Load Exposure": "90.26%",
+ "Error & Exception Exposure": "95.8%",
+ "Tech Debt Exposure": "18.24%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -564395,18 +564395,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "24.11%",
- "Error & Exception Exposure": "64.03%",
- "Tech Debt Exposure": "27.61%",
+ "Cognitive Load Exposure": "22.5%",
+ "Error & Exception Exposure": "69.44%",
+ "Tech Debt Exposure": "26.75%",
"Testing Exposure": "30.26%",
"API Exposure": "5.33%",
- "Concurrency Exposure": "12.44%",
- "State Flux Exposure": "80.86%",
+ "Concurrency Exposure": "11.49%",
+ "State Flux Exposure": "80.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "7.14%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.65%",
+ "Documentation Exposure": "25.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -564447,7 +564447,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "13.12%",
- "Error & Exception Exposure": "49.91%",
+ "Error & Exception Exposure": "54.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.61%",
"API Exposure": "6.68%",
@@ -564457,7 +564457,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "65.01%",
+ "Documentation Exposure": "52.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -564710,9 +564710,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "14.02%",
- "Error & Exception Exposure": "60.17%",
+ "Error & Exception Exposure": "63.98%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.68%",
+ "Testing Exposure": "2.7%",
"API Exposure": "4.81%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "83.77%",
@@ -564720,7 +564720,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.41%",
+ "Documentation Exposure": "45.19%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -564961,7 +564961,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "11.74%",
- "Error & Exception Exposure": "55.2%",
+ "Error & Exception Exposure": "59.17%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "6.24%",
@@ -564971,7 +564971,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.93%",
+ "Documentation Exposure": "15.78%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -565193,7 +565193,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "6.11%",
- "Error & Exception Exposure": "59.74%",
+ "Error & Exception Exposure": "64.87%",
"Tech Debt Exposure": "92.41%",
"Testing Exposure": "2.49%",
"API Exposure": "3.1%",
@@ -565203,7 +565203,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.01%",
+ "Documentation Exposure": "12.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -565435,10 +565435,10 @@
"Raw Cognitive Density": 0.974
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.23%",
- "Error & Exception Exposure": "78.95%",
+ "Cognitive Load Exposure": "35.5%",
+ "Error & Exception Exposure": "88.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.49%",
"API Exposure": "6.74%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -565446,7 +565446,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.23%",
+ "Documentation Exposure": "24.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -565659,9 +565659,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "16.81%",
- "Error & Exception Exposure": "58.78%",
+ "Error & Exception Exposure": "63.38%",
"Tech Debt Exposure": "62.25%",
- "Testing Exposure": "2.86%",
+ "Testing Exposure": "2.88%",
"API Exposure": "4.66%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "92.55%",
@@ -565840,9 +565840,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "11.43%",
- "Error & Exception Exposure": "62.75%",
+ "Error & Exception Exposure": "68.54%",
"Tech Debt Exposure": "99.28%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.54%",
"API Exposure": "2.67%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "98.53%",
@@ -565850,7 +565850,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "64.02%",
+ "Documentation Exposure": "56.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -566107,21 +566107,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.707
+ "Raw Cognitive Density": 0.697
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.23%",
- "Error & Exception Exposure": "58.37%",
+ "Cognitive Load Exposure": "27.66%",
+ "Error & Exception Exposure": "63.41%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.14%",
- "Concurrency Exposure": "75.28%",
- "State Flux Exposure": "81.26%",
+ "Concurrency Exposure": "70.55%",
+ "State Flux Exposure": "78.36%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.66%",
+ "Documentation Exposure": "13.63%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -566372,21 +566372,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.73
+ "Raw Cognitive Density": 0.725
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.75%",
- "Error & Exception Exposure": "62.4%",
+ "Cognitive Load Exposure": "37.25%",
+ "Error & Exception Exposure": "71.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "6.67%",
- "Concurrency Exposure": "22.78%",
- "State Flux Exposure": "59.02%",
+ "Concurrency Exposure": "18.83%",
+ "State Flux Exposure": "54.61%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.86%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -566746,13 +566746,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.101
+ "Raw Cognitive Density": 1.048
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.14%",
- "Error & Exception Exposure": "91.42%",
+ "Cognitive Load Exposure": "38.36%",
+ "Error & Exception Exposure": "94.54%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.82%",
+ "Testing Exposure": "2.74%",
"API Exposure": "5.51%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -566760,7 +566760,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.58%",
+ "Documentation Exposure": "29.88%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -566957,21 +566957,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.661
+ "Raw Cognitive Density": 0.653
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.34%",
- "Error & Exception Exposure": "81.33%",
- "Tech Debt Exposure": "17.05%",
+ "Cognitive Load Exposure": "20.19%",
+ "Error & Exception Exposure": "91.8%",
+ "Tech Debt Exposure": "14.26%",
"Testing Exposure": "80.0%",
"API Exposure": "8.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.27%",
+ "State Flux Exposure": "99.12%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "34.48%",
+ "Documentation Exposure": "14.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -567365,8 +567365,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.35%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.34%",
"API Exposure": "4.95%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -567374,7 +567374,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.29%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -567540,21 +567540,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.27
+ "Raw Cognitive Density": 1.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.18%",
- "Error & Exception Exposure": "84.72%",
- "Tech Debt Exposure": "17.3%",
+ "Cognitive Load Exposure": "44.25%",
+ "Error & Exception Exposure": "92.62%",
+ "Tech Debt Exposure": "13.95%",
"Testing Exposure": "80.0%",
"API Exposure": "4.26%",
- "Concurrency Exposure": "76.11%",
+ "Concurrency Exposure": "71.48%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.93%",
+ "Documentation Exposure": "12.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -567875,13 +567875,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.108
+ "Raw Cognitive Density": 1.052
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.38%",
- "Error & Exception Exposure": "92.72%",
+ "Cognitive Load Exposure": "38.49%",
+ "Error & Exception Exposure": "95.98%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.85%",
+ "Testing Exposure": "2.77%",
"API Exposure": "5.66%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -567889,7 +567889,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "86.72%",
+ "Documentation Exposure": "45.08%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -572287,18 +572287,18 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "54.37%",
- "Error & Exception Exposure": "50.55%",
- "Tech Debt Exposure": "22.58%",
- "Testing Exposure": "50.68%",
+ "Cognitive Load Exposure": "54.84%",
+ "Error & Exception Exposure": "55.0%",
+ "Tech Debt Exposure": "25.9%",
+ "Testing Exposure": "50.69%",
"API Exposure": "2.89%",
- "Concurrency Exposure": "2.47%",
- "State Flux Exposure": "84.18%",
+ "Concurrency Exposure": "2.63%",
+ "State Flux Exposure": "84.35%",
"Commented Logic Exposure": "3.07%",
"Specification Exposure": "87.5%",
"Instability Exposure": "43.75%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.88%",
+ "Documentation Exposure": "24.45%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -572492,16 +572492,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.895
+ "Raw Cognitive Density": 0.897
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.09%",
- "Error & Exception Exposure": "45.72%",
- "Tech Debt Exposure": "22.06%",
+ "Cognitive Load Exposure": "64.33%",
+ "Error & Exception Exposure": "48.35%",
+ "Tech Debt Exposure": "22.89%",
"Testing Exposure": "80.0%",
"API Exposure": "2.04%",
- "Concurrency Exposure": "19.72%",
- "State Flux Exposure": "96.1%",
+ "Concurrency Exposure": "21.02%",
+ "State Flux Exposure": "96.32%",
"Commented Logic Exposure": "5.75%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -572847,12 +572847,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.984
+ "Raw Cognitive Density": 1.0
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "71.86%",
- "Error & Exception Exposure": "79.65%",
- "Tech Debt Exposure": "46.1%",
+ "Cognitive Load Exposure": "73.11%",
+ "Error & Exception Exposure": "88.08%",
+ "Tech Debt Exposure": "55.83%",
"Testing Exposure": "80.0%",
"API Exposure": "3.02%",
"Concurrency Exposure": "0.0%",
@@ -572861,7 +572861,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "67.72%",
+ "Documentation Exposure": "71.27%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -573026,11 +573026,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.333
+ "Raw Cognitive Density": 1.338
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.15%",
- "Error & Exception Exposure": "64.89%",
+ "Cognitive Load Exposure": "91.31%",
+ "Error & Exception Exposure": "73.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.22%",
@@ -573040,7 +573040,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.95%",
+ "Documentation Exposure": "28.41%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -573479,16 +573479,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.632
+ "Raw Cognitive Density": 0.636
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.45%",
- "Error & Exception Exposure": "36.52%",
- "Tech Debt Exposure": "32.71%",
+ "Cognitive Load Exposure": "38.83%",
+ "Error & Exception Exposure": "37.62%",
+ "Tech Debt Exposure": "36.05%",
"Testing Exposure": "80.0%",
"API Exposure": "2.31%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "94.15%",
+ "State Flux Exposure": "94.48%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -573744,21 +573744,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.489
+ "Raw Cognitive Density": 0.494
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.07%",
- "Error & Exception Exposure": "32.2%",
- "Tech Debt Exposure": "26.44%",
- "Testing Exposure": "2.78%",
+ "Cognitive Load Exposure": "26.4%",
+ "Error & Exception Exposure": "32.15%",
+ "Tech Debt Exposure": "28.54%",
+ "Testing Exposure": "2.82%",
"API Exposure": "2.32%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "83.23%",
+ "State Flux Exposure": "84.05%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.03%",
+ "Documentation Exposure": "34.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -574045,11 +574045,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.909
+ "Raw Cognitive Density": 0.911
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.41%",
- "Error & Exception Exposure": "63.35%",
+ "Cognitive Load Exposure": "65.57%",
+ "Error & Exception Exposure": "70.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.04%",
@@ -574533,13 +574533,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.066
+ "Raw Cognitive Density": 1.083
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.96%",
- "Error & Exception Exposure": "82.05%",
- "Tech Debt Exposure": "53.28%",
- "Testing Exposure": "2.64%",
+ "Cognitive Load Exposure": "79.14%",
+ "Error & Exception Exposure": "89.86%",
+ "Tech Debt Exposure": "63.88%",
+ "Testing Exposure": "2.69%",
"API Exposure": "3.14%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -574547,7 +574547,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.6%",
+ "Documentation Exposure": "25.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -574739,7 +574739,7 @@
"Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -577167,7 +577167,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "51.98%",
- "Error & Exception Exposure": "77.99%",
+ "Error & Exception Exposure": "82.8%",
"Tech Debt Exposure": "21.37%",
"Testing Exposure": "35.66%",
"API Exposure": "3.37%",
@@ -577177,7 +577177,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.42%",
+ "Documentation Exposure": "25.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -577218,7 +577218,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "74.21%",
- "Error & Exception Exposure": "87.33%",
+ "Error & Exception Exposure": "93.44%",
"Tech Debt Exposure": "58.73%",
"Testing Exposure": "80.0%",
"API Exposure": "0.65%",
@@ -577228,7 +577228,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.59%",
+ "Documentation Exposure": "13.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -577711,7 +577711,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "58.55%",
+ "Error & Exception Exposure": "62.18%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -577871,9 +577871,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "61.59%",
- "Error & Exception Exposure": "73.66%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "62.25%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.9%",
@@ -578084,7 +578084,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "78.76%",
- "Error & Exception Exposure": "96.34%",
+ "Error & Exception Exposure": "98.79%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.81%",
@@ -578094,7 +578094,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.01%",
+ "Documentation Exposure": "31.38%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -578359,7 +578359,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "60.62%",
- "Error & Exception Exposure": "84.61%",
+ "Error & Exception Exposure": "90.98%",
"Tech Debt Exposure": "17.95%",
"Testing Exposure": "2.44%",
"API Exposure": "5.79%",
@@ -578369,7 +578369,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.92%",
+ "Documentation Exposure": "31.66%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -578567,7 +578567,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "74.05%",
- "Error & Exception Exposure": "88.31%",
+ "Error & Exception Exposure": "93.94%",
"Tech Debt Exposure": "10.66%",
"Testing Exposure": "80.0%",
"API Exposure": "2.14%",
@@ -578577,7 +578577,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.78%",
+ "Documentation Exposure": "19.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -578865,7 +578865,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "14.64%",
- "Error & Exception Exposure": "57.13%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
"API Exposure": "7.18%",
@@ -579045,18 +579045,18 @@
"Static: Literature & Documentation": "11.1%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "29.73%",
- "Error & Exception Exposure": "36.82%",
+ "Cognitive Load Exposure": "28.88%",
+ "Error & Exception Exposure": "35.08%",
"Tech Debt Exposure": "37.32%",
- "Testing Exposure": "36.63%",
+ "Testing Exposure": "28.06%",
"API Exposure": "1.12%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "40.62%",
+ "State Flux Exposure": "40.35%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "77.78%",
"Instability Exposure": "44.44%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.2%",
+ "Documentation Exposure": "6.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -579250,16 +579250,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.91
+ "Raw Cognitive Density": 0.885
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.5%",
- "Error & Exception Exposure": "64.28%",
+ "Cognitive Load Exposure": "63.15%",
+ "Error & Exception Exposure": "62.01%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "72.65%",
+ "State Flux Exposure": "70.2%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -579450,13 +579450,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.447
+ "Raw Cognitive Density": 2.439
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "92.33%",
- "Error & Exception Exposure": "44.67%",
+ "Cognitive Load Exposure": "87.29%",
+ "Error & Exception Exposure": "23.56%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.87%",
"API Exposure": "2.01%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -579464,7 +579464,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.79%",
+ "Documentation Exposure": "13.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -579893,7 +579893,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "60.52%",
- "Error & Exception Exposure": "63.55%",
+ "Error & Exception Exposure": "68.72%",
"Tech Debt Exposure": "99.99%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -580565,7 +580565,7 @@
"Cognitive Load Exposure": "4.62%",
"Error & Exception Exposure": "58.46%",
"Tech Debt Exposure": "97.33%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -580859,7 +580859,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "26.33%",
- "Error & Exception Exposure": "44.48%",
+ "Error & Exception Exposure": "47.04%",
"Tech Debt Exposure": "76.35%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -582448,7 +582448,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "33.12%",
+ "Documentation Exposure": "30.19%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -582743,10 +582743,10 @@
"Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.16%",
+ "Cognitive Load Exposure": "6.9%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "62.25%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -582914,7 +582914,7 @@
"Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -583054,18 +583054,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "73.81%",
- "Error & Exception Exposure": "73.86%",
- "Tech Debt Exposure": "17.39%",
- "Testing Exposure": "38.25%",
+ "Cognitive Load Exposure": "72.6%",
+ "Error & Exception Exposure": "74.07%",
+ "Tech Debt Exposure": "15.61%",
+ "Testing Exposure": "38.24%",
"API Exposure": "0.86%",
- "Concurrency Exposure": "6.47%",
- "State Flux Exposure": "76.44%",
+ "Concurrency Exposure": "6.3%",
+ "State Flux Exposure": "76.0%",
"Commented Logic Exposure": "0.94%",
"Specification Exposure": "61.54%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "3.55%",
+ "Documentation Exposure": "3.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -583102,12 +583102,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.78
+ "Raw Cognitive Density": 1.775
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.4%",
- "Error & Exception Exposure": "89.09%",
- "Tech Debt Exposure": "16.7%",
+ "Cognitive Load Exposure": "98.37%",
+ "Error & Exception Exposure": "93.44%",
+ "Tech Debt Exposure": "14.87%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -583630,16 +583630,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.96
+ "Raw Cognitive Density": 1.92
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.22%",
- "Error & Exception Exposure": "77.46%",
+ "Cognitive Load Exposure": "99.08%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -583808,16 +583808,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
+ "Cognitive Load Exposure": "18.54%",
"Error & Exception Exposure": "73.66%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.48%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -583986,12 +583986,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.327
+ "Raw Cognitive Density": 3.321
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "95.49%",
- "Tech Debt Exposure": "48.05%",
+ "Error & Exception Exposure": "97.84%",
+ "Tech Debt Exposure": "43.91%",
"Testing Exposure": "80.0%",
"API Exposure": "0.55%",
"Concurrency Exposure": "0.0%",
@@ -584000,7 +584000,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.04%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -584356,11 +584356,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.396
+ "Raw Cognitive Density": 1.381
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "88.91%",
- "Error & Exception Exposure": "96.45%",
+ "Cognitive Load Exposure": "85.83%",
+ "Error & Exception Exposure": "98.14%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.05%",
@@ -584370,7 +584370,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.34%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -584654,11 +584654,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.943
+ "Raw Cognitive Density": 1.92
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.16%",
- "Error & Exception Exposure": "99.93%",
+ "Cognitive Load Exposure": "99.08%",
+ "Error & Exception Exposure": "99.99%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -584902,12 +584902,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.825
+ "Raw Cognitive Density": 1.819
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.66%",
- "Error & Exception Exposure": "98.21%",
- "Tech Debt Exposure": "17.93%",
+ "Cognitive Load Exposure": "98.63%",
+ "Error & Exception Exposure": "99.34%",
+ "Tech Debt Exposure": "15.82%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -584916,7 +584916,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.78%",
+ "Documentation Exposure": "15.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -585182,13 +585182,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.089
+ "Raw Cognitive Density": 1.054
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.53%",
- "Error & Exception Exposure": "94.91%",
+ "Cognitive Load Exposure": "77.11%",
+ "Error & Exception Exposure": "96.75%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -585400,16 +585400,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.538
+ "Raw Cognitive Density": 0.513
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.02%",
- "Error & Exception Exposure": "55.71%",
- "Tech Debt Exposure": "43.62%",
+ "Cognitive Load Exposure": "27.91%",
+ "Error & Exception Exposure": "48.47%",
+ "Tech Debt Exposure": "28.96%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "36.32%",
+ "State Flux Exposure": "33.59%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -585578,16 +585578,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.78
+ "Raw Cognitive Density": 1.74
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.4%",
- "Error & Exception Exposure": "82.94%",
+ "Cognitive Load Exposure": "98.13%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.59%",
+ "Testing Exposure": "2.57%",
"API Exposure": "6.55%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -585778,13 +585778,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "9.28%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -585956,15 +585956,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.594
+ "Raw Cognitive Density": 4.578
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "96.27%",
+ "Error & Exception Exposure": "98.07%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "84.09%",
+ "Concurrency Exposure": "81.84%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -586204,13 +586204,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.6
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.43%",
+ "Cognitive Load Exposure": "31.86%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -586358,18 +586358,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "24.61%",
- "Error & Exception Exposure": "38.44%",
- "Tech Debt Exposure": "10.68%",
+ "Cognitive Load Exposure": "24.33%",
+ "Error & Exception Exposure": "39.21%",
+ "Tech Debt Exposure": "10.59%",
"Testing Exposure": "41.18%",
"API Exposure": "4.42%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "34.92%",
+ "State Flux Exposure": "34.57%",
"Commented Logic Exposure": "2.9%",
"Specification Exposure": "75.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.72%",
+ "Documentation Exposure": "27.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -586409,13 +586409,13 @@
"Raw Cognitive Density": 0.162
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.98%",
- "Error & Exception Exposure": "55.78%",
- "Tech Debt Exposure": "32.97%",
+ "Cognitive Load Exposure": "7.48%",
+ "Error & Exception Exposure": "57.42%",
+ "Tech Debt Exposure": "32.61%",
"Testing Exposure": "80.0%",
"API Exposure": "5.51%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "39.7%",
+ "State Flux Exposure": "38.27%",
"Commented Logic Exposure": "6.5%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -587103,10 +587103,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.13
+ "Raw Cognitive Density": 0.111
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.72%",
+ "Cognitive Load Exposure": "7.21%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.43%",
@@ -587294,8 +587294,8 @@
"Raw Cognitive Density": 1.156
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.76%",
- "Error & Exception Exposure": "97.99%",
+ "Cognitive Load Exposure": "82.63%",
+ "Error & Exception Exposure": "99.44%",
"Tech Debt Exposure": "9.75%",
"Testing Exposure": "80.0%",
"API Exposure": "12.15%",
@@ -587305,7 +587305,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.96%",
+ "Documentation Exposure": "98.88%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -587708,18 +587708,18 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "28.3%",
- "Error & Exception Exposure": "51.77%",
- "Tech Debt Exposure": "11.31%",
+ "Cognitive Load Exposure": "28.32%",
+ "Error & Exception Exposure": "51.83%",
+ "Tech Debt Exposure": "11.43%",
"Testing Exposure": "48.46%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "59.05%",
+ "State Flux Exposure": "59.1%",
"Commented Logic Exposure": "2.27%",
"Specification Exposure": "60.0%",
"Instability Exposure": "40.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.95%",
+ "Documentation Exposure": "22.99%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -588071,21 +588071,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.505
+ "Raw Cognitive Density": 0.506
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.66%",
- "Error & Exception Exposure": "62.28%",
- "Tech Debt Exposure": "32.11%",
+ "Cognitive Load Exposure": "13.69%",
+ "Error & Exception Exposure": "62.54%",
+ "Tech Debt Exposure": "32.57%",
"Testing Exposure": "80.0%",
"API Exposure": "14.62%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "95.25%",
+ "State Flux Exposure": "95.52%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "88.53%",
+ "Documentation Exposure": "88.64%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -590111,8 +590111,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "57.68%",
- "Error & Exception Exposure": "99.38%",
- "Tech Debt Exposure": "15.0%",
+ "Error & Exception Exposure": "99.4%",
+ "Tech Debt Exposure": "15.05%",
"Testing Exposure": "80.0%",
"API Exposure": "1.13%",
"Concurrency Exposure": "0.0%",
@@ -591844,9 +591844,9 @@
"Raw Cognitive Density": 1.029
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.19%",
- "Error & Exception Exposure": "97.2%",
- "Tech Debt Exposure": "9.43%",
+ "Cognitive Load Exposure": "70.2%",
+ "Error & Exception Exposure": "97.23%",
+ "Tech Debt Exposure": "9.51%",
"Testing Exposure": "80.0%",
"API Exposure": "1.92%",
"Concurrency Exposure": "0.0%",
@@ -591855,7 +591855,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.32%",
+ "Documentation Exposure": "14.38%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -592616,12 +592616,12 @@
"Static: Literature & Documentation": "33.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "54.18%",
- "Error & Exception Exposure": "64.96%",
- "Tech Debt Exposure": "54.25%",
+ "Cognitive Load Exposure": "53.96%",
+ "Error & Exception Exposure": "66.02%",
+ "Tech Debt Exposure": "52.83%",
"Testing Exposure": "53.33%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "7.69%",
+ "Concurrency Exposure": "6.37%",
"State Flux Exposure": "66.67%",
"Commented Logic Exposure": "4.19%",
"Specification Exposure": "66.67%",
@@ -592824,12 +592824,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.932
+ "Raw Cognitive Density": 0.925
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.48%",
- "Error & Exception Exposure": "97.14%",
- "Tech Debt Exposure": "70.62%",
+ "Cognitive Load Exposure": "66.85%",
+ "Error & Exception Exposure": "98.85%",
+ "Tech Debt Exposure": "66.8%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -593352,15 +593352,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.49
+ "Raw Cognitive Density": 1.487
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.07%",
- "Error & Exception Exposure": "97.73%",
- "Tech Debt Exposure": "92.15%",
+ "Cognitive Load Exposure": "95.02%",
+ "Error & Exception Exposure": "99.22%",
+ "Tech Debt Exposure": "91.68%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "23.08%",
+ "Concurrency Exposure": "19.1%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "7.21%",
"Specification Exposure": "100.0%",
@@ -594580,18 +594580,18 @@
"Static: Literature & Documentation": "5.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "9.39%",
- "Error & Exception Exposure": "12.03%",
- "Tech Debt Exposure": "11.97%",
- "Testing Exposure": "47.23%",
+ "Cognitive Load Exposure": "9.13%",
+ "Error & Exception Exposure": "12.3%",
+ "Tech Debt Exposure": "11.33%",
+ "Testing Exposure": "47.22%",
"API Exposure": "3.33%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "6.49%",
+ "State Flux Exposure": "6.28%",
"Commented Logic Exposure": "0.63%",
"Specification Exposure": "89.47%",
"Instability Exposure": "47.37%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.25%",
+ "Documentation Exposure": "15.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -594628,21 +594628,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.205
+ "Raw Cognitive Density": 0.202
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.16%",
- "Error & Exception Exposure": "57.32%",
+ "Cognitive Load Exposure": "10.06%",
+ "Error & Exception Exposure": "58.92%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.27%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.68%",
+ "State Flux Exposure": "18.75%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.78%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -595016,21 +595016,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.116
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.43%",
- "Error & Exception Exposure": "54.72%",
- "Tech Debt Exposure": "89.39%",
+ "Cognitive Load Exposure": "7.32%",
+ "Error & Exception Exposure": "54.97%",
+ "Tech Debt Exposure": "87.89%",
"Testing Exposure": "80.0%",
"API Exposure": "6.62%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "16.49%",
+ "State Flux Exposure": "15.68%",
"Commented Logic Exposure": "6.03%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.56%",
+ "Documentation Exposure": "13.83%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -595324,21 +595324,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.345
+ "Raw Cognitive Density": 0.344
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.55%",
- "Error & Exception Exposure": "59.8%",
- "Tech Debt Exposure": "9.82%",
+ "Cognitive Load Exposure": "16.48%",
+ "Error & Exception Exposure": "62.59%",
+ "Tech Debt Exposure": "9.55%",
"Testing Exposure": "80.0%",
"API Exposure": "2.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "67.13%",
+ "State Flux Exposure": "65.79%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.61%",
+ "Documentation Exposure": "13.18%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -596172,10 +596172,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
@@ -596186,7 +596186,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.23%",
+ "Documentation Exposure": "27.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -596340,13 +596340,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.196
+ "Raw Cognitive Density": 0.179
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.85%",
+ "Cognitive Load Exposure": "9.23%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "6.03%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -596354,7 +596354,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.86%",
+ "Documentation Exposure": "45.18%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -596558,13 +596558,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "3.22%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -596572,7 +596572,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.91%",
+ "Documentation Exposure": "28.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -596736,10 +596736,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.103
+ "Raw Cognitive Density": 0.09
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.98%",
+ "Cognitive Load Exposure": "6.65%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.45%",
@@ -596750,7 +596750,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.11%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -596944,12 +596944,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.329
+ "Raw Cognitive Density": 0.322
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.65%",
+ "Cognitive Load Exposure": "15.3%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "27.09%",
+ "Tech Debt Exposure": "23.91%",
"Testing Exposure": "80.0%",
"API Exposure": "2.51%",
"Concurrency Exposure": "0.0%",
@@ -596958,7 +596958,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.01%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -597292,10 +597292,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.247
+ "Raw Cognitive Density": 0.236
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.8%",
+ "Cognitive Load Exposure": "11.34%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.6%",
@@ -597306,7 +597306,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.73%",
+ "Documentation Exposure": "22.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -597560,12 +597560,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.278
+ "Raw Cognitive Density": 0.276
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.17%",
+ "Cognitive Load Exposure": "13.05%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "33.27%",
+ "Tech Debt Exposure": "31.19%",
"Testing Exposure": "80.0%",
"API Exposure": "4.91%",
"Concurrency Exposure": "0.0%",
@@ -598298,10 +598298,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.245
+ "Raw Cognitive Density": 0.236
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.72%",
+ "Cognitive Load Exposure": "11.34%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -598312,7 +598312,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.75%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -598616,10 +598616,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.201
+ "Raw Cognitive Density": 0.197
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.0%",
+ "Cognitive Load Exposure": "9.86%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -599044,10 +599044,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.216
+ "Raw Cognitive Density": 0.205
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.56%",
+ "Cognitive Load Exposure": "10.14%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.6%",
@@ -599058,7 +599058,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.64%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -599272,21 +599272,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.293
+ "Raw Cognitive Density": 0.287
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.87%",
- "Error & Exception Exposure": "56.82%",
- "Tech Debt Exposure": "51.12%",
+ "Cognitive Load Exposure": "13.58%",
+ "Error & Exception Exposure": "57.17%",
+ "Tech Debt Exposure": "47.38%",
"Testing Exposure": "80.0%",
"API Exposure": "2.44%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "20.08%",
+ "State Flux Exposure": "19.13%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.0%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -599680,10 +599680,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.138
+ "Raw Cognitive Density": 0.13
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.95%",
+ "Cognitive Load Exposure": "7.74%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -599694,7 +599694,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.24%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -599918,12 +599918,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.142
+ "Raw Cognitive Density": 0.138
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.09%",
+ "Cognitive Load Exposure": "7.97%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "16.65%",
+ "Tech Debt Exposure": "15.32%",
"Testing Exposure": "80.0%",
"API Exposure": "2.25%",
"Concurrency Exposure": "0.0%",
@@ -600443,10 +600443,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.175
+ "Raw Cognitive Density": 0.172
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.12%",
+ "Cognitive Load Exposure": "9.01%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -600457,7 +600457,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.6%",
+ "Documentation Exposure": "22.15%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -605811,18 +605811,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "51.01%",
- "Error & Exception Exposure": "88.83%",
- "Tech Debt Exposure": "3.99%",
- "Testing Exposure": "10.98%",
+ "Cognitive Load Exposure": "49.96%",
+ "Error & Exception Exposure": "90.62%",
+ "Tech Debt Exposure": "3.44%",
+ "Testing Exposure": "10.97%",
"API Exposure": "3.97%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.4%",
+ "State Flux Exposure": "92.61%",
"Commented Logic Exposure": "8.02%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.37%",
+ "Documentation Exposure": "14.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -605859,21 +605859,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.613
+ "Raw Cognitive Density": 0.565
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.62%",
- "Error & Exception Exposure": "76.59%",
+ "Cognitive Load Exposure": "32.26%",
+ "Error & Exception Exposure": "73.58%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "7.58%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "85.46%",
+ "State Flux Exposure": "83.08%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.89%",
+ "Documentation Exposure": "59.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -606061,12 +606061,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "88.08%",
+ "Error & Exception Exposure": "90.22%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.85%",
+ "State Flux Exposure": "98.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -606228,16 +606228,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.168
+ "Raw Cognitive Density": 0.143
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.89%",
- "Error & Exception Exposure": "73.43%",
+ "Cognitive Load Exposure": "8.1%",
+ "Error & Exception Exposure": "74.63%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "56.29%",
+ "State Flux Exposure": "51.82%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -606399,13 +606399,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.028
+ "Raw Cognitive Density": 1.024
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.25%",
- "Error & Exception Exposure": "95.55%",
- "Tech Debt Exposure": "9.22%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "74.98%",
+ "Error & Exception Exposure": "98.1%",
+ "Tech Debt Exposure": "8.49%",
+ "Testing Exposure": "2.32%",
"API Exposure": "1.3%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -606714,12 +606714,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.081
+ "Raw Cognitive Density": 1.071
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.0%",
- "Error & Exception Exposure": "97.6%",
- "Tech Debt Exposure": "14.56%",
+ "Cognitive Load Exposure": "78.34%",
+ "Error & Exception Exposure": "99.13%",
+ "Tech Debt Exposure": "11.78%",
"Testing Exposure": "2.32%",
"API Exposure": "1.15%",
"Concurrency Exposure": "0.0%",
@@ -606916,13 +606916,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.022
+ "Raw Cognitive Density": 1.016
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.79%",
- "Error & Exception Exposure": "95.42%",
- "Tech Debt Exposure": "12.16%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "74.36%",
+ "Error & Exception Exposure": "98.08%",
+ "Tech Debt Exposure": "10.72%",
+ "Testing Exposure": "2.35%",
"API Exposure": "7.24%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -606930,7 +606930,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.29%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -607337,13 +607337,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.046
+ "Raw Cognitive Density": 1.03
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.29%",
- "Error & Exception Exposure": "93.6%",
+ "Cognitive Load Exposure": "37.72%",
+ "Error & Exception Exposure": "96.37%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "8.06%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -607639,11 +607639,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.912
+ "Raw Cognitive Density": 0.904
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.68%",
- "Error & Exception Exposure": "93.13%",
+ "Cognitive Load Exposure": "64.9%",
+ "Error & Exception Exposure": "96.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.8%",
@@ -607653,7 +607653,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.18%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -608135,13 +608135,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.105
+ "Raw Cognitive Density": 1.081
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.52%",
- "Error & Exception Exposure": "86.12%",
+ "Cognitive Load Exposure": "78.96%",
+ "Error & Exception Exposure": "88.93%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "5.62%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -608149,7 +608149,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.2%",
+ "Documentation Exposure": "13.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -608322,10 +608322,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "41.41%",
- "Error & Exception Exposure": "78.16%",
+ "Cognitive Load Exposure": "40.48%",
+ "Error & Exception Exposure": "85.08%",
"Tech Debt Exposure": "69.42%",
- "Testing Exposure": "35.36%",
+ "Testing Exposure": "35.37%",
"API Exposure": "3.67%",
"Concurrency Exposure": "14.28%",
"State Flux Exposure": "99.99%",
@@ -608333,7 +608333,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.62%",
+ "Documentation Exposure": "13.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -608373,8 +608373,8 @@
"Raw Cognitive Density": 1.024
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.74%",
- "Error & Exception Exposure": "66.61%",
+ "Cognitive Load Exposure": "37.47%",
+ "Error & Exception Exposure": "74.99%",
"Tech Debt Exposure": "62.5%",
"Testing Exposure": "0.0%",
"API Exposure": "3.79%",
@@ -608690,8 +608690,8 @@
"Raw Cognitive Density": 1.03
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.9%",
- "Error & Exception Exposure": "77.17%",
+ "Cognitive Load Exposure": "61.87%",
+ "Error & Exception Exposure": "84.89%",
"Tech Debt Exposure": "29.23%",
"Testing Exposure": "80.0%",
"API Exposure": "1.69%",
@@ -608701,7 +608701,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.77%",
+ "Documentation Exposure": "14.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -609071,7 +609071,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "38.32%",
- "Error & Exception Exposure": "81.86%",
+ "Error & Exception Exposure": "88.92%",
"Tech Debt Exposure": "95.05%",
"Testing Exposure": "80.0%",
"API Exposure": "2.29%",
@@ -609346,7 +609346,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.9%",
- "Error & Exception Exposure": "63.48%",
+ "Error & Exception Exposure": "69.44%",
"Tech Debt Exposure": "84.82%",
"Testing Exposure": "2.45%",
"API Exposure": "8.57%",
@@ -609356,7 +609356,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.37%",
+ "Documentation Exposure": "13.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -609612,9 +609612,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "47.48%",
- "Error & Exception Exposure": "87.65%",
+ "Error & Exception Exposure": "93.7%",
"Tech Debt Exposure": "80.32%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.53%",
"API Exposure": "3.43%",
"Concurrency Exposure": "99.99%",
"State Flux Exposure": "100.0%",
@@ -609816,7 +609816,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "33.71%",
- "Error & Exception Exposure": "91.2%",
+ "Error & Exception Exposure": "96.17%",
"Tech Debt Exposure": "99.25%",
"Testing Exposure": "2.59%",
"API Exposure": "5.79%",
@@ -609826,7 +609826,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.55%",
+ "Documentation Exposure": "21.29%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -610049,8 +610049,8 @@
"Raw Cognitive Density": 1.019
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "50.82%",
- "Error & Exception Exposure": "79.17%",
+ "Cognitive Load Exposure": "46.64%",
+ "Error & Exception Exposure": "87.48%",
"Tech Debt Exposure": "34.8%",
"Testing Exposure": "80.0%",
"API Exposure": "0.1%",
@@ -610396,18 +610396,18 @@
"Static: Literature & Documentation": "18.2%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "37.3%",
- "Error & Exception Exposure": "60.46%",
- "Tech Debt Exposure": "46.65%",
- "Testing Exposure": "44.3%",
+ "Cognitive Load Exposure": "37.33%",
+ "Error & Exception Exposure": "62.42%",
+ "Tech Debt Exposure": "46.95%",
+ "Testing Exposure": "58.39%",
"API Exposure": "4.25%",
- "Concurrency Exposure": "39.59%",
- "State Flux Exposure": "47.13%",
+ "Concurrency Exposure": "40.44%",
+ "State Flux Exposure": "47.21%",
"Commented Logic Exposure": "1.55%",
"Specification Exposure": "72.73%",
"Instability Exposure": "40.91%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.68%",
+ "Documentation Exposure": "23.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -610761,12 +610761,12 @@
"Raw Cognitive Density": 0.024
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.41%",
- "Error & Exception Exposure": "61.16%",
- "Tech Debt Exposure": "8.55%",
+ "Cognitive Load Exposure": "4.28%",
+ "Error & Exception Exposure": "65.0%",
+ "Tech Debt Exposure": "8.64%",
"Testing Exposure": "2.3%",
"API Exposure": "0.51%",
- "Concurrency Exposure": "18.55%",
+ "Concurrency Exposure": "19.79%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
@@ -610929,9 +610929,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "64.44%",
- "Error & Exception Exposure": "92.96%",
- "Tech Debt Exposure": "83.45%",
- "Testing Exposure": "2.48%",
+ "Error & Exception Exposure": "95.91%",
+ "Tech Debt Exposure": "83.74%",
+ "Testing Exposure": "80.0%",
"API Exposure": "6.5%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "100.0%",
@@ -610939,7 +610939,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.07%",
+ "Documentation Exposure": "43.34%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -613667,18 +613667,18 @@
"Raw Cognitive Density": 1.317
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.2%",
- "Error & Exception Exposure": "99.0%",
- "Tech Debt Exposure": "55.71%",
+ "Cognitive Load Exposure": "87.22%",
+ "Error & Exception Exposure": "99.28%",
+ "Tech Debt Exposure": "56.0%",
"Testing Exposure": "80.0%",
"API Exposure": "7.63%",
- "Concurrency Exposure": "29.24%",
+ "Concurrency Exposure": "30.92%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "85.98%",
+ "Documentation Exposure": "86.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -616065,16 +616065,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.471
+ "Raw Cognitive Density": 0.472
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "24.46%",
- "Error & Exception Exposure": "60.45%",
- "Tech Debt Exposure": "96.8%",
+ "Cognitive Load Exposure": "24.51%",
+ "Error & Exception Exposure": "62.79%",
+ "Tech Debt Exposure": "96.86%",
"Testing Exposure": "80.0%",
"API Exposure": "3.6%",
- "Concurrency Exposure": "32.99%",
- "State Flux Exposure": "18.44%",
+ "Concurrency Exposure": "34.79%",
+ "State Flux Exposure": "19.36%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -620023,21 +620023,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.442
+ "Raw Cognitive Density": 0.444
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.88%",
- "Error & Exception Exposure": "59.7%",
- "Tech Debt Exposure": "15.14%",
+ "Cognitive Load Exposure": "16.99%",
+ "Error & Exception Exposure": "61.08%",
+ "Tech Debt Exposure": "15.87%",
"Testing Exposure": "80.0%",
"API Exposure": "3.27%",
- "Concurrency Exposure": "40.08%",
+ "Concurrency Exposure": "42.01%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "5.26%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.02%",
+ "Documentation Exposure": "14.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -620350,15 +620350,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.068
+ "Raw Cognitive Density": 1.071
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.1%",
- "Error & Exception Exposure": "98.76%",
- "Tech Debt Exposure": "12.38%",
+ "Cognitive Load Exposure": "78.29%",
+ "Error & Exception Exposure": "99.09%",
+ "Tech Debt Exposure": "13.14%",
"Testing Exposure": "80.0%",
"API Exposure": "0.27%",
- "Concurrency Exposure": "14.23%",
+ "Concurrency Exposure": "15.23%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "6.77%",
"Specification Exposure": "100.0%",
@@ -620849,12 +620849,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.598
+ "Raw Cognitive Density": 1.599
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.66%",
- "Error & Exception Exposure": "92.57%",
- "Tech Debt Exposure": "44.05%",
+ "Cognitive Load Exposure": "80.67%",
+ "Error & Exception Exposure": "94.52%",
+ "Tech Debt Exposure": "45.01%",
"Testing Exposure": "80.0%",
"API Exposure": "3.69%",
"Concurrency Exposure": "100.0%",
@@ -620863,7 +620863,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.41%",
+ "Documentation Exposure": "22.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -622021,21 +622021,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.476
+ "Raw Cognitive Density": 1.478
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.4%",
- "Error & Exception Exposure": "86.46%",
- "Tech Debt Exposure": "97.08%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "47.42%",
+ "Error & Exception Exposure": "91.22%",
+ "Tech Debt Exposure": "97.24%",
+ "Testing Exposure": "80.0%",
"API Exposure": "8.12%",
- "Concurrency Exposure": "87.95%",
+ "Concurrency Exposure": "88.77%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.29%",
+ "Documentation Exposure": "48.05%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -623191,12 +623191,12 @@
"Raw Cognitive Density": 0.335
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.78%",
- "Error & Exception Exposure": "13.95%",
+ "Cognitive Load Exposure": "6.79%",
+ "Error & Exception Exposure": "17.7%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "13.19%",
- "Concurrency Exposure": "12.41%",
+ "Concurrency Exposure": "13.31%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -630032,18 +630032,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "51.53%",
- "Error & Exception Exposure": "78.69%",
+ "Cognitive Load Exposure": "49.77%",
+ "Error & Exception Exposure": "79.55%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "21.88%",
+ "Testing Exposure": "21.86%",
"API Exposure": "0.41%",
- "Concurrency Exposure": "0.99%",
- "State Flux Exposure": "69.9%",
+ "Concurrency Exposure": "0.87%",
+ "State Flux Exposure": "69.23%",
"Commented Logic Exposure": "7.03%",
"Specification Exposure": "25.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "6.47%",
+ "Documentation Exposure": "3.66%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -630080,21 +630080,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
- "Error & Exception Exposure": "81.82%",
+ "Cognitive Load Exposure": "11.51%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.2%",
+ "Documentation Exposure": "19.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -630258,16 +630258,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "10.72%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -630436,13 +630436,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.59
+ "Raw Cognitive Density": 1.563
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.64%",
- "Error & Exception Exposure": "99.91%",
+ "Cognitive Load Exposure": "96.28%",
+ "Error & Exception Exposure": "99.99%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.77%",
+ "Testing Exposure": "2.71%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -630624,16 +630624,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.02
+ "Raw Cognitive Density": 0.98
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.65%",
- "Error & Exception Exposure": "95.47%",
+ "Cognitive Load Exposure": "71.5%",
+ "Error & Exception Exposure": "97.55%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.61%",
+ "Testing Exposure": "2.58%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -630802,13 +630802,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.0
+ "Raw Cognitive Density": 0.96
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.11%",
- "Error & Exception Exposure": "98.9%",
+ "Cognitive Load Exposure": "69.85%",
+ "Error & Exception Exposure": "99.65%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.62%",
+ "Testing Exposure": "2.59%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -631000,11 +631000,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.413
+ "Raw Cognitive Density": 2.39
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.87%",
- "Error & Exception Exposure": "99.88%",
+ "Cognitive Load Exposure": "99.86%",
+ "Error & Exception Exposure": "99.98%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -631258,11 +631258,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.314
+ "Raw Cognitive Density": 1.301
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.52%",
- "Error & Exception Exposure": "99.64%",
+ "Cognitive Load Exposure": "90.07%",
+ "Error & Exception Exposure": "99.94%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -631456,21 +631456,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.96%",
+ "Documentation Exposure": "12.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -631640,7 +631640,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -631802,13 +631802,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -631986,7 +631986,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -632148,11 +632148,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.426
+ "Raw Cognitive Density": 1.403
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.74%",
- "Error & Exception Exposure": "99.99%",
+ "Cognitive Load Exposure": "93.16%",
+ "Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -632426,16 +632426,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "85.81%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "88.67%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -632604,16 +632604,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.469
+ "Raw Cognitive Density": 1.457
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.66%",
- "Error & Exception Exposure": "99.99%",
+ "Cognitive Load Exposure": "94.41%",
+ "Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "23.69%",
- "State Flux Exposure": "99.95%",
+ "Concurrency Exposure": "20.92%",
+ "State Flux Exposure": "99.94%",
"Commented Logic Exposure": "6.75%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -632828,7 +632828,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -632992,11 +632992,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.672
+ "Raw Cognitive Density": 1.648
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.56%",
- "Error & Exception Exposure": "99.92%",
+ "Cognitive Load Exposure": "97.32%",
+ "Error & Exception Exposure": "99.99%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.84%",
@@ -633006,7 +633006,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.0%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -633230,13 +633230,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -633408,16 +633408,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.9
+ "Raw Cognitive Density": 0.86
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.57%",
- "Error & Exception Exposure": "83.66%",
+ "Cognitive Load Exposure": "60.83%",
+ "Error & Exception Exposure": "85.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -633606,16 +633606,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.898
+ "Raw Cognitive Density": 0.864
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.41%",
- "Error & Exception Exposure": "89.16%",
+ "Cognitive Load Exposure": "61.25%",
+ "Error & Exception Exposure": "92.46%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.51%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.97%",
+ "State Flux Exposure": "99.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -633774,16 +633774,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.88
+ "Raw Cognitive Density": 0.84
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.71%",
- "Error & Exception Exposure": "86.88%",
+ "Cognitive Load Exposure": "58.9%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -633945,16 +633945,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.48
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.35%",
- "Error & Exception Exposure": "89.9%",
+ "Cognitive Load Exposure": "22.44%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.58%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -634123,16 +634123,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.7
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.61%",
- "Error & Exception Exposure": "99.76%",
+ "Cognitive Load Exposure": "32.88%",
+ "Error & Exception Exposure": "99.95%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.65%",
+ "Testing Exposure": "2.63%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -634311,21 +634311,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.423
+ "Raw Cognitive Density": 1.392
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.66%",
- "Error & Exception Exposure": "98.24%",
+ "Cognitive Load Exposure": "92.89%",
+ "Error & Exception Exposure": "99.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.92%",
+ "State Flux Exposure": "99.91%",
"Commented Logic Exposure": "64.57%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "66.23%",
+ "Documentation Exposure": "44.8%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -634521,16 +634521,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.16
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.75%",
- "Error & Exception Exposure": "92.9%",
+ "Cognitive Load Exposure": "81.46%",
+ "Error & Exception Exposure": "95.63%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.91%",
+ "Testing Exposure": "2.86%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "48.77%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -636191,13 +636191,13 @@
"Static: Literature & Documentation": "7.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "29.21%",
- "Error & Exception Exposure": "53.16%",
- "Tech Debt Exposure": "32.19%",
- "Testing Exposure": "5.2%",
+ "Cognitive Load Exposure": "27.51%",
+ "Error & Exception Exposure": "50.07%",
+ "Tech Debt Exposure": "27.87%",
+ "Testing Exposure": "5.19%",
"API Exposure": "1.78%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "74.09%",
+ "State Flux Exposure": "73.59%",
"Commented Logic Exposure": "1.12%",
"Specification Exposure": "50.0%",
"Instability Exposure": "46.15%",
@@ -636557,12 +636557,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.36%",
"API Exposure": "3.73%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -636741,13 +636741,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.45%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.44%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -636909,16 +636909,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.5
+ "Raw Cognitive Density": 0.46
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.89%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "23.87%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.37%",
"API Exposure": "1.76%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -637077,12 +637077,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.62
+ "Raw Cognitive Density": 0.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.29%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "33.63%",
+ "Error & Exception Exposure": "82.39%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.37%",
"API Exposure": "1.76%",
"Concurrency Exposure": "0.0%",
@@ -637245,13 +637245,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.91
+ "Raw Cognitive Density": 0.87
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "65.48%",
- "Error & Exception Exposure": "96.99%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "61.77%",
+ "Error & Exception Exposure": "98.64%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.49%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -637463,13 +637463,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.833
+ "Raw Cognitive Density": 0.822
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.26%",
- "Error & Exception Exposure": "88.57%",
- "Tech Debt Exposure": "22.27%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "57.17%",
+ "Error & Exception Exposure": "93.15%",
+ "Tech Debt Exposure": "17.83%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.13%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -637701,16 +637701,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.74
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.0%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "85.81%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "1.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -637879,16 +637879,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.92
+ "Raw Cognitive Density": 0.88
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.37%",
- "Error & Exception Exposure": "83.3%",
+ "Cognitive Load Exposure": "62.71%",
+ "Error & Exception Exposure": "85.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.53%",
"API Exposure": "1.76%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -638047,16 +638047,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.297
+ "Raw Cognitive Density": 0.284
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.05%",
- "Error & Exception Exposure": "1.53%",
+ "Cognitive Load Exposure": "13.41%",
+ "Error & Exception Exposure": "0.07%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "80.43%",
+ "State Flux Exposure": "78.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -638631,12 +638631,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "72.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -638809,12 +638809,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.88%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -639130,16 +639130,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.64
+ "Raw Cognitive Density": 0.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.17%",
- "Error & Exception Exposure": "71.62%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.68%",
+ "Cognitive Load Exposure": "35.43%",
+ "Error & Exception Exposure": "70.21%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.64%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -639308,16 +639308,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.632
+ "Raw Cognitive Density": 0.578
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.46%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.51%",
+ "Cognitive Load Exposure": "33.4%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.49%",
"API Exposure": "4.68%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -639538,16 +639538,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
+ "Cognitive Load Exposure": "17.36%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -639716,16 +639716,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
+ "Cognitive Load Exposure": "16.25%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -639898,9 +639898,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.66%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -640095,13 +640095,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.97
+ "Raw Cognitive Density": 0.936
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.71%",
- "Error & Exception Exposure": "67.96%",
+ "Cognitive Load Exposure": "67.83%",
+ "Error & Exception Exposure": "57.54%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.4%",
"API Exposure": "1.03%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -640350,12 +640350,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "23.94%",
+ "Error & Exception Exposure": "8.32%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.63%",
+ "State Flux Exposure": "96.21%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -640728,13 +640728,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.872
+ "Raw Cognitive Density": 0.859
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.01%",
- "Error & Exception Exposure": "35.6%",
+ "Cognitive Load Exposure": "60.72%",
+ "Error & Exception Exposure": "15.13%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -641119,13 +641119,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.705
+ "Raw Cognitive Density": 0.672
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.5%",
- "Error & Exception Exposure": "31.0%",
+ "Cognitive Load Exposure": "42.28%",
+ "Error & Exception Exposure": "10.45%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.23%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -641371,13 +641371,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.654
+ "Raw Cognitive Density": 0.636
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "40.54%",
- "Error & Exception Exposure": "40.04%",
+ "Cognitive Load Exposure": "38.75%",
+ "Error & Exception Exposure": "21.03%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.98%",
@@ -641632,11 +641632,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.539
+ "Raw Cognitive Density": 1.529
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.91%",
- "Error & Exception Exposure": "94.3%",
+ "Cognitive Load Exposure": "95.75%",
+ "Error & Exception Exposure": "97.22%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "10.87%",
@@ -641646,7 +641646,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.92%",
+ "Documentation Exposure": "99.78%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -642267,7 +642267,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.34%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
@@ -642416,10 +642416,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "77.02%",
- "Error & Exception Exposure": "94.26%",
+ "Cognitive Load Exposure": "73.86%",
+ "Error & Exception Exposure": "96.73%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "35.77%",
+ "Testing Exposure": "35.75%",
"API Exposure": "0.64%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -642427,7 +642427,7 @@
"Specification Exposure": "42.86%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.24%",
+ "Documentation Exposure": "13.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -642464,13 +642464,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.165
+ "Raw Cognitive Density": 1.144
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.66%",
- "Error & Exception Exposure": "98.21%",
+ "Cognitive Load Exposure": "74.03%",
+ "Error & Exception Exposure": "99.32%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.65%",
+ "Testing Exposure": "2.61%",
"API Exposure": "0.16%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -642478,7 +642478,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "29.39%",
+ "Documentation Exposure": "21.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -642678,11 +642678,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.068
+ "Raw Cognitive Density": 1.05
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.12%",
- "Error & Exception Exposure": "95.15%",
+ "Cognitive Load Exposure": "76.85%",
+ "Error & Exception Exposure": "97.78%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -642966,13 +642966,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.183
+ "Raw Cognitive Density": 1.161
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.32%",
- "Error & Exception Exposure": "97.64%",
+ "Cognitive Load Exposure": "74.5%",
+ "Error & Exception Exposure": "98.98%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.66%",
+ "Testing Exposure": "2.62%",
"API Exposure": "0.18%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -642980,7 +642980,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.24%",
+ "Documentation Exposure": "21.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -643181,11 +643181,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.608
+ "Raw Cognitive Density": 1.598
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.86%",
- "Error & Exception Exposure": "84.53%",
+ "Cognitive Load Exposure": "96.75%",
+ "Error & Exception Exposure": "89.51%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "4.12%",
@@ -643195,7 +643195,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.06%",
+ "Documentation Exposure": "50.73%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -643499,13 +643499,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.76
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.0%",
- "Error & Exception Exposure": "92.0%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "94.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.56%",
+ "Testing Exposure": "2.54%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -643699,13 +643699,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.04
+ "Raw Cognitive Density": 1.008
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "68.79%",
- "Error & Exception Exposure": "97.88%",
+ "Cognitive Load Exposure": "61.84%",
+ "Error & Exception Exposure": "99.14%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -643902,11 +643902,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.212
+ "Raw Cognitive Density": 1.204
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.37%",
- "Error & Exception Exposure": "94.41%",
+ "Cognitive Load Exposure": "86.02%",
+ "Error & Exception Exposure": "97.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -644307,18 +644307,18 @@
"Static: Literature & Documentation": "5.9%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "9.24%",
- "Error & Exception Exposure": "30.95%",
- "Tech Debt Exposure": "3.15%",
+ "Cognitive Load Exposure": "8.91%",
+ "Error & Exception Exposure": "32.07%",
+ "Tech Debt Exposure": "2.88%",
"Testing Exposure": "25.09%",
"API Exposure": "2.02%",
- "Concurrency Exposure": "4.08%",
- "State Flux Exposure": "1.55%",
+ "Concurrency Exposure": "3.87%",
+ "State Flux Exposure": "1.48%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "82.35%",
"Instability Exposure": "47.06%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "8.14%",
+ "Documentation Exposure": "5.18%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -644355,12 +644355,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.087
+ "Raw Cognitive Density": 0.079
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.59%",
- "Error & Exception Exposure": "59.89%",
- "Tech Debt Exposure": "32.87%",
+ "Cognitive Load Exposure": "6.4%",
+ "Error & Exception Exposure": "61.11%",
+ "Tech Debt Exposure": "28.64%",
"Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -644563,10 +644563,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.362
+ "Raw Cognitive Density": 0.354
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.45%",
+ "Cognitive Load Exposure": "17.01%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -644731,10 +644731,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -644888,10 +644888,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.093
+ "Raw Cognitive Density": 0.09
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.74%",
+ "Cognitive Load Exposure": "6.66%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -645206,10 +645206,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.184
+ "Raw Cognitive Density": 0.171
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.42%",
+ "Cognitive Load Exposure": "8.98%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
@@ -645374,21 +645374,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.189
+ "Raw Cognitive Density": 0.188
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.6%",
- "Error & Exception Exposure": "53.68%",
- "Tech Debt Exposure": "11.72%",
+ "Cognitive Load Exposure": "9.56%",
+ "Error & Exception Exposure": "54.6%",
+ "Tech Debt Exposure": "11.46%",
"Testing Exposure": "80.0%",
"API Exposure": "9.02%",
- "Concurrency Exposure": "39.76%",
+ "Concurrency Exposure": "37.86%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.06%",
+ "Documentation Exposure": "13.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -645942,10 +645942,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
+ "Cognitive Load Exposure": "9.28%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.54%",
@@ -645956,7 +645956,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.3%",
+ "Documentation Exposure": "12.16%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -646140,11 +646140,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.109
+ "Raw Cognitive Density": 0.098
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.14%",
- "Error & Exception Exposure": "67.33%",
+ "Cognitive Load Exposure": "6.86%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.37%",
"API Exposure": "4.15%",
@@ -646154,7 +646154,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.31%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -646328,11 +646328,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.101
+ "Raw Cognitive Density": 0.091
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.94%",
- "Error & Exception Exposure": "62.05%",
+ "Cognitive Load Exposure": "6.68%",
+ "Error & Exception Exposure": "63.52%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.48%",
"API Exposure": "6.36%",
@@ -646342,7 +646342,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.01%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -646546,11 +646546,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -646703,15 +646703,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.178
+ "Raw Cognitive Density": 0.177
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.21%",
- "Error & Exception Exposure": "51.41%",
- "Tech Debt Exposure": "8.98%",
+ "Cognitive Load Exposure": "9.19%",
+ "Error & Exception Exposure": "51.68%",
+ "Tech Debt Exposure": "8.84%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "29.62%",
+ "Concurrency Exposure": "27.98%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -646941,16 +646941,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.161
+ "Raw Cognitive Density": 0.152
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.65%",
- "Error & Exception Exposure": "67.17%",
+ "Cognitive Load Exposure": "8.37%",
+ "Error & Exception Exposure": "70.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "26.34%",
+ "State Flux Exposure": "25.19%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -647169,10 +647169,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.47%",
@@ -647337,11 +647337,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.134
+ "Raw Cognitive Density": 0.119
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.85%",
- "Error & Exception Exposure": "85.3%",
+ "Cognitive Load Exposure": "7.43%",
+ "Error & Exception Exposure": "90.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.49%",
"API Exposure": "6.5%",
@@ -647351,7 +647351,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.9%",
+ "Documentation Exposure": "14.4%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -647535,10 +647535,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.337
+ "Raw Cognitive Density": 0.331
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.1%",
+ "Cognitive Load Exposure": "15.78%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -647703,10 +647703,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.337
+ "Raw Cognitive Density": 0.331
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.1%",
+ "Cognitive Load Exposure": "15.78%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -651784,18 +651784,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "16.32%",
- "Error & Exception Exposure": "25.08%",
- "Tech Debt Exposure": "42.0%",
- "Testing Exposure": "2.29%",
+ "Cognitive Load Exposure": "15.34%",
+ "Error & Exception Exposure": "24.18%",
+ "Tech Debt Exposure": "40.14%",
+ "Testing Exposure": "2.28%",
"API Exposure": "1.15%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "27.94%",
+ "State Flux Exposure": "27.59%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "34.09%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "8.35%",
+ "Documentation Exposure": "6.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -651832,12 +651832,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.119
+ "Raw Cognitive Density": 1.112
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.38%",
- "Error & Exception Exposure": "79.73%",
- "Tech Debt Exposure": "92.58%",
+ "Cognitive Load Exposure": "80.95%",
+ "Error & Exception Exposure": "81.81%",
+ "Tech Debt Exposure": "91.26%",
"Testing Exposure": "0.0%",
"API Exposure": "9.21%",
"Concurrency Exposure": "0.0%",
@@ -651846,7 +651846,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.36%",
+ "Documentation Exposure": "34.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -652190,11 +652190,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.212
+ "Raw Cognitive Density": 1.203
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.44%",
- "Error & Exception Exposure": "82.58%",
+ "Cognitive Load Exposure": "73.07%",
+ "Error & Exception Exposure": "83.88%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "7.43%",
@@ -652204,7 +652204,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.8%",
+ "Documentation Exposure": "24.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -652351,17 +652351,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "56.56%",
+ "Error & Exception Exposure": "52.37%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "9.21%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.91%",
+ "State Flux Exposure": "17.19%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.55%",
+ "Documentation Exposure": "65.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -652666,8 +652666,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.32%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -652675,7 +652675,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.93%",
+ "Documentation Exposure": "39.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -652833,12 +652833,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.46%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "69.85%",
+ "Tech Debt Exposure": "98.9%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -653017,13 +653017,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.59
+ "Raw Cognitive Density": 1.55
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.64%",
- "Error & Exception Exposure": "83.08%",
- "Tech Debt Exposure": "99.92%",
- "Testing Exposure": "2.59%",
+ "Cognitive Load Exposure": "96.08%",
+ "Error & Exception Exposure": "83.78%",
+ "Tech Debt Exposure": "99.79%",
+ "Testing Exposure": "2.54%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -653239,12 +653239,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -653433,16 +653433,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.798
+ "Raw Cognitive Density": 0.773
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.82%",
- "Error & Exception Exposure": "74.18%",
- "Tech Debt Exposure": "99.78%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "52.31%",
+ "Error & Exception Exposure": "74.63%",
+ "Tech Debt Exposure": "99.59%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.95%",
+ "State Flux Exposure": "99.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -653683,16 +653683,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.78
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "53.0%",
- "Error & Exception Exposure": "73.16%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.47%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "98.9%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -653871,13 +653871,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.935
+ "Raw Cognitive Density": 0.887
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.74%",
- "Error & Exception Exposure": "74.36%",
- "Tech Debt Exposure": "98.73%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "63.38%",
+ "Error & Exception Exposure": "69.1%",
+ "Tech Debt Exposure": "95.87%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -654059,13 +654059,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.971
+ "Raw Cognitive Density": 0.886
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.8%",
- "Error & Exception Exposure": "80.85%",
+ "Cognitive Load Exposure": "63.25%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -654287,13 +654287,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.861
+ "Raw Cognitive Density": 0.839
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.95%",
- "Error & Exception Exposure": "76.51%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Cognitive Load Exposure": "58.85%",
+ "Error & Exception Exposure": "77.26%",
+ "Tech Debt Exposure": "99.99%",
+ "Testing Exposure": "2.47%",
"API Exposure": "13.5%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -654301,7 +654301,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.8%",
+ "Documentation Exposure": "99.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -654610,7 +654610,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -654773,13 +654773,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.084
+ "Raw Cognitive Density": 1.005
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.19%",
- "Error & Exception Exposure": "73.84%",
- "Tech Debt Exposure": "99.95%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "73.48%",
+ "Error & Exception Exposure": "67.92%",
+ "Tech Debt Exposure": "99.79%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.96%",
@@ -654975,17 +654975,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "92.41%",
"Testing Exposure": "2.33%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.93%",
+ "Documentation Exposure": "39.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -655149,16 +655149,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.64
+ "Raw Cognitive Density": 0.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.17%",
- "Error & Exception Exposure": "75.37%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "33.63%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -655327,16 +655327,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.72%",
- "Error & Exception Exposure": "64.43%",
- "Tech Debt Exposure": "85.2%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "7.49%",
+ "Error & Exception Exposure": "62.01%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -658040,10 +658040,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -658197,10 +658197,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -659296,10 +659296,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -659453,10 +659453,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -659586,18 +659586,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "8.71%",
- "Error & Exception Exposure": "33.94%",
- "Tech Debt Exposure": "26.97%",
- "Testing Exposure": "41.19%",
+ "Cognitive Load Exposure": "7.95%",
+ "Error & Exception Exposure": "31.46%",
+ "Tech Debt Exposure": "25.93%",
+ "Testing Exposure": "41.18%",
"API Exposure": "0.57%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.94%",
+ "State Flux Exposure": "17.34%",
"Commented Logic Exposure": "8.68%",
"Specification Exposure": "75.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.36%",
+ "Documentation Exposure": "10.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -659791,10 +659791,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -659955,21 +659955,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.276
+ "Raw Cognitive Density": 0.269
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.06%",
- "Error & Exception Exposure": "50.21%",
- "Tech Debt Exposure": "99.57%",
+ "Cognitive Load Exposure": "12.72%",
+ "Error & Exception Exposure": "46.65%",
+ "Tech Debt Exposure": "99.47%",
"Testing Exposure": "80.0%",
"API Exposure": "0.67%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "34.47%",
+ "State Flux Exposure": "29.27%",
"Commented Logic Exposure": "5.16%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.56%",
+ "Documentation Exposure": "12.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -660583,21 +660583,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.217
+ "Raw Cognitive Density": 0.21
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.58%",
- "Error & Exception Exposure": "56.79%",
- "Tech Debt Exposure": "9.73%",
+ "Cognitive Load Exposure": "10.35%",
+ "Error & Exception Exposure": "56.53%",
+ "Tech Debt Exposure": "8.45%",
"Testing Exposure": "80.0%",
"API Exposure": "0.69%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "62.64%",
+ "State Flux Exposure": "56.88%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.82%",
+ "Documentation Exposure": "12.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -660931,13 +660931,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.208
+ "Raw Cognitive Density": 0.174
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.25%",
+ "Cognitive Load Exposure": "9.09%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.85%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -660945,7 +660945,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.11%",
+ "Documentation Exposure": "14.35%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -661189,21 +661189,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.202
+ "Raw Cognitive Density": 0.198
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.05%",
- "Error & Exception Exposure": "46.75%",
- "Tech Debt Exposure": "9.66%",
+ "Cognitive Load Exposure": "9.91%",
+ "Error & Exception Exposure": "42.0%",
+ "Tech Debt Exposure": "8.85%",
"Testing Exposure": "80.0%",
"API Exposure": "0.64%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "30.37%",
+ "State Flux Exposure": "25.55%",
"Commented Logic Exposure": "5.04%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.11%",
+ "Documentation Exposure": "12.41%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -661647,11 +661647,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.088
+ "Raw Cognitive Density": 0.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.62%",
- "Error & Exception Exposure": "57.79%",
+ "Cognitive Load Exposure": "6.17%",
+ "Error & Exception Exposure": "55.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.82%",
@@ -661661,7 +661661,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.45%",
+ "Documentation Exposure": "14.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -661935,21 +661935,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.213
+ "Raw Cognitive Density": 0.169
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.47%",
- "Error & Exception Exposure": "59.98%",
- "Tech Debt Exposure": "96.77%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "8.9%",
+ "Error & Exception Exposure": "51.38%",
+ "Tech Debt Exposure": "90.68%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.94%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "32.05%",
+ "State Flux Exposure": "27.06%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.84%",
+ "Documentation Exposure": "19.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -662120,13 +662120,13 @@
"Static: Literature & Documentation": "4.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "37.59%",
- "Error & Exception Exposure": "76.1%",
+ "Cognitive Load Exposure": "36.22%",
+ "Error & Exception Exposure": "76.09%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "15.88%",
+ "Testing Exposure": "15.87%",
"API Exposure": "0.14%",
- "Concurrency Exposure": "1.33%",
- "State Flux Exposure": "53.93%",
+ "Concurrency Exposure": "1.18%",
+ "State Flux Exposure": "53.09%",
"Commented Logic Exposure": "4.16%",
"Specification Exposure": "13.04%",
"Instability Exposure": "47.83%",
@@ -662325,16 +662325,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "89.9%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -662513,16 +662513,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.0%",
- "Error & Exception Exposure": "99.87%",
+ "Cognitive Load Exposure": "43.05%",
+ "Error & Exception Exposure": "99.98%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "19.45%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -662721,11 +662721,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "75.37%",
+ "Cognitive Load Exposure": "9.97%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.37%",
"API Exposure": "0.0%",
@@ -662889,10 +662889,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.339
+ "Raw Cognitive Density": 1.304
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.56%",
+ "Cognitive Load Exposure": "74.05%",
"Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
@@ -663067,13 +663067,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.99
+ "Raw Cognitive Density": 1.95
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.3%",
- "Error & Exception Exposure": "99.64%",
+ "Cognitive Load Exposure": "99.18%",
+ "Error & Exception Exposure": "99.92%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.63%",
+ "Testing Exposure": "2.6%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -663269,12 +663269,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -663439,12 +663439,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -663609,12 +663609,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -663775,13 +663775,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.05
+ "Raw Cognitive Density": 3.01
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.99%",
- "Error & Exception Exposure": "87.73%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.93%",
+ "Testing Exposure": "2.85%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -663963,16 +663963,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.92
+ "Raw Cognitive Density": 0.88
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.37%",
- "Error & Exception Exposure": "99.61%",
+ "Cognitive Load Exposure": "62.71%",
+ "Error & Exception Exposure": "99.91%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "3.06%",
+ "Testing Exposure": "3.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -664165,9 +664165,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -664339,13 +664339,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
- "Error & Exception Exposure": "92.19%",
+ "Cognitive Load Exposure": "12.35%",
+ "Error & Exception Exposure": "94.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.76%",
+ "Testing Exposure": "2.72%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -664527,16 +664527,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.613
+ "Raw Cognitive Density": 0.61
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.63%",
- "Error & Exception Exposure": "82.81%",
+ "Cognitive Load Exposure": "36.36%",
+ "Error & Exception Exposure": "88.65%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "3.12%",
- "Concurrency Exposure": "30.53%",
- "State Flux Exposure": "76.51%",
+ "Concurrency Exposure": "27.25%",
+ "State Flux Exposure": "74.28%",
"Commented Logic Exposure": "6.88%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -664798,16 +664798,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.76
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.0%",
- "Error & Exception Exposure": "99.53%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "99.89%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.97%",
+ "Testing Exposure": "2.91%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -664996,11 +664996,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.612
+ "Raw Cognitive Density": 1.581
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.91%",
- "Error & Exception Exposure": "99.3%",
+ "Cognitive Load Exposure": "96.52%",
+ "Error & Exception Exposure": "99.8%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -665206,16 +665206,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.74
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.0%",
- "Error & Exception Exposure": "75.37%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -665562,16 +665562,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.44
+ "Raw Cognitive Density": 1.4
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.05%",
- "Error & Exception Exposure": "96.14%",
+ "Cognitive Load Exposure": "93.09%",
+ "Error & Exception Exposure": "98.1%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.53%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.98%",
+ "State Flux Exposure": "99.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -665740,16 +665740,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.54
+ "Raw Cognitive Density": 1.5
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.93%",
- "Error & Exception Exposure": "73.66%",
+ "Cognitive Load Exposure": "95.26%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -665922,12 +665922,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -666092,12 +666092,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -666262,12 +666262,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -666404,18 +666404,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "76.42%",
- "Error & Exception Exposure": "90.09%",
- "Tech Debt Exposure": "33.29%",
+ "Cognitive Load Exposure": "75.7%",
+ "Error & Exception Exposure": "90.33%",
+ "Tech Debt Exposure": "33.22%",
"Testing Exposure": "41.22%",
"API Exposure": "0.39%",
- "Concurrency Exposure": "16.57%",
- "State Flux Exposure": "88.57%",
+ "Concurrency Exposure": "16.55%",
+ "State Flux Exposure": "87.99%",
"Commented Logic Exposure": "2.6%",
"Specification Exposure": "66.67%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.29%",
+ "Documentation Exposure": "9.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -666452,15 +666452,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.614
+ "Raw Cognitive Density": 2.597
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.94%",
- "Error & Exception Exposure": "99.94%",
+ "Error & Exception Exposure": "99.99%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "99.4%",
+ "Concurrency Exposure": "99.3%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -666670,11 +666670,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.905
+ "Raw Cognitive Density": 1.902
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.03%",
- "Error & Exception Exposure": "99.15%",
+ "Cognitive Load Exposure": "99.01%",
+ "Error & Exception Exposure": "99.82%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.32%",
@@ -666684,7 +666684,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.12%",
+ "Documentation Exposure": "12.51%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -667659,12 +667659,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.16%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -667823,16 +667823,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.88
+ "Raw Cognitive Density": 0.84
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "62.71%",
- "Error & Exception Exposure": "75.13%",
+ "Cognitive Load Exposure": "58.9%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -667991,11 +667991,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.83
+ "Raw Cognitive Density": 1.801
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.69%",
- "Error & Exception Exposure": "99.99%",
+ "Cognitive Load Exposure": "98.53%",
+ "Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -668005,7 +668005,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "65.62%",
+ "Documentation Exposure": "46.58%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -668219,16 +668219,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.74
+ "Raw Cognitive Density": 1.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.13%",
- "Error & Exception Exposure": "92.19%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.64%",
+ "Cognitive Load Exposure": "97.81%",
+ "Error & Exception Exposure": "94.85%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.61%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -668404,13 +668404,13 @@
"Static: Literature & Documentation": "36.4%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "11.3%",
- "Error & Exception Exposure": "15.97%",
- "Tech Debt Exposure": "7.07%",
- "Testing Exposure": "15.62%",
+ "Cognitive Load Exposure": "9.8%",
+ "Error & Exception Exposure": "14.63%",
+ "Tech Debt Exposure": "3.91%",
+ "Testing Exposure": "15.61%",
"API Exposure": "0.4%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.21%",
+ "State Flux Exposure": "18.06%",
"Commented Logic Exposure": "0.48%",
"Specification Exposure": "36.36%",
"Instability Exposure": "31.82%",
@@ -669082,16 +669082,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.887
+ "Raw Cognitive Density": 0.867
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "61.24%",
- "Error & Exception Exposure": "42.42%",
- "Tech Debt Exposure": "13.38%",
+ "Cognitive Load Exposure": "58.06%",
+ "Error & Exception Exposure": "42.45%",
+ "Tech Debt Exposure": "9.8%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.42%",
+ "State Flux Exposure": "96.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -669605,16 +669605,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.811
+ "Raw Cognitive Density": 0.733
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.2%",
- "Error & Exception Exposure": "59.17%",
- "Tech Debt Exposure": "47.98%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "32.71%",
+ "Error & Exception Exposure": "51.41%",
+ "Tech Debt Exposure": "19.39%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "79.26%",
+ "State Flux Exposure": "73.9%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -669880,13 +669880,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.388
+ "Raw Cognitive Density": 0.375
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.52%",
- "Error & Exception Exposure": "25.51%",
+ "Cognitive Load Exposure": "9.11%",
+ "Error & Exception Exposure": "20.15%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -670607,16 +670607,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.346
+ "Raw Cognitive Density": 0.334
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.29%",
- "Error & Exception Exposure": "48.55%",
- "Tech Debt Exposure": "16.43%",
+ "Cognitive Load Exposure": "7.97%",
+ "Error & Exception Exposure": "46.86%",
+ "Tech Debt Exposure": "13.77%",
"Testing Exposure": "80.0%",
"API Exposure": "1.03%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "34.62%",
+ "State Flux Exposure": "28.18%",
"Commented Logic Exposure": "5.24%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -671772,18 +671772,18 @@
"Static: Literature & Documentation": "5.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "31.15%",
- "Error & Exception Exposure": "63.89%",
- "Tech Debt Exposure": "14.11%",
- "Testing Exposure": "10.38%",
+ "Cognitive Load Exposure": "28.8%",
+ "Error & Exception Exposure": "62.52%",
+ "Tech Debt Exposure": "10.68%",
+ "Testing Exposure": "10.37%",
"API Exposure": "1.08%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "71.56%",
+ "State Flux Exposure": "70.92%",
"Commented Logic Exposure": "1.93%",
"Specification Exposure": "31.58%",
"Instability Exposure": "47.37%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "8.15%",
+ "Documentation Exposure": "4.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -672134,21 +672134,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.837
+ "Raw Cognitive Density": 0.825
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.29%",
- "Error & Exception Exposure": "77.74%",
- "Tech Debt Exposure": "68.72%",
+ "Cognitive Load Exposure": "28.71%",
+ "Error & Exception Exposure": "80.63%",
+ "Tech Debt Exposure": "61.96%",
"Testing Exposure": "80.0%",
"API Exposure": "8.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.42%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -672372,16 +672372,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "70.83%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -672540,16 +672540,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.4
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
+ "Cognitive Load Exposure": "19.78%",
"Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -672854,12 +672854,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.058
+ "Raw Cognitive Density": 1.041
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.43%",
- "Error & Exception Exposure": "95.21%",
- "Tech Debt Exposure": "23.29%",
+ "Cognitive Load Exposure": "76.18%",
+ "Error & Exception Exposure": "97.7%",
+ "Tech Debt Exposure": "16.41%",
"Testing Exposure": "80.0%",
"API Exposure": "2.57%",
"Concurrency Exposure": "0.0%",
@@ -672868,7 +672868,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.03%",
+ "Documentation Exposure": "14.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -673086,12 +673086,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -673239,11 +673239,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.02
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "81.63%",
+ "Cognitive Load Exposure": "74.65%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -673398,13 +673398,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.239
+ "Raw Cognitive Density": 1.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.61%",
- "Error & Exception Exposure": "99.53%",
+ "Cognitive Load Exposure": "86.86%",
+ "Error & Exception Exposure": "99.91%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -673555,11 +673555,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.11
+ "Raw Cognitive Density": 1.05
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "80.85%",
- "Error & Exception Exposure": "95.35%",
+ "Cognitive Load Exposure": "76.85%",
+ "Error & Exception Exposure": "97.11%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -673712,13 +673712,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.0%",
- "Error & Exception Exposure": "85.01%",
+ "Cognitive Load Exposure": "41.1%",
+ "Error & Exception Exposure": "85.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -673726,7 +673726,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.88%",
+ "Documentation Exposure": "26.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -673886,12 +673886,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -674043,12 +674043,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -674196,16 +674196,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.82
+ "Raw Cognitive Density": 0.76
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "56.95%",
- "Error & Exception Exposure": "89.3%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "51.0%",
+ "Error & Exception Exposure": "91.01%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -674364,16 +674364,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.56
+ "Raw Cognitive Density": 0.5
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.86%",
- "Error & Exception Exposure": "77.23%",
+ "Cognitive Load Exposure": "26.89%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -674521,16 +674521,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.5
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.89%",
- "Error & Exception Exposure": "85.01%",
+ "Cognitive Load Exposure": "22.44%",
+ "Error & Exception Exposure": "85.81%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -674835,21 +674835,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.54
+ "Raw Cognitive Density": 0.48
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.15%",
- "Error & Exception Exposure": "65.54%",
+ "Cognitive Load Exposure": "25.35%",
+ "Error & Exception Exposure": "54.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.37%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "62.59%",
+ "Documentation Exposure": "40.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -674980,13 +674980,13 @@
"Static: Literature & Documentation": "1.4%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "10.93%",
- "Error & Exception Exposure": "44.65%",
- "Tech Debt Exposure": "49.65%",
+ "Cognitive Load Exposure": "9.43%",
+ "Error & Exception Exposure": "42.98%",
+ "Tech Debt Exposure": "42.47%",
"Testing Exposure": "1.74%",
"API Exposure": "0.71%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "35.32%",
+ "State Flux Exposure": "34.22%",
"Commented Logic Exposure": "3.59%",
"Specification Exposure": "79.71%",
"Instability Exposure": "49.28%",
@@ -675189,12 +675189,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -675344,11 +675344,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.13
+ "Raw Cognitive Density": 1.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.05%",
- "Error & Exception Exposure": "90.35%",
+ "Cognitive Load Exposure": "78.25%",
+ "Error & Exception Exposure": "91.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "6.74%",
@@ -675501,16 +675501,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -675997,12 +675997,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -676156,12 +676156,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -676315,12 +676315,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -676627,16 +676627,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -676965,13 +676965,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "6.42%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -677156,16 +677156,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.6
+ "Raw Cognitive Density": 0.54
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.43%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "30.15%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -677332,12 +677332,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.32%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -677503,12 +677503,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -678312,12 +678312,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -678478,16 +678478,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "73.66%",
- "Tech Debt Exposure": "98.2%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "70.21%",
+ "Tech Debt Exposure": "92.41%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -678656,11 +678656,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "5.95%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
@@ -678813,10 +678813,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
@@ -679131,12 +679131,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -679302,7 +679302,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -679471,12 +679471,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -679642,7 +679642,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -679812,7 +679812,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -680134,16 +680134,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "9.28%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "91.68%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -680462,16 +680462,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "9.28%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "91.68%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -680639,7 +680639,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -681126,12 +681126,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -681292,16 +681292,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -681470,16 +681470,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "98.9%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -681658,16 +681658,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -681838,16 +681838,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682018,16 +682018,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "18.54%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682199,16 +682199,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682383,12 +682383,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682547,16 +682547,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.81
+ "Raw Cognitive Density": 0.762
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "50.6%",
- "Error & Exception Exposure": "74.77%",
- "Tech Debt Exposure": "93.45%",
- "Testing Exposure": "2.51%",
+ "Cognitive Load Exposure": "43.06%",
+ "Error & Exception Exposure": "71.61%",
+ "Tech Debt Exposure": "81.28%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682725,16 +682725,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.823
+ "Raw Cognitive Density": 0.774
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.67%",
- "Error & Exception Exposure": "75.02%",
- "Tech Debt Exposure": "93.95%",
- "Testing Exposure": "2.51%",
+ "Cognitive Load Exposure": "43.96%",
+ "Error & Exception Exposure": "71.84%",
+ "Tech Debt Exposure": "82.23%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.95%",
+ "State Flux Exposure": "99.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -682903,16 +682903,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.75
+ "Raw Cognitive Density": 0.706
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.59%",
- "Error & Exception Exposure": "73.59%",
- "Tech Debt Exposure": "90.72%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "38.89%",
+ "Error & Exception Exposure": "70.53%",
+ "Tech Debt Exposure": "76.43%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -683081,16 +683081,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.664
+ "Raw Cognitive Density": 0.615
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.53%",
- "Error & Exception Exposure": "83.97%",
+ "Cognitive Load Exposure": "36.78%",
+ "Error & Exception Exposure": "86.62%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.8%",
+ "State Flux Exposure": "98.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -683393,12 +683393,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -683569,16 +683569,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.664
+ "Raw Cognitive Density": 0.615
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.53%",
- "Error & Exception Exposure": "83.97%",
+ "Cognitive Load Exposure": "36.78%",
+ "Error & Exception Exposure": "86.62%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.8%",
+ "State Flux Exposure": "98.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -683877,16 +683877,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.891
+ "Raw Cognitive Density": 0.807
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.71%",
- "Error & Exception Exposure": "91.01%",
+ "Cognitive Load Exposure": "55.69%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.59%",
+ "Testing Exposure": "2.55%",
"API Exposure": "6.48%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.85%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -684159,12 +684159,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.37%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "99.99%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -684365,16 +684365,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.672
+ "Raw Cognitive Density": 0.622
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "42.29%",
- "Error & Exception Exposure": "84.18%",
+ "Cognitive Load Exposure": "37.46%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.89%",
+ "State Flux Exposure": "98.67%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -684673,16 +684673,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.891
+ "Raw Cognitive Density": 0.807
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "63.71%",
- "Error & Exception Exposure": "91.01%",
+ "Cognitive Load Exposure": "55.69%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.59%",
+ "Testing Exposure": "2.55%",
"API Exposure": "6.48%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.85%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -685270,7 +685270,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -685437,12 +685437,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.38%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.37%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -685638,12 +685638,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.38%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.37%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -685838,12 +685838,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -686002,16 +686002,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.216
+ "Raw Cognitive Density": 0.186
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.55%",
- "Error & Exception Exposure": "65.52%",
- "Tech Debt Exposure": "42.7%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "9.49%",
+ "Error & Exception Exposure": "63.2%",
+ "Tech Debt Exposure": "26.32%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "56.29%",
+ "State Flux Exposure": "51.82%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -686824,12 +686824,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.59%",
+ "Error & Exception Exposure": "59.01%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -687278,8 +687278,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "72.18%",
- "Error & Exception Exposure": "80.66%",
+ "Cognitive Load Exposure": "68.88%",
+ "Error & Exception Exposure": "87.48%",
"Tech Debt Exposure": "11.45%",
"Testing Exposure": "80.0%",
"API Exposure": "1.91%",
@@ -687329,8 +687329,8 @@
"Raw Cognitive Density": 1.326
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.18%",
- "Error & Exception Exposure": "80.66%",
+ "Cognitive Load Exposure": "68.88%",
+ "Error & Exception Exposure": "87.48%",
"Tech Debt Exposure": "11.45%",
"Testing Exposure": "80.0%",
"API Exposure": "1.91%",
@@ -687713,13 +687713,13 @@
"Static: Literature & Documentation": "5.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "59.75%",
- "Error & Exception Exposure": "78.19%",
- "Tech Debt Exposure": "9.64%",
- "Testing Exposure": "13.99%",
+ "Cognitive Load Exposure": "58.0%",
+ "Error & Exception Exposure": "79.38%",
+ "Tech Debt Exposure": "7.99%",
+ "Testing Exposure": "13.97%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "9.1%",
- "State Flux Exposure": "74.65%",
+ "Concurrency Exposure": "8.97%",
+ "State Flux Exposure": "74.38%",
"Commented Logic Exposure": "3.0%",
"Specification Exposure": "20.0%",
"Instability Exposure": "47.5%",
@@ -687918,16 +687918,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.54
+ "Raw Cognitive Density": 1.534
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "95.94%",
- "Error & Exception Exposure": "98.15%",
- "Tech Debt Exposure": "24.52%",
+ "Cognitive Load Exposure": "95.83%",
+ "Error & Exception Exposure": "99.44%",
+ "Tech Debt Exposure": "21.65%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "81.96%",
- "State Flux Exposure": "99.82%",
+ "Concurrency Exposure": "79.47%",
+ "State Flux Exposure": "99.8%",
"Commented Logic Exposure": "13.77%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -688216,16 +688216,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.3
+ "Raw Cognitive Density": 1.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "90.03%",
- "Error & Exception Exposure": "93.93%",
+ "Cognitive Load Exposure": "88.49%",
+ "Error & Exception Exposure": "95.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -688394,16 +688394,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.64
+ "Raw Cognitive Density": 0.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.17%",
- "Error & Exception Exposure": "89.9%",
+ "Cognitive Load Exposure": "35.43%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.59%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -688592,13 +688592,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.74
+ "Raw Cognitive Density": 1.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "98.13%",
- "Error & Exception Exposure": "96.59%",
+ "Cognitive Load Exposure": "97.81%",
+ "Error & Exception Exposure": "98.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "100.0%",
"State Flux Exposure": "99.94%",
@@ -688938,13 +688938,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -689116,16 +689116,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.04
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "99.31%",
+ "Cognitive Load Exposure": "76.13%",
+ "Error & Exception Exposure": "99.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -689304,10 +689304,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.4%",
@@ -689482,16 +689482,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.08
+ "Raw Cognitive Density": 1.04
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "78.92%",
- "Error & Exception Exposure": "96.87%",
+ "Cognitive Load Exposure": "76.13%",
+ "Error & Exception Exposure": "98.52%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -689660,16 +689660,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.229
+ "Raw Cognitive Density": 2.221
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.73%",
- "Error & Exception Exposure": "96.89%",
+ "Cognitive Load Exposure": "99.72%",
+ "Error & Exception Exposure": "98.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.79%",
+ "State Flux Exposure": "98.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -689978,16 +689978,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.04
+ "Raw Cognitive Density": 1.0
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.13%",
- "Error & Exception Exposure": "95.89%",
- "Tech Debt Exposure": "73.11%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "73.11%",
+ "Error & Exception Exposure": "97.93%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -690156,11 +690156,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.359
+ "Raw Cognitive Density": 1.342
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.95%",
- "Error & Exception Exposure": "86.52%",
+ "Cognitive Load Exposure": "91.43%",
+ "Error & Exception Exposure": "90.7%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -690408,12 +690408,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -690572,16 +690572,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.28
+ "Raw Cognitive Density": 1.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "89.28%",
- "Error & Exception Exposure": "99.96%",
+ "Cognitive Load Exposure": "87.65%",
+ "Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.68%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -690740,16 +690740,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.02
+ "Raw Cognitive Density": 0.98
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "74.65%",
- "Error & Exception Exposure": "94.07%",
+ "Cognitive Load Exposure": "71.5%",
+ "Error & Exception Exposure": "96.59%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -690918,16 +690918,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.74
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.0%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.55%",
+ "Testing Exposure": "2.53%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -691106,16 +691106,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.76
+ "Raw Cognitive Density": 0.72
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.0%",
- "Error & Exception Exposure": "97.65%",
- "Tech Debt Exposure": "95.26%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "47.0%",
+ "Error & Exception Exposure": "99.03%",
+ "Tech Debt Exposure": "88.08%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -691284,13 +691284,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.64
+ "Raw Cognitive Density": 1.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.23%",
- "Error & Exception Exposure": "99.3%",
+ "Cognitive Load Exposure": "96.77%",
+ "Error & Exception Exposure": "99.81%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.67%",
+ "Testing Exposure": "2.64%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -691482,16 +691482,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.86
+ "Raw Cognitive Density": 0.82
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.83%",
- "Error & Exception Exposure": "97.65%",
+ "Cognitive Load Exposure": "56.95%",
+ "Error & Exception Exposure": "99.03%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -691636,13 +691636,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "9.22%",
- "Error & Exception Exposure": "52.01%",
- "Tech Debt Exposure": "11.02%",
+ "Cognitive Load Exposure": "8.99%",
+ "Error & Exception Exposure": "53.44%",
+ "Tech Debt Exposure": "10.57%",
"Testing Exposure": "10.11%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "39.44%",
+ "State Flux Exposure": "38.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "95.0%",
"Instability Exposure": "50.0%",
@@ -691684,16 +691684,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.383
+ "Raw Cognitive Density": 0.379
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.75%",
- "Error & Exception Exposure": "61.96%",
- "Tech Debt Exposure": "22.87%",
+ "Cognitive Load Exposure": "18.51%",
+ "Error & Exception Exposure": "62.89%",
+ "Tech Debt Exposure": "21.18%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.36%",
+ "State Flux Exposure": "96.14%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -691926,12 +691926,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.66%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "20.42%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -692092,16 +692092,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.084
+ "Raw Cognitive Density": 0.083
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.5%",
- "Error & Exception Exposure": "54.2%",
+ "Cognitive Load Exposure": "6.48%",
+ "Error & Exception Exposure": "55.35%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "28.72%",
+ "State Flux Exposure": "27.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -692342,16 +692342,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.215
+ "Raw Cognitive Density": 0.203
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.53%",
- "Error & Exception Exposure": "65.39%",
+ "Cognitive Load Exposure": "10.07%",
+ "Error & Exception Exposure": "67.42%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "48.13%",
+ "State Flux Exposure": "46.64%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -692513,16 +692513,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "68.38%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "36.35%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -692694,16 +692694,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "98.2%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "97.07%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "20.42%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -692874,16 +692874,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.131
+ "Raw Cognitive Density": 0.121
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.75%",
- "Error & Exception Exposure": "61.32%",
+ "Cognitive Load Exposure": "7.49%",
+ "Error & Exception Exposure": "62.71%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "27.32%",
+ "State Flux Exposure": "26.14%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -693055,16 +693055,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.133
+ "Raw Cognitive Density": 0.13
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.82%",
- "Error & Exception Exposure": "58.36%",
- "Tech Debt Exposure": "14.8%",
+ "Cognitive Load Exposure": "7.73%",
+ "Error & Exception Exposure": "60.17%",
+ "Tech Debt Exposure": "13.78%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "44.19%",
+ "State Flux Exposure": "42.72%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -693275,16 +693275,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.176
+ "Raw Cognitive Density": 0.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.14%",
- "Error & Exception Exposure": "61.35%",
+ "Cognitive Load Exposure": "8.94%",
+ "Error & Exception Exposure": "63.44%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "52.04%",
+ "State Flux Exposure": "50.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -693445,16 +693445,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.375
+ "Raw Cognitive Density": 0.367
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.24%",
- "Error & Exception Exposure": "70.43%",
+ "Cognitive Load Exposure": "17.75%",
+ "Error & Exception Exposure": "74.49%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.25%",
+ "State Flux Exposure": "97.09%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -693636,16 +693636,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.221
+ "Raw Cognitive Density": 0.218
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.74%",
- "Error & Exception Exposure": "57.31%",
- "Tech Debt Exposure": "13.84%",
+ "Cognitive Load Exposure": "10.63%",
+ "Error & Exception Exposure": "59.12%",
+ "Tech Debt Exposure": "13.24%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "45.04%",
+ "State Flux Exposure": "43.56%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -694076,16 +694076,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.193
+ "Raw Cognitive Density": 0.189
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.72%",
- "Error & Exception Exposure": "58.7%",
+ "Cognitive Load Exposure": "9.59%",
+ "Error & Exception Exposure": "60.25%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "48.68%",
+ "State Flux Exposure": "47.18%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -694297,16 +694297,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.326
+ "Raw Cognitive Density": 0.322
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.5%",
- "Error & Exception Exposure": "61.17%",
+ "Cognitive Load Exposure": "15.31%",
+ "Error & Exception Exposure": "64.02%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.26%",
+ "State Flux Exposure": "74.12%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -694538,12 +694538,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.069
+ "Raw Cognitive Density": 0.064
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.16%",
+ "Cognitive Load Exposure": "6.04%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "27.68%",
+ "Tech Debt Exposure": "25.91%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -694746,16 +694746,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.242
+ "Raw Cognitive Density": 0.239
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.58%",
- "Error & Exception Exposure": "61.5%",
+ "Cognitive Load Exposure": "11.47%",
+ "Error & Exception Exposure": "64.47%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "77.88%",
+ "State Flux Exposure": "76.83%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -694947,16 +694947,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.135
+ "Raw Cognitive Density": 0.13
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.88%",
- "Error & Exception Exposure": "56.33%",
+ "Cognitive Load Exposure": "7.73%",
+ "Error & Exception Exposure": "57.03%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.67%",
+ "State Flux Exposure": "14.89%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -695138,16 +695138,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.165
+ "Raw Cognitive Density": 0.162
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.79%",
- "Error & Exception Exposure": "56.88%",
- "Tech Debt Exposure": "23.58%",
+ "Cognitive Load Exposure": "8.69%",
+ "Error & Exception Exposure": "58.28%",
+ "Tech Debt Exposure": "22.2%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "32.54%",
+ "State Flux Exposure": "31.23%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -695539,16 +695539,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.112
+ "Raw Cognitive Density": 0.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.23%",
- "Error & Exception Exposure": "55.21%",
- "Tech Debt Exposure": "19.35%",
+ "Cognitive Load Exposure": "7.15%",
+ "Error & Exception Exposure": "56.01%",
+ "Tech Debt Exposure": "18.1%",
"Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.16%",
+ "State Flux Exposure": "18.24%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -696078,10 +696078,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -696212,10 +696212,10 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "26.68%",
- "Error & Exception Exposure": "58.99%",
+ "Cognitive Load Exposure": "25.93%",
+ "Error & Exception Exposure": "62.99%",
"Tech Debt Exposure": "41.02%",
- "Testing Exposure": "50.61%",
+ "Testing Exposure": "50.62%",
"API Exposure": "1.11%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "70.19%",
@@ -696223,7 +696223,7 @@
"Specification Exposure": "75.0%",
"Instability Exposure": "43.75%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.86%",
+ "Documentation Exposure": "6.61%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -696421,7 +696421,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "51.51%",
- "Error & Exception Exposure": "76.31%",
+ "Error & Exception Exposure": "83.17%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -696431,7 +696431,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.68%",
+ "Documentation Exposure": "31.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -696628,7 +696628,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "19.15%",
- "Error & Exception Exposure": "69.8%",
+ "Error & Exception Exposure": "75.69%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "8.87%",
@@ -696638,7 +696638,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.2%",
+ "Documentation Exposure": "21.7%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -697054,8 +697054,8 @@
"Raw Cognitive Density": 0.459
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.52%",
- "Error & Exception Exposure": "46.98%",
+ "Cognitive Load Exposure": "14.06%",
+ "Error & Exception Exposure": "47.63%",
"Tech Debt Exposure": "99.57%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -697638,7 +697638,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "58.71%",
- "Error & Exception Exposure": "86.63%",
+ "Error & Exception Exposure": "92.35%",
"Tech Debt Exposure": "29.33%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -698050,9 +698050,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "26.89%",
- "Error & Exception Exposure": "61.63%",
+ "Error & Exception Exposure": "65.28%",
"Tech Debt Exposure": "99.93%",
- "Testing Exposure": "2.62%",
+ "Testing Exposure": "2.64%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "64.04%",
@@ -698310,8 +698310,8 @@
"Raw Cognitive Density": 0.88
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.04%",
- "Error & Exception Exposure": "70.59%",
+ "Cognitive Load Exposure": "32.5%",
+ "Error & Exception Exposure": "76.39%",
"Tech Debt Exposure": "99.35%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -698736,7 +698736,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "4.64%",
- "Error & Exception Exposure": "60.02%",
+ "Error & Exception Exposure": "63.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -700663,18 +700663,18 @@
"Static: Literature & Documentation": "9.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "42.46%",
- "Error & Exception Exposure": "66.93%",
- "Tech Debt Exposure": "4.69%",
- "Testing Exposure": "5.95%",
+ "Cognitive Load Exposure": "40.55%",
+ "Error & Exception Exposure": "67.27%",
+ "Tech Debt Exposure": "4.62%",
+ "Testing Exposure": "5.93%",
"API Exposure": "0.88%",
"Concurrency Exposure": "4.76%",
- "State Flux Exposure": "73.32%",
+ "State Flux Exposure": "72.83%",
"Commented Logic Exposure": "2.68%",
"Specification Exposure": "42.86%",
"Instability Exposure": "45.24%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.75%",
+ "Documentation Exposure": "17.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -701025,13 +701025,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.99
+ "Raw Cognitive Density": 0.95
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.31%",
- "Error & Exception Exposure": "88.92%",
+ "Cognitive Load Exposure": "69.0%",
+ "Error & Exception Exposure": "91.68%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.66%",
+ "Testing Exposure": "2.63%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -701039,7 +701039,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "73.69%",
+ "Documentation Exposure": "59.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -701223,11 +701223,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.7
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "45.02%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "41.1%",
+ "Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.4%",
"API Exposure": "0.0%",
@@ -701391,16 +701391,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -701563,12 +701563,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.4%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -701727,13 +701727,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.64
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "39.17%",
+ "Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.5%",
+ "Testing Exposure": "2.48%",
"API Exposure": "1.18%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -701741,7 +701741,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -701935,13 +701935,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.99
+ "Raw Cognitive Density": 0.95
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.31%",
- "Error & Exception Exposure": "92.0%",
+ "Cognitive Load Exposure": "69.0%",
+ "Error & Exception Exposure": "94.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "2.64%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -701949,7 +701949,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "73.69%",
+ "Documentation Exposure": "59.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -702133,21 +702133,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.16
+ "Raw Cognitive Density": 1.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "83.75%",
+ "Cognitive Load Exposure": "81.46%",
"Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "1.76%",
"Concurrency Exposure": "100.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.29%",
+ "Documentation Exposure": "35.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -702311,13 +702311,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.78
+ "Raw Cognitive Density": 0.74
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "53.0%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "49.0%",
+ "Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -702647,12 +702647,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.18
+ "Raw Cognitive Density": 1.155
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.83%",
- "Error & Exception Exposure": "99.38%",
- "Tech Debt Exposure": "98.44%",
+ "Cognitive Load Exposure": "83.48%",
+ "Error & Exception Exposure": "99.85%",
+ "Tech Debt Exposure": "97.1%",
"Testing Exposure": "80.0%",
"API Exposure": "1.95%",
"Concurrency Exposure": "0.0%",
@@ -702661,7 +702661,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "56.62%",
+ "Documentation Exposure": "40.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -702885,16 +702885,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "51.61%",
+ "Cognitive Load Exposure": "9.97%",
+ "Error & Exception Exposure": "37.42%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -703053,10 +703053,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
@@ -703067,7 +703067,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.29%",
+ "Documentation Exposure": "35.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -703235,12 +703235,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "82.76%",
+ "Error & Exception Exposure": "84.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -703399,13 +703399,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.176
+ "Raw Cognitive Density": 1.139
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.6%",
- "Error & Exception Exposure": "98.68%",
+ "Cognitive Load Exposure": "82.57%",
+ "Error & Exception Exposure": "99.56%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.97%",
+ "Testing Exposure": "2.91%",
"API Exposure": "2.77%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -703413,7 +703413,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "79.46%",
+ "Documentation Exposure": "66.94%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -703607,13 +703607,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.35
+ "Raw Cognitive Density": 1.31
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.68%",
- "Error & Exception Exposure": "96.14%",
+ "Cognitive Load Exposure": "90.38%",
+ "Error & Exception Exposure": "97.75%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.78%",
+ "Testing Exposure": "2.73%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -703815,16 +703815,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.6
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.43%",
- "Error & Exception Exposure": "77.23%",
+ "Cognitive Load Exposure": "31.86%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -703993,13 +703993,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.21
+ "Raw Cognitive Density": 1.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.29%",
- "Error & Exception Exposure": "92.9%",
+ "Cognitive Load Exposure": "84.29%",
+ "Error & Exception Exposure": "95.63%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.74%",
+ "Testing Exposure": "2.7%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -704171,13 +704171,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.17
+ "Raw Cognitive Density": 1.13
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.29%",
- "Error & Exception Exposure": "93.85%",
+ "Cognitive Load Exposure": "82.05%",
+ "Error & Exception Exposure": "96.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -704369,21 +704369,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
- "Error & Exception Exposure": "74.89%",
+ "Cognitive Load Exposure": "21.08%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "1.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "48.59%",
+ "Documentation Exposure": "33.95%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -706817,9 +706817,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "10.18%",
- "Error & Exception Exposure": "3.17%",
- "Tech Debt Exposure": "40.5%",
+ "Cognitive Load Exposure": "9.49%",
+ "Error & Exception Exposure": "3.27%",
+ "Tech Debt Exposure": "37.86%",
"Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -706865,10 +706865,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
@@ -707033,10 +707033,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -707190,10 +707190,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -707347,10 +707347,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -707504,10 +707504,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "11.51%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -707661,10 +707661,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "11.51%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -707821,12 +707821,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "97.07%",
"Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -708019,12 +708019,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.68%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -708217,10 +708217,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
+ "Cognitive Load Exposure": "9.28%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -708374,12 +708374,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
+ "Cognitive Load Exposure": "13.24%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.68%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -708572,10 +708572,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -708733,12 +708733,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -709089,12 +709089,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -709262,12 +709262,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -709440,12 +709440,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
+ "Cognitive Load Exposure": "18.54%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.55%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -709625,10 +709625,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -709782,12 +709782,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -709970,12 +709970,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
+ "Cognitive Load Exposure": "18.54%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.55%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -710155,12 +710155,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
+ "Cognitive Load Exposure": "13.24%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.68%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -710521,10 +710521,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -710655,18 +710655,18 @@
"Static: Literature & Documentation": "10.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "14.58%",
- "Error & Exception Exposure": "36.52%",
- "Tech Debt Exposure": "10.71%",
- "Testing Exposure": "2.1%",
+ "Cognitive Load Exposure": "14.2%",
+ "Error & Exception Exposure": "34.57%",
+ "Tech Debt Exposure": "9.24%",
+ "Testing Exposure": "2.09%",
"API Exposure": "3.98%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "34.68%",
+ "State Flux Exposure": "34.05%",
"Commented Logic Exposure": "2.99%",
"Specification Exposure": "40.0%",
"Instability Exposure": "45.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "24.68%",
+ "Documentation Exposure": "21.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -710860,21 +710860,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.92
+ "Raw Cognitive Density": 0.905
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "66.34%",
- "Error & Exception Exposure": "70.59%",
- "Tech Debt Exposure": "29.59%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "64.98%",
+ "Error & Exception Exposure": "68.88%",
+ "Tech Debt Exposure": "22.38%",
+ "Testing Exposure": "2.4%",
"API Exposure": "7.46%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "9.01%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.58%",
+ "Documentation Exposure": "41.64%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -711042,7 +711042,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "61.69%",
+ "Error & Exception Exposure": "60.43%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -711199,12 +711199,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "29.07%",
+ "Error & Exception Exposure": "13.78%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "17.57%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.87%",
+ "State Flux Exposure": "98.66%",
"Commented Logic Exposure": "5.72%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -711356,12 +711356,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "58.26%",
+ "Error & Exception Exposure": "56.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "31.34%",
+ "State Flux Exposure": "27.6%",
"Commented Logic Exposure": "7.29%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -711666,10 +711666,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.13
+ "Raw Cognitive Density": 0.074
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.56%",
+ "Cognitive Load Exposure": "5.33%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -711823,13 +711823,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.997
+ "Raw Cognitive Density": 0.982
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.9%",
- "Error & Exception Exposure": "92.94%",
- "Tech Debt Exposure": "77.51%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "71.66%",
+ "Error & Exception Exposure": "95.96%",
+ "Tech Debt Exposure": "70.07%",
+ "Testing Exposure": "2.39%",
"API Exposure": "9.96%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -711837,7 +711837,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "72.24%",
+ "Documentation Exposure": "61.45%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -712206,17 +712206,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "52.61%",
+ "Error & Exception Exposure": "49.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "4.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "16.55%",
+ "State Flux Exposure": "14.21%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.97%",
+ "Documentation Exposure": "14.82%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -712335,18 +712335,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "22.09%",
- "Error & Exception Exposure": "77.22%",
- "Tech Debt Exposure": "50.82%",
- "Testing Exposure": "5.77%",
+ "Cognitive Load Exposure": "21.09%",
+ "Error & Exception Exposure": "76.32%",
+ "Tech Debt Exposure": "44.79%",
+ "Testing Exposure": "5.76%",
"API Exposure": "0.75%",
- "Concurrency Exposure": "5.95%",
- "State Flux Exposure": "92.0%",
+ "Concurrency Exposure": "5.79%",
+ "State Flux Exposure": "91.37%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "65.22%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.37%",
+ "Documentation Exposure": "9.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -712383,21 +712383,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.351
+ "Raw Cognitive Density": 1.328
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.7%",
- "Error & Exception Exposure": "87.47%",
- "Tech Debt Exposure": "65.95%",
+ "Cognitive Load Exposure": "90.97%",
+ "Error & Exception Exposure": "89.91%",
+ "Tech Debt Exposure": "52.15%",
"Testing Exposure": "80.0%",
"API Exposure": "2.54%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.97%",
+ "State Flux Exposure": "99.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "48.16%",
+ "Documentation Exposure": "36.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -712595,12 +712595,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.68%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -712773,12 +712773,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.12%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "36.97%",
- "State Flux Exposure": "93.7%",
+ "Concurrency Exposure": "33.33%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -712973,12 +712973,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -713137,13 +713137,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.65
+ "Raw Cognitive Density": 2.61
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "99.95%",
- "Error & Exception Exposure": "95.06%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "99.94%",
+ "Error & Exception Exposure": "96.86%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -713339,12 +713339,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.25%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -713527,17 +713527,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "82.39%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.35%",
"API Exposure": "1.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -713705,12 +713705,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.4%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -713873,12 +713873,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.48%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -714071,12 +714071,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.89%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -714239,12 +714239,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.65%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -714427,17 +714427,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.65%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.35%",
"API Exposure": "1.18%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -714630,7 +714630,7 @@
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -714793,12 +714793,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.14%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "70.21%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -714981,12 +714981,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.89%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -715159,9 +715159,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -715347,17 +715347,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "2.79%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "62.59%",
+ "Documentation Exposure": "47.64%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -715511,13 +715511,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.561
+ "Raw Cognitive Density": 2.524
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.3%",
- "Error & Exception Exposure": "98.11%",
- "Tech Debt Exposure": "93.64%",
- "Testing Exposure": "2.72%",
+ "Cognitive Load Exposure": "62.21%",
+ "Error & Exception Exposure": "99.13%",
+ "Tech Debt Exposure": "85.14%",
+ "Testing Exposure": "2.68%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -715709,21 +715709,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.695
+ "Raw Cognitive Density": 1.673
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "97.77%",
- "Error & Exception Exposure": "99.69%",
+ "Cognitive Load Exposure": "97.57%",
+ "Error & Exception Exposure": "99.94%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.51%",
"API Exposure": "6.05%",
- "Concurrency Exposure": "99.87%",
+ "Concurrency Exposure": "99.85%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.55%",
+ "Documentation Exposure": "40.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -715921,12 +715921,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.12%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -716085,13 +716085,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 4.45
+ "Raw Cognitive Density": 4.41
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "70.03%",
+ "Error & Exception Exposure": "58.49%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.98%",
+ "Testing Exposure": "2.87%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -716319,12 +716319,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.66%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.69%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -716503,21 +716503,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.68
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "41.36%",
- "Error & Exception Exposure": "81.28%",
+ "Cognitive Load Exposure": "34.44%",
+ "Error & Exception Exposure": "83.36%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.53%",
+ "Testing Exposure": "2.51%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "72.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.15%",
+ "Documentation Exposure": "31.83%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -716678,18 +716678,18 @@
"Static: Literature & Documentation": "7.1%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "32.89%",
- "Error & Exception Exposure": "32.98%",
- "Tech Debt Exposure": "12.55%",
- "Testing Exposure": "13.3%",
+ "Cognitive Load Exposure": "31.24%",
+ "Error & Exception Exposure": "29.42%",
+ "Tech Debt Exposure": "11.99%",
+ "Testing Exposure": "13.29%",
"API Exposure": "1.8%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "45.37%",
+ "State Flux Exposure": "44.7%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "14.29%",
"Instability Exposure": "46.43%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.98%",
+ "Documentation Exposure": "15.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -716883,16 +716883,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.86
+ "Raw Cognitive Density": 0.82
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.83%",
- "Error & Exception Exposure": "70.03%",
+ "Cognitive Load Exposure": "56.95%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "85.57%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -717229,13 +717229,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.38%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -717407,12 +717407,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.108
+ "Raw Cognitive Density": 3.098
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.99%",
- "Error & Exception Exposure": "88.67%",
- "Tech Debt Exposure": "63.73%",
+ "Error & Exception Exposure": "90.92%",
+ "Tech Debt Exposure": "57.9%",
"Testing Exposure": "80.0%",
"API Exposure": "2.42%",
"Concurrency Exposure": "0.0%",
@@ -717421,7 +717421,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.94%",
+ "Documentation Exposure": "23.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -717610,21 +717610,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.733
+ "Raw Cognitive Density": 2.727
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.96%",
- "Error & Exception Exposure": "26.81%",
- "Tech Debt Exposure": "12.19%",
+ "Error & Exception Exposure": "11.17%",
+ "Tech Debt Exposure": "10.67%",
"Testing Exposure": "80.0%",
"API Exposure": "0.14%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "94.4%",
+ "State Flux Exposure": "93.73%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.42%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -717826,7 +717826,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -717834,7 +717834,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "36.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -717990,21 +717990,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "79.83%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "81.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "72.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "75.82%",
+ "Documentation Exposure": "63.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -718168,13 +718168,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.853
+ "Raw Cognitive Density": 3.833
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "100.0%",
- "Error & Exception Exposure": "7.79%",
+ "Error & Exception Exposure": "0.76%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.48%",
"API Exposure": "6.46%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -718182,7 +718182,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "48.41%",
+ "Documentation Exposure": "37.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -718558,12 +718558,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.44%",
+ "Error & Exception Exposure": "43.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -718726,17 +718726,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.94%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "57.16%",
+ "Documentation Exposure": "38.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -719058,16 +719058,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.24
+ "Raw Cognitive Density": 2.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.8%",
- "Error & Exception Exposure": "64.19%",
+ "Cognitive Load Exposure": "59.82%",
+ "Error & Exception Exposure": "51.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.65%",
+ "Testing Exposure": "2.61%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.88%",
+ "State Flux Exposure": "99.86%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -719213,13 +719213,13 @@
"Static: Literature & Documentation": "6.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "54.99%",
- "Error & Exception Exposure": "58.96%",
- "Tech Debt Exposure": "10.75%",
- "Testing Exposure": "7.37%",
+ "Cognitive Load Exposure": "52.66%",
+ "Error & Exception Exposure": "58.91%",
+ "Tech Debt Exposure": "8.21%",
+ "Testing Exposure": "7.35%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "5.57%",
- "State Flux Exposure": "59.08%",
+ "Concurrency Exposure": "5.41%",
+ "State Flux Exposure": "58.97%",
"Commented Logic Exposure": "1.27%",
"Specification Exposure": "26.67%",
"Instability Exposure": "46.67%",
@@ -719418,13 +719418,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.84
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.9%",
- "Error & Exception Exposure": "91.52%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "94.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -719606,13 +719606,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.64
+ "Raw Cognitive Density": 0.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.17%",
- "Error & Exception Exposure": "90.13%",
+ "Cognitive Load Exposure": "35.43%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.76%",
+ "Testing Exposure": "2.72%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -719816,16 +719816,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.2
+ "Raw Cognitive Density": 1.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "85.81%",
- "Error & Exception Exposure": "69.21%",
+ "Cognitive Load Exposure": "83.75%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -720006,16 +720006,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.18
+ "Raw Cognitive Density": 1.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "84.81%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "82.64%",
+ "Error & Exception Exposure": "60.55%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -720174,13 +720174,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.73
+ "Raw Cognitive Density": 2.69
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.96%",
- "Error & Exception Exposure": "92.81%",
- "Tech Debt Exposure": "73.11%",
- "Testing Exposure": "2.62%",
+ "Error & Exception Exposure": "93.44%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.57%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -720384,11 +720384,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.55
+ "Raw Cognitive Density": 1.51
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.08%",
- "Error & Exception Exposure": "99.25%",
+ "Cognitive Load Exposure": "95.43%",
+ "Error & Exception Exposure": "99.79%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "0.0%",
"API Exposure": "0.0%",
@@ -720602,13 +720602,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.64
+ "Raw Cognitive Density": 0.6
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.17%",
+ "Cognitive Load Exposure": "35.43%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -720800,16 +720800,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.84
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.9%",
- "Error & Exception Exposure": "78.78%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.99%",
+ "Testing Exposure": "2.93%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -721482,13 +721482,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.33
+ "Raw Cognitive Density": 1.307
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.04%",
- "Error & Exception Exposure": "99.63%",
+ "Cognitive Load Exposure": "90.27%",
+ "Error & Exception Exposure": "99.93%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.65%",
+ "Testing Exposure": "2.63%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -721692,16 +721692,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.36
+ "Raw Cognitive Density": 1.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "91.98%",
- "Error & Exception Exposure": "96.59%",
+ "Cognitive Load Exposure": "90.72%",
+ "Error & Exception Exposure": "98.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.86%",
+ "Testing Exposure": "2.81%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -721890,15 +721890,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.718
+ "Raw Cognitive Density": 1.702
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.0%",
- "Error & Exception Exposure": "99.59%",
+ "Cognitive Load Exposure": "66.27%",
+ "Error & Exception Exposure": "99.92%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "83.5%",
+ "Concurrency Exposure": "81.18%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "19.03%",
"Specification Exposure": "100.0%",
@@ -722127,18 +722127,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "18.52%",
- "Error & Exception Exposure": "73.66%",
- "Tech Debt Exposure": "83.05%",
- "Testing Exposure": "13.57%",
+ "Cognitive Load Exposure": "16.22%",
+ "Error & Exception Exposure": "67.86%",
+ "Tech Debt Exposure": "76.44%",
+ "Testing Exposure": "13.53%",
"API Exposure": "2.52%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "80.71%",
+ "State Flux Exposure": "78.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "86.61%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.1%",
+ "Documentation Exposure": "10.46%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -722175,21 +722175,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.661
+ "Raw Cognitive Density": 0.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.57%",
- "Error & Exception Exposure": "67.31%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.63%",
+ "Cognitive Load Exposure": "16.83%",
+ "Error & Exception Exposure": "57.44%",
+ "Tech Debt Exposure": "99.97%",
+ "Testing Exposure": "2.54%",
"API Exposure": "4.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.12%",
+ "State Flux Exposure": "91.42%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.0%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -722457,21 +722457,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.767
+ "Raw Cognitive Density": 0.661
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.86%",
- "Error & Exception Exposure": "68.85%",
- "Tech Debt Exposure": "99.93%",
- "Testing Exposure": "2.64%",
+ "Cognitive Load Exposure": "20.61%",
+ "Error & Exception Exposure": "57.64%",
+ "Tech Debt Exposure": "99.54%",
+ "Testing Exposure": "2.56%",
"API Exposure": "2.26%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.79%",
+ "State Flux Exposure": "92.24%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "80.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "33.58%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -722690,13 +722690,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.917
+ "Raw Cognitive Density": 0.889
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "33.04%",
- "Error & Exception Exposure": "79.43%",
- "Tech Debt Exposure": "97.04%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "31.77%",
+ "Error & Exception Exposure": "79.95%",
+ "Tech Debt Exposure": "92.04%",
+ "Testing Exposure": "2.44%",
"API Exposure": "1.56%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -722945,21 +722945,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.843
+ "Raw Cognitive Density": 0.831
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "29.58%",
- "Error & Exception Exposure": "69.77%",
- "Tech Debt Exposure": "96.56%",
+ "Cognitive Load Exposure": "29.01%",
+ "Error & Exception Exposure": "71.41%",
+ "Tech Debt Exposure": "95.36%",
"Testing Exposure": "80.0%",
"API Exposure": "6.23%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.72%",
+ "State Flux Exposure": "99.64%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "34.93%",
+ "Documentation Exposure": "13.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -723680,17 +723680,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.16%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.37%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.81%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "28.91%",
+ "State Flux Exposure": "24.23%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.98%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -723874,16 +723874,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.661
+ "Raw Cognitive Density": 0.546
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.61%",
- "Error & Exception Exposure": "66.69%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "15.34%",
+ "Error & Exception Exposure": "52.14%",
+ "Tech Debt Exposure": "98.2%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.02%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "80.0%",
"Instability Exposure": "50.0%",
@@ -724118,17 +724118,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "90.42%",
+ "Error & Exception Exposure": "91.89%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "2.57%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "62.45%",
+ "State Flux Exposure": "56.68%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "90.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.32%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -724338,13 +724338,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "15.32%",
- "Error & Exception Exposure": "65.55%",
+ "Cognitive Load Exposure": "14.58%",
+ "Error & Exception Exposure": "67.47%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.64%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "45.52%",
+ "State Flux Exposure": "44.33%",
"Commented Logic Exposure": "1.24%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -724386,16 +724386,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "68.38%",
+ "Cognitive Load Exposure": "14.19%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.69%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "36.35%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -724607,16 +724607,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.481
+ "Raw Cognitive Density": 0.463
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.46%",
- "Error & Exception Exposure": "72.57%",
+ "Cognitive Load Exposure": "24.08%",
+ "Error & Exception Exposure": "75.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.69%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "91.25%",
+ "State Flux Exposure": "90.76%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -724838,16 +724838,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.393
+ "Raw Cognitive Density": 0.377
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.37%",
- "Error & Exception Exposure": "67.31%",
+ "Cognitive Load Exposure": "18.37%",
+ "Error & Exception Exposure": "69.31%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.76%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "46.69%",
+ "State Flux Exposure": "45.2%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -725098,16 +725098,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.185
+ "Raw Cognitive Density": 0.174
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.44%",
- "Error & Exception Exposure": "61.83%",
+ "Cognitive Load Exposure": "9.08%",
+ "Error & Exception Exposure": "63.08%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.57%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "22.61%",
+ "State Flux Exposure": "21.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -725329,16 +725329,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.278
+ "Raw Cognitive Density": 0.268
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.16%",
- "Error & Exception Exposure": "64.92%",
+ "Cognitive Load Exposure": "12.7%",
+ "Error & Exception Exposure": "67.22%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.57%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "59.25%",
+ "State Flux Exposure": "57.79%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -725570,16 +725570,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.238
+ "Raw Cognitive Density": 0.229
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.43%",
- "Error & Exception Exposure": "61.49%",
+ "Cognitive Load Exposure": "11.05%",
+ "Error & Exception Exposure": "62.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.6%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "27.75%",
+ "State Flux Exposure": "26.56%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -725840,16 +725840,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
- "Error & Exception Exposure": "68.38%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.8%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "36.35%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -726081,16 +726081,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.549
+ "Raw Cognitive Density": 0.529
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.92%",
- "Error & Exception Exposure": "73.38%",
+ "Cognitive Load Exposure": "29.27%",
+ "Error & Exception Exposure": "76.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.82%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.12%",
+ "State Flux Exposure": "92.73%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -726332,16 +726332,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "21.08%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.83%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "55.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -726582,16 +726582,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.213
+ "Raw Cognitive Density": 0.202
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.47%",
- "Error & Exception Exposure": "62.14%",
+ "Cognitive Load Exposure": "10.06%",
+ "Error & Exception Exposure": "63.42%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.62%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "23.13%",
+ "State Flux Exposure": "22.08%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -726833,16 +726833,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.309
+ "Raw Cognitive Density": 0.298
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.6%",
- "Error & Exception Exposure": "65.28%",
+ "Cognitive Load Exposure": "14.08%",
+ "Error & Exception Exposure": "67.63%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.62%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "61.14%",
+ "State Flux Exposure": "59.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -727094,16 +727094,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.247
+ "Raw Cognitive Density": 0.237
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.81%",
- "Error & Exception Exposure": "62.66%",
+ "Cognitive Load Exposure": "11.37%",
+ "Error & Exception Exposure": "64.2%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.62%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "30.8%",
+ "State Flux Exposure": "29.53%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -727354,16 +727354,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.095
+ "Raw Cognitive Density": 0.088
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.78%",
- "Error & Exception Exposure": "58.62%",
+ "Cognitive Load Exposure": "6.61%",
+ "Error & Exception Exposure": "59.7%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.6%",
+ "State Flux Exposure": "20.6%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -727609,16 +727609,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.228
+ "Raw Cognitive Density": 0.217
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.04%",
- "Error & Exception Exposure": "63.7%",
+ "Cognitive Load Exposure": "10.62%",
+ "Error & Exception Exposure": "65.54%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "41.07%",
+ "State Flux Exposure": "39.63%",
"Commented Logic Exposure": "9.28%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -727841,16 +727841,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.209
+ "Raw Cognitive Density": 0.198
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.3%",
- "Error & Exception Exposure": "62.88%",
+ "Cognitive Load Exposure": "9.9%",
+ "Error & Exception Exposure": "64.44%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "31.4%",
+ "State Flux Exposure": "30.13%",
"Commented Logic Exposure": "9.33%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -728049,18 +728049,18 @@
"Static: Literature & Documentation": "36.4%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "44.29%",
- "Error & Exception Exposure": "56.37%",
- "Tech Debt Exposure": "38.98%",
+ "Cognitive Load Exposure": "44.33%",
+ "Error & Exception Exposure": "57.2%",
+ "Tech Debt Exposure": "39.68%",
"Testing Exposure": "36.78%",
"API Exposure": "2.79%",
- "Concurrency Exposure": "48.01%",
+ "Concurrency Exposure": "48.16%",
"State Flux Exposure": "45.45%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "45.45%",
"Instability Exposure": "31.82%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.88%",
+ "Documentation Exposure": "15.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -728731,17 +728731,17 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.12%",
+ "Error & Exception Exposure": "69.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "17.79%",
- "Concurrency Exposure": "28.22%",
+ "Concurrency Exposure": "29.87%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.97%",
+ "Documentation Exposure": "99.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -728917,15 +728917,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.045
+ "Raw Cognitive Density": 2.052
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.57%",
- "Error & Exception Exposure": "99.15%",
- "Tech Debt Exposure": "95.32%",
+ "Cognitive Load Exposure": "94.58%",
+ "Error & Exception Exposure": "99.44%",
+ "Tech Debt Exposure": "96.08%",
"Testing Exposure": "80.0%",
"API Exposure": "1.45%",
- "Concurrency Exposure": "99.88%",
+ "Concurrency Exposure": "99.89%",
"State Flux Exposure": "100.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -729265,12 +729265,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.44
+ "Raw Cognitive Density": 2.445
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "96.6%",
- "Error & Exception Exposure": "95.94%",
- "Tech Debt Exposure": "89.91%",
+ "Error & Exception Exposure": "96.4%",
+ "Tech Debt Exposure": "90.98%",
"Testing Exposure": "80.0%",
"API Exposure": "0.16%",
"Concurrency Exposure": "100.0%",
@@ -729657,12 +729657,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.96
+ "Raw Cognitive Density": 2.965
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "94.61%",
- "Error & Exception Exposure": "99.52%",
- "Tech Debt Exposure": "58.0%",
+ "Error & Exception Exposure": "99.61%",
+ "Tech Debt Exposure": "62.81%",
"Testing Exposure": "80.0%",
"API Exposure": "2.03%",
"Concurrency Exposure": "100.0%",
@@ -730026,12 +730026,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 2.405
+ "Raw Cognitive Density": 2.409
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "96.92%",
- "Error & Exception Exposure": "99.38%",
- "Tech Debt Exposure": "89.53%",
+ "Error & Exception Exposure": "99.57%",
+ "Tech Debt Exposure": "90.52%",
"Testing Exposure": "80.0%",
"API Exposure": "1.19%",
"Concurrency Exposure": "100.0%",
@@ -730519,12 +730519,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 3.78
+ "Raw Cognitive Density": 3.781
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "99.35%",
- "Error & Exception Exposure": "97.8%",
- "Tech Debt Exposure": "95.99%",
+ "Error & Exception Exposure": "98.2%",
+ "Tech Debt Exposure": "96.08%",
"Testing Exposure": "80.0%",
"API Exposure": "1.0%",
"Concurrency Exposure": "100.0%",
@@ -730533,7 +730533,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.13%",
+ "Documentation Exposure": "15.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -732290,11 +732290,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.08
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.13%",
- "Error & Exception Exposure": "62.18%",
+ "Cognitive Load Exposure": "5.53%",
+ "Error & Exception Exposure": "66.12%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "7.05%",
@@ -732423,18 +732423,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "20.19%",
- "Error & Exception Exposure": "30.91%",
- "Tech Debt Exposure": "24.6%",
- "Testing Exposure": "21.72%",
+ "Cognitive Load Exposure": "19.98%",
+ "Error & Exception Exposure": "30.98%",
+ "Tech Debt Exposure": "24.31%",
+ "Testing Exposure": "12.04%",
"API Exposure": "0.62%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "29.72%",
+ "State Flux Exposure": "29.2%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "25.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "4.12%",
+ "Documentation Exposure": "2.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -732789,12 +732789,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.83%",
+ "Error & Exception Exposure": "60.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "33.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -732942,12 +732942,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.007
+ "Raw Cognitive Density": 0.999
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "73.62%",
- "Error & Exception Exposure": "84.91%",
- "Tech Debt Exposure": "99.51%",
+ "Cognitive Load Exposure": "73.06%",
+ "Error & Exception Exposure": "89.1%",
+ "Tech Debt Exposure": "99.37%",
"Testing Exposure": "80.0%",
"API Exposure": "2.23%",
"Concurrency Exposure": "0.0%",
@@ -732956,7 +732956,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.84%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -733303,13 +733303,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.246
+ "Raw Cognitive Density": 1.221
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "87.9%",
- "Error & Exception Exposure": "96.54%",
- "Tech Debt Exposure": "97.32%",
- "Testing Exposure": "80.0%",
+ "Cognitive Load Exposure": "86.79%",
+ "Error & Exception Exposure": "97.99%",
+ "Tech Debt Exposure": "95.08%",
+ "Testing Exposure": "2.55%",
"API Exposure": "2.73%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -733317,7 +733317,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.14%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -733974,13 +733974,13 @@
"Static: Literature & Documentation": "3.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "5.31%",
- "Error & Exception Exposure": "21.09%",
- "Tech Debt Exposure": "0.65%",
+ "Cognitive Load Exposure": "4.65%",
+ "Error & Exception Exposure": "21.0%",
+ "Tech Debt Exposure": "0.53%",
"Testing Exposure": "4.81%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "6.77%",
+ "State Flux Exposure": "6.38%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "6.67%",
"Instability Exposure": "48.33%",
@@ -734179,16 +734179,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.279
+ "Raw Cognitive Density": 0.266
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.82%",
- "Error & Exception Exposure": "60.14%",
- "Tech Debt Exposure": "19.49%",
+ "Cognitive Load Exposure": "12.01%",
+ "Error & Exception Exposure": "60.88%",
+ "Tech Debt Exposure": "15.99%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "50.38%",
+ "State Flux Exposure": "47.39%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -734606,11 +734606,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.15
+ "Raw Cognitive Density": 0.133
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.32%",
- "Error & Exception Exposure": "69.07%",
+ "Cognitive Load Exposure": "7.82%",
+ "Error & Exception Exposure": "71.09%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -735085,10 +735085,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -735246,10 +735246,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.207
+ "Raw Cognitive Density": 0.172
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.23%",
+ "Cognitive Load Exposure": "9.03%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -735409,11 +735409,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "78.78%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -735570,10 +735570,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -736043,16 +736043,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -736200,11 +736200,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "77.23%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -736521,10 +736521,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -736680,16 +736680,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
- "Error & Exception Exposure": "68.38%",
+ "Cognitive Load Exposure": "9.28%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -736839,10 +736839,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -736996,11 +736996,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -737155,16 +737155,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -737312,11 +737312,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -737942,10 +737942,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -738417,10 +738417,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -738576,10 +738576,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -738866,13 +738866,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "26.91%",
- "Error & Exception Exposure": "69.07%",
- "Tech Debt Exposure": "45.66%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "27.3%",
+ "Error & Exception Exposure": "70.14%",
+ "Tech Debt Exposure": "48.46%",
+ "Testing Exposure": "2.44%",
"API Exposure": "4.09%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "79.84%",
+ "State Flux Exposure": "79.85%",
"Commented Logic Exposure": "1.57%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -738914,16 +738914,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.91%",
- "Error & Exception Exposure": "67.64%",
+ "Cognitive Load Exposure": "14.81%",
+ "Error & Exception Exposure": "71.27%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.29%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.18%",
+ "State Flux Exposure": "99.23%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -739082,13 +739082,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.944
+ "Raw Cognitive Density": 0.954
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.64%",
- "Error & Exception Exposure": "87.7%",
- "Tech Debt Exposure": "98.11%",
- "Testing Exposure": "2.55%",
+ "Cognitive Load Exposure": "38.15%",
+ "Error & Exception Exposure": "88.8%",
+ "Tech Debt Exposure": "98.55%",
+ "Testing Exposure": "2.57%",
"API Exposure": "6.05%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -739384,13 +739384,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.283
+ "Raw Cognitive Density": 1.289
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.17%",
- "Error & Exception Exposure": "94.15%",
+ "Cognitive Load Exposure": "49.3%",
+ "Error & Exception Exposure": "94.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.46%",
"API Exposure": "2.18%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -739687,13 +739687,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.867
+ "Raw Cognitive Density": 0.875
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "33.8%",
- "Error & Exception Exposure": "95.87%",
- "Tech Debt Exposure": "92.41%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "34.24%",
+ "Error & Exception Exposure": "96.2%",
+ "Tech Debt Exposure": "93.75%",
+ "Testing Exposure": "2.47%",
"API Exposure": "5.05%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -739950,7 +739950,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "37.75%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.32%",
"API Exposure": "1.86%",
"Concurrency Exposure": "0.0%",
@@ -740101,18 +740101,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "30.33%",
- "Error & Exception Exposure": "70.75%",
- "Tech Debt Exposure": "50.18%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "31.06%",
+ "Error & Exception Exposure": "73.42%",
+ "Tech Debt Exposure": "57.47%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.88%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.67%",
+ "State Flux Exposure": "96.82%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.75%",
+ "Documentation Exposure": "19.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -740149,13 +740149,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.872
+ "Raw Cognitive Density": 0.883
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.99%",
- "Error & Exception Exposure": "74.65%",
- "Tech Debt Exposure": "96.56%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "31.51%",
+ "Error & Exception Exposure": "76.66%",
+ "Tech Debt Exposure": "97.7%",
+ "Testing Exposure": "2.42%",
"API Exposure": "1.48%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -740163,7 +740163,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.55%",
+ "Documentation Exposure": "18.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -740388,13 +740388,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.963
+ "Raw Cognitive Density": 0.969
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "48.16%",
- "Error & Exception Exposure": "79.68%",
- "Tech Debt Exposure": "34.86%",
- "Testing Exposure": "2.51%",
+ "Cognitive Load Exposure": "48.52%",
+ "Error & Exception Exposure": "80.74%",
+ "Tech Debt Exposure": "40.36%",
+ "Testing Exposure": "2.53%",
"API Exposure": "0.88%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -740402,7 +740402,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.26%",
+ "Documentation Exposure": "19.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -740666,13 +740666,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.56
+ "Raw Cognitive Density": 0.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.12%",
- "Error & Exception Exposure": "61.77%",
- "Tech Debt Exposure": "37.75%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "20.18%",
+ "Error & Exception Exposure": "65.73%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.4%",
"API Exposure": "1.02%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.93%",
@@ -740680,7 +740680,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.68%",
+ "Documentation Exposure": "26.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -740851,13 +740851,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.56
+ "Raw Cognitive Density": 0.58
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.49%",
- "Error & Exception Exposure": "58.07%",
- "Tech Debt Exposure": "37.75%",
- "Testing Exposure": "2.34%",
+ "Cognitive Load Exposure": "26.9%",
+ "Error & Exception Exposure": "62.18%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.88%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.93%",
@@ -740865,7 +740865,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.54%",
+ "Documentation Exposure": "20.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -741031,13 +741031,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.929
+ "Raw Cognitive Density": 0.944
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.1%",
- "Error & Exception Exposure": "78.06%",
- "Tech Debt Exposure": "87.84%",
- "Testing Exposure": "2.46%",
+ "Cognitive Load Exposure": "37.82%",
+ "Error & Exception Exposure": "80.33%",
+ "Tech Debt Exposure": "91.3%",
+ "Testing Exposure": "2.48%",
"API Exposure": "1.81%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -741045,7 +741045,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "33.28%",
+ "Documentation Exposure": "38.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -741246,16 +741246,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.57%",
- "Error & Exception Exposure": "55.97%",
- "Tech Debt Exposure": "37.75%",
+ "Cognitive Load Exposure": "9.21%",
+ "Error & Exception Exposure": "60.14%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "76.85%",
+ "State Flux Exposure": "77.9%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -741417,13 +741417,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.997
+ "Raw Cognitive Density": 1.008
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "42.84%",
- "Error & Exception Exposure": "87.08%",
- "Tech Debt Exposure": "18.71%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "43.31%",
+ "Error & Exception Exposure": "88.19%",
+ "Tech Debt Exposure": "22.95%",
+ "Testing Exposure": "2.51%",
"API Exposure": "0.1%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -741602,13 +741602,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.7%",
- "Error & Exception Exposure": "6.35%",
+ "Cognitive Load Exposure": "2.19%",
+ "Error & Exception Exposure": "6.1%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "1.5%",
+ "State Flux Exposure": "1.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -742125,12 +742125,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.43%",
+ "Error & Exception Exposure": "53.3%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.37%",
+ "State Flux Exposure": "11.42%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -742592,10 +742592,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -744005,10 +744005,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -744790,10 +744790,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -744947,10 +744947,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -745104,10 +745104,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -745265,12 +745265,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.6%",
+ "Error & Exception Exposure": "53.4%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.01%",
+ "State Flux Exposure": "11.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -745418,10 +745418,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -745575,10 +745575,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -745893,12 +745893,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.6%",
+ "Error & Exception Exposure": "53.4%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.01%",
+ "State Flux Exposure": "11.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -746521,12 +746521,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "55.6%",
+ "Error & Exception Exposure": "53.4%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.01%",
+ "State Flux Exposure": "11.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -747121,13 +747121,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "10.73%",
- "Error & Exception Exposure": "78.65%",
- "Tech Debt Exposure": "91.27%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "8.85%",
+ "Error & Exception Exposure": "77.07%",
+ "Tech Debt Exposure": "72.2%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "56.44%",
+ "State Flux Exposure": "53.84%",
"Commented Logic Exposure": "1.72%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -747173,8 +747173,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "92.41%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -747351,9 +747351,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -747519,12 +747519,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -747687,12 +747687,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -747855,12 +747855,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -748023,8 +748023,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -748191,12 +748191,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -748360,11 +748360,11 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "82.39%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -748527,12 +748527,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -748695,12 +748695,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -748863,12 +748863,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749031,12 +749031,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749199,12 +749199,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749367,12 +749367,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749535,12 +749535,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749703,12 +749703,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -749871,12 +749871,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "86.07%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750039,12 +750039,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750207,12 +750207,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750375,12 +750375,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750543,12 +750543,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750709,16 +750709,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "62.88%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "52.14%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -750877,16 +750877,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.54
+ "Raw Cognitive Density": 0.48
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.15%",
- "Error & Exception Exposure": "75.37%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "25.35%",
+ "Error & Exception Exposure": "71.97%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751045,16 +751045,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.62
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "87.31%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "37.29%",
+ "Error & Exception Exposure": "88.67%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751213,16 +751213,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751381,16 +751381,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "11.51%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751549,16 +751549,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
- "Error & Exception Exposure": "68.94%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "14.19%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751717,16 +751717,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
- "Error & Exception Exposure": "64.66%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "56.39%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -751885,16 +751885,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.4
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
- "Error & Exception Exposure": "68.94%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "19.78%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -752053,16 +752053,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.283
+ "Raw Cognitive Density": 0.198
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.39%",
- "Error & Exception Exposure": "75.37%",
+ "Cognitive Load Exposure": "9.92%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -752271,16 +752271,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -752449,16 +752449,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "80.44%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -752627,16 +752627,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.78%",
- "Error & Exception Exposure": "79.41%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -752805,16 +752805,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.224
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.87%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753017,12 +753017,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753185,12 +753185,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753349,16 +753349,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
+ "Cognitive Load Exposure": "14.19%",
"Error & Exception Exposure": "82.39%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753517,16 +753517,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.36%",
+ "Cognitive Load Exposure": "14.19%",
"Error & Exception Exposure": "82.39%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753685,16 +753685,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -753853,16 +753853,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754021,16 +754021,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "81.44%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "81.11%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754189,16 +754189,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.62
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.29%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.52%",
+ "Cognitive Load Exposure": "31.86%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754387,16 +754387,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.82
+ "Raw Cognitive Density": 0.76
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "56.95%",
- "Error & Exception Exposure": "87.31%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.52%",
+ "Cognitive Load Exposure": "51.0%",
+ "Error & Exception Exposure": "88.67%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.49%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.94%",
+ "State Flux Exposure": "99.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754585,16 +754585,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "81.44%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "81.11%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "86.99%",
+ "State Flux Exposure": "84.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754763,16 +754763,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.62
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "37.29%",
- "Error & Exception Exposure": "85.81%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.47%",
+ "Cognitive Load Exposure": "31.86%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.73%",
+ "State Flux Exposure": "99.67%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -754961,16 +754961,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.247
+ "Raw Cognitive Density": 0.165
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.82%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "8.79%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "99.85%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -755159,16 +755159,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.221
+ "Raw Cognitive Density": 0.147
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.76%",
- "Error & Exception Exposure": "75.22%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "8.24%",
+ "Error & Exception Exposure": "73.36%",
+ "Tech Debt Exposure": "99.92%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.81%",
+ "State Flux Exposure": "17.1%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -755367,16 +755367,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.252
+ "Raw Cognitive Density": 0.168
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.0%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "8.88%",
+ "Error & Exception Exposure": "75.29%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "18.54%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -755575,13 +755575,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.188
+ "Raw Cognitive Density": 0.108
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.57%",
- "Error & Exception Exposure": "75.49%",
- "Tech Debt Exposure": "99.99%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "7.11%",
+ "Error & Exception Exposure": "73.11%",
+ "Tech Debt Exposure": "99.97%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -755783,16 +755783,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.472
+ "Raw Cognitive Density": 0.389
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "24.77%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "19.09%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.56%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -756007,18 +756007,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "59.47%",
- "Error & Exception Exposure": "77.54%",
- "Tech Debt Exposure": "99.0%",
- "Testing Exposure": "24.6%",
+ "Cognitive Load Exposure": "57.02%",
+ "Error & Exception Exposure": "78.12%",
+ "Tech Debt Exposure": "97.59%",
+ "Testing Exposure": "24.58%",
"API Exposure": "1.15%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.37%",
+ "State Flux Exposure": "99.25%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "7.71%",
+ "Documentation Exposure": "5.11%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -756055,13 +756055,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.727
+ "Raw Cognitive Density": 0.708
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "47.67%",
- "Error & Exception Exposure": "77.18%",
- "Tech Debt Exposure": "98.89%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "45.82%",
+ "Error & Exception Exposure": "79.56%",
+ "Tech Debt Exposure": "98.24%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -756313,13 +756313,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.749
+ "Raw Cognitive Density": 0.731
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "49.85%",
- "Error & Exception Exposure": "77.08%",
- "Tech Debt Exposure": "98.57%",
- "Testing Exposure": "2.43%",
+ "Cognitive Load Exposure": "48.05%",
+ "Error & Exception Exposure": "79.37%",
+ "Tech Debt Exposure": "97.78%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -756571,21 +756571,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.897
+ "Raw Cognitive Density": 0.869
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "64.31%",
- "Error & Exception Exposure": "69.32%",
- "Tech Debt Exposure": "99.46%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "61.7%",
+ "Error & Exception Exposure": "67.01%",
+ "Tech Debt Exposure": "98.91%",
+ "Testing Exposure": "2.45%",
"API Exposure": "2.78%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.03%",
+ "State Flux Exposure": "98.84%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.96%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -756799,21 +756799,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.083
+ "Raw Cognitive Density": 1.064
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.1%",
- "Error & Exception Exposure": "71.51%",
- "Tech Debt Exposure": "99.07%",
+ "Cognitive Load Exposure": "77.81%",
+ "Error & Exception Exposure": "71.41%",
+ "Tech Debt Exposure": "98.5%",
"Testing Exposure": "80.0%",
"API Exposure": "2.61%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.82%",
+ "State Flux Exposure": "99.78%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.17%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -757067,21 +757067,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.064
+ "Raw Cognitive Density": 1.045
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "77.84%",
- "Error & Exception Exposure": "70.57%",
- "Tech Debt Exposure": "99.11%",
+ "Cognitive Load Exposure": "76.49%",
+ "Error & Exception Exposure": "70.1%",
+ "Tech Debt Exposure": "98.57%",
"Testing Exposure": "80.0%",
"API Exposure": "2.64%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.71%",
+ "State Flux Exposure": "99.66%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "17.87%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -757335,16 +757335,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.42
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.08%",
- "Error & Exception Exposure": "83.3%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "83.6%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "97.07%",
+ "State Flux Exposure": "96.51%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -757513,13 +757513,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.044
+ "Raw Cognitive Density": 0.985
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "76.43%",
- "Error & Exception Exposure": "93.85%",
- "Tech Debt Exposure": "99.71%",
- "Testing Exposure": "2.47%",
+ "Cognitive Load Exposure": "71.93%",
+ "Error & Exception Exposure": "95.8%",
+ "Tech Debt Exposure": "98.74%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -757688,13 +757688,13 @@
"Static: Literature & Documentation": "7.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "40.28%",
- "Error & Exception Exposure": "63.68%",
+ "Cognitive Load Exposure": "38.57%",
+ "Error & Exception Exposure": "64.63%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "8.25%",
+ "Testing Exposure": "8.24%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "45.66%",
+ "State Flux Exposure": "45.61%",
"Commented Logic Exposure": "2.64%",
"Specification Exposure": "7.69%",
"Instability Exposure": "46.15%",
@@ -757893,13 +757893,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "91.52%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "94.42%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -758071,16 +758071,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.8
+ "Raw Cognitive Density": 0.76
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "54.98%",
- "Error & Exception Exposure": "86.88%",
+ "Cognitive Load Exposure": "51.0%",
+ "Error & Exception Exposure": "89.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.38%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -758249,13 +758249,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.116
+ "Raw Cognitive Density": 1.088
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "81.23%",
- "Error & Exception Exposure": "99.99%",
+ "Cognitive Load Exposure": "79.45%",
+ "Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.54%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -758447,13 +758447,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.599
+ "Raw Cognitive Density": 1.561
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "96.76%",
+ "Cognitive Load Exposure": "96.25%",
"Error & Exception Exposure": "100.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -758629,11 +758629,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.778
+ "Raw Cognitive Density": 1.764
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "94.23%",
- "Error & Exception Exposure": "99.77%",
+ "Cognitive Load Exposure": "91.38%",
+ "Error & Exception Exposure": "99.96%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -758907,13 +758907,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.585
+ "Raw Cognitive Density": 0.551
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.05%",
- "Error & Exception Exposure": "91.62%",
+ "Cognitive Load Exposure": "31.08%",
+ "Error & Exception Exposure": "94.72%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.94%",
+ "Testing Exposure": "2.89%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -759157,13 +759157,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.14
+ "Raw Cognitive Density": 1.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "82.64%",
- "Error & Exception Exposure": "95.47%",
+ "Cognitive Load Exposure": "80.22%",
+ "Error & Exception Exposure": "97.55%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.58%",
+ "Testing Exposure": "2.55%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -759345,10 +759345,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
@@ -759519,7 +759519,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -759681,16 +759681,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.78
+ "Raw Cognitive Density": 0.74
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "53.0%",
- "Error & Exception Exposure": "92.9%",
+ "Cognitive Load Exposure": "49.0%",
+ "Error & Exception Exposure": "95.63%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -759861,13 +759861,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -760185,18 +760185,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.71%",
- "Error & Exception Exposure": "25.89%",
- "Tech Debt Exposure": "92.33%",
- "Testing Exposure": "4.92%",
+ "Cognitive Load Exposure": "6.96%",
+ "Error & Exception Exposure": "20.77%",
+ "Tech Debt Exposure": "85.37%",
+ "Testing Exposure": "4.91%",
"API Exposure": "0.11%",
- "Concurrency Exposure": "31.78%",
- "State Flux Exposure": "14.5%",
+ "Concurrency Exposure": "30.47%",
+ "State Flux Exposure": "13.64%",
"Commented Logic Exposure": "0.25%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "0.71%",
+ "Documentation Exposure": "0.4%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -760238,10 +760238,10 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "63.03%",
+ "Concurrency Exposure": "59.23%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -760417,9 +760417,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "62.88%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.32%",
+ "Error & Exception Exposure": "56.39%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -760618,7 +760618,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
+ "Tech Debt Exposure": "99.33%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -760812,7 +760812,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -760982,7 +760982,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -761147,16 +761147,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.558
+ "Raw Cognitive Density": 0.53
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "31.73%",
- "Error & Exception Exposure": "43.5%",
+ "Cognitive Load Exposure": "29.3%",
+ "Error & Exception Exposure": "30.57%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "97.46%",
- "State Flux Exposure": "38.92%",
+ "Concurrency Exposure": "97.03%",
+ "State Flux Exposure": "36.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -761403,13 +761403,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "51.61%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.32%",
+ "Cognitive Load Exposure": "6.42%",
+ "Error & Exception Exposure": "37.42%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -761583,15 +761583,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.302
+ "Raw Cognitive Density": 0.29
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.27%",
+ "Cognitive Load Exposure": "13.7%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "76.82%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "71.14%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "97.73%",
+ "Concurrency Exposure": "97.34%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -761806,15 +761806,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "36.97%",
+ "Concurrency Exposure": "33.33%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -761979,16 +761979,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.364
+ "Raw Cognitive Density": 0.338
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.57%",
- "Error & Exception Exposure": "44.46%",
- "Tech Debt Exposure": "84.82%",
- "Testing Exposure": "2.31%",
+ "Cognitive Load Exposure": "16.12%",
+ "Error & Exception Exposure": "29.61%",
+ "Tech Debt Exposure": "74.49%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "49.22%",
- "State Flux Exposure": "73.44%",
+ "Concurrency Exposure": "45.23%",
+ "State Flux Exposure": "71.03%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -762157,16 +762157,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.377
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.38%",
- "Error & Exception Exposure": "50.31%",
- "Tech Debt Exposure": "97.42%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "16.23%",
+ "Error & Exception Exposure": "36.0%",
+ "Tech Debt Exposure": "93.64%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "54.09%",
+ "State Flux Exposure": "51.1%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -762335,16 +762335,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.136
+ "Raw Cognitive Density": 0.111
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.89%",
- "Error & Exception Exposure": "49.78%",
- "Tech Debt Exposure": "93.97%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "7.21%",
+ "Error & Exception Exposure": "39.75%",
+ "Tech Debt Exposure": "89.38%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "16.71%",
+ "State Flux Exposure": "15.11%",
"Commented Logic Exposure": "7.35%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -762553,7 +762553,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -762732,16 +762732,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.429
+ "Raw Cognitive Density": 0.393
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.66%",
- "Error & Exception Exposure": "67.05%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "19.33%",
+ "Error & Exception Exposure": "63.47%",
+ "Tech Debt Exposure": "99.96%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "59.27%",
- "State Flux Exposure": "89.9%",
+ "Concurrency Exposure": "55.36%",
+ "State Flux Exposure": "88.75%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -762966,16 +762966,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.4
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
- "Error & Exception Exposure": "52.25%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "19.78%",
+ "Error & Exception Exposure": "39.45%",
+ "Tech Debt Exposure": "99.93%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "83.2%",
- "State Flux Exposure": "21.42%",
+ "Concurrency Exposure": "80.85%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -763151,12 +763151,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "61.33%",
- "Tech Debt Exposure": "99.99%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "53.74%",
+ "Tech Debt Exposure": "99.97%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "57.01%",
- "State Flux Exposure": "14.6%",
+ "Concurrency Exposure": "53.05%",
+ "State Flux Exposure": "13.16%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -763352,21 +763352,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "62.28%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "56.39%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.3%",
"API Exposure": "3.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "21.4%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -763520,15 +763520,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.274
+ "Raw Cognitive Density": 0.25
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.96%",
+ "Cognitive Load Exposure": "11.92%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "79.72%",
- "Testing Exposure": "2.46%",
+ "Tech Debt Exposure": "68.43%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "46.7%",
+ "Concurrency Exposure": "42.75%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -763719,7 +763719,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
+ "Tech Debt Exposure": "99.33%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -763906,12 +763906,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "62.28%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "56.39%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -764082,15 +764082,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.174
+ "Raw Cognitive Density": 0.151
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.09%",
+ "Cognitive Load Exposure": "8.35%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.16%",
+ "Tech Debt Exposure": "98.5%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "46.04%",
+ "Concurrency Exposure": "42.1%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -764299,7 +764299,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -764479,12 +764479,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "30.05%",
- "Tech Debt Exposure": "99.79%",
- "Testing Exposure": "2.31%",
+ "Error & Exception Exposure": "16.02%",
+ "Tech Debt Exposure": "99.64%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "77.85%",
- "State Flux Exposure": "13.94%",
+ "Concurrency Exposure": "74.97%",
+ "State Flux Exposure": "12.56%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -764685,16 +764685,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.167
+ "Raw Cognitive Density": 0.13
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.84%",
- "Error & Exception Exposure": "58.14%",
- "Tech Debt Exposure": "84.11%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "7.72%",
+ "Error & Exception Exposure": "50.0%",
+ "Tech Debt Exposure": "67.72%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "20.44%",
+ "State Flux Exposure": "18.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -764875,16 +764875,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.347
+ "Raw Cognitive Density": 0.33
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.62%",
- "Error & Exception Exposure": "44.22%",
- "Tech Debt Exposure": "86.62%",
+ "Cognitive Load Exposure": "15.7%",
+ "Error & Exception Exposure": "34.41%",
+ "Tech Debt Exposure": "82.73%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "51.88%",
- "State Flux Exposure": "34.2%",
+ "Concurrency Exposure": "47.89%",
+ "State Flux Exposure": "31.56%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -765167,12 +765167,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.056
+ "Raw Cognitive Density": 0.037
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.86%",
+ "Cognitive Load Exposure": "5.46%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "96.98%",
+ "Tech Debt Exposure": "95.87%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -765405,15 +765405,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
+ "Cognitive Load Exposure": "16.25%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "93.5%",
+ "Concurrency Exposure": "92.46%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -765583,10 +765583,10 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "93.5%",
+ "Concurrency Exposure": "92.46%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -765752,12 +765752,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "36.7%",
- "Tech Debt Exposure": "83.67%",
+ "Error & Exception Exposure": "23.44%",
+ "Tech Debt Exposure": "77.56%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "14.37%",
+ "State Flux Exposure": "12.95%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -765955,7 +765955,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -766097,8 +766097,8 @@
"Static: Literature & Documentation": "33.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "45.35%",
- "Error & Exception Exposure": "59.3%",
+ "Cognitive Load Exposure": "45.19%",
+ "Error & Exception Exposure": "62.16%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "53.33%",
"API Exposure": "0.12%",
@@ -766108,7 +766108,7 @@
"Specification Exposure": "66.67%",
"Instability Exposure": "33.33%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "4.38%",
+ "Documentation Exposure": "3.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -766302,11 +766302,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.226
+ "Raw Cognitive Density": 1.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.92%",
- "Error & Exception Exposure": "82.21%",
+ "Cognitive Load Exposure": "60.81%",
+ "Error & Exception Exposure": "88.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.37%",
@@ -766316,7 +766316,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.14%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -766667,11 +766667,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.026
+ "Raw Cognitive Density": 1.021
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "75.13%",
- "Error & Exception Exposure": "95.7%",
+ "Cognitive Load Exposure": "74.75%",
+ "Error & Exception Exposure": "98.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
@@ -766878,13 +766878,13 @@
"Static: Literature & Documentation": "4.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "8.79%",
- "Error & Exception Exposure": "9.25%",
- "Tech Debt Exposure": "3.23%",
+ "Cognitive Load Exposure": "8.49%",
+ "Error & Exception Exposure": "9.33%",
+ "Tech Debt Exposure": "2.71%",
"Testing Exposure": "2.21%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "6.53%",
+ "State Flux Exposure": "6.35%",
"Commented Logic Exposure": "0.26%",
"Specification Exposure": "0.0%",
"Instability Exposure": "48.0%",
@@ -766926,10 +766926,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -767083,10 +767083,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -767240,10 +767240,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.161
+ "Raw Cognitive Density": 0.145
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.67%",
+ "Cognitive Load Exposure": "8.17%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -767397,12 +767397,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.183
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
+ "Cognitive Load Exposure": "9.39%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "60.27%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -767554,10 +767554,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -767711,10 +767711,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -767868,10 +767868,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -768182,10 +768182,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.172
+ "Raw Cognitive Density": 0.167
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.02%",
+ "Cognitive Load Exposure": "8.84%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -768339,10 +768339,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.157
+ "Raw Cognitive Density": 0.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.54%",
+ "Cognitive Load Exposure": "8.32%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -768496,10 +768496,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.196
+ "Raw Cognitive Density": 0.193
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.83%",
+ "Cognitive Load Exposure": "9.71%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -768810,10 +768810,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.185
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.43%",
+ "Cognitive Load Exposure": "9.29%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -768967,16 +768967,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.405
+ "Raw Cognitive Density": 0.396
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.13%",
- "Error & Exception Exposure": "65.76%",
+ "Cognitive Load Exposure": "19.55%",
+ "Error & Exception Exposure": "68.54%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.83%",
+ "State Flux Exposure": "74.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -769124,10 +769124,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.245
+ "Raw Cognitive Density": 0.235
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.72%",
+ "Cognitive Load Exposure": "11.32%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -769281,16 +769281,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.234
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.52%",
- "Error & Exception Exposure": "58.33%",
- "Tech Debt Exposure": "20.36%",
+ "Cognitive Load Exposure": "11.26%",
+ "Error & Exception Exposure": "59.37%",
+ "Tech Debt Exposure": "17.86%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.07%",
+ "State Flux Exposure": "20.09%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -769438,10 +769438,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.191
+ "Raw Cognitive Density": 0.186
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.67%",
+ "Cognitive Load Exposure": "9.49%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -769595,10 +769595,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.294
+ "Raw Cognitive Density": 0.287
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.9%",
+ "Cognitive Load Exposure": "13.55%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -769752,10 +769752,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.111
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.46%",
+ "Cognitive Load Exposure": "7.21%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -769909,10 +769909,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.154
+ "Raw Cognitive Density": 0.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.44%",
+ "Cognitive Load Exposure": "8.31%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -770066,16 +770066,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.285
+ "Raw Cognitive Density": 0.281
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.48%",
- "Error & Exception Exposure": "51.71%",
+ "Cognitive Load Exposure": "13.31%",
+ "Error & Exception Exposure": "48.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "42.01%",
+ "State Flux Exposure": "40.56%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -770223,10 +770223,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.179
+ "Raw Cognitive Density": 0.174
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.25%",
+ "Cognitive Load Exposure": "9.08%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -770380,10 +770380,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.192
+ "Raw Cognitive Density": 0.178
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.68%",
+ "Cognitive Load Exposure": "9.21%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -770537,16 +770537,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.218
+ "Raw Cognitive Density": 0.216
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.65%",
- "Error & Exception Exposure": "55.45%",
+ "Cognitive Load Exposure": "10.55%",
+ "Error & Exception Exposure": "56.48%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "24.42%",
+ "State Flux Exposure": "23.33%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -770828,18 +770828,18 @@
"Static: Literature & Documentation": "6.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "34.4%",
- "Error & Exception Exposure": "71.12%",
- "Tech Debt Exposure": "17.19%",
+ "Cognitive Load Exposure": "31.22%",
+ "Error & Exception Exposure": "70.39%",
+ "Tech Debt Exposure": "14.75%",
"Testing Exposure": "2.17%",
"API Exposure": "0.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "69.31%",
+ "State Flux Exposure": "68.1%",
"Commented Logic Exposure": "7.12%",
"Specification Exposure": "13.33%",
"Instability Exposure": "46.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "1.93%",
+ "Documentation Exposure": "1.33%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -771190,16 +771190,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -771347,16 +771347,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.86
+ "Raw Cognitive Density": 0.8
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "60.83%",
- "Error & Exception Exposure": "83.3%",
+ "Cognitive Load Exposure": "54.98%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -771504,16 +771504,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.5
+ "Raw Cognitive Density": 0.44
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "26.89%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "22.44%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.4%",
"Commented Logic Exposure": "64.57%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -771682,13 +771682,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.962
+ "Raw Cognitive Density": 0.933
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "70.01%",
- "Error & Exception Exposure": "82.04%",
- "Tech Debt Exposure": "64.46%",
- "Testing Exposure": "2.53%",
+ "Cognitive Load Exposure": "67.55%",
+ "Error & Exception Exposure": "82.98%",
+ "Tech Debt Exposure": "47.03%",
+ "Testing Exposure": "2.48%",
"API Exposure": "2.9%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.99%",
@@ -771696,7 +771696,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.99%",
+ "Documentation Exposure": "20.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -771860,16 +771860,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.76
+ "Raw Cognitive Density": 0.7
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "51.0%",
- "Error & Exception Exposure": "78.56%",
+ "Cognitive Load Exposure": "45.02%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "100.0%",
+ "State Flux Exposure": "99.99%",
"Commented Logic Exposure": "23.15%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -772017,16 +772017,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "71.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -772174,11 +772174,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.21
+ "Raw Cognitive Density": 1.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "86.29%",
- "Error & Exception Exposure": "95.0%",
+ "Cognitive Load Exposure": "83.2%",
+ "Error & Exception Exposure": "96.59%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -772331,11 +772331,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.93
+ "Raw Cognitive Density": 0.87
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.26%",
- "Error & Exception Exposure": "91.01%",
+ "Cognitive Load Exposure": "61.77%",
+ "Error & Exception Exposure": "92.9%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -772488,16 +772488,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
- "Error & Exception Exposure": "77.68%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "75.29%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -772645,12 +772645,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.99
+ "Raw Cognitive Density": 0.93
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "72.31%",
- "Error & Exception Exposure": "95.06%",
- "Tech Debt Exposure": "95.26%",
+ "Cognitive Load Exposure": "67.26%",
+ "Error & Exception Exposure": "96.86%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -772802,11 +772802,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "73.66%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -772959,16 +772959,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "9.28%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "53.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -773116,16 +773116,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
+ "Cognitive Load Exposure": "15.19%",
"Error & Exception Exposure": "82.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.55%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -773249,9 +773249,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "9.9%",
+ "Cognitive Load Exposure": "9.26%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "2.25%",
+ "Tech Debt Exposure": "1.94%",
"Testing Exposure": "2.5%",
"API Exposure": "3.12%",
"Concurrency Exposure": "0.0%",
@@ -773260,7 +773260,7 @@
"Specification Exposure": "90.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.25%",
+ "Documentation Exposure": "36.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -773297,10 +773297,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
@@ -773311,7 +773311,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -773465,10 +773465,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -773479,7 +773479,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -773633,10 +773633,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
@@ -773647,7 +773647,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -773801,10 +773801,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
@@ -773815,7 +773815,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -773969,10 +773969,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.147
+ "Raw Cognitive Density": 0.122
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.22%",
+ "Cognitive Load Exposure": "7.51%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.55%",
@@ -773983,7 +773983,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.33%",
+ "Documentation Exposure": "38.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -774217,10 +774217,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
@@ -774231,7 +774231,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -774385,10 +774385,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
@@ -774399,7 +774399,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -774553,10 +774553,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.207
+ "Raw Cognitive Density": 0.196
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.21%",
+ "Cognitive Load Exposure": "9.82%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.56%",
@@ -774567,7 +774567,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.08%",
+ "Documentation Exposure": "28.32%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -774801,10 +774801,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.386
+ "Raw Cognitive Density": 0.368
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.91%",
+ "Cognitive Load Exposure": "17.85%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.93%",
@@ -774815,7 +774815,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.47%",
+ "Documentation Exposure": "39.14%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -775099,10 +775099,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.278
+ "Raw Cognitive Density": 0.259
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.14%",
+ "Cognitive Load Exposure": "12.31%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.72%",
@@ -775113,7 +775113,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.3%",
+ "Documentation Exposure": "40.65%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -775297,10 +775297,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.11
+ "Raw Cognitive Density": 0.091
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.17%",
+ "Cognitive Load Exposure": "6.69%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.54%",
@@ -775311,7 +775311,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "45.02%",
+ "Documentation Exposure": "40.13%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -775585,10 +775585,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.7%",
@@ -775599,7 +775599,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -775773,12 +775773,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.184
+ "Raw Cognitive Density": 0.173
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.4%",
+ "Cognitive Load Exposure": "9.06%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "44.92%",
+ "Tech Debt Exposure": "38.72%",
"Testing Exposure": "2.65%",
"API Exposure": "2.87%",
"Concurrency Exposure": "0.0%",
@@ -775787,7 +775787,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.71%",
+ "Documentation Exposure": "27.23%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -776091,10 +776091,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
@@ -776105,7 +776105,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -776259,10 +776259,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
@@ -776273,7 +776273,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -776429,10 +776429,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.62%",
@@ -776443,7 +776443,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -776617,10 +776617,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -776774,10 +776774,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "12.35%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.62%",
@@ -776788,7 +776788,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -776962,10 +776962,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.39%",
@@ -776976,7 +776976,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -777132,10 +777132,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.149
+ "Raw Cognitive Density": 0.134
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.29%",
+ "Cognitive Load Exposure": "7.85%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -777265,10 +777265,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "14.08%",
- "Error & Exception Exposure": "11.84%",
- "Tech Debt Exposure": "8.66%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "12.1%",
+ "Error & Exception Exposure": "8.62%",
+ "Tech Debt Exposure": "7.43%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -777313,13 +777313,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -777541,13 +777541,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.288
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.39%",
+ "Cognitive Load Exposure": "13.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -777859,13 +777859,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.718
+ "Raw Cognitive Density": 0.676
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "46.84%",
- "Error & Exception Exposure": "61.42%",
+ "Cognitive Load Exposure": "42.66%",
+ "Error & Exception Exposure": "51.65%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.69%",
+ "Testing Exposure": "2.6%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -778067,13 +778067,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.254
+ "Raw Cognitive Density": 0.239
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.07%",
- "Error & Exception Exposure": "40.42%",
+ "Cognitive Load Exposure": "11.47%",
+ "Error & Exception Exposure": "28.22%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -778465,13 +778465,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -778683,13 +778683,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "95.26%",
- "Testing Exposure": "2.35%",
+ "Tech Debt Exposure": "81.76%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -778861,13 +778861,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.294
+ "Raw Cognitive Density": 0.279
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.88%",
- "Error & Exception Exposure": "28.42%",
+ "Cognitive Load Exposure": "13.18%",
+ "Error & Exception Exposure": "14.97%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -779445,7 +779445,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -779637,13 +779637,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.72%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -779855,13 +779855,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -780023,13 +780023,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "10.72%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -780167,18 +780167,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.81%",
- "Error & Exception Exposure": "16.03%",
- "Tech Debt Exposure": "4.79%",
+ "Cognitive Load Exposure": "2.62%",
+ "Error & Exception Exposure": "16.63%",
+ "Tech Debt Exposure": "4.41%",
"Testing Exposure": "2.33%",
"API Exposure": "2.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.32%",
+ "State Flux Exposure": "15.17%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "27.78%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.72%",
+ "Documentation Exposure": "17.47%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -780215,10 +780215,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
@@ -780413,10 +780413,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.38%",
@@ -780581,10 +780581,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.39%",
@@ -780595,7 +780595,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.29%",
+ "Documentation Exposure": "41.75%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -780920,12 +780920,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -781077,12 +781077,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "98.66%",
+ "State Flux Exposure": "98.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -781701,21 +781701,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.231
+ "Raw Cognitive Density": 0.212
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.14%",
- "Error & Exception Exposure": "66.54%",
- "Tech Debt Exposure": "86.14%",
+ "Cognitive Load Exposure": "10.4%",
+ "Error & Exception Exposure": "67.92%",
+ "Tech Debt Exposure": "79.35%",
"Testing Exposure": "2.41%",
"API Exposure": "9.58%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "20.9%",
+ "State Flux Exposure": "19.93%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "95.04%",
+ "Documentation Exposure": "88.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -781879,21 +781879,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.41%",
"API Exposure": "9.29%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "55.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "92.58%",
+ "Documentation Exposure": "83.68%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -783122,18 +783122,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "8.24%",
- "Error & Exception Exposure": "45.73%",
- "Tech Debt Exposure": "63.23%",
- "Testing Exposure": "5.65%",
+ "Cognitive Load Exposure": "7.18%",
+ "Error & Exception Exposure": "45.89%",
+ "Tech Debt Exposure": "56.82%",
+ "Testing Exposure": "5.64%",
"API Exposure": "0.43%",
- "Concurrency Exposure": "1.14%",
- "State Flux Exposure": "20.04%",
+ "Concurrency Exposure": "1.01%",
+ "State Flux Exposure": "19.13%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "4.44%",
+ "Documentation Exposure": "4.22%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -783176,7 +783176,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.46%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -783382,12 +783382,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -783553,16 +783553,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "69.76%",
- "Tech Debt Exposure": "99.75%",
+ "Cognitive Load Exposure": "9.97%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "99.33%",
"Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -783750,7 +783750,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -783916,16 +783916,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
- "Error & Exception Exposure": "78.34%",
+ "Cognitive Load Exposure": "11.51%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "66.82%",
+ "State Flux Exposure": "64.11%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -784096,13 +784096,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.36%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -784280,12 +784280,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.97%",
- "Tech Debt Exposure": "53.67%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "73.66%",
+ "Tech Debt Exposure": "39.15%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "16.39%",
+ "State Flux Exposure": "14.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -784470,12 +784470,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.06%",
- "Error & Exception Exposure": "69.54%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "5.53%",
+ "Error & Exception Exposure": "68.01%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -784823,7 +784823,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -785191,7 +785191,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -785357,16 +785357,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.377
+ "Raw Cognitive Density": 0.359
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.39%",
- "Error & Exception Exposure": "67.76%",
- "Tech Debt Exposure": "97.89%",
+ "Cognitive Load Exposure": "17.28%",
+ "Error & Exception Exposure": "68.11%",
+ "Tech Debt Exposure": "97.05%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "48.87%",
+ "State Flux Exposure": "45.88%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -785720,13 +785720,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "11.51%",
"Error & Exception Exposure": "80.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.5%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -785919,8 +785919,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.37%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -786107,13 +786107,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.225
+ "Raw Cognitive Density": 0.169
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.92%",
- "Error & Exception Exposure": "77.23%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.65%",
+ "Cognitive Load Exposure": "8.91%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.62%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -786361,13 +786361,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
- "Error & Exception Exposure": "78.78%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -786555,16 +786555,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.48
+ "Raw Cognitive Density": 0.443
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.37%",
- "Error & Exception Exposure": "78.67%",
- "Tech Debt Exposure": "85.52%",
- "Testing Exposure": "2.67%",
+ "Cognitive Load Exposure": "19.7%",
+ "Error & Exception Exposure": "81.57%",
+ "Tech Debt Exposure": "75.37%",
+ "Testing Exposure": "2.64%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "74.23%",
+ "State Flux Exposure": "71.87%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -786831,16 +786831,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.32
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.19%",
- "Error & Exception Exposure": "71.62%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -787013,11 +787013,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "6.42%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -787192,11 +787192,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "6.42%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -787371,21 +787371,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.267
+ "Raw Cognitive Density": 0.233
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.64%",
- "Error & Exception Exposure": "78.48%",
- "Tech Debt Exposure": "99.81%",
- "Testing Exposure": "2.56%",
+ "Cognitive Load Exposure": "11.24%",
+ "Error & Exception Exposure": "80.61%",
+ "Tech Debt Exposure": "99.56%",
+ "Testing Exposure": "2.54%",
"API Exposure": "9.87%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "63.8%",
+ "State Flux Exposure": "60.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "94.68%",
+ "Documentation Exposure": "89.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -787613,16 +787613,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.117
+ "Raw Cognitive Density": 0.097
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.35%",
- "Error & Exception Exposure": "65.07%",
- "Tech Debt Exposure": "90.32%",
+ "Cognitive Load Exposure": "6.84%",
+ "Error & Exception Exposure": "65.34%",
+ "Tech Debt Exposure": "81.83%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "27.39%",
- "State Flux Exposure": "15.29%",
+ "Concurrency Exposure": "24.32%",
+ "State Flux Exposure": "13.8%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -787815,16 +787815,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.477
+ "Raw Cognitive Density": 0.437
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "25.12%",
- "Error & Exception Exposure": "70.88%",
- "Tech Debt Exposure": "69.19%",
- "Testing Exposure": "2.64%",
+ "Cognitive Load Exposure": "22.25%",
+ "Error & Exception Exposure": "70.81%",
+ "Tech Debt Exposure": "51.84%",
+ "Testing Exposure": "2.61%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "80.68%",
+ "State Flux Exposure": "78.74%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -788074,18 +788074,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "5.7%",
- "Error & Exception Exposure": "14.94%",
- "Tech Debt Exposure": "90.85%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "4.87%",
+ "Error & Exception Exposure": "12.0%",
+ "Tech Debt Exposure": "89.7%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.08%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "5.74%",
+ "State Flux Exposure": "5.36%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "2.66%",
+ "Documentation Exposure": "2.08%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -788122,16 +788122,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.136
+ "Raw Cognitive Density": 0.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.91%",
- "Error & Exception Exposure": "46.44%",
+ "Cognitive Load Exposure": "7.15%",
+ "Error & Exception Exposure": "34.3%",
"Tech Debt Exposure": "99.99%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.45%",
+ "State Flux Exposure": "13.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -788395,13 +788395,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -788575,13 +788575,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.63%",
+ "Cognitive Load Exposure": "7.45%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -788761,8 +788761,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -788940,13 +788940,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.165
+ "Raw Cognitive Density": 0.11
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.73%",
+ "Cognitive Load Exposure": "5.74%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -789144,16 +789144,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.241
+ "Raw Cognitive Density": 0.226
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.54%",
- "Error & Exception Exposure": "38.6%",
+ "Cognitive Load Exposure": "10.96%",
+ "Error & Exception Exposure": "24.11%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "69.42%",
+ "State Flux Exposure": "66.81%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -789467,13 +789467,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.199
+ "Raw Cognitive Density": 0.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.95%",
- "Error & Exception Exposure": "51.48%",
+ "Cognitive Load Exposure": "8.3%",
+ "Error & Exception Exposure": "38.37%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -789714,9 +789714,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.77%",
- "Tech Debt Exposure": "99.87%",
- "Testing Exposure": "2.44%",
+ "Error & Exception Exposure": "67.97%",
+ "Tech Debt Exposure": "99.76%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -790021,8 +790021,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -790197,13 +790197,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -790389,13 +790389,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.329
+ "Raw Cognitive Density": 0.274
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.76%",
+ "Cognitive Load Exposure": "10.37%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.43%",
+ "Tech Debt Exposure": "99.99%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -790610,16 +790610,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.452
+ "Raw Cognitive Density": 0.416
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.32%",
- "Error & Exception Exposure": "62.07%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "20.83%",
+ "Error & Exception Exposure": "54.72%",
+ "Tech Debt Exposure": "99.96%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -790843,16 +790843,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.193
+ "Raw Cognitive Density": 0.15
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.74%",
- "Error & Exception Exposure": "51.87%",
- "Tech Debt Exposure": "99.99%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "8.33%",
+ "Error & Exception Exposure": "41.17%",
+ "Tech Debt Exposure": "99.97%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "18.62%",
+ "State Flux Exposure": "16.87%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -791092,7 +791092,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -791299,8 +791299,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -791479,8 +791479,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.36%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -791691,7 +791691,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -791980,8 +791980,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "99.99%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -792356,16 +792356,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.062
+ "Raw Cognitive Density": 0.049
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.01%",
- "Error & Exception Exposure": "38.21%",
+ "Cognitive Load Exposure": "5.7%",
+ "Error & Exception Exposure": "27.4%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "12.86%",
+ "State Flux Exposure": "11.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -792859,13 +792859,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.151
+ "Raw Cognitive Density": 0.108
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.34%",
+ "Cognitive Load Exposure": "7.11%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.4%",
+ "Tech Debt Exposure": "99.96%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -793121,13 +793121,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.155
+ "Raw Cognitive Density": 0.104
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.57%",
+ "Cognitive Load Exposure": "5.76%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -793382,13 +793382,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -793578,8 +793578,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.33%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.3%",
"API Exposure": "1.86%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -793587,7 +793587,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.91%",
+ "Documentation Exposure": "50.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -793750,10 +793750,10 @@
"Static: Literature & Documentation": "9.1%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "0.82%",
- "Error & Exception Exposure": "27.51%",
+ "Cognitive Load Exposure": "0.6%",
+ "Error & Exception Exposure": "26.32%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.16%",
+ "Testing Exposure": "2.14%",
"API Exposure": "0.32%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -793761,7 +793761,7 @@
"Specification Exposure": "81.82%",
"Instability Exposure": "45.45%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "3.97%",
+ "Documentation Exposure": "1.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -793961,7 +793961,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -794219,7 +794219,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.31%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -794397,7 +794397,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -794575,7 +794575,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -794841,7 +794841,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "62.58%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -795009,9 +795009,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -795219,7 +795219,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -795415,9 +795415,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.66%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -795425,7 +795425,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.67%",
+ "Documentation Exposure": "21.73%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -795599,13 +795599,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.173
+ "Raw Cognitive Density": 0.086
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.03%",
- "Error & Exception Exposure": "88.92%",
+ "Cognitive Load Exposure": "6.57%",
+ "Error & Exception Exposure": "90.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -795843,7 +795843,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -797952,8 +797952,8 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "12.63%",
- "Error & Exception Exposure": "27.28%",
+ "Cognitive Load Exposure": "12.1%",
+ "Error & Exception Exposure": "29.13%",
"Tech Debt Exposure": "31.29%",
"Testing Exposure": "14.88%",
"API Exposure": "2.85%",
@@ -798321,7 +798321,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "17.36%",
- "Error & Exception Exposure": "73.66%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "3.53%",
@@ -798658,8 +798658,8 @@
"Raw Cognitive Density": 0.898
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "46.51%",
- "Error & Exception Exposure": "90.04%",
+ "Cognitive Load Exposure": "43.36%",
+ "Error & Exception Exposure": "95.04%",
"Tech Debt Exposure": "25.51%",
"Testing Exposure": "80.0%",
"API Exposure": "6.52%",
@@ -798904,7 +798904,7 @@
"Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "62.25%",
- "Testing Exposure": "2.31%",
+ "Testing Exposure": "2.32%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -799047,17 +799047,17 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "45.04%",
- "Tech Debt Exposure": "51.62%",
+ "Error & Exception Exposure": "45.62%",
+ "Tech Debt Exposure": "43.22%",
"Testing Exposure": "2.33%",
"API Exposure": "0.98%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "1.22%",
+ "State Flux Exposure": "1.2%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "98.99%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.6%",
+ "Documentation Exposure": "7.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -799099,7 +799099,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -799270,7 +799270,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -799441,7 +799441,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -799611,9 +799611,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "86.07%",
- "Tech Debt Exposure": "98.43%",
- "Testing Exposure": "2.4%",
+ "Error & Exception Exposure": "89.5%",
+ "Tech Debt Exposure": "96.64%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -799804,9 +799804,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.59%",
+ "Error & Exception Exposure": "73.11%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -800168,7 +800168,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -800510,7 +800510,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -800852,7 +800852,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -801194,7 +801194,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -801365,7 +801365,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -801878,7 +801878,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -802391,7 +802391,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -802562,7 +802562,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -802904,7 +802904,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -803074,8 +803074,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -803245,7 +803245,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -803417,9 +803417,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.32%",
+ "Error & Exception Exposure": "72.84%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -803610,9 +803610,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.31%",
- "Tech Debt Exposure": "91.38%",
- "Testing Exposure": "2.39%",
+ "Error & Exception Exposure": "63.7%",
+ "Tech Debt Exposure": "86.97%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -803862,7 +803862,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.68%",
+ "Testing Exposure": "2.65%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -804402,7 +804402,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -804573,7 +804573,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -804744,7 +804744,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -804915,7 +804915,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -805086,7 +805086,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -805266,7 +805266,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -805437,7 +805437,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -805598,9 +805598,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -805769,7 +805769,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -805779,7 +805779,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "53.67%",
+ "Documentation Exposure": "33.02%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -805950,9 +805950,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -806121,9 +806121,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -806292,9 +806292,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -806463,7 +806463,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -806473,7 +806473,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.37%",
+ "Documentation Exposure": "34.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -806644,7 +806644,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -806654,7 +806654,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -806814,7 +806814,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -806824,7 +806824,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -806984,7 +806984,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -806994,7 +806994,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -807154,7 +807154,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -807164,7 +807164,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -807324,7 +807324,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -807334,7 +807334,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.37%",
+ "Documentation Exposure": "34.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -807505,7 +807505,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -807515,7 +807515,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -807675,7 +807675,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "3.53%",
@@ -807685,7 +807685,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "26.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -807845,7 +807845,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -807855,7 +807855,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.37%",
+ "Documentation Exposure": "34.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -808026,7 +808026,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -808036,7 +808036,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.37%",
+ "Documentation Exposure": "34.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -808207,7 +808207,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "5.59%",
@@ -808217,7 +808217,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.37%",
+ "Documentation Exposure": "34.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -808388,12 +808388,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -808570,8 +808570,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -808741,8 +808741,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -808912,8 +808912,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809083,8 +809083,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809254,8 +809254,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809425,8 +809425,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809596,8 +809596,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809767,8 +809767,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -809938,8 +809938,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -810109,9 +810109,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "74.52%",
+ "Error & Exception Exposure": "77.05%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -810303,7 +810303,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -810473,12 +810473,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "78.34%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.39%",
+ "State Flux Exposure": "99.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -810640,7 +810640,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -810811,7 +810811,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -810972,9 +810972,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -811143,8 +811143,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -811314,8 +811314,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -811485,8 +811485,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -811656,8 +811656,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -811827,8 +811827,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -811998,8 +811998,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -812169,8 +812169,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -812340,8 +812340,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -812511,8 +812511,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -812682,8 +812682,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -812853,8 +812853,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -813024,8 +813024,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -813195,8 +813195,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -813367,7 +813367,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -813547,7 +813547,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -813718,7 +813718,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -813889,7 +813889,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -814060,7 +814060,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -814231,7 +814231,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -814392,8 +814392,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "70.49%",
- "Tech Debt Exposure": "64.16%",
+ "Error & Exception Exposure": "71.16%",
+ "Tech Debt Exposure": "47.43%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -814564,9 +814564,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.42%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -814768,7 +814768,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -814936,8 +814936,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815107,8 +815107,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815278,8 +815278,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815446,8 +815446,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815614,8 +815614,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815782,8 +815782,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -815960,7 +815960,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -816131,7 +816131,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.47%",
+ "Documentation Exposure": "30.85%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -816302,7 +816302,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.17%",
+ "Documentation Exposure": "31.86%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -816463,8 +816463,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -816603,13 +816603,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.45%",
- "Error & Exception Exposure": "17.2%",
- "Tech Debt Exposure": "91.84%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "3.07%",
+ "Error & Exception Exposure": "16.15%",
+ "Tech Debt Exposure": "85.71%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "1.63%",
- "State Flux Exposure": "7.68%",
+ "Concurrency Exposure": "1.5%",
+ "State Flux Exposure": "7.43%",
"Commented Logic Exposure": "0.34%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -816656,8 +816656,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.63%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "98.16%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -816916,8 +816916,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -817102,13 +817102,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.093
+ "Raw Cognitive Density": 0.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.74%",
- "Error & Exception Exposure": "53.85%",
+ "Cognitive Load Exposure": "6.18%",
+ "Error & Exception Exposure": "47.86%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -817415,16 +817415,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.229
+ "Raw Cognitive Density": 0.222
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.05%",
- "Error & Exception Exposure": "61.03%",
- "Tech Debt Exposure": "99.94%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "10.79%",
+ "Error & Exception Exposure": "57.14%",
+ "Tech Debt Exposure": "99.93%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "71.17%",
+ "State Flux Exposure": "68.64%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -817876,8 +817876,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -818046,8 +818046,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -818216,7 +818216,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -818386,7 +818386,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -818557,7 +818557,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -818727,7 +818727,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -818897,8 +818897,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -819066,12 +819066,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "62.28%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "56.39%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -819244,15 +819244,15 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.287
+ "Raw Cognitive Density": 0.251
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.57%",
- "Error & Exception Exposure": "59.53%",
- "Tech Debt Exposure": "99.6%",
- "Testing Exposure": "2.37%",
+ "Cognitive Load Exposure": "11.97%",
+ "Error & Exception Exposure": "54.58%",
+ "Tech Debt Exposure": "99.24%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "48.84%",
+ "Concurrency Exposure": "44.85%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -819467,13 +819467,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -819638,13 +819638,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.212
+ "Raw Cognitive Density": 0.173
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.4%",
+ "Cognitive Load Exposure": "9.05%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -819875,8 +819875,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.27%",
- "Testing Exposure": "2.39%",
+ "Tech Debt Exposure": "96.34%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -820084,8 +820084,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -820274,9 +820274,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.66%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.32%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -820442,13 +820442,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.227
+ "Raw Cognitive Density": 0.17
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.97%",
+ "Cognitive Load Exposure": "8.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -820671,13 +820671,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.6
+ "Raw Cognitive Density": 0.56
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.43%",
- "Error & Exception Exposure": "77.9%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.36%",
+ "Cognitive Load Exposure": "31.86%",
+ "Error & Exception Exposure": "78.34%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "99.94%",
@@ -820869,7 +820869,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -821045,13 +821045,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.136
+ "Raw Cognitive Density": 0.097
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.91%",
- "Error & Exception Exposure": "69.11%",
+ "Cognitive Load Exposure": "6.85%",
+ "Error & Exception Exposure": "65.28%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -821343,8 +821343,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -821524,8 +821524,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -821729,12 +821729,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "63.78%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.32%",
+ "Error & Exception Exposure": "58.49%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -822072,8 +822072,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.31%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -822253,8 +822253,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -822445,8 +822445,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -822626,7 +822626,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -822768,18 +822768,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "13.12%",
- "Error & Exception Exposure": "44.39%",
- "Tech Debt Exposure": "55.63%",
+ "Cognitive Load Exposure": "12.72%",
+ "Error & Exception Exposure": "46.3%",
+ "Tech Debt Exposure": "48.0%",
"Testing Exposure": "28.3%",
"API Exposure": "4.88%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "39.06%",
+ "State Flux Exposure": "38.1%",
"Commented Logic Exposure": "1.8%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "34.15%",
+ "Documentation Exposure": "32.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -822816,16 +822816,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.373
+ "Raw Cognitive Density": 0.356
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.12%",
- "Error & Exception Exposure": "71.33%",
- "Tech Debt Exposure": "78.81%",
+ "Cognitive Load Exposure": "17.13%",
+ "Error & Exception Exposure": "74.33%",
+ "Tech Debt Exposure": "70.89%",
"Testing Exposure": "2.54%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "64.84%",
+ "State Flux Exposure": "63.46%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -823004,16 +823004,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.423
+ "Raw Cognitive Density": 0.419
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "21.25%",
- "Error & Exception Exposure": "61.84%",
+ "Cognitive Load Exposure": "21.04%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "5.52%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "52.34%",
+ "State Flux Exposure": "50.84%",
"Commented Logic Exposure": "5.4%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -823637,7 +823637,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.36%",
"API Exposure": "9.11%",
"Concurrency Exposure": "0.0%",
@@ -823646,7 +823646,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "90.53%",
+ "Documentation Exposure": "84.12%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -823807,18 +823807,18 @@
"Static: Literature & Documentation": "4.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.81%",
- "Error & Exception Exposure": "63.23%",
- "Tech Debt Exposure": "26.46%",
+ "Cognitive Load Exposure": "7.28%",
+ "Error & Exception Exposure": "66.3%",
+ "Tech Debt Exposure": "24.64%",
"Testing Exposure": "2.28%",
"API Exposure": "0.15%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "11.58%",
+ "State Flux Exposure": "11.44%",
"Commented Logic Exposure": "4.26%",
"Specification Exposure": "52.17%",
"Instability Exposure": "47.83%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "2.17%",
+ "Documentation Exposure": "1.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -824012,10 +824012,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.2
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.97%",
+ "Cognitive Load Exposure": "9.28%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -824169,12 +824169,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.19%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
+ "Cognitive Load Exposure": "13.24%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "97.07%",
"Testing Exposure": "2.54%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -824357,11 +824357,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -824518,7 +824518,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -824671,12 +824671,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "73.11%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -824828,11 +824828,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -824985,12 +824985,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "73.11%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "62.25%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -825142,12 +825142,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.263
+ "Raw Cognitive Density": 0.246
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.48%",
- "Error & Exception Exposure": "74.11%",
- "Tech Debt Exposure": "100.0%",
+ "Cognitive Load Exposure": "11.74%",
+ "Error & Exception Exposure": "77.67%",
+ "Tech Debt Exposure": "99.99%",
"Testing Exposure": "2.67%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -825380,12 +825380,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -825548,11 +825548,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -825716,11 +825716,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
@@ -825894,11 +825894,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "79.41%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "83.6%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.42%",
"API Exposure": "0.0%",
@@ -826066,12 +826066,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.23%",
+ "Error & Exception Exposure": "81.11%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "20.42%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -826219,10 +826219,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -826391,7 +826391,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -826544,16 +826544,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "82.39%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "93.34%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -826722,16 +826722,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "82.39%",
+ "Cognitive Load Exposure": "17.36%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "93.34%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -826904,7 +826904,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -827061,8 +827061,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -827214,11 +827214,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "8.63%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
@@ -827392,16 +827392,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "15.19%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.53%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "55.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -827570,12 +827570,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "81.76%",
"Testing Exposure": "2.36%",
"API Exposure": "3.53%",
"Concurrency Exposure": "0.0%",
@@ -827584,7 +827584,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -827726,12 +827726,12 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "50.02%",
- "Tech Debt Exposure": "47.82%",
- "Testing Exposure": "2.29%",
+ "Error & Exception Exposure": "50.57%",
+ "Tech Debt Exposure": "41.75%",
+ "Testing Exposure": "2.28%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "0.45%",
+ "State Flux Exposure": "0.4%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "96.67%",
"Instability Exposure": "48.33%",
@@ -827938,9 +827938,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "87.91%",
- "Tech Debt Exposure": "99.46%",
- "Testing Exposure": "2.42%",
+ "Error & Exception Exposure": "91.04%",
+ "Tech Debt Exposure": "98.89%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -828156,9 +828156,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "88.92%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.44%",
+ "Error & Exception Exposure": "91.68%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -828357,8 +828357,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "61.96%",
- "Tech Debt Exposure": "27.71%",
+ "Error & Exception Exposure": "62.39%",
+ "Tech Debt Exposure": "21.39%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -828525,8 +828525,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "58.09%",
- "Tech Debt Exposure": "18.05%",
+ "Error & Exception Exposure": "58.39%",
+ "Tech Debt Exposure": "15.03%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -828693,8 +828693,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "56.99%",
- "Tech Debt Exposure": "15.97%",
+ "Error & Exception Exposure": "57.24%",
+ "Tech Debt Exposure": "13.62%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -828861,8 +828861,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -829029,8 +829029,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -829197,9 +829197,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "63.97%",
- "Tech Debt Exposure": "46.1%",
- "Testing Exposure": "2.61%",
+ "Error & Exception Exposure": "62.65%",
+ "Tech Debt Exposure": "33.69%",
+ "Testing Exposure": "2.58%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -829695,12 +829695,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "56.61%",
+ "Error & Exception Exposure": "55.62%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "13.48%",
+ "State Flux Exposure": "12.14%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -829863,7 +829863,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "62.78%",
+ "Error & Exception Exposure": "63.23%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -830031,8 +830031,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "51.29%",
- "Tech Debt Exposure": "9.86%",
+ "Error & Exception Exposure": "50.78%",
+ "Tech Debt Exposure": "9.48%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -830289,8 +830289,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -830457,9 +830457,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "82.76%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.41%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -830645,9 +830645,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.38%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -830823,9 +830823,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -830991,8 +830991,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -831159,9 +831159,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.69%",
+ "Testing Exposure": "2.66%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -831547,7 +831547,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "70.69%",
+ "Error & Exception Exposure": "71.36%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
@@ -831715,9 +831715,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -831883,9 +831883,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -832051,8 +832051,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.66%",
- "Tech Debt Exposure": "41.17%",
+ "Error & Exception Exposure": "66.2%",
+ "Tech Debt Exposure": "30.29%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -832754,7 +832754,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "85.73%",
+ "Tech Debt Exposure": "78.38%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -833328,7 +833328,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -833496,7 +833496,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -833637,9 +833637,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.05%",
+ "Error & Exception Exposure": "62.39%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "13.11%",
+ "Testing Exposure": "13.1%",
"API Exposure": "0.34%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -833845,7 +833845,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.41%",
+ "Error & Exception Exposure": "66.12%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
@@ -834023,9 +834023,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.13%",
+ "Error & Exception Exposure": "71.62%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.37%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -834241,9 +834241,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.41%",
+ "Error & Exception Exposure": "66.12%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -834441,7 +834441,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "80.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.4%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -834697,7 +834697,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.41%",
+ "Error & Exception Exposure": "66.12%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
@@ -834875,7 +834875,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.95%",
+ "Error & Exception Exposure": "86.77%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "2.35%",
@@ -836317,7 +836317,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "25.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.08%",
+ "Documentation Exposure": "12.72%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -836525,7 +836525,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "30.15%",
+ "Documentation Exposure": "25.44%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -836645,13 +836645,13 @@
"Unclassified": "50.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "11.31%",
- "Error & Exception Exposure": "30.89%",
- "Tech Debt Exposure": "4.14%",
+ "Cognitive Load Exposure": "11.32%",
+ "Error & Exception Exposure": "31.48%",
+ "Tech Debt Exposure": "4.17%",
"Testing Exposure": "40.0%",
"API Exposure": "2.63%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "7.58%",
+ "State Flux Exposure": "7.97%",
"Commented Logic Exposure": "2.95%",
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
@@ -836850,16 +836850,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.459
+ "Raw Cognitive Density": 0.46
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.61%",
- "Error & Exception Exposure": "61.79%",
- "Tech Debt Exposure": "8.27%",
+ "Cognitive Load Exposure": "22.63%",
+ "Error & Exception Exposure": "62.96%",
+ "Tech Debt Exposure": "8.33%",
"Testing Exposure": "80.0%",
"API Exposure": "5.27%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.16%",
+ "State Flux Exposure": "15.95%",
"Commented Logic Exposure": "5.9%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -838737,9 +838737,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "38.63%",
- "Error & Exception Exposure": "97.84%",
- "Tech Debt Exposure": "20.26%",
+ "Cognitive Load Exposure": "38.89%",
+ "Error & Exception Exposure": "97.97%",
+ "Tech Debt Exposure": "22.64%",
"Testing Exposure": "80.0%",
"API Exposure": "0.32%",
"Concurrency Exposure": "0.0%",
@@ -838785,12 +838785,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.965
+ "Raw Cognitive Density": 0.97
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "38.63%",
- "Error & Exception Exposure": "97.84%",
- "Tech Debt Exposure": "20.26%",
+ "Cognitive Load Exposure": "38.89%",
+ "Error & Exception Exposure": "97.97%",
+ "Tech Debt Exposure": "22.64%",
"Testing Exposure": "80.0%",
"API Exposure": "0.32%",
"Concurrency Exposure": "0.0%",
@@ -839040,18 +839040,18 @@
"Static: Literature & Documentation": "11.1%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "11.53%",
- "Error & Exception Exposure": "63.11%",
- "Tech Debt Exposure": "58.71%",
- "Testing Exposure": "2.19%",
+ "Cognitive Load Exposure": "9.85%",
+ "Error & Exception Exposure": "63.68%",
+ "Tech Debt Exposure": "54.97%",
+ "Testing Exposure": "2.17%",
"API Exposure": "0.06%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "41.94%",
+ "State Flux Exposure": "40.8%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "88.89%",
"Instability Exposure": "44.44%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "2.5%",
+ "Documentation Exposure": "1.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -839249,12 +839249,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "58.33%",
+ "Error & Exception Exposure": "56.99%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "14.43%",
+ "State Flux Exposure": "13.01%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -839416,12 +839416,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.074
+ "Raw Cognitive Density": 0.061
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.03%",
- "Error & Exception Exposure": "75.61%",
- "Tech Debt Exposure": "99.53%",
+ "Cognitive Load Exposure": "5.57%",
+ "Error & Exception Exposure": "79.41%",
+ "Tech Debt Exposure": "99.22%",
"Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -839653,16 +839653,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.309
+ "Raw Cognitive Density": 0.273
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.04%",
- "Error & Exception Exposure": "64.07%",
- "Tech Debt Exposure": "83.07%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "10.56%",
+ "Error & Exception Exposure": "59.48%",
+ "Tech Debt Exposure": "66.41%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "43.0%",
+ "State Flux Exposure": "40.09%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -839849,16 +839849,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.184
+ "Raw Cognitive Density": 0.153
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.79%",
- "Error & Exception Exposure": "61.48%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.49%",
+ "Cognitive Load Exposure": "7.49%",
+ "Error & Exception Exposure": "59.01%",
+ "Tech Debt Exposure": "99.95%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "19.03%",
+ "State Flux Exposure": "17.25%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -840114,21 +840114,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.434
+ "Raw Cognitive Density": 0.415
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.78%",
- "Error & Exception Exposure": "76.88%",
- "Tech Debt Exposure": "29.96%",
- "Testing Exposure": "2.54%",
+ "Cognitive Load Exposure": "18.8%",
+ "Error & Exception Exposure": "79.76%",
+ "Tech Debt Exposure": "21.07%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.55%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "90.38%",
+ "State Flux Exposure": "89.28%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "22.53%",
+ "Documentation Exposure": "14.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -840340,16 +840340,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.136
+ "Raw Cognitive Density": 0.126
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.66%",
- "Error & Exception Exposure": "76.45%",
- "Tech Debt Exposure": "19.02%",
- "Testing Exposure": "2.41%",
+ "Cognitive Load Exposure": "7.26%",
+ "Error & Exception Exposure": "81.1%",
+ "Tech Debt Exposure": "15.68%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "20.55%",
+ "State Flux Exposure": "18.66%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -840592,16 +840592,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.4
+ "Raw Cognitive Density": 0.36
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.41%",
- "Error & Exception Exposure": "77.05%",
+ "Cognitive Load Exposure": "13.89%",
+ "Error & Exception Exposure": "78.05%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.5%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "90.89%",
+ "State Flux Exposure": "89.84%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -840810,16 +840810,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.582
+ "Raw Cognitive Density": 0.545
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "30.1%",
- "Error & Exception Exposure": "78.15%",
- "Tech Debt Exposure": "96.8%",
- "Testing Exposure": "2.59%",
+ "Cognitive Load Exposure": "25.05%",
+ "Error & Exception Exposure": "79.31%",
+ "Tech Debt Exposure": "92.41%",
+ "Testing Exposure": "2.56%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.19%",
+ "State Flux Exposure": "99.09%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -840984,13 +840984,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "26.84%",
- "Error & Exception Exposure": "44.35%",
- "Tech Debt Exposure": "37.27%",
+ "Cognitive Load Exposure": "24.59%",
+ "Error & Exception Exposure": "43.08%",
+ "Tech Debt Exposure": "36.62%",
"Testing Exposure": "21.81%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "4.79%",
- "State Flux Exposure": "25.6%",
+ "Concurrency Exposure": "4.2%",
+ "State Flux Exposure": "23.91%",
"Commented Logic Exposure": "4.19%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -841032,16 +841032,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.813
+ "Raw Cognitive Density": 0.809
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "52.77%",
- "Error & Exception Exposure": "55.63%",
- "Tech Debt Exposure": "49.08%",
+ "Cognitive Load Exposure": "50.04%",
+ "Error & Exception Exposure": "55.41%",
+ "Tech Debt Exposure": "46.47%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "19.14%",
- "State Flux Exposure": "29.23%",
+ "Concurrency Exposure": "16.79%",
+ "State Flux Exposure": "26.81%",
"Commented Logic Exposure": "6.23%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -841825,16 +841825,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.592
+ "Raw Cognitive Density": 0.55
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "34.73%",
- "Error & Exception Exposure": "63.92%",
+ "Cognitive Load Exposure": "31.0%",
+ "Error & Exception Exposure": "60.43%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "58.94%",
+ "State Flux Exposure": "56.01%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -842049,10 +842049,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "11.51%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.49%",
@@ -842239,16 +842239,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.114
+ "Raw Cognitive Density": 0.098
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.61%",
- "Error & Exception Exposure": "57.84%",
+ "Cognitive Load Exposure": "5.83%",
+ "Error & Exception Exposure": "56.48%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "14.22%",
+ "State Flux Exposure": "12.82%",
"Commented Logic Exposure": "10.53%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -842414,13 +842414,13 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "8.65%",
- "Error & Exception Exposure": "26.39%",
- "Tech Debt Exposure": "48.83%",
- "Testing Exposure": "2.04%",
+ "Cognitive Load Exposure": "6.58%",
+ "Error & Exception Exposure": "19.29%",
+ "Tech Debt Exposure": "47.65%",
+ "Testing Exposure": "2.03%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "12.46%",
- "State Flux Exposure": "25.24%",
+ "Concurrency Exposure": "12.45%",
+ "State Flux Exposure": "23.63%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "50.0%",
"Instability Exposure": "43.75%",
@@ -842776,12 +842776,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.132
+ "Raw Cognitive Density": 0.074
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.79%",
- "Error & Exception Exposure": "44.65%",
- "Tech Debt Exposure": "99.46%",
+ "Cognitive Load Exposure": "6.26%",
+ "Error & Exception Exposure": "22.67%",
+ "Tech Debt Exposure": "97.7%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -842974,16 +842974,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.64
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "35.72%",
- "Error & Exception Exposure": "59.96%",
- "Tech Debt Exposure": "99.68%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "23.5%",
+ "Error & Exception Exposure": "42.77%",
+ "Tech Debt Exposure": "93.99%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "99.72%",
- "State Flux Exposure": "57.44%",
+ "Concurrency Exposure": "99.61%",
+ "State Flux Exposure": "51.5%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -843142,16 +843142,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.229
+ "Raw Cognitive Density": 0.181
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.54%",
- "Error & Exception Exposure": "61.84%",
- "Tech Debt Exposure": "99.99%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "4.65%",
+ "Error & Exception Exposure": "55.41%",
+ "Tech Debt Exposure": "99.98%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "48.35%",
+ "State Flux Exposure": "42.41%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -843430,16 +843430,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.433
+ "Raw Cognitive Density": 0.42
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "20.16%",
- "Error & Exception Exposure": "44.65%",
- "Tech Debt Exposure": "91.48%",
- "Testing Exposure": "2.31%",
+ "Cognitive Load Exposure": "18.2%",
+ "Error & Exception Exposure": "33.47%",
+ "Tech Debt Exposure": "89.52%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "96.16%",
+ "State Flux Exposure": "95.17%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -844078,13 +844078,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "6.39%",
- "Error & Exception Exposure": "14.88%",
+ "Cognitive Load Exposure": "5.88%",
+ "Error & Exception Exposure": "15.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "16.12%",
+ "State Flux Exposure": "15.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "33.33%",
"Instability Exposure": "50.0%",
@@ -844597,13 +844597,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.16
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -844922,10 +844922,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.55%",
+ "Cognitive Load Exposure": "5.53%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -845247,16 +845247,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.326
+ "Raw Cognitive Density": 0.316
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.52%",
- "Error & Exception Exposure": "67.78%",
+ "Cognitive Load Exposure": "14.97%",
+ "Error & Exception Exposure": "70.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "84.42%",
+ "State Flux Exposure": "83.61%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -845404,11 +845404,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.68
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "43.05%",
- "Error & Exception Exposure": "80.44%",
+ "Cognitive Load Exposure": "41.1%",
+ "Error & Exception Exposure": "84.74%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -846032,16 +846032,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.38%",
- "Error & Exception Exposure": "74.99%",
+ "Cognitive Load Exposure": "6.9%",
+ "Error & Exception Exposure": "77.75%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "55.97%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -846210,10 +846210,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
@@ -846378,10 +846378,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.03
+ "Raw Cognitive Density": 0.025
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.68%",
+ "Cognitive Load Exposure": "4.17%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
@@ -846524,9 +846524,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.75%",
+ "Error & Exception Exposure": "61.74%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.3%",
+ "Testing Exposure": "2.28%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -846732,9 +846732,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.53%",
+ "Error & Exception Exposure": "61.93%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -846970,9 +846970,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.35%",
+ "Error & Exception Exposure": "66.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -847218,9 +847218,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -847446,9 +847446,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.35%",
+ "Error & Exception Exposure": "66.29%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -847694,9 +847694,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.43%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -847932,9 +847932,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.96%",
+ "Error & Exception Exposure": "54.28%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.42%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -848180,9 +848180,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -848408,9 +848408,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -848636,9 +848636,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.48%",
+ "Testing Exposure": "2.45%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -848904,9 +848904,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.47%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -849172,9 +849172,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.23%",
+ "Error & Exception Exposure": "61.44%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -849430,9 +849430,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.58%",
+ "Error & Exception Exposure": "64.07%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -849688,9 +849688,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.44%",
+ "Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -849936,9 +849936,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -850184,9 +850184,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -850402,9 +850402,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -850620,9 +850620,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "70.42%",
+ "Error & Exception Exposure": "67.32%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -850878,9 +850878,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.62%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -851078,13 +851078,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "8.19%",
- "Error & Exception Exposure": "51.5%",
- "Tech Debt Exposure": "93.13%",
- "Testing Exposure": "12.12%",
+ "Cognitive Load Exposure": "6.64%",
+ "Error & Exception Exposure": "50.94%",
+ "Tech Debt Exposure": "87.13%",
+ "Testing Exposure": "12.11%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "28.78%",
+ "State Flux Exposure": "26.99%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -851126,16 +851126,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "77.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "14.19%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -851316,16 +851316,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.376
+ "Raw Cognitive Density": 0.352
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.62%",
- "Error & Exception Exposure": "64.29%",
- "Tech Debt Exposure": "74.49%",
- "Testing Exposure": "2.58%",
+ "Cognitive Load Exposure": "11.23%",
+ "Error & Exception Exposure": "63.87%",
+ "Tech Debt Exposure": "65.73%",
+ "Testing Exposure": "2.55%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "56.29%",
+ "State Flux Exposure": "53.32%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -851663,16 +851663,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.159
+ "Raw Cognitive Density": 0.147
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.72%",
- "Error & Exception Exposure": "67.42%",
+ "Cognitive Load Exposure": "6.82%",
+ "Error & Exception Exposure": "70.51%",
"Tech Debt Exposure": "100.0%",
"Testing Exposure": "80.0%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "22.23%",
+ "State Flux Exposure": "20.22%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -852329,12 +852329,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "65.6%",
- "Tech Debt Exposure": "98.2%",
+ "Error & Exception Exposure": "62.18%",
+ "Tech Debt Exposure": "95.26%",
"Testing Exposure": "2.41%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "15.45%",
+ "State Flux Exposure": "13.94%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -852542,7 +852542,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -852707,16 +852707,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.224
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.65%",
- "Error & Exception Exposure": "68.16%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.45%",
+ "Cognitive Load Exposure": "8.7%",
+ "Error & Exception Exposure": "66.12%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -852923,8 +852923,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.38%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -853119,16 +853119,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.32
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "15.28%",
- "Error & Exception Exposure": "69.54%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "12.15%",
+ "Error & Exception Exposure": "68.01%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -853273,9 +853273,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.58%",
- "Error & Exception Exposure": "61.07%",
- "Tech Debt Exposure": "72.4%",
+ "Cognitive Load Exposure": "3.09%",
+ "Error & Exception Exposure": "61.88%",
+ "Tech Debt Exposure": "61.05%",
"Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -853321,13 +853321,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.39%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -853501,13 +853501,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -853682,13 +853682,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -853863,13 +853863,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854044,13 +854044,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854225,13 +854225,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854406,13 +854406,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854587,13 +854587,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854768,13 +854768,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -854949,13 +854949,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -855130,13 +855130,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -855311,13 +855311,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -855492,13 +855492,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -855673,13 +855673,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -855853,13 +855853,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -856033,13 +856033,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.5%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "6.5%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -856224,13 +856224,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -856405,13 +856405,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -856591,7 +856591,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -856758,7 +856758,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -856929,7 +856929,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -857096,9 +857096,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -857267,7 +857267,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -857434,9 +857434,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -857600,13 +857600,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -857786,7 +857786,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -857949,13 +857949,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.18
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.5%",
- "Error & Exception Exposure": "82.76%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.48%",
+ "Cognitive Load Exposure": "6.5%",
+ "Error & Exception Exposure": "84.74%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -858152,7 +858152,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -858322,9 +858322,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.38%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -858506,8 +858506,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -858676,9 +858676,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.38%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -858867,7 +858867,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -859034,13 +859034,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -859220,7 +859220,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -859387,7 +859387,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "0.0%",
@@ -859556,12 +859556,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.61%",
- "Error & Exception Exposure": "84.18%",
- "Tech Debt Exposure": "88.08%",
+ "Cognitive Load Exposure": "4.84%",
+ "Error & Exception Exposure": "86.83%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.4%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -859742,13 +859742,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.5%",
- "Error & Exception Exposure": "84.18%",
+ "Cognitive Load Exposure": "5.61%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.46%",
+ "Testing Exposure": "2.44%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -859943,8 +859943,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -860123,7 +860123,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -860291,7 +860291,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -860459,7 +860459,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -860622,13 +860622,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -860803,13 +860803,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.38%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -860961,18 +860961,18 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.94%",
- "Error & Exception Exposure": "21.75%",
- "Tech Debt Exposure": "42.0%",
+ "Cognitive Load Exposure": "7.7%",
+ "Error & Exception Exposure": "22.54%",
+ "Tech Debt Exposure": "39.74%",
"Testing Exposure": "14.91%",
"API Exposure": "1.74%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "23.78%",
+ "State Flux Exposure": "23.53%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "83.33%",
"Instability Exposure": "41.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.75%",
+ "Documentation Exposure": "8.87%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -861172,7 +861172,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "100.0%",
- "Testing Exposure": "2.52%",
+ "Testing Exposure": "2.51%",
"API Exposure": "2.65%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -861468,21 +861468,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.003
+ "Raw Cognitive Density": 0.995
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "36.65%",
- "Error & Exception Exposure": "69.81%",
- "Tech Debt Exposure": "89.76%",
+ "Cognitive Load Exposure": "36.34%",
+ "Error & Exception Exposure": "75.12%",
+ "Tech Debt Exposure": "88.42%",
"Testing Exposure": "80.0%",
"API Exposure": "3.23%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.64%",
+ "State Flux Exposure": "99.62%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.75%",
+ "Documentation Exposure": "13.52%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -861768,21 +861768,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.99%",
- "Error & Exception Exposure": "60.72%",
- "Tech Debt Exposure": "62.25%",
+ "Cognitive Load Exposure": "9.88%",
+ "Error & Exception Exposure": "60.14%",
+ "Tech Debt Exposure": "50.0%",
"Testing Exposure": "2.33%",
"API Exposure": "2.79%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "43.05%",
+ "State Flux Exposure": "41.58%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "20.94%",
+ "Documentation Exposure": "14.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -861954,7 +861954,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.87%",
+ "Documentation Exposure": "13.59%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -862233,18 +862233,18 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.91%",
- "Error & Exception Exposure": "43.83%",
+ "Cognitive Load Exposure": "2.98%",
+ "Error & Exception Exposure": "46.62%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "48.46%",
"API Exposure": "10.5%",
- "Concurrency Exposure": "4.28%",
+ "Concurrency Exposure": "4.55%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "80.0%",
"Instability Exposure": "40.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.66%",
+ "Documentation Exposure": "45.28%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -862439,11 +862439,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.135
+ "Raw Cognitive Density": 0.137
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.93%",
- "Error & Exception Exposure": "40.38%",
+ "Cognitive Load Exposure": "3.96%",
+ "Error & Exception Exposure": "45.36%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "12.86%",
@@ -862453,7 +862453,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.04%",
+ "Documentation Exposure": "19.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -863257,11 +863257,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.08
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.21%",
- "Error & Exception Exposure": "96.23%",
+ "Cognitive Load Exposure": "3.46%",
+ "Error & Exception Exposure": "96.81%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "11.68%",
@@ -863271,7 +863271,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "56.88%",
+ "Documentation Exposure": "63.71%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -863415,21 +863415,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.131
+ "Raw Cognitive Density": 0.133
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.88%",
- "Error & Exception Exposure": "34.0%",
+ "Cognitive Load Exposure": "3.91%",
+ "Error & Exception Exposure": "41.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "13.34%",
- "Concurrency Exposure": "21.39%",
+ "Concurrency Exposure": "22.77%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.11%",
+ "Documentation Exposure": "47.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -864015,11 +864015,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.107
+ "Raw Cognitive Density": 0.108
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "3.55%",
- "Error & Exception Exposure": "48.53%",
+ "Cognitive Load Exposure": "3.56%",
+ "Error & Exception Exposure": "49.81%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "80.0%",
"API Exposure": "14.61%",
@@ -864029,7 +864029,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "95.26%",
+ "Documentation Exposure": "95.31%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -866414,8 +866414,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "15.94%",
- "Error & Exception Exposure": "72.01%",
+ "Cognitive Load Exposure": "13.96%",
+ "Error & Exception Exposure": "70.82%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -866462,11 +866462,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -866619,11 +866619,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -866776,11 +866776,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -866933,11 +866933,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.34
+ "Raw Cognitive Density": 0.3
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "16.25%",
- "Error & Exception Exposure": "71.62%",
+ "Cognitive Load Exposure": "14.19%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -867094,7 +867094,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -867247,11 +867247,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -867404,11 +867404,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -867561,11 +867561,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.38
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "18.54%",
- "Error & Exception Exposure": "72.91%",
+ "Cognitive Load Exposure": "16.25%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -869917,9 +869917,9 @@
"Unclassified": "50.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.61%",
+ "Cognitive Load Exposure": "2.59%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "12.64%",
+ "Tech Debt Exposure": "12.32%",
"Testing Exposure": "1.15%",
"API Exposure": "5.51%",
"Concurrency Exposure": "0.0%",
@@ -869928,7 +869928,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.92%",
+ "Documentation Exposure": "10.8%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -870122,12 +870122,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.026
+ "Raw Cognitive Density": 0.025
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.21%",
+ "Cognitive Load Exposure": "5.19%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "25.29%",
+ "Tech Debt Exposure": "24.63%",
"Testing Exposure": "2.3%",
"API Exposure": "11.01%",
"Concurrency Exposure": "0.0%",
@@ -870136,7 +870136,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "27.84%",
+ "Documentation Exposure": "21.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -870276,9 +870276,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "31.16%",
- "Error & Exception Exposure": "28.53%",
- "Tech Debt Exposure": "22.54%",
+ "Cognitive Load Exposure": "31.04%",
+ "Error & Exception Exposure": "29.82%",
+ "Tech Debt Exposure": "19.97%",
"Testing Exposure": "2.32%",
"API Exposure": "0.82%",
"Concurrency Exposure": "0.0%",
@@ -870287,7 +870287,7 @@
"Specification Exposure": "33.33%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "6.41%",
+ "Documentation Exposure": "5.21%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -870324,13 +870324,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.415
+ "Raw Cognitive Density": 1.402
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "93.47%",
- "Error & Exception Exposure": "85.59%",
- "Tech Debt Exposure": "67.63%",
- "Testing Exposure": "2.38%",
+ "Cognitive Load Exposure": "93.13%",
+ "Error & Exception Exposure": "89.47%",
+ "Tech Debt Exposure": "59.91%",
+ "Testing Exposure": "2.36%",
"API Exposure": "2.47%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "100.0%",
@@ -870338,7 +870338,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "19.24%",
+ "Documentation Exposure": "15.63%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -870837,8 +870837,8 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.47%",
- "Error & Exception Exposure": "44.76%",
+ "Cognitive Load Exposure": "2.14%",
+ "Error & Exception Exposure": "44.93%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "1.84%",
"API Exposure": "0.0%",
@@ -871203,7 +871203,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "87.06%",
+ "Error & Exception Exposure": "91.68%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
@@ -871387,11 +871387,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "10.72%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -871548,7 +871548,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -871678,12 +871678,12 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "79.13%",
- "Tech Debt Exposure": "77.95%",
+ "Error & Exception Exposure": "79.56%",
+ "Tech Debt Exposure": "68.06%",
"Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "44.28%",
+ "State Flux Exposure": "42.08%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "90.0%",
"Instability Exposure": "50.0%",
@@ -871729,12 +871729,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.93%",
- "Tech Debt Exposure": "69.19%",
+ "Error & Exception Exposure": "72.2%",
+ "Tech Debt Exposure": "51.84%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "28.42%",
+ "State Flux Exposure": "26.05%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -871915,12 +871915,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "75.66%",
- "Tech Debt Exposure": "85.14%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "75.96%",
+ "Tech Debt Exposure": "69.04%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "35.65%",
+ "State Flux Exposure": "32.95%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -872099,9 +872099,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -872272,12 +872272,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.76%",
+ "Error & Exception Exposure": "68.38%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "57.44%",
+ "State Flux Exposure": "54.49%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -872429,12 +872429,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.12%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "62.58%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -872599,12 +872599,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.3%",
- "Tech Debt Exposure": "66.13%",
+ "Error & Exception Exposure": "71.57%",
+ "Tech Debt Exposure": "49.12%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "27.42%",
+ "State Flux Exposure": "25.1%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -872785,12 +872785,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.55%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -872968,12 +872968,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "92.01%",
- "Tech Debt Exposure": "95.11%",
- "Testing Exposure": "2.43%",
+ "Error & Exception Exposure": "95.49%",
+ "Tech Debt Exposure": "92.04%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "49.58%",
+ "State Flux Exposure": "46.59%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -873201,12 +873201,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "95.18%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.45%",
+ "Error & Exception Exposure": "97.34%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "93.7%",
+ "State Flux Exposure": "92.96%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -873411,12 +873411,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "96.67%",
- "Tech Debt Exposure": "99.97%",
- "Testing Exposure": "2.48%",
+ "Error & Exception Exposure": "98.39%",
+ "Tech Debt Exposure": "99.91%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "72.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -873606,12 +873606,12 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "21.82%",
- "Tech Debt Exposure": "50.27%",
+ "Error & Exception Exposure": "21.38%",
+ "Tech Debt Exposure": "42.76%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "10.82%",
- "State Flux Exposure": "8.42%",
+ "Concurrency Exposure": "10.36%",
+ "State Flux Exposure": "7.78%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -873815,7 +873815,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -873987,7 +873987,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -874630,7 +874630,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -874955,7 +874955,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -875122,12 +875122,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -875290,12 +875290,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
+ "Error & Exception Exposure": "66.5%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -875458,9 +875458,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "77.05%",
- "Tech Debt Exposure": "99.75%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "78.05%",
+ "Tech Debt Exposure": "99.33%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -875653,10 +875653,10 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "36.97%",
+ "Concurrency Exposure": "33.33%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -875824,10 +875824,10 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "36.97%",
+ "Concurrency Exposure": "33.33%",
"State Flux Exposure": "0.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
@@ -875994,12 +875994,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.38%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "66.5%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
- "Concurrency Exposure": "99.18%",
- "State Flux Exposure": "37.75%",
+ "Concurrency Exposure": "99.04%",
+ "State Flux Exposure": "34.98%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -876165,12 +876165,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "66.98%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "64.57%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "21.42%",
+ "State Flux Exposure": "19.47%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -876313,13 +876313,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "4.83%",
- "Error & Exception Exposure": "17.39%",
- "Tech Debt Exposure": "45.98%",
- "Testing Exposure": "2.31%",
+ "Cognitive Load Exposure": "3.96%",
+ "Error & Exception Exposure": "13.48%",
+ "Tech Debt Exposure": "42.89%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "12.32%",
+ "State Flux Exposure": "10.59%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "50.0%",
"Instability Exposure": "50.0%",
@@ -876832,16 +876832,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.149
+ "Raw Cognitive Density": 0.109
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.3%",
- "Error & Exception Exposure": "50.27%",
- "Tech Debt Exposure": "99.98%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "7.16%",
+ "Error & Exception Exposure": "36.61%",
+ "Tech Debt Exposure": "99.97%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "27.11%",
+ "State Flux Exposure": "22.64%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -877140,13 +877140,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.136
+ "Raw Cognitive Density": 0.068
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.09%",
+ "Cognitive Load Exposure": "5.09%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.1%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "95.3%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -877328,16 +877328,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.3
+ "Raw Cognitive Density": 0.261
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.59%",
- "Error & Exception Exposure": "54.05%",
- "Tech Debt Exposure": "76.8%",
+ "Cognitive Load Exposure": "11.54%",
+ "Error & Exception Exposure": "44.28%",
+ "Tech Debt Exposure": "62.08%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "46.8%",
+ "State Flux Exposure": "40.9%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -877504,7 +877504,7 @@
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "70.36%",
+ "Tech Debt Exposure": "63.25%",
"Testing Exposure": "2.34%",
"API Exposure": "1.74%",
"Concurrency Exposure": "0.0%",
@@ -877513,7 +877513,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.1%",
+ "Documentation Exposure": "7.79%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -877555,7 +877555,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "62.25%",
+ "Tech Debt Exposure": "59.07%",
"Testing Exposure": "2.35%",
"API Exposure": "3.46%",
"Concurrency Exposure": "0.0%",
@@ -877853,7 +877853,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "99.61%",
+ "Tech Debt Exposure": "98.86%",
"Testing Exposure": "2.3%",
"API Exposure": "4.56%",
"Concurrency Exposure": "0.0%",
@@ -877862,7 +877862,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "31.65%",
+ "Documentation Exposure": "15.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -878021,7 +878021,7 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -878189,8 +878189,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.36%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -878367,8 +878367,8 @@
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "13.77%",
- "Testing Exposure": "2.37%",
+ "Tech Debt Exposure": "12.11%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.71%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -878686,10 +878686,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "19.02%",
- "Tech Debt Exposure": "49.1%",
- "Testing Exposure": "2.5%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "19.21%",
+ "Tech Debt Exposure": "48.08%",
+ "Testing Exposure": "2.49%",
"API Exposure": "3.02%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -878697,7 +878697,7 @@
"Specification Exposure": "75.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.34%",
+ "Documentation Exposure": "30.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -878891,12 +878891,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.24
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "11.51%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "98.2%",
+ "Tech Debt Exposure": "97.07%",
"Testing Exposure": "2.63%",
"API Exposure": "3.46%",
"Concurrency Exposure": "0.0%",
@@ -878905,7 +878905,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "50.0%",
+ "Documentation Exposure": "42.91%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -879089,10 +879089,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.237
+ "Raw Cognitive Density": 0.225
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.41%",
+ "Cognitive Load Exposure": "10.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.64%",
@@ -879103,7 +879103,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.43%",
+ "Documentation Exposure": "31.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -879267,13 +879267,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.16
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.04%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "98.2%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "95.26%",
+ "Testing Exposure": "2.41%",
"API Exposure": "5.59%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -879281,7 +879281,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "63.91%",
+ "Documentation Exposure": "50.0%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -880282,9 +880282,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "45.48%",
+ "Error & Exception Exposure": "35.53%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "1.91%",
+ "Testing Exposure": "1.89%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -880490,9 +880490,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "40.44%",
+ "Error & Exception Exposure": "21.58%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -880728,9 +880728,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "45.92%",
+ "Error & Exception Exposure": "27.8%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -880966,9 +880966,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.85%",
+ "Error & Exception Exposure": "67.74%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.43%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -881274,9 +881274,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.21%",
+ "Error & Exception Exposure": "60.55%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.37%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -881485,8 +881485,8 @@
"Static: Literature & Documentation": "12.5%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.32%",
- "Error & Exception Exposure": "8.37%",
+ "Cognitive Load Exposure": "2.0%",
+ "Error & Exception Exposure": "8.07%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.01%",
"API Exposure": "0.0%",
@@ -882015,10 +882015,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "8.02%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -882172,11 +882172,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
- "Error & Exception Exposure": "66.98%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "64.57%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -882776,18 +882776,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "68.79%",
- "Error & Exception Exposure": "66.63%",
- "Tech Debt Exposure": "92.34%",
- "Testing Exposure": "2.44%",
+ "Cognitive Load Exposure": "65.53%",
+ "Error & Exception Exposure": "61.46%",
+ "Tech Debt Exposure": "84.51%",
+ "Testing Exposure": "2.41%",
"API Exposure": "1.45%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "90.58%",
+ "State Flux Exposure": "89.12%",
"Commented Logic Exposure": "3.86%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "12.52%",
+ "Documentation Exposure": "5.96%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -882824,21 +882824,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.836
+ "Raw Cognitive Density": 0.791
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "58.5%",
- "Error & Exception Exposure": "64.09%",
- "Tech Debt Exposure": "97.9%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "54.1%",
+ "Error & Exception Exposure": "56.85%",
+ "Tech Debt Exposure": "93.84%",
+ "Testing Exposure": "2.39%",
"API Exposure": "2.9%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "81.49%",
+ "State Flux Exposure": "78.62%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "25.04%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -883012,16 +883012,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 1.082
+ "Raw Cognitive Density": 1.052
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "79.08%",
- "Error & Exception Exposure": "69.16%",
- "Tech Debt Exposure": "86.78%",
- "Testing Exposure": "2.46%",
+ "Cognitive Load Exposure": "76.96%",
+ "Error & Exception Exposure": "66.08%",
+ "Tech Debt Exposure": "75.18%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "99.68%",
+ "State Flux Exposure": "99.61%",
"Commented Logic Exposure": "7.73%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -883176,9 +883176,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.76%",
- "Error & Exception Exposure": "30.73%",
- "Tech Debt Exposure": "13.96%",
+ "Cognitive Load Exposure": "7.21%",
+ "Error & Exception Exposure": "31.88%",
+ "Tech Debt Exposure": "13.76%",
"Testing Exposure": "2.39%",
"API Exposure": "4.12%",
"Concurrency Exposure": "0.0%",
@@ -883187,7 +883187,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.43%",
+ "Documentation Exposure": "31.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -883224,12 +883224,12 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.173
+ "Raw Cognitive Density": 0.154
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.05%",
- "Error & Exception Exposure": "69.26%",
- "Tech Debt Exposure": "97.7%",
+ "Cognitive Load Exposure": "8.44%",
+ "Error & Exception Exposure": "71.44%",
+ "Tech Debt Exposure": "96.34%",
"Testing Exposure": "2.53%",
"API Exposure": "3.08%",
"Concurrency Exposure": "0.0%",
@@ -883238,7 +883238,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "34.68%",
+ "Documentation Exposure": "21.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -883442,10 +883442,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
@@ -883456,7 +883456,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "52.41%",
+ "Documentation Exposure": "29.17%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -883610,11 +883610,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.12
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "7.45%",
+ "Error & Exception Exposure": "71.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.46%",
"API Exposure": "3.04%",
@@ -883624,7 +883624,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "28.8%",
+ "Documentation Exposure": "14.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -883808,11 +883808,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "76.08%",
+ "Cognitive Load Exposure": "6.91%",
+ "Error & Exception Exposure": "79.76%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.34%",
"API Exposure": "3.53%",
@@ -883822,7 +883822,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "44.37%",
+ "Documentation Exposure": "34.01%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -883986,10 +883986,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.37%",
@@ -884000,7 +884000,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "42.98%",
+ "Documentation Exposure": "31.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -884154,10 +884154,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.37%",
@@ -884168,7 +884168,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "59.91%",
+ "Documentation Exposure": "50.07%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -884332,10 +884332,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.1
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "6.91%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.33%",
@@ -884346,7 +884346,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.88%",
+ "Documentation Exposure": "39.48%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -884476,10 +884476,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "14.33%",
+ "Cognitive Load Exposure": "11.44%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.51%",
+ "Testing Exposure": "2.47%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -884524,13 +884524,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.26
+ "Raw Cognitive Density": 0.2
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "12.35%",
+ "Cognitive Load Exposure": "9.97%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.45%",
+ "Testing Exposure": "2.42%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -884692,13 +884692,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.28
+ "Raw Cognitive Density": 0.22
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.24%",
+ "Cognitive Load Exposure": "10.72%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.49%",
+ "Testing Exposure": "2.46%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -884860,13 +884860,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.288
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.39%",
+ "Cognitive Load Exposure": "13.63%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.6%",
+ "Testing Exposure": "2.52%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -886482,10 +886482,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -886530,13 +886530,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -886698,13 +886698,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -886866,13 +886866,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887034,13 +887034,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887202,13 +887202,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887370,13 +887370,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887538,13 +887538,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887706,13 +887706,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -887874,13 +887874,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888042,13 +888042,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888210,13 +888210,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888378,13 +888378,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888546,13 +888546,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888714,13 +888714,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -888882,13 +888882,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -889050,13 +889050,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.95%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.34%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -889689,18 +889689,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.39%",
- "Error & Exception Exposure": "27.49%",
- "Tech Debt Exposure": "10.87%",
- "Testing Exposure": "2.35%",
+ "Cognitive Load Exposure": "3.54%",
+ "Error & Exception Exposure": "28.94%",
+ "Tech Debt Exposure": "13.69%",
+ "Testing Exposure": "2.36%",
"API Exposure": "3.24%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "31.44%",
+ "State Flux Exposure": "32.13%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.04%",
+ "Documentation Exposure": "17.39%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -889752,7 +889752,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "11.92%",
+ "Documentation Exposure": "13.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -889904,21 +889904,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.22
+ "Raw Cognitive Density": 0.232
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.78%",
- "Error & Exception Exposure": "54.98%",
- "Tech Debt Exposure": "21.75%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "7.09%",
+ "Error & Exception Exposure": "57.88%",
+ "Tech Debt Exposure": "27.38%",
+ "Testing Exposure": "2.42%",
"API Exposure": "2.95%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "62.87%",
+ "State Flux Exposure": "64.26%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.16%",
+ "Documentation Exposure": "21.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -890909,10 +890909,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
- "Error & Exception Exposure": "72.4%",
- "Tech Debt Exposure": "73.11%",
- "Testing Exposure": "2.78%",
+ "Cognitive Load Exposure": "19.78%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.71%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -890957,13 +890957,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.46
+ "Raw Cognitive Density": 0.4
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.87%",
- "Error & Exception Exposure": "72.4%",
- "Tech Debt Exposure": "73.11%",
- "Testing Exposure": "2.78%",
+ "Cognitive Load Exposure": "19.78%",
+ "Error & Exception Exposure": "68.38%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.71%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -894648,8 +894648,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "1.16%",
- "Error & Exception Exposure": "11.14%",
+ "Cognitive Load Exposure": "1.06%",
+ "Error & Exception Exposure": "10.13%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "4.34%",
@@ -895016,11 +895016,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.054
+ "Raw Cognitive Density": 0.029
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.82%",
- "Error & Exception Exposure": "55.7%",
+ "Cognitive Load Exposure": "5.3%",
+ "Error & Exception Exposure": "50.67%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "2.32%",
@@ -895190,7 +895190,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.31%",
+ "Testing Exposure": "2.3%",
"API Exposure": "19.36%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -895516,10 +895516,10 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "4.1%",
- "Error & Exception Exposure": "22.39%",
- "Tech Debt Exposure": "9.25%",
- "Testing Exposure": "1.9%",
+ "Cognitive Load Exposure": "3.37%",
+ "Error & Exception Exposure": "19.87%",
+ "Tech Debt Exposure": "5.44%",
+ "Testing Exposure": "1.88%",
"API Exposure": "5.94%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -895527,7 +895527,7 @@
"Specification Exposure": "60.0%",
"Instability Exposure": "40.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "26.12%",
+ "Documentation Exposure": "24.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -895878,13 +895878,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.074
+ "Raw Cognitive Density": 0.048
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.28%",
- "Error & Exception Exposure": "56.77%",
- "Tech Debt Exposure": "21.36%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "5.69%",
+ "Error & Exception Exposure": "50.72%",
+ "Tech Debt Exposure": "12.26%",
+ "Testing Exposure": "2.37%",
"API Exposure": "14.41%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -895892,7 +895892,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.89%",
+ "Documentation Exposure": "99.49%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -896096,13 +896096,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.04
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "5.52%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.39%",
+ "Testing Exposure": "2.36%",
"API Exposure": "7.05%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -896264,13 +896264,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.071
+ "Raw Cognitive Density": 0.046
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.21%",
- "Error & Exception Exposure": "55.17%",
- "Tech Debt Exposure": "24.9%",
- "Testing Exposure": "2.4%",
+ "Cognitive Load Exposure": "5.64%",
+ "Error & Exception Exposure": "48.62%",
+ "Tech Debt Exposure": "14.95%",
+ "Testing Exposure": "2.36%",
"API Exposure": "8.22%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -896278,7 +896278,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "18.79%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -896449,8 +896449,8 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "1.59%",
- "Error & Exception Exposure": "25.9%",
+ "Cognitive Load Exposure": "1.04%",
+ "Error & Exception Exposure": "20.04%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "1.84%",
"API Exposure": "5.05%",
@@ -896460,7 +896460,7 @@
"Specification Exposure": "40.0%",
"Instability Exposure": "40.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "10.29%",
+ "Documentation Exposure": "9.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -896819,7 +896819,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.54%",
+ "Error & Exception Exposure": "55.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "5.59%",
@@ -897134,13 +897134,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.191
+ "Raw Cognitive Density": 0.118
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.96%",
- "Error & Exception Exposure": "59.94%",
+ "Cognitive Load Exposure": "5.21%",
+ "Error & Exception Exposure": "44.23%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "9.07%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -897148,7 +897148,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "15.69%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -897282,13 +897282,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "9.55%",
- "Error & Exception Exposure": "57.23%",
- "Tech Debt Exposure": "37.75%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "10.2%",
+ "Error & Exception Exposure": "61.37%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.43%",
"API Exposure": "3.26%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "91.68%",
+ "State Flux Exposure": "92.13%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -897330,16 +897330,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.36
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.55%",
- "Error & Exception Exposure": "57.23%",
- "Tech Debt Exposure": "37.75%",
- "Testing Exposure": "2.42%",
+ "Cognitive Load Exposure": "10.2%",
+ "Error & Exception Exposure": "61.37%",
+ "Tech Debt Exposure": "50.0%",
+ "Testing Exposure": "2.43%",
"API Exposure": "3.26%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "91.68%",
+ "State Flux Exposure": "92.13%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -898009,7 +898009,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "20.03%",
+ "Error & Exception Exposure": "14.2%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "1.15%",
"API Exposure": "6.74%",
@@ -898019,7 +898019,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "49.21%",
+ "Documentation Exposure": "48.78%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -898217,7 +898217,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "40.06%",
+ "Error & Exception Exposure": "28.4%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "13.49%",
@@ -898227,7 +898227,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.41%",
+ "Documentation Exposure": "97.57%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -899206,9 +899206,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "72.06%",
- "Tech Debt Exposure": "60.43%",
- "Testing Exposure": "2.35%",
+ "Error & Exception Exposure": "71.72%",
+ "Tech Debt Exposure": "53.79%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -899257,7 +899257,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.35%",
"API Exposure": "0.0%",
@@ -899428,9 +899428,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "64.03%",
- "Tech Debt Exposure": "93.22%",
- "Testing Exposure": "2.36%",
+ "Error & Exception Exposure": "61.44%",
+ "Tech Debt Exposure": "88.27%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -899628,8 +899628,8 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
- "Tech Debt Exposure": "88.08%",
+ "Error & Exception Exposure": "76.85%",
+ "Tech Debt Exposure": "73.11%",
"Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -901351,7 +901351,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "24.39%",
+ "Error & Exception Exposure": "23.33%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "1.56%",
"API Exposure": "0.0%",
@@ -901561,7 +901561,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -901737,9 +901737,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "73.16%",
+ "Error & Exception Exposure": "70.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -902270,9 +902270,9 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "1.02%",
+ "Cognitive Load Exposure": "0.82%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "8.33%",
+ "Tech Debt Exposure": "3.33%",
"Testing Exposure": "1.92%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -902475,13 +902475,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.067
+ "Raw Cognitive Density": 0.011
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.1%",
+ "Cognitive Load Exposure": "4.95%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "50.0%",
- "Testing Exposure": "2.32%",
+ "Tech Debt Exposure": "19.96%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -903599,12 +903599,12 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "35.55%",
- "Tech Debt Exposure": "44.04%",
+ "Error & Exception Exposure": "35.1%",
+ "Tech Debt Exposure": "36.55%",
"Testing Exposure": "1.16%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.51%",
+ "State Flux Exposure": "36.36%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
@@ -903650,12 +903650,12 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "71.09%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Error & Exception Exposure": "70.21%",
+ "Tech Debt Exposure": "73.11%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "75.03%",
+ "State Flux Exposure": "72.71%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
@@ -904782,9 +904782,9 @@
"Static: Literature & Documentation": "25.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
+ "Cognitive Load Exposure": "5.39%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "22.02%",
+ "Tech Debt Exposure": "9.44%",
"Testing Exposure": "1.73%",
"API Exposure": "8.27%",
"Concurrency Exposure": "0.0%",
@@ -904793,7 +904793,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "37.5%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "70.39%",
+ "Documentation Exposure": "61.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -904987,10 +904987,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.141
+ "Raw Cognitive Density": 0.07
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.36%",
+ "Cognitive Load Exposure": "5.32%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -905001,7 +905001,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "96.86%",
+ "Documentation Exposure": "90.77%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -905144,13 +905144,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.34
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "22.44%",
+ "Cognitive Load Exposure": "16.25%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.32%",
"API Exposure": "8.07%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -905158,7 +905158,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "84.74%",
+ "Documentation Exposure": "57.09%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -905332,7 +905332,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "99.96%",
+ "Documentation Exposure": "99.84%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -905466,7 +905466,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "25.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.93%",
+ "Documentation Exposure": "8.6%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -905674,7 +905674,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.86%",
+ "Documentation Exposure": "17.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -905796,10 +905796,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "73.66%",
+ "Cognitive Load Exposure": "5.95%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -905844,13 +905844,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "7.45%",
- "Error & Exception Exposure": "73.66%",
+ "Cognitive Load Exposure": "5.95%",
+ "Error & Exception Exposure": "70.21%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.35%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -906011,7 +906011,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -906062,7 +906062,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.31%",
+ "Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907108,7 +907108,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907159,7 +907159,7 @@
"Cognitive Load Exposure": "0.0%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907308,9 +907308,9 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907359,9 +907359,9 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "76.08%",
+ "Error & Exception Exposure": "76.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907499,9 +907499,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.73%",
- "Error & Exception Exposure": "75.61%",
- "Tech Debt Exposure": "32.37%",
+ "Cognitive Load Exposure": "3.25%",
+ "Error & Exception Exposure": "72.03%",
+ "Tech Debt Exposure": "25.64%",
"Testing Exposure": "2.31%",
"API Exposure": "0.67%",
"Concurrency Exposure": "0.0%",
@@ -907510,7 +907510,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "4.47%",
+ "Documentation Exposure": "3.97%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -907547,11 +907547,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.012
+ "Raw Cognitive Density": 0.005
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "4.93%",
- "Error & Exception Exposure": "81.36%",
+ "Cognitive Load Exposure": "4.78%",
+ "Error & Exception Exposure": "86.83%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "2.02%",
@@ -907561,7 +907561,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "13.4%",
+ "Documentation Exposure": "11.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -907735,13 +907735,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.074
+ "Raw Cognitive Density": 0.012
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.28%",
- "Error & Exception Exposure": "76.91%",
- "Tech Debt Exposure": "97.12%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "4.97%",
+ "Error & Exception Exposure": "73.3%",
+ "Tech Debt Exposure": "76.92%",
+ "Testing Exposure": "2.32%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -907907,7 +907907,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "68.57%",
+ "Error & Exception Exposure": "55.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -908036,9 +908036,9 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "21.79%",
+ "Cognitive Load Exposure": "18.58%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "29.36%",
+ "Tech Debt Exposure": "20.75%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
@@ -908084,13 +908084,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.72
+ "Raw Cognitive Density": 0.66
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "39.95%",
+ "Cognitive Load Exposure": "34.93%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "62.25%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -908252,10 +908252,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.06
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.33%",
+ "Cognitive Load Exposure": "5.06%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -908409,10 +908409,10 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.44
+ "Raw Cognitive Density": 0.38
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "19.08%",
+ "Cognitive Load Exposure": "15.76%",
"Error & Exception Exposure": "0.0%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
@@ -909629,18 +909629,18 @@
"Static: Literature & Documentation": "14.3%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.57%",
- "Error & Exception Exposure": "21.03%",
- "Tech Debt Exposure": "9.74%",
+ "Cognitive Load Exposure": "1.73%",
+ "Error & Exception Exposure": "18.24%",
+ "Tech Debt Exposure": "3.7%",
"Testing Exposure": "1.98%",
"API Exposure": "4.65%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "11.41%",
+ "State Flux Exposure": "10.66%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "57.14%",
"Instability Exposure": "42.86%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "33.7%",
+ "Documentation Exposure": "29.69%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -910470,7 +910470,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "69.54%",
+ "Error & Exception Exposure": "55.97%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "9.93%",
@@ -910480,7 +910480,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "98.04%",
+ "Documentation Exposure": "91.9%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -910626,21 +910626,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.399
+ "Raw Cognitive Density": 0.299
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.98%",
- "Error & Exception Exposure": "77.66%",
- "Tech Debt Exposure": "68.15%",
- "Testing Exposure": "2.39%",
+ "Cognitive Load Exposure": "12.08%",
+ "Error & Exception Exposure": "71.71%",
+ "Tech Debt Exposure": "25.91%",
+ "Testing Exposure": "2.36%",
"API Exposure": "3.19%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "79.87%",
+ "State Flux Exposure": "74.62%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "37.89%",
+ "Documentation Exposure": "15.94%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -910804,18 +910804,18 @@
"Static: Literature & Documentation": "16.7%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "15.12%",
- "Error & Exception Exposure": "19.81%",
+ "Cognitive Load Exposure": "13.33%",
+ "Error & Exception Exposure": "15.79%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "14.87%",
+ "Testing Exposure": "1.94%",
"API Exposure": "4.35%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "10.26%",
+ "State Flux Exposure": "9.05%",
"Commented Logic Exposure": "2.22%",
"Specification Exposure": "16.67%",
"Instability Exposure": "41.67%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "43.8%",
+ "Documentation Exposure": "24.06%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -911023,7 +911023,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.24%",
+ "Documentation Exposure": "25.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -911168,21 +911168,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.486
+ "Raw Cognitive Density": 0.414
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "23.58%",
- "Error & Exception Exposure": "69.25%",
+ "Cognitive Load Exposure": "17.75%",
+ "Error & Exception Exposure": "59.55%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "5.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "61.57%",
+ "State Flux Exposure": "54.28%",
"Commented Logic Exposure": "13.3%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.78%",
+ "Documentation Exposure": "22.12%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -911327,13 +911327,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.964
+ "Raw Cognitive Density": 0.928
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "67.16%",
- "Error & Exception Exposure": "49.6%",
+ "Cognitive Load Exposure": "62.26%",
+ "Error & Exception Exposure": "35.18%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "80.0%",
+ "Testing Exposure": "2.48%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -911569,7 +911569,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.24%",
+ "Documentation Exposure": "25.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -911728,7 +911728,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "92.53%",
+ "Documentation Exposure": "70.3%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -911855,10 +911855,10 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "4.64%",
+ "Cognitive Load Exposure": "3.21%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "44.04%",
- "Testing Exposure": "2.34%",
+ "Tech Debt Exposure": "18.88%",
+ "Testing Exposure": "2.33%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -911903,13 +911903,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.18
+ "Raw Cognitive Density": 0.08
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.28%",
+ "Cognitive Load Exposure": "6.42%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.39%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.36%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -912204,8 +912204,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.85%",
- "Error & Exception Exposure": "30.37%",
+ "Cognitive Load Exposure": "2.5%",
+ "Error & Exception Exposure": "27.72%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
@@ -912252,13 +912252,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.048
+ "Raw Cognitive Density": 0.014
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.7%",
- "Error & Exception Exposure": "60.74%",
+ "Cognitive Load Exposure": "5.0%",
+ "Error & Exception Exposure": "55.43%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.32%",
+ "Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -912564,9 +912564,9 @@
"Static: Literature & Documentation": "20.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "2.62%",
- "Error & Exception Exposure": "27.82%",
- "Tech Debt Exposure": "35.23%",
+ "Cognitive Load Exposure": "1.64%",
+ "Error & Exception Exposure": "22.39%",
+ "Tech Debt Exposure": "15.1%",
"Testing Exposure": "1.85%",
"API Exposure": "5.8%",
"Concurrency Exposure": "0.0%",
@@ -912575,7 +912575,7 @@
"Specification Exposure": "40.0%",
"Instability Exposure": "40.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "57.99%",
+ "Documentation Exposure": "42.76%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -912769,13 +912769,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.02
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.55%",
- "Error & Exception Exposure": "69.54%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "4.09%",
+ "Error & Exception Exposure": "55.97%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.32%",
"API Exposure": "3.33%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -912783,7 +912783,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.15%",
+ "Documentation Exposure": "16.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -912951,7 +912951,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "97.81%",
+ "Documentation Exposure": "90.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -913101,13 +913101,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.12
+ "Raw Cognitive Density": 0.02
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "6.55%",
- "Error & Exception Exposure": "69.54%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.33%",
+ "Cognitive Load Exposure": "4.09%",
+ "Error & Exception Exposure": "55.97%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.32%",
"API Exposure": "3.33%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -913115,7 +913115,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.15%",
+ "Documentation Exposure": "16.54%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -913283,7 +913283,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "97.81%",
+ "Documentation Exposure": "90.37%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -923729,7 +923729,7 @@
},
"Average Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "28.67%",
+ "Error & Exception Exposure": "21.8%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -923937,7 +923937,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "57.34%",
+ "Error & Exception Exposure": "43.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -924115,7 +924115,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "57.34%",
+ "Error & Exception Exposure": "43.61%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
@@ -924433,8 +924433,8 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "1.1%",
- "Error & Exception Exposure": "21.78%",
+ "Cognitive Load Exposure": "0.97%",
+ "Error & Exception Exposure": "20.51%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "5.67%",
@@ -924444,7 +924444,7 @@
"Specification Exposure": "20.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "32.96%",
+ "Documentation Exposure": "29.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -924495,7 +924495,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "14.76%",
+ "Documentation Exposure": "12.51%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -924656,7 +924656,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "90.35%",
+ "Documentation Exposure": "88.13%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -924969,7 +924969,7 @@
},
"4. Vulnerability & Risk Exposures": {
"Cognitive Load Exposure": "0.0%",
- "Error & Exception Exposure": "52.15%",
+ "Error & Exception Exposure": "50.59%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "9.57%",
@@ -924979,7 +924979,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.51%",
+ "Documentation Exposure": "32.62%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -925133,11 +925133,11 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.047
+ "Raw Cognitive Density": 0.021
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "5.49%",
- "Error & Exception Exposure": "56.77%",
+ "Cognitive Load Exposure": "4.87%",
+ "Error & Exception Exposure": "51.98%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "4.01%",
@@ -925147,7 +925147,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "23.18%",
+ "Documentation Exposure": "15.43%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -925271,18 +925271,18 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "12.83%",
- "Error & Exception Exposure": "71.02%",
+ "Cognitive Load Exposure": "10.76%",
+ "Error & Exception Exposure": "68.1%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.36%",
+ "Testing Exposure": "2.34%",
"API Exposure": "5.67%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "61.5%",
+ "State Flux Exposure": "55.89%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "40.86%",
+ "Documentation Exposure": "25.25%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -925319,21 +925319,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.376
+ "Raw Cognitive Density": 0.33
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "17.3%",
- "Error & Exception Exposure": "74.83%",
+ "Cognitive Load Exposure": "14.28%",
+ "Error & Exception Exposure": "72.46%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.33%",
"API Exposure": "5.32%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "90.92%",
+ "State Flux Exposure": "88.12%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "41.55%",
+ "Documentation Exposure": "24.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -925509,21 +925509,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.185
+ "Raw Cognitive Density": 0.146
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "9.0%",
- "Error & Exception Exposure": "64.73%",
+ "Cognitive Load Exposure": "7.57%",
+ "Error & Exception Exposure": "59.68%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "5.32%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "29.54%",
+ "State Flux Exposure": "23.7%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "36.05%",
+ "Documentation Exposure": "21.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -925699,21 +925699,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.322
+ "Raw Cognitive Density": 0.28
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "14.51%",
- "Error & Exception Exposure": "74.72%",
+ "Cognitive Load Exposure": "12.1%",
+ "Error & Exception Exposure": "72.93%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.33%",
+ "Testing Exposure": "2.32%",
"API Exposure": "5.32%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "83.6%",
+ "State Flux Exposure": "79.06%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "38.95%",
+ "Documentation Exposure": "23.1%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -925889,21 +925889,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.292
+ "Raw Cognitive Density": 0.26
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "13.27%",
- "Error & Exception Exposure": "72.37%",
+ "Cognitive Load Exposure": "11.53%",
+ "Error & Exception Exposure": "71.59%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.41%",
+ "Testing Exposure": "2.37%",
"API Exposure": "7.11%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "49.45%",
+ "State Flux Exposure": "42.02%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.99%",
+ "Documentation Exposure": "33.67%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -926119,21 +926119,21 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.217
+ "Raw Cognitive Density": 0.174
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "10.06%",
- "Error & Exception Exposure": "68.45%",
+ "Cognitive Load Exposure": "8.29%",
+ "Error & Exception Exposure": "63.85%",
"Tech Debt Exposure": "0.0%",
- "Testing Exposure": "2.35%",
+ "Testing Exposure": "2.34%",
"API Exposure": "5.27%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "54.01%",
+ "State Flux Exposure": "46.53%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "39.78%",
+ "Documentation Exposure": "23.41%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [
@@ -926306,7 +926306,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "16.37%",
+ "Documentation Exposure": "8.93%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -926514,7 +926514,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "46.47%",
+ "Documentation Exposure": "15.92%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -926671,7 +926671,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "35.39%",
+ "Documentation Exposure": "28.74%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -927104,13 +927104,13 @@
"Unclassified": "100.0%"
},
"Average Risk Exposures": {
- "Cognitive Load Exposure": "3.25%",
- "Error & Exception Exposure": "11.63%",
- "Tech Debt Exposure": "14.68%",
+ "Cognitive Load Exposure": "2.26%",
+ "Error & Exception Exposure": "9.4%",
+ "Tech Debt Exposure": "6.29%",
"Testing Exposure": "2.31%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "6.29%",
+ "State Flux Exposure": "5.17%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "16.67%",
"Instability Exposure": "50.0%",
@@ -927309,13 +927309,13 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.14
+ "Raw Cognitive Density": 0.04
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "8.02%",
+ "Cognitive Load Exposure": "5.52%",
"Error & Exception Exposure": "0.0%",
- "Tech Debt Exposure": "88.08%",
- "Testing Exposure": "2.37%",
+ "Tech Debt Exposure": "37.75%",
+ "Testing Exposure": "2.34%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
"State Flux Exposure": "0.0%",
@@ -927801,16 +927801,16 @@
"Raw Churn Frequency": 0.0,
"Authorship Centralization": 0.0,
"Ownership Entropy": 0.0,
- "Raw Cognitive Density": 0.24
+ "Raw Cognitive Density": 0.14
},
"4. Vulnerability & Risk Exposures": {
- "Cognitive Load Exposure": "11.51%",
- "Error & Exception Exposure": "69.76%",
+ "Cognitive Load Exposure": "8.02%",
+ "Error & Exception Exposure": "56.39%",
"Tech Debt Exposure": "0.0%",
"Testing Exposure": "2.3%",
"API Exposure": "0.0%",
"Concurrency Exposure": "0.0%",
- "State Flux Exposure": "37.75%",
+ "State Flux Exposure": "31.0%",
"Commented Logic Exposure": "0.0%",
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
@@ -928442,7 +928442,7 @@
"Specification Exposure": "50.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "54.88%",
+ "Documentation Exposure": "22.05%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -928493,7 +928493,7 @@
"Specification Exposure": "100.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "47.86%",
+ "Documentation Exposure": "17.2%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -928650,7 +928650,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.91%",
+ "Documentation Exposure": "26.89%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
@@ -928961,7 +928961,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.24%",
+ "Documentation Exposure": "25.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"Files": {
@@ -929012,7 +929012,7 @@
"Specification Exposure": "0.0%",
"Instability Exposure": "50.0%",
"Volatility Exposure": "0.0%",
- "Documentation Exposure": "61.24%",
+ "Documentation Exposure": "25.98%",
"Hardcoded Payload Artifacts": "0.0%"
},
"5. Function Analysis": [],
diff --git a/tests/ruff_audit_baseline.json b/tests/ruff_audit_baseline.json
index 5f0aeac68..9aeb18c5b 100644
--- a/tests/ruff_audit_baseline.json
+++ b/tests/ruff_audit_baseline.json
@@ -12,11 +12,11 @@
"gitgalaxy/licensing.py:83: DTZ005": "`datetime.datetime.now()` called without a `tz` argument",
"gitgalaxy/metrics/chronometer.py:299: SIM118": "Use `key in dict` instead of `key in dict.keys()`",
"gitgalaxy/metrics/chronometer.py:424: PERF203": "`try`-`except` within a loop incurs performance overhead",
- "gitgalaxy/metrics/signal_processor.py:1706: SIM108": "Use ternary operator `network_multiplier = 0.2 if popularity == 0 else min(1.0 + math.log1p(popularity) / 5.0, 2.0)` instead of `if`-`else`-block",
- "gitgalaxy/metrics/signal_processor.py:528: RUF046": "Value being cast to `int` is already an integer",
- "gitgalaxy/metrics/signal_processor.py:540: SIM118": "Use `key in dict` instead of `key in dict.keys()`",
- "gitgalaxy/metrics/signal_processor.py:701: SIM118": "Use `key in dict` instead of `key in dict.keys()`",
- "gitgalaxy/metrics/signal_processor.py:89: SIM118": "Use `key in dict` instead of `key in dict.keys()`",
+ "gitgalaxy/metrics/signal_processor.py:1713: SIM108": "Use ternary operator `network_multiplier = 0.2 if popularity == 0 else min(1.0 + math.log1p(popularity) / 5.0, 2.0)` instead of `if`-`else`-block",
+ "gitgalaxy/metrics/signal_processor.py:524: RUF046": "Value being cast to `int` is already an integer",
+ "gitgalaxy/metrics/signal_processor.py:536: SIM118": "Use `key in dict` instead of `key in dict.keys()`",
+ "gitgalaxy/metrics/signal_processor.py:697: SIM118": "Use `key in dict` instead of `key in dict.keys()`",
+ "gitgalaxy/metrics/signal_processor.py:91: SIM118": "Use `key in dict` instead of `key in dict.keys()`",
"gitgalaxy/metrics/statistical_auditor.py:355: PERF203": "`try`-`except` within a loop incurs performance overhead",
"gitgalaxy/recorders/audit_recorder.py:281: C416": "Unnecessary dict comprehension (rewrite using `dict()`)",
"gitgalaxy/recorders/audit_recorder.py:298: C414": "Unnecessary `list()` call within `sorted()`",
diff --git a/tests/tools/audit_length_invariance.py b/tests/tools/audit_length_invariance.py
index 23cdb662d..42fda86f8 100644
--- a/tests/tools/audit_length_invariance.py
+++ b/tests/tools/audit_length_invariance.py
@@ -47,6 +47,7 @@
from typing import Any, Callable
from gitgalaxy.metrics.signal_processor import SignalProcessor
+from gitgalaxy.standards import analysis_lens
# The keyword-rosetta SPEC probe files as the engine sees them after api inflation on
# imported files (a/b/c: api = defs x 2; main: api = defs) -- see the corpus SPEC.md.
@@ -89,15 +90,20 @@ class EquationCase:
call: Callable[[SignalProcessor, int, dict[str, int], dict[str, Any]], float]
+# #2718: the three tiers are gone; sweep three strictness profiles (0 / 2 / 4 gaps) at
+# full fidelity, the shape analysis_lens.strictness_constants() produces.
def _tv(p: SignalProcessor, tier: str) -> dict[str, Any]:
- return p.TIER_VARS[tier]
+ gaps = {"tier1": 0, "tier2": 2, "tier3": 4}[tier]
+ irc = gaps * analysis_lens.STRICTNESS_IRC_PER_GAP
+ fid = {"safety": 1.0, "test": 1.0, "doc": 1.0, "ownership": 1.0}
+ return {"irc": irc, "ot": 1.0 + gaps * analysis_lens.STRICTNESS_OT_PER_GAP, "fid": fid}
EQUATION_CASES: list[EquationCase] = [
- EquationCase("cog_load", lambda p, loc, s, tv: p._calc_cog_load(loc, s, tv["irc"], tv["fc"], 1.0, 0.0)[0]),
- EquationCase("safety", lambda p, loc, s, tv: p._calc_safety(loc, s, tv["irc"], tv["fc"], 1.0)),
+ EquationCase("cog_load", lambda p, loc, s, tv: p._calc_cog_load(loc, s, tv["irc"], tv["fid"], 1.0, 0.0)[0]),
+ EquationCase("safety", lambda p, loc, s, tv: p._calc_safety(loc, s, tv["irc"], tv["fid"], 1.0)),
EquationCase("tech_debt", lambda p, loc, s, tv: p._calc_tech_debt(loc, s, tv["irc"], 1.0)),
- EquationCase("documentation", lambda p, loc, s, tv: p._calc_documentation(loc, 2, s, tv["fc"], tv["irc"], 1.0)),
+ EquationCase("documentation", lambda p, loc, s, tv: p._calc_documentation(loc, 2, s, tv["fid"], tv["irc"], 1.0)),
EquationCase(
"verification",
lambda p, loc, s, tv: p._calc_verification(
@@ -105,7 +111,7 @@ def _tv(p: SignalProcessor, tier: str) -> dict[str, Any]:
False,
s,
tv.get("ot", 1.0),
- tv["fc"],
+ tv["fid"],
1.0,
[{"name": "f", "impact": 60.0, "hit_vector": {}, "docstring": None}],
{},
diff --git a/tests/tools/audit_risk_equations.py b/tests/tools/audit_risk_equations.py
index 4af4df544..4d486fa63 100644
--- a/tests/tools/audit_risk_equations.py
+++ b/tests/tools/audit_risk_equations.py
@@ -60,8 +60,9 @@
from typing import Any, Callable
from gitgalaxy.metrics.signal_processor import SignalProcessor
+from gitgalaxy.standards import analysis_lens
-TIER_PARAM_NAMES = {"fc", "irc", "ot"}
+TIER_PARAM_NAMES = {"fid", "irc", "ot"}
# Small LOC values (10, 20) are deliberately included: #1055's systems_buffer bug was a
# flat constant that dominated a small-file density denominator. Any equation with a
# flat-additive tier constant (irc) divided by LOC is most exposed to that exact
@@ -90,6 +91,19 @@ class EquationCase:
notes: str = ""
+def _strictness_profile(tier: str) -> dict[str, Any]:
+ """#2718: the three tiers are gone. The sweep keeps its three points as strictness
+ profiles of 0 / 2 / 4 gaps at full fidelity -- the shape
+ analysis_lens.strictness_constants() produces -- so the direction check still reads
+ 'more gaps never scores lower for identical evidence'."""
+ gaps = {"tier1": 0, "tier2": 2, "tier3": 4}[tier]
+ return {
+ "irc": gaps * analysis_lens.STRICTNESS_IRC_PER_GAP,
+ "ot": 1.0 + gaps * analysis_lens.STRICTNESS_OT_PER_GAP,
+ "fid": {"safety": 1.0, "test": 1.0, "doc": 1.0, "ownership": 1.0},
+ }
+
+
def _mp1() -> float:
"""mp (locational multiplier) is path-derived, not tier-derived (_get_locational_multipliers
keys off rel_path only) -- held constant at 1.0 across tiers so it can't contaminate the
@@ -126,7 +140,7 @@ def _mp1() -> float:
"doc": 0,
},
irc=tv["irc"],
- fc=tv["fc"],
+ fid=tv["fid"],
mp=_mp1(),
func_gini=0.0,
),
@@ -145,7 +159,7 @@ def _mp1() -> float:
"doc": hits,
},
irc=tv["irc"],
- fc=tv["fc"],
+ fid=tv["fid"],
mp=_mp1(),
func_gini=0.0,
),
@@ -179,7 +193,7 @@ def _mp1() -> float:
loc=loc,
doc_loc=0,
raw_signals={"api": hits, "doc": 0, "ownership": 0},
- fc=tv["fc"],
+ fid=tv["fid"],
irc=tv["irc"],
mp=_mp1(),
functions=None,
@@ -194,7 +208,7 @@ def _mp1() -> float:
loc=loc,
doc_loc=0,
raw_signals={"api": 0, "doc": hits, "ownership": 0},
- fc=tv["fc"],
+ fid=tv["fid"],
irc=tv["irc"],
mp=_mp1(),
functions=None,
@@ -218,7 +232,7 @@ def _mp1() -> float:
is_protected=False,
raw_signals={"high_risk_execution": 0},
ot=tv["ot"],
- fc=tv["fc"],
+ fid=tv["fid"],
mp=_mp1(),
functions=[{"name": "f", "impact": float(hits) * 10.0, "hit_vector": {}, "docstring": None}],
test_coverage_map={},
@@ -236,7 +250,7 @@ def _mp1() -> float:
is_protected=False,
raw_signals={"high_risk_execution": 0},
ot=tv["ot"],
- fc=tv["fc"],
+ fid=tv["fid"],
mp=_mp1(),
functions=[
{"name": "f", "impact": 50.0, "hit_vector": {"safety": hits}, "docstring": "documented"}
@@ -306,7 +320,7 @@ def audit_scenario(
for hits in HIT_SWEEP:
scores = {}
for tier in ("tier1", "tier2", "tier3"):
- tier_vars = processor.TIER_VARS[tier]
+ tier_vars = _strictness_profile(tier)
kwargs = scenario.build_kwargs(loc, hits, tier_vars)
result = getattr(processor, case.method_name)(**kwargs)
score = result[0] if isinstance(result, tuple) else result
diff --git a/tests/tools/fidelity_table.py b/tests/tools/fidelity_table.py
new file mode 100644
index 000000000..4dc2a78ec
--- /dev/null
+++ b/tests/tools/fidelity_table.py
@@ -0,0 +1,278 @@
+# ==============================================================================
+# GitGalaxy
+# Copyright (c) 2026 Joe Esquibel
+#
+# This source code is licensed under the PolyForm Noncommercial License 1.0.0.
+# You may not use this file except in compliance with the License.
+# A copy of the license can be found in the LICENSE file in the root directory
+# of this project, or at https://polyformproject.org/licenses/noncommercial/1.0.0/
+# ==============================================================================
+"""Generate gitgalaxy/standards/fidelity_table.py from the keyword-rosetta control corpus.
+
+The corpus plants an identical program in every language and records, per language and
+per signal, how many hits the engine measured (`docs/bias_data.json`, summed over the
+language's shell files) against how many the SPEC planted (the corpus-wide median of the
+`data//expected_signals.json` manifests -- a language's own manifest is measured by
+construction and cannot be its reference). The per-signal Fidelity Coefficient is
+
+ fc(lang, signal) = min(1.0, planted / measured)
+
+so a rule that fires 3 times on 2 planted constructs credits each hit at 2/3 and
+identical planted defence earns identical defence credit in every language -- the
+alignment keyword-rosetta gates, applied at the measurement layer (#2716). Under-firing
+(measured < planted) stays at 1.0 on purpose: that is a rule to fix, and a coefficient
+that compensates for a fixable gap is a way to stop fixing it. Ledgered n/a, unplanted
+and unmeasured cells are 1.0 as well -- there is nothing to credit.
+
+Usage:
+ python tests/tools/fidelity_table.py # rewrite the module from ../keyword-rosetta
+ python tests/tools/fidelity_table.py --check # exit 1 if the committed module is stale
+ python tests/tools/fidelity_table.py --docs # refresh the generated tables in docs/wiki/08-03
+ KEYWORD_ROSETTA_PATH=/path python tests/tools/fidelity_table.py
+
+Only the signals the engine actually scales are load-bearing today (safety, test, doc,
+ownership -- see SignalProcessor.FIDELITY_SIGNALS); the full intersection is emitted so
+#2719 can read the rest without a second generator.
+"""
+
+from __future__ import annotations
+
+import argparse
+import datetime as _dt
+import importlib
+import json
+import os
+import shutil
+import statistics
+import subprocess
+import sys
+from pathlib import Path
+
+REPO_ROOT = Path(__file__).resolve().parents[2]
+DEFAULT_CORPUS = Path(os.environ.get("KEYWORD_ROSETTA_PATH", REPO_ROOT.parent / "keyword-rosetta"))
+OUTPUT = REPO_ROOT / "gitgalaxy" / "standards" / "fidelity_table.py"
+WIKI_PAGE = REPO_ROOT / "docs" / "wiki" / "08-03-transforming-regex-counts.md"
+GENERATED_LINE = "# generated:"
+
+
+_GIT_BIN = shutil.which("git")
+
+
+def _corpus_sha(corpus: Path) -> str:
+ if not _GIT_BIN:
+ return "unknown"
+ try:
+ out = subprocess.run( # noqa: S603 -- _GIT_BIN resolved absolute, fixed args
+ [_GIT_BIN, "-C", str(corpus), "rev-parse", "HEAD"], capture_output=True, text=True, check=True
+ )
+ return out.stdout.strip()
+ except (subprocess.CalledProcessError, FileNotFoundError):
+ return "unknown"
+
+
+def build_table(corpus: Path) -> tuple[dict[str, dict[str, float]], list[str], dict[str, str]]:
+ bias = json.loads((corpus / "docs" / "bias_data.json").read_text())
+ metrics: dict[str, dict[str, float | None]] = bias["metrics"]
+ na: dict[str, dict[str, str]] = bias.get("na", {})
+ languages: list[str] = sorted(bias["languages"])
+ if not languages:
+ raise SystemExit("fidelity_table: corpus lists zero languages -- refusing to generate an empty table")
+
+ planted: dict[str, dict[str, int]] = {}
+ for lang in languages:
+ manifest = corpus / "data" / lang / "expected_signals.json"
+ if not manifest.exists():
+ continue
+ files = json.loads(manifest.read_text()).get("files", {})
+ totals: dict[str, int] = {}
+ for counts in files.values():
+ for sig, n in counts.items():
+ if isinstance(n, int):
+ totals[sig] = totals.get(sig, 0) + n
+ planted[lang] = totals
+
+ signals = sorted({s for t in planted.values() for s in t} & set(metrics))
+ if not signals:
+ raise SystemExit("fidelity_table: no planted signal is also measured -- corpus layout changed?")
+
+ # The planted reference is the SPEC's plant, which every language's manifest
+ # carries identically except where a ledger entry blesses a deviation -- so the
+ # corpus-wide median of the manifests IS the plant (safety 2, test 2, doc 1,
+ # ownership 1, ...), and it is what bias_report.py bands against. A language's
+ # own manifest cannot be its reference: that is measured-by-construction.
+ reference: dict[str, float] = {}
+ for sig in signals:
+ vals = [t[sig] for lang, t in planted.items() if sig in t and not na.get(sig, {}).get(lang)]
+ reference[sig] = statistics.median(vals) if vals else 0.0
+
+ table: dict[str, dict[str, float]] = {}
+ for lang in languages:
+ row: dict[str, float] = {}
+ for sig in signals:
+ p = reference[sig]
+ m = metrics.get(sig, {}).get(lang)
+ if na.get(sig, {}).get(lang) or not p or not isinstance(m, (int, float)) or m <= 0:
+ row[sig] = 1.0
+ else:
+ row[sig] = round(min(1.0, p / m), 4)
+ table[lang] = row
+
+ prov = {
+ "corpus": "keyword-rosetta",
+ "corpus_sha": _corpus_sha(corpus),
+ "engine_mode": str(bias.get("engine_mode", "unknown")),
+ "languages": str(len(table)),
+ "signals": str(len(signals)),
+ }
+ return table, signals, prov
+
+
+def render(table: dict[str, dict[str, float]], signals: list[str], prov: dict[str, str]) -> str:
+ lines = [
+ "# ==============================================================================",
+ "# GitGalaxy",
+ "# Copyright (c) 2026 Joe Esquibel",
+ "#",
+ "# This source code is licensed under the PolyForm Noncommercial License 1.0.0.",
+ "# You may not use this file except in compliance with the License.",
+ "# A copy of the license can be found in the LICENSE file in the root directory",
+ "# of this project, or at https://polyformproject.org/licenses/noncommercial/1.0.0/",
+ "# ==============================================================================",
+ "# GENERATED by tests/tools/fidelity_table.py from the keyword-rosetta control corpus.",
+ "# Do not edit by hand -- rerun the tool; `--check` fails CI when this is stale.",
+ f"# corpus: {prov['corpus']} {prov['corpus_sha']} | engine_mode: {prov['engine_mode']}",
+ f"{GENERATED_LINE} {_dt.datetime.now(_dt.timezone.utc).date().isoformat()}",
+ '"""Per-language, per-signal Fidelity Coefficients: fc = min(1, planted / measured).',
+ "",
+ "Scales the credit a detected hit earns so that identical planted defence earns identical",
+ "credit in every language (#2716). 1.0 means the rule reads exactly on plant, under-fires",
+ "(a rule to fix, never compensated), or the signal is ledgered n/a for the language.",
+ '"""',
+ "",
+ "from __future__ import annotations",
+ "",
+ "FIDELITY_PROVENANCE: dict[str, str] = " + json.dumps(prov, indent=4).replace("\n", "\n") + "",
+ "",
+ "FIDELITY_SIGNALS: tuple[str, ...] = (",
+ ]
+ lines += [f' "{s}",' for s in signals]
+ lines += [")", "", "FIDELITY_TABLE: dict[str, dict[str, float]] = {"]
+ for lang in sorted(table):
+ row = table[lang]
+ nonunit = {s: v for s, v in row.items() if v != 1.0}
+ if nonunit:
+ body = ", ".join(f'"{s}": {v}' for s, v in sorted(nonunit.items()))
+ lines.append(f' "{lang}": {{{body}}},')
+ else:
+ lines.append(f' "{lang}": {{}},')
+ lines += ["}", ""]
+ return "\n".join(lines)
+
+
+def render_docs() -> dict[str, str]:
+ """Markdown tables for the wiki, straight from the data the engine reads -- a
+ hand-written table is how the repo ended up with two that disagreed (#2653)."""
+ from gitgalaxy.standards import analysis_lens as al
+ from gitgalaxy.standards.fidelity_table import FIDELITY_PROVENANCE, FIDELITY_TABLE
+
+ cols = " | ".join(c.replace("_", " ") for c in al.STRICTNESS_COLUMNS)
+ strict = [f"| language | {cols} | Irc | Ot |", "|---|" + "---|" * len(al.STRICTNESS_COLUMNS) + "---|---|"]
+ for lang in sorted(al.LANGUAGE_STRICTNESS):
+ row = al.LANGUAGE_STRICTNESS[lang]
+ irc, ot = al.strictness_constants(lang)
+ if row is None:
+ cells = " | ".join("—" for _ in al.STRICTNESS_COLUMNS) + " | 0 | 1.00 |"
+ strict.append(f"| `{lang}` *(no runtime)* | {cells}")
+ else:
+ cells = " | ".join("yes" if f else "**no**" for f in row)
+ strict.append(f"| `{lang}` | {cells} | {irc} | {ot:.2f} |")
+ fam = ", ".join(f"`{m}` → `{p}`" for m, p in sorted(al.LANGUAGE_FAMILY.items()))
+ strict.append("")
+ strict.append(f"Dialects read their family's row: {fam}.")
+
+ engine_sigs = ("safety", "test", "doc", "ownership")
+ fid = [
+ "| language | " + " | ".join(f"`{s}`" for s in engine_sigs) + " |",
+ "|---|" + "---|" * len(engine_sigs),
+ ]
+ for lang in sorted(FIDELITY_TABLE):
+ row = FIDELITY_TABLE[lang]
+ if all(row.get(s, 1.0) == 1.0 for s in engine_sigs):
+ continue
+ fid.append(
+ f"| `{lang}` | "
+ + " | ".join(f"**{row[s]:.2f}**" if row.get(s, 1.0) != 1.0 else "1.00" for s in engine_sigs)
+ + " |"
+ )
+ fid.append("")
+ fid.append(
+ f"Every language and signal not listed reads 1.00. Source: keyword-rosetta `{FIDELITY_PROVENANCE['corpus_sha'][:8]}` "
+ f"({FIDELITY_PROVENANCE['languages']} languages), regenerated by `tests/tools/fidelity_table.py`."
+ )
+ return {"strictness": "\n".join(strict), "fidelity": "\n".join(fid)}
+
+
+def write_docs() -> int:
+ text = WIKI_PAGE.read_text()
+ for name, body in render_docs().items():
+ start, end = f"", f""
+ if start not in text or end not in text:
+ print(f"fidelity_table: markers for {name!r} missing from {WIKI_PAGE.name}", file=sys.stderr)
+ return 1
+ head, rest = text.split(start, 1)
+ _old, tail = rest.split(end, 1)
+ text = f"{head}{start}\n{body}\n{end}{tail}"
+ WIKI_PAGE.write_text(text)
+ print(f"fidelity_table: refreshed generated tables in {WIKI_PAGE.relative_to(REPO_ROOT)}")
+ return 0
+
+
+def _committed() -> tuple[dict[str, dict[str, float]], list[str], str] | None:
+ """(table, signals, corpus_sha) from the committed module, or None if it is missing."""
+ if not OUTPUT.exists():
+ return None
+ mod = importlib.import_module("gitgalaxy.standards.fidelity_table")
+ importlib.reload(mod)
+ table = {lang: dict(row) for lang, row in mod.FIDELITY_TABLE.items()}
+ return table, list(mod.FIDELITY_SIGNALS), mod.FIDELITY_PROVENANCE.get("corpus_sha", "")
+
+
+def main(argv: list[str] | None = None) -> int:
+ ap = argparse.ArgumentParser(description=__doc__.split("\n\n")[0])
+ ap.add_argument("--corpus", type=Path, default=DEFAULT_CORPUS)
+ ap.add_argument("--check", action="store_true", help="exit 1 if the committed module differs")
+ ap.add_argument("--docs", action="store_true", help="refresh the generated tables in the wiki page")
+ args = ap.parse_args(argv)
+ if args.docs:
+ return write_docs()
+ if not (args.corpus / "docs" / "bias_data.json").exists():
+ print(f"fidelity_table: no corpus at {args.corpus} (set KEYWORD_ROSETTA_PATH)", file=sys.stderr)
+ return 2
+ table, signals, prov = build_table(args.corpus)
+ text = render(table, signals, prov)
+ if args.check:
+ # Compare the DATA the committed module carries (the module is ruff-formatted after
+ # generation, so byte equality would be brittle). The 1.0 cells are elided on write,
+ # so compare the below-1.0 cells and the signal list.
+ committed = _committed()
+ want = {lang: {s: v for s, v in row.items() if v != 1.0} for lang, row in table.items()}
+ if committed is None or committed[0] != want or committed[1] != signals:
+ print(f"fidelity_table: {OUTPUT.relative_to(REPO_ROOT)} is stale against {args.corpus}", file=sys.stderr)
+ return 1
+ if committed[2] != prov["corpus_sha"]:
+ print(
+ f"fidelity_table: data fresh but provenance sha {committed[2][:8]} != corpus {prov['corpus_sha'][:8]}"
+ )
+ print(f"fidelity_table: fresh ({prov['languages']} languages x {prov['signals']} signals)")
+ return 0
+ OUTPUT.write_text(text)
+ below = sum(1 for r in table.values() for v in r.values() if v < 1.0)
+ print(
+ f"fidelity_table: wrote {OUTPUT.relative_to(REPO_ROOT)} -- {prov['languages']} languages x "
+ f"{prov['signals']} signals, {below} cells below 1.0"
+ )
+ return 0
+
+
+if __name__ == "__main__":
+ sys.exit(main())