From c686ae9252fe54ae7da072bc8fd44e9d7332dc62 Mon Sep 17 00:00:00 2001 From: Joe Esquibel Date: Mon, 31 Aug 2026 17:06:42 -0400 Subject: [PATCH] fix(detector): exclude synthetic slicer bucket names from orphan/duplicate census (#2547) Languages sliced by Mode D (_slice_by_keywords: shell/ruby/lua/elixir/livecode/ matlab) or Mode E (_slice_by_terminator: sql/sqlite/plpgsql/...) have no real same-file call graph. Mode D bundles any top-level loose code before the first real scope into a synthetic "__global_context__" satellite; Mode E names every top-level statement generically from its keyword ("SELECT_Statement", "CREATE_Statement", ...) rather than a real captured identifier. Neither is a genuine callable function, so the intra-file orphan census's "does this name appear anywhere else in the file" check was structurally guaranteed to flag them -- confirmed against the #1096 control corpus: shell a.sh/b.sh reported 4 orphans for 3 real functions (the extra was __global_context__), and sqlite main.sql reported orphaned_logic=7 for a file with zero real callable names at all (every satellite was a synthetic Mode-E bucket). The existing exclusion set (Unknown_Sat/Anonymous_Block/Main/Declarative_Block) already recognized this class of problem but was incomplete: it missed __global_context__ entirely, didn't strip the _[Truncated]/_[Unterminated] suffixes the slicer appends to those same names, and never covered Mode E's _Statement shape. It also only guarded the orphan branch, not the duplicate-detection branch reachable by the same synthetic names. Replace it with _is_synthetic_satellite_name(), which recognizes the full family (suffix-stripped exact names + the Statement-name pattern) and gates both branches. This directly fixes the orphan->api conversion (Contextual Baseline Fix, galaxyscope.py ~2145) inflating a popular file's api count with non-function shapes. Re-verified against the real corpus post-fix: a.sh/b.sh api 4->3, main.sh orphans 2->1, main.sql orphans 7->0, a/b/c.sql's bogus api 2/4/3->0/0/0 (SQL statements were never real API surface -- Mode E never captures a real identifier for any SQL statement type, so the correct count is zero, not one per CREATE INDEX as initially assumed). Golden master fixtures regenerated (tests/tools/update_golden_master.py, both full-precision and zero-dependency modes) -- the ~2200 diffs are the expected, intentional consequence of this fix across every shell/sql/lua/livecode/ruby file in the language-crucible corpus with either shape. crucible_check.py and the full test suite (7168 tests) pass clean after regeneration. Co-Authored-By: Claude Sonnet 5 --- gitgalaxy/core/detector.py | 63 +- tests/core_engine/test_detector.py | 70 + tests/golden_master_audit.json | 11680 +++++++++++----------- tests/golden_master_zero_dep_audit.json | 11652 ++++++++++----------- 4 files changed, 11782 insertions(+), 11683 deletions(-) diff --git a/gitgalaxy/core/detector.py b/gitgalaxy/core/detector.py index 597050858..0e77f735a 100644 --- a/gitgalaxy/core/detector.py +++ b/gitgalaxy/core/detector.py @@ -780,6 +780,37 @@ def _resolve_class_start_match(match: re.Match, groups_count: int) -> tuple[Opti {"async", "static", "public", "private", "protected", "abstract", "readonly", "override", "get", "set"} ) +# #2547: satellite names the structural slicer synthesizes for languages/modes with +# no real same-file call graph -- Mode D's (_slice_by_keywords) top-level loose-code +# bucket ("__global_context__", see ~5063) and Mode E's (_slice_by_terminator) +# per-statement-type bucket ("Declarative_Block", see ~5176/5265, or a +# "_Statement" name derived from the igniter match, see ~5235). None of +# these are ever real, callable identifiers, so they must never be eligible for +# orphan/duplicate classification below -- their name can never legitimately appear +# a second time in the file, and treating that as "orphaned" or "duplicated" just +# measures the slicer's own bucketing instead of real dead/copy-pasted code. Both +# `Main` and `Anonymous_Block` (Mode D's own top-of-scope/fallback names) plus +# `Unknown_Sat` (legacy) round out the same family. The slicer also appends +# `_[Truncated]`/`_[Unterminated]` to several of these when a scope runs off the end +# of a block (~5039, ~5043, ~5277), so those suffixes are stripped before matching. +_SYNTHETIC_SATELLITE_NAMES = frozenset( + {"Unknown_Sat", "Anonymous_Block", "Main", "Declarative_Block", "__global_context__"} +) +_SYNTHETIC_SATELLITE_SUFFIXES = ("_[Truncated]", "_[Unterminated]") + + +def _is_synthetic_satellite_name(name: str) -> bool: + base = name + for suffix in _SYNTHETIC_SATELLITE_SUFFIXES: + if base.endswith(suffix): + base = base[: -len(suffix)] + break + if base in _SYNTHETIC_SATELLITE_NAMES: + return True + # Mode E never captures a real identifier for SQL's igniter-based naming -- + # it always synthesizes "_Statement" (~5235). + return bool(re.fullmatch(r"[A-Z0-9]+_Statement", base)) + class StructuralExtractor: """ @@ -1300,23 +1331,21 @@ def splice( func_name = func.get("name", "") usage_status = 0 # 0 = Normal - # Check for Duplicates: same name AND materially the same body, - # defined multiple times in the same file. - if ( - func_name - and func_name_counts[func_name] > 1 - and body_hash_counts[(func_name, func_body_hashes[id(func)])] > 1 - ): - usage_status = 2 # 2 = Duplicate - duplicate_count += 1 - elif len(func_name) > 3 and func_name not in { - "Unknown_Sat", - "Anonymous_Block", - "Main", - "Declarative_Block", - }: - # If the function name only exists where it was defined, it's an orphan - if token_counts[func_name] <= 1: + # #2547: synthetic slicer bucket names (Mode D's "__global_context__", + # Mode E's "_Statement"/"Declarative_Block", etc.) are never + # real callable identifiers -- skip them for BOTH the duplicate and + # orphan checks below, not just the orphan one. + if func_name and not _is_synthetic_satellite_name(func_name): + # Check for Duplicates: same name AND materially the same body, + # defined multiple times in the same file. + if ( + func_name_counts[func_name] > 1 + and body_hash_counts[(func_name, func_body_hashes[id(func)])] > 1 + ): + usage_status = 2 # 2 = Duplicate + duplicate_count += 1 + elif len(func_name) > 3 and token_counts[func_name] <= 1: + # If the function name only exists where it was defined, it's an orphan orphan_count += 1 usage_status = 1 # 1 = Orphan / Unused diff --git a/tests/core_engine/test_detector.py b/tests/core_engine/test_detector.py index 44a3f466d..ef691ff1c 100644 --- a/tests/core_engine/test_detector.py +++ b/tests/core_engine/test_detector.py @@ -430,6 +430,76 @@ def test_detector_duplicate_logic_is_scope_blind_to_shadowed_same_name_helpers() ) +def test_detector_orphan_census_excludes_synthetic_slicer_names(): + """ + Regression test for #2547: languages sliced by Mode D (_slice_by_keywords) or + Mode E (_slice_by_terminator) synthesize bucket names for structural chunks that + were never real, callable functions -- Mode D's "__global_context__" for + top-level loose code sitting before the first real scope, and Mode E's + "_Statement"/"Declarative_Block" per-statement buckets for SQL. These + must never be eligible for orphan/duplicate classification: a synthetic name can + never legitimately appear a second time in the file, so without this exclusion + they were ALWAYS flagged "orphaned", inflating orphaned_logic with non-function + shapes instead of real dead code. + """ + # Mode D: shell. `. ./b.sh` is real top-level code (not a comment) preceding the + # first function -- gets bucketed into a synthetic "__global_context__" satellite. + shell_detector = StructuralExtractor("shell", MOCK_LANG_DEFS) + shell_code = ( + ". ./b.sh\n" + "\n" + "active_helper() {\n" + " echo hi\n" + "}\n" + "\n" + "forgotten_orphan() {\n" + " echo bye\n" + "}\n" + "\n" + "main_process() {\n" + " active_helper\n" + "}\n" + ) + shell_result = shell_detector.splice(shell_code, "") + shell_names = [f["name"] for f in shell_result["functions"]] + assert "__global_context__" in shell_names, "Test setup didn't reproduce the synthetic bucket -- fixture drifted" + + synthetic_flagged = [ + f["name"] + for f in shell_result["functions"] + if f["name"] == "__global_context__" and f.get("usage_status") != 0 + ] + assert synthetic_flagged == [], "__global_context__ (non-function slicer bucket) was flagged as orphan/duplicate!" + + real_orphans = [f["name"] for f in shell_result["functions"] if f.get("usage_status") == 1] + assert set(real_orphans) == {"forgotten_orphan", "main_process"}, f"Real orphan detection regressed: {real_orphans}" + assert shell_result["equations"].get("orphaned_logic", 0) == 2, ( + "orphaned_logic should count only the 2 real uncalled functions, not the synthetic bucket!" + ) + + # Mode E: sql. Every top-level statement becomes its own satellite, named + # generically from its leading keyword ("SELECT_Statement", "CREATE_Statement", + # ...) -- never a real captured identifier, so none should be orphan-eligible. + sql_detector = StructuralExtractor("sql", MOCK_LANG_DEFS) + sql_code = ( + "SELECT * FROM users;\n" + "INSERT INTO users (id) VALUES (1);\n" + "CREATE INDEX idx_users_id ON users (id);\n" + ) + sql_result = sql_detector.splice(sql_code, "") + sql_names = [f["name"] for f in sql_result["functions"]] + assert any(name.endswith("_Statement") for name in sql_names), ( + "Test setup didn't reproduce Mode E's synthetic per-statement bucket -- fixture drifted" + ) + + assert all(f.get("usage_status") == 0 for f in sql_result["functions"]), ( + f"A synthetic Mode E statement bucket was flagged as orphan/duplicate: {sql_result['functions']}" + ) + assert sql_result["equations"].get("orphaned_logic", 0) == 0, ( + "orphaned_logic should be 0 -- SQL statements have no real callable names to be orphaned!" + ) + + def test_detector_c_macro_dead_branch_shield(): """ Proves the Mode B Preprocessor Shield successfully blanks out dead diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index b49c0ae50..7053962f7 100644 --- a/tests/golden_master_audit.json +++ b/tests/golden_master_audit.json @@ -11,14 +11,14 @@ "pyyaml": false }, "Target Root Name": "data", - "Absolute Project Path": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-31T18:15:57.117995+00:00", - "Total Scan Duration": "19.9 seconds" + "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", + "Analysis ISO Timestamp": "2026-08-31T20:55:44.403298+00:00", + "Total Scan Duration": "54.93 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -238,8 +238,8 @@ "health": { "avg_cognitive_load": 29.79, "avg_safety_score": 47.68, - "avg_tech_debt": 42.638, - "avg_documentation": 28.959 + "avg_tech_debt": 32.24, + "avg_documentation": 28.806 }, "composition": { "markdown": { @@ -365,7 +365,7 @@ "shell": { "files": 213, "loc": 26320, - "impact": 29727.299999999992 + "impact": 29717.299999999992 }, "fortran": { "files": 6, @@ -420,12 +420,12 @@ "livecode": { "files": 98, "loc": 18042, - "impact": 26808.34 + "impact": 26789.34 }, "lua": { "files": 109, "loc": 18112, - "impact": 28729.660000000003 + "impact": 28683.660000000003 }, "matlab": { "files": 6, @@ -465,7 +465,7 @@ "ruby": { "files": 14, "loc": 2951, - "impact": 2362.1199999999994 + "impact": 2360.1199999999994 }, "rust": { "files": 43, @@ -490,7 +490,7 @@ "sqlite": { "files": 80, "loc": 3242, - "impact": 1420.2099999999996 + "impact": 1407.2099999999996 }, "swift": { "files": 6, @@ -1247,13 +1247,13 @@ }, "lua/pandoc": { "file_count": 26, - "total_mass": 1355.84, + "total_mass": 1353.84, "avg_exposures": { "cognitive_load": 36.29, "safety_score": 60.0, - "tech_debt": 58.2, + "tech_debt": 35.4, "verification": 4.88, - "api_exposure": 2.92, + "api_exposure": 2.79, "concurrency": 0.0, "state_flux": 79.88, "dead_code": 1.12, @@ -1266,20 +1266,20 @@ }, "lua/redis": { "file_count": 21, - "total_mass": 719.96, + "total_mass": 715.96, "avg_exposures": { "cognitive_load": 37.06, "safety_score": 75.74, - "tech_debt": 57.03, + "tech_debt": 4.69, "verification": 5.52, - "api_exposure": 1.51, + "api_exposure": 1.24, "concurrency": 4.76, "state_flux": 80.95, "dead_code": 2.68, "spec_match": 61.9, "stability": 45.24, "churn": 0.0, - "documentation": 48.95, + "documentation": 47.11, "secrets_risk": 0.0 } }, @@ -1346,7 +1346,7 @@ "avg_exposures": { "cognitive_load": 60.13, "safety_score": 82.56, - "tech_debt": 7.85, + "tech_debt": 4.77, "verification": 57.48, "api_exposure": 0.0, "concurrency": 12.31, @@ -1726,7 +1726,7 @@ "avg_exposures": { "cognitive_load": 60.47, "safety_score": 82.57, - "tech_debt": 85.2, + "tech_debt": 11.22, "verification": 13.95, "api_exposure": 0.0, "concurrency": 9.1, @@ -1741,13 +1741,13 @@ }, "shell/sqlite": { "file_count": 13, - "total_mass": 459.2, + "total_mass": 458.2, "avg_exposures": { "cognitive_load": 35.49, "safety_score": 66.87, - "tech_debt": 75.36, + "tech_debt": 0.0, "verification": 8.21, - "api_exposure": 0.29, + "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 46.15, "dead_code": 2.64, @@ -1821,7 +1821,7 @@ "avg_exposures": { "cognitive_load": 5.38, "safety_score": 47.52, - "tech_debt": 79.98, + "tech_debt": 0.0, "verification": 1.94, "api_exposure": 0.0, "concurrency": 0.0, @@ -1840,7 +1840,7 @@ "avg_exposures": { "cognitive_load": 6.15, "safety_score": 75.28, - "tech_debt": 85.71, + "tech_debt": 0.0, "verification": 12.8, "api_exposure": 0.34, "concurrency": 0.0, @@ -2904,7 +2904,7 @@ "avg_exposures": { "cognitive_load": 72.65, "safety_score": 84.77, - "tech_debt": 20.92, + "tech_debt": 4.35, "verification": 59.21, "api_exposure": 5.41, "concurrency": 4.24, @@ -3489,20 +3489,20 @@ }, "ruby/rails": { "file_count": 8, - "total_mass": 741.52, + "total_mass": 740.52, "avg_exposures": { "cognitive_load": 30.9, "safety_score": 60.21, - "tech_debt": 44.67, + "tech_debt": 41.02, "verification": 50.6, - "api_exposure": 1.14, + "api_exposure": 1.11, "concurrency": 0.0, "state_flux": 76.05, "dead_code": 6.49, "spec_match": 86.67, "stability": 43.75, "churn": 0.0, - "documentation": 16.09, + "documentation": 15.34, "secrets_risk": 0.0 } }, @@ -3527,58 +3527,58 @@ }, "shell/ansible": { "file_count": 14, - "total_mass": 625.28, + "total_mass": 624.28, "avg_exposures": { "cognitive_load": 35.61, "safety_score": 37.33, - "tech_debt": 79.86, + "tech_debt": 14.96, "verification": 12.63, - "api_exposure": 2.31, + "api_exposure": 2.18, "concurrency": 0.0, "state_flux": 54.16, "dead_code": 0.0, "spec_match": 59.52, "stability": 46.43, "churn": 0.0, - "documentation": 38.44, + "documentation": 37.03, "secrets_risk": 0.0 } }, "shell/brew": { "file_count": 9, - "total_mass": 2060.32, + "total_mass": 2059.32, "avg_exposures": { "cognitive_load": 29.34, "safety_score": 36.82, - "tech_debt": 54.96, + "tech_debt": 41.52, "verification": 36.31, - "api_exposure": 1.17, + "api_exposure": 1.12, "concurrency": 0.0, "state_flux": 40.62, "dead_code": 0.0, "spec_match": 72.59, "stability": 44.44, "churn": 0.0, - "documentation": 14.67, + "documentation": 14.01, "secrets_risk": 0.0 } }, "shell/curl": { "file_count": 20, - "total_mass": 2458.48, + "total_mass": 2457.48, "avg_exposures": { "cognitive_load": 60.32, "safety_score": 56.64, - "tech_debt": 77.66, + "tech_debt": 9.29, "verification": 17.76, - "api_exposure": 1.64, + "api_exposure": 1.45, "concurrency": 3.28, "state_flux": 55.0, "dead_code": 0.77, "spec_match": 85.67, "stability": 47.5, "churn": 0.0, - "documentation": 34.6, + "documentation": 33.39, "secrets_risk": 0.0 } }, @@ -3588,7 +3588,7 @@ "avg_exposures": { "cognitive_load": 45.81, "safety_score": 85.32, - "tech_debt": 89.33, + "tech_debt": 0.0, "verification": 15.6, "api_exposure": 0.14, "concurrency": 1.33, @@ -3607,7 +3607,7 @@ "avg_exposures": { "cognitive_load": 60.82, "safety_score": 62.55, - "tech_debt": 84.74, + "tech_debt": 12.76, "verification": 7.13, "api_exposure": 0.0, "concurrency": 5.57, @@ -3626,7 +3626,7 @@ "avg_exposures": { "cognitive_load": 2.5, "safety_score": 0.0, - "tech_debt": 50.0, + "tech_debt": 0.0, "verification": 0.38, "api_exposure": 0.0, "concurrency": 0.0, @@ -3641,20 +3641,20 @@ }, "sqlite/flask_tutorial_sqlite": { "file_count": 3, - "total_mass": 12.54, + "total_mass": 10.54, "avg_exposures": { "cognitive_load": 6.96, "safety_score": 29.38, - "tech_debt": 33.33, + "tech_debt": 0.0, "verification": 1.23, - "api_exposure": 3.05, + "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 7.72, "spec_match": 48.89, "stability": 33.33, "churn": 0.0, - "documentation": 38.01, + "documentation": 35.76, "secrets_risk": 0.0 } }, @@ -3664,7 +3664,7 @@ "avg_exposures": { "cognitive_load": 5.51, "safety_score": 70.41, - "tech_debt": 94.74, + "tech_debt": 0.0, "verification": 2.35, "api_exposure": 0.0, "concurrency": 0.0, @@ -3683,7 +3683,7 @@ "avg_exposures": { "cognitive_load": 5.49, "safety_score": 33.6, - "tech_debt": 90.91, + "tech_debt": 0.0, "verification": 1.62, "api_exposure": 0.42, "concurrency": 0.0, @@ -4249,20 +4249,20 @@ }, "zig/tigerbeetle": { "file_count": 11, - "total_mass": 4587.28, + "total_mass": 4586.28, "avg_exposures": { "cognitive_load": 32.09, "safety_score": 57.29, "tech_debt": 20.72, "verification": 44.75, - "api_exposure": 3.63, + "api_exposure": 3.37, "concurrency": 0.0, "state_flux": 40.36, "dead_code": 1.04, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 47.36, + "documentation": 46.85, "secrets_risk": 0.0 } }, @@ -4557,7 +4557,7 @@ "avg_exposures": { "cognitive_load": 66.23, "safety_score": 92.36, - "tech_debt": 73.68, + "tech_debt": 2.7, "verification": 34.33, "api_exposure": 0.05, "concurrency": 1.08, @@ -4576,7 +4576,7 @@ "avg_exposures": { "cognitive_load": 83.72, "safety_score": 95.81, - "tech_debt": 83.96, + "tech_debt": 33.33, "verification": 41.18, "api_exposure": 0.39, "concurrency": 16.57, @@ -4595,7 +4595,7 @@ "avg_exposures": { "cognitive_load": 52.27, "safety_score": 84.37, - "tech_debt": 84.24, + "tech_debt": 0.0, "verification": 21.7, "api_exposure": 0.44, "concurrency": 0.99, @@ -4610,58 +4610,58 @@ }, "shell/kubernetes": { "file_count": 23, - "total_mass": 6015.0, + "total_mass": 6013.0, "avg_exposures": { "cognitive_load": 62.29, "safety_score": 62.48, - "tech_debt": 89.38, + "tech_debt": 57.09, "verification": 15.8, - "api_exposure": 1.72, + "api_exposure": 1.51, "concurrency": 16.64, "state_flux": 83.09, "dead_code": 2.53, "spec_match": 88.7, "stability": 50.0, "churn": 0.0, - "documentation": 33.62, + "documentation": 33.15, "secrets_risk": 0.0 } }, "shell/moby": { "file_count": 13, - "total_mass": 2038.02, + "total_mass": 2036.02, "avg_exposures": { "cognitive_load": 71.16, "safety_score": 76.58, - "tech_debt": 62.73, + "tech_debt": 17.41, "verification": 38.2, - "api_exposure": 1.59, + "api_exposure": 0.89, "concurrency": 6.47, "state_flux": 79.72, "dead_code": 0.94, "spec_match": 92.82, "stability": 50.0, "churn": 0.0, - "documentation": 30.84, + "documentation": 28.55, "secrets_risk": 0.0 } }, "shell/serenity": { "file_count": 23, - "total_mass": 637.94, + "total_mass": 635.94, "avg_exposures": { "cognitive_load": 70.92, "safety_score": 86.99, - "tech_debt": 90.92, + "tech_debt": 49.89, "verification": 5.65, - "api_exposure": 1.15, + "api_exposure": 1.03, "concurrency": 6.55, "state_flux": 99.95, "dead_code": 0.0, "spec_match": 92.17, "stability": 50.0, "churn": 0.0, - "documentation": 55.86, + "documentation": 55.25, "secrets_risk": 0.0 } }, @@ -5104,39 +5104,39 @@ }, "livecode/livecode": { "file_count": 98, - "total_mass": 26808.34, + "total_mass": 26789.34, "avg_exposures": { "cognitive_load": 45.43, "safety_score": 59.72, - "tech_debt": 62.39, + "tech_debt": 18.66, "verification": 20.62, - "api_exposure": 4.56, + "api_exposure": 4.23, "concurrency": 10.39, "state_flux": 63.42, "dead_code": 3.04, "spec_match": 96.39, "stability": 50.0, "churn": 0.0, - "documentation": 52.56, + "documentation": 51.75, "secrets_risk": 0.0 } }, "lua/cosmopolitan": { "file_count": 43, - "total_mass": 21484.2, + "total_mass": 21454.2, "avg_exposures": { "cognitive_load": 78.52, "safety_score": 72.22, - "tech_debt": 44.1, + "tech_debt": 20.15, "verification": 47.43, - "api_exposure": 1.16, + "api_exposure": 0.99, "concurrency": 26.19, "state_flux": 93.01, "dead_code": 2.82, "spec_match": 93.8, "stability": 50.0, "churn": 0.0, - "documentation": 37.19, + "documentation": 35.32, "secrets_risk": 0.0 } }, @@ -5146,7 +5146,7 @@ "avg_exposures": { "cognitive_load": 83.04, "safety_score": 95.16, - "tech_debt": 48.9, + "tech_debt": 0.0, "verification": 35.83, "api_exposure": 0.74, "concurrency": 0.0, @@ -5161,20 +5161,20 @@ }, "lua/freebsd-src": { "file_count": 16, - "total_mass": 3863.8, + "total_mass": 3853.8, "avg_exposures": { "cognitive_load": 70.28, "safety_score": 89.6, - "tech_debt": 40.54, + "tech_debt": 3.12, "verification": 31.59, - "api_exposure": 3.47, + "api_exposure": 3.3, "concurrency": 0.0, "state_flux": 99.9, "dead_code": 1.67, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 61.46, + "documentation": 59.22, "secrets_risk": 0.0 } }, @@ -5564,7 +5564,7 @@ "avg_exposures": { "cognitive_load": 13.9, "safety_score": 0.0, - "tech_debt": 100.0, + "tech_debt": 0.0, "verification": 2.36, "api_exposure": 0.0, "concurrency": 0.0, @@ -5579,20 +5579,20 @@ }, "sql/postgresql/mediawiki": { "file_count": 1, - "total_mass": 46.04, + "total_mass": 38.04, "avg_exposures": { "cognitive_load": 46.88, "safety_score": 78.55, - "tech_debt": 100.0, + "tech_debt": 95.11, "verification": 3.1, - "api_exposure": 11.23, + "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 99.68, + "documentation": 39.66, "secrets_risk": 0.0 } }, @@ -5602,7 +5602,7 @@ "avg_exposures": { "cognitive_load": 5.0, "safety_score": 89.26, - "tech_debt": 100.0, + "tech_debt": 0.0, "verification": 2.37, "api_exposure": 0.0, "concurrency": 0.0, @@ -5621,7 +5621,7 @@ "avg_exposures": { "cognitive_load": 31.92, "safety_score": 0.0, - "tech_debt": 99.87, + "tech_debt": 0.0, "verification": 2.67, "api_exposure": 0.0, "concurrency": 0.0, @@ -5636,20 +5636,20 @@ }, "sqlite/dancer2_sqlite": { "file_count": 2, - "total_mass": 7.68, + "total_mass": 4.68, "avg_exposures": { "cognitive_load": 5.0, "safety_score": 0.0, "tech_debt": 0.0, "verification": 1.13, - "api_exposure": 7.47, + "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 46.67, "stability": 50.0, "churn": 0.0, - "documentation": 45.52, + "documentation": 39.48, "secrets_risk": 0.0 } }, @@ -5659,7 +5659,7 @@ "avg_exposures": { "cognitive_load": 5.0, "safety_score": 33.56, - "tech_debt": 50.0, + "tech_debt": 0.0, "verification": 0.79, "api_exposure": 0.0, "concurrency": 0.0, @@ -5678,7 +5678,7 @@ "avg_exposures": { "cognitive_load": 5.0, "safety_score": 0.0, - "tech_debt": 100.0, + "tech_debt": 0.0, "verification": 0.36, "api_exposure": 0.0, "concurrency": 0.0, @@ -5697,7 +5697,7 @@ "avg_exposures": { "cognitive_load": 21.02, "safety_score": 11.84, - "tech_debt": 94.4, + "tech_debt": 9.09, "verification": 2.55, "api_exposure": 0.0, "concurrency": 0.0, @@ -6692,23 +6692,11 @@ } ], "undocumented_critical_path": [ - { - "path": "lua/redis/strict.lua", - "score": 238.456, - "pr": 3.588, - "doc": 66.4593 - }, { "path": "lua/freebsd-src/hook.lua", - "score": 206.783, + "score": 205.67, "pr": 2.077, - "doc": 99.5584 - }, - { - "path": "shell/serenity/builtin.sh", - "score": 206.069, - "pr": 3.524, - "doc": 58.4759 + "doc": 99.0224 }, { "path": "groovy/gradle/DefaultTask.java", @@ -6721,6 +6709,18 @@ "score": 191.63, "pr": 4.902, "doc": 39.0923 + }, + { + "path": "shell/serenity/builtin.sh", + "score": 174.613, + "pr": 3.524, + "doc": 49.5496 + }, + { + "path": "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl", + "score": 168.92, + "pr": 11.673, + "doc": 14.471 } ] }, @@ -6729,22 +6729,7 @@ { "name": "gengc.lua", "path": "lua/cosmopolitan/gengc.lua", - "value": 793.27 - }, - { - "name": "installeruiinstallcardbehavior.livecodescript", - "path": "livecode/livecode/installeruiinstallcardbehavior.livecodescript", - "value": 768.58 - }, - { - "name": "revdeploylibraryios.livecodescript", - "path": "livecode/livecode/revdeploylibraryios.livecodescript", - "value": 755.63 - }, - { - "name": "automaticactivationprocessinggroupbehavior.livecodescript", - "path": "livecode/livecode/automaticactivationprocessinggroupbehavior.livecodescript", - "value": 747.56 + "value": 785.69 }, { "name": "frames.ts", @@ -6756,11 +6741,6 @@ "path": "cobol/che-che4z_nist_ccvs85/IC2244.2.cbl", "value": 737.13 }, - { - "name": "cstack.lua", - "path": "lua/cosmopolitan/cstack.lua", - "value": 733.24 - }, { "name": "containerbackend.go", "path": "dockerfile/moby/builder/dockerfile/containerbackend.go", @@ -6771,10 +6751,30 @@ "path": "typescript/playwright/bidiConnection.ts", "value": 732.29 }, + { + "name": "revdeploylibraryios.livecodescript", + "path": "livecode/livecode/revdeploylibraryios.livecodescript", + "value": 731.2 + }, { "name": "IC2014.2.cbl", "path": "cobol/che-che4z_nist_ccvs85/IC2014.2.cbl", "value": 729.56 + }, + { + "name": "cstack.lua", + "path": "lua/cosmopolitan/cstack.lua", + "value": 729.03 + }, + { + "name": "dispatcher.ts", + "path": "typescript/playwright/dispatcher.ts", + "value": 728.94 + }, + { + "name": "connection.ts", + "path": "typescript/playwright/connection.ts", + "value": 724.53 } ], "lowest": [ @@ -118391,7 +118391,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "72.65%", "Error & Exception Exposure": "84.77%", - "Tech Debt Exposure": "20.92%", + "Tech Debt Exposure": "4.35%", "Testing Exposure": "59.21%", "API Exposure": "5.41%", "Concurrency Exposure": "4.24%", @@ -119265,7 +119265,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.95%", "Error & Exception Exposure": "97.69%", - "Tech Debt Exposure": "76.65%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.86%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -119424,7 +119424,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -119493,7 +119493,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.19%", "Error & Exception Exposure": "92.37%", - "Tech Debt Exposure": "74.49%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.73%", "API Exposure": "16.58%", "Concurrency Exposure": "0.0%", @@ -119602,7 +119602,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -119671,7 +119671,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.81%", "Error & Exception Exposure": "98.54%", - "Tech Debt Exposure": "9.33%", + "Tech Debt Exposure": "8.22%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "18.25%", @@ -119780,7 +119780,7 @@ "Design Short Vars": 39, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -119855,7 +119855,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.52%", "Error & Exception Exposure": "99.54%", - "Tech Debt Exposure": "9.49%", + "Tech Debt Exposure": "8.27%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "23.53%", @@ -119964,7 +119964,7 @@ "Design Short Vars": 43, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -120037,7 +120037,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.35%", "Error & Exception Exposure": "99.46%", - "Tech Debt Exposure": "9.59%", + "Tech Debt Exposure": "8.31%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "21.88%", @@ -120146,7 +120146,7 @@ "Design Short Vars": 39, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -120219,7 +120219,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "98.23%", - "Tech Debt Exposure": "93.89%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "15.01%", "Concurrency Exposure": "0.0%", @@ -120328,7 +120328,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -166777,7 +166777,7 @@ } }, "livecode/livecode": { - "Directory Group Magnitude": 26808.34, + "Directory Group Magnitude": 26789.34, "File Count": 98, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -166785,16 +166785,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "45.43%", "Error & Exception Exposure": "59.72%", - "Tech Debt Exposure": "62.39%", + "Tech Debt Exposure": "18.66%", "Testing Exposure": "20.62%", - "API Exposure": "4.56%", + "API Exposure": "4.23%", "Concurrency Exposure": "10.39%", "State Flux Exposure": "63.42%", "Commented Logic Exposure": "3.04%", "Specification Exposure": "96.39%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.56%", + "Documentation Exposure": "51.75%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -166836,7 +166836,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "96.23%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.95%", "API Exposure": "4.36%", "Concurrency Exposure": "0.0%", @@ -166945,7 +166945,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -167014,7 +167014,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "96.23%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.93%", "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", @@ -167123,7 +167123,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -167192,7 +167192,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "45.02%", "Error & Exception Exposure": "96.69%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.81%", "API Exposure": "5.72%", "Concurrency Exposure": "0.0%", @@ -167331,7 +167331,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -167400,7 +167400,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "93.81%", "Error & Exception Exposure": "82.42%", - "Tech Debt Exposure": "90.78%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.69%", "API Exposure": "7.8%", "Concurrency Exposure": "0.0%", @@ -167539,7 +167539,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -167608,7 +167608,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "82.86%", "Error & Exception Exposure": "97.23%", - "Tech Debt Exposure": "91.87%", + "Tech Debt Exposure": "71.28%", "Testing Exposure": "2.71%", "API Exposure": "8.2%", "Concurrency Exposure": "0.0%", @@ -167757,7 +167757,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -167826,7 +167826,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "54.72%", "Error & Exception Exposure": "60.38%", - "Tech Debt Exposure": "63.19%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "2.99%", "Concurrency Exposure": "0.0%", @@ -168015,7 +168015,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -168059,9 +168059,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -2457.58, - "Y": 54.52, - "Z": 1415.69 + "X": -1190.99, + "Y": -130.3, + "Z": -1082.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -168084,7 +168084,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "2.68%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "21.36%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -168183,7 +168183,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -168229,9 +168229,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1639.43, - "Y": 75.12, - "Z": 1037.07 + "X": -1640.04, + "Y": 74.99, + "Z": 1035.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -168243,7 +168243,7 @@ "Total LOC": 361, "Coding LOC": 65, "Documentation LOC": 195, - "Structural Magnitude": 6.8, + "Structural Magnitude": 5.8, "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -168256,7 +168256,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", - "API Exposure": "2.35%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -168289,7 +168289,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 20, @@ -168399,9 +168399,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -1540.51, + "X": -1540.55, "Y": -59.32, - "Z": -192.12 + "Z": -192.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -168413,7 +168413,7 @@ "Total LOC": 291, "Coding LOC": 204, "Documentation LOC": 17, - "Structural Magnitude": 249.08, + "Structural Magnitude": 248.08, "Control Flow Ratio": "44.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -168426,14 +168426,14 @@ "Error & Exception Exposure": "94.12%", "Tech Debt Exposure": "39.73%", "Testing Exposure": "80.0%", - "API Exposure": "4.97%", + "API Exposure": "4.56%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.35%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.05%", + "Documentation Exposure": "47.58%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -168619,7 +168619,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 9, "State Mutations / Variable Reassignments": 128, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -168727,9 +168727,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -2256.98, - "Y": 13.87, - "Z": 1088.53 + "X": -3234.03, + "Y": -221.53, + "Z": -1165.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -168741,7 +168741,7 @@ "Total LOC": 145, "Coding LOC": 31, "Documentation LOC": 85, - "Structural Magnitude": 20.12, + "Structural Magnitude": 19.12, "Control Flow Ratio": "80.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -168754,7 +168754,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", - "API Exposure": "2.78%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -168807,7 +168807,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 4, @@ -168917,9 +168917,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -2778.09, - "Y": 1.42, - "Z": 1092.06 + "X": -1139.99, + "Y": -126.74, + "Z": -912.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -168942,7 +168942,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "89.0%", "Error & Exception Exposure": "78.14%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.94%", "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -169071,7 +169071,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -169142,7 +169142,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "62.68%", "Error & Exception Exposure": "91.82%", - "Tech Debt Exposure": "39.73%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "9.75%", "Concurrency Exposure": "0.0%", @@ -169341,7 +169341,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -169410,7 +169410,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.73%", "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", @@ -169519,7 +169519,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -169563,9 +169563,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -2995.46, - "Y": -0.73, - "Z": 1389.96 + "X": -860.24, + "Y": -112.11, + "Z": -606.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -169588,7 +169588,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "82.45%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", @@ -169697,7 +169697,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -169766,7 +169766,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "81.76%", "Error & Exception Exposure": "83.7%", - "Tech Debt Exposure": "99.9%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "4.08%", "Concurrency Exposure": "0.0%", @@ -169875,7 +169875,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -169944,7 +169944,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.97%", "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.64%", "API Exposure": "8.32%", "Concurrency Exposure": "99.98%", @@ -170073,7 +170073,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -170142,7 +170142,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "85.54%", "Error & Exception Exposure": "89.4%", - "Tech Debt Exposure": "92.41%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.6%", "API Exposure": "3.22%", "Concurrency Exposure": "0.0%", @@ -170251,7 +170251,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -170295,9 +170295,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -2861.81, - "Y": -168.15, - "Z": -974.97 + "X": -2861.75, + "Y": -168.14, + "Z": -974.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -170309,7 +170309,7 @@ "Total LOC": 182, "Coding LOC": 138, "Documentation LOC": 12, - "Structural Magnitude": 107.96, + "Structural Magnitude": 106.96, "Control Flow Ratio": "68.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -170322,14 +170322,14 @@ "Error & Exception Exposure": "78.75%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "8.84%", + "API Exposure": "8.44%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.79%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.16%", + "Documentation Exposure": "62.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -170435,7 +170435,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 9, + "Exposed API / Public Exports": 8, "State Mutations / Variable Reassignments": 36, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -170543,9 +170543,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -867.64, - "Y": -100.37, - "Z": -603.87 + "X": -3004.01, + "Y": 11.0, + "Z": 1393.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -170557,7 +170557,7 @@ "Total LOC": 212, "Coding LOC": 51, "Documentation LOC": 94, - "Structural Magnitude": 6.02, + "Structural Magnitude": 5.02, "Control Flow Ratio": "33.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -170570,7 +170570,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", - "API Exposure": "2.59%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -170603,7 +170603,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 16, @@ -170738,7 +170738,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "6.1%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "96.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -170837,7 +170837,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -170908,7 +170908,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "14.7%", "Error & Exception Exposure": "75.06%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.91%", "Testing Exposure": "2.46%", "API Exposure": "6.62%", "Concurrency Exposure": "0.0%", @@ -171037,7 +171037,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -171106,7 +171106,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.37%", "Error & Exception Exposure": "98.01%", - "Tech Debt Exposure": "67.54%", + "Tech Debt Exposure": "28.51%", "Testing Exposure": "80.0%", "API Exposure": "6.03%", "Concurrency Exposure": "0.0%", @@ -171245,7 +171245,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -171317,7 +171317,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.12%", "Error & Exception Exposure": "74.02%", - "Tech Debt Exposure": "13.51%", + "Tech Debt Exposure": "9.74%", "Testing Exposure": "80.0%", "API Exposure": "11.61%", "Concurrency Exposure": "83.8%", @@ -172226,7 +172226,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -172297,7 +172297,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "74.92%", - "Tech Debt Exposure": "84.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", "API Exposure": "7.1%", "Concurrency Exposure": "0.0%", @@ -172436,7 +172436,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -172480,9 +172480,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1343.02, - "Y": -171.12, - "Z": -1594.31 + "X": -3842.98, + "Y": -104.82, + "Z": 34.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -172505,7 +172505,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "27.5%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -172604,7 +172604,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -172675,7 +172675,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "17.51%", "Error & Exception Exposure": "68.22%", - "Tech Debt Exposure": "16.75%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -172794,7 +172794,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -172840,9 +172840,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -3281.69, - "Y": -215.59, - "Z": -1230.81 + "X": -2304.65, + "Y": 19.78, + "Z": 1022.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -172865,7 +172865,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "51.36%", "Error & Exception Exposure": "79.55%", - "Tech Debt Exposure": "98.69%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", "API Exposure": "7.8%", "Concurrency Exposure": "0.0%", @@ -173004,7 +173004,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -173048,9 +173048,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -3401.52, - "Y": 1.17, - "Z": 611.1 + "X": -1024.77, + "Y": 6.61, + "Z": -179.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -173073,7 +173073,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "76.85%", "Error & Exception Exposure": "87.13%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.59%", "API Exposure": "7.28%", "Concurrency Exposure": "0.0%", @@ -173202,7 +173202,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -173246,9 +173246,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -3914.27, - "Y": -101.4, - "Z": 144.06 + "X": -986.27, + "Y": 36.45, + "Z": 620.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -173271,7 +173271,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "26.32%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -173370,7 +173370,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -173441,7 +173441,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.67%", "Error & Exception Exposure": "80.2%", - "Tech Debt Exposure": "23.16%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "5.3%", "Concurrency Exposure": "0.0%", @@ -173640,7 +173640,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -173709,7 +173709,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "32.45%", "Error & Exception Exposure": "80.85%", - "Tech Debt Exposure": "99.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "10.62%", "Concurrency Exposure": "0.0%", @@ -173868,7 +173868,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -173912,9 +173912,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -1550.49, - "Y": 39.06, - "Z": 839.39 + "X": -2755.61, + "Y": 18.34, + "Z": 1041.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -173926,7 +173926,7 @@ "Total LOC": 35, "Coding LOC": 13, "Documentation LOC": 12, - "Structural Magnitude": 14.46, + "Structural Magnitude": 13.46, "Control Flow Ratio": "25.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -173939,14 +173939,14 @@ "Error & Exception Exposure": "89.86%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.24%", - "API Exposure": "7.74%", + "API Exposure": "6.13%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "85.02%", + "Documentation Exposure": "81.38%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -173992,7 +173992,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -174125,7 +174125,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "48.64%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -174224,7 +174224,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -174295,7 +174295,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "75.68%", "Error & Exception Exposure": "95.54%", - "Tech Debt Exposure": "63.19%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", "API Exposure": "7.42%", "Concurrency Exposure": "0.0%", @@ -174444,7 +174444,7 @@ "Design Short Vars": 6, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -174513,7 +174513,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "63.91%", "Error & Exception Exposure": "87.69%", - "Tech Debt Exposure": "98.07%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", "API Exposure": "7.83%", "Concurrency Exposure": "0.0%", @@ -174652,7 +174652,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -174696,9 +174696,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -3256.35, - "Y": 22.59, - "Z": 902.26 + "X": -912.96, + "Y": -27.52, + "Z": -491.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -174721,7 +174721,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "47.23%", "Error & Exception Exposure": "84.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "6.59%", "Concurrency Exposure": "0.0%", @@ -174840,7 +174840,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -174909,7 +174909,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "10.55%", "Error & Exception Exposure": "66.76%", - "Tech Debt Exposure": "87.12%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", "API Exposure": "6.31%", "Concurrency Exposure": "0.0%", @@ -175038,7 +175038,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -175107,7 +175107,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "22.44%", "Error & Exception Exposure": "78.58%", - "Tech Debt Exposure": "99.85%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "7.16%", "Concurrency Exposure": "0.0%", @@ -175236,7 +175236,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -175280,9 +175280,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -2745.71, - "Y": 85.84, - "Z": 1397.18 + "X": -762.09, + "Y": 50.72, + "Z": 298.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -175294,7 +175294,7 @@ "Total LOC": 110, "Coding LOC": 21, "Documentation LOC": 61, - "Structural Magnitude": 2.92, + "Structural Magnitude": 1.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -175307,7 +175307,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", - "API Exposure": "2.94%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -175340,7 +175340,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 6, @@ -175450,9 +175450,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -1003.28, - "Y": -34.81, - "Z": -176.27 + "X": -3379.99, + "Y": -40.27, + "Z": 614.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -175464,7 +175464,7 @@ "Total LOC": 41, "Coding LOC": 20, "Documentation LOC": 12, - "Structural Magnitude": 18.9, + "Structural Magnitude": 17.9, "Control Flow Ratio": "66.7%", "Popularity Rank": 9, "Raw Churn Frequency": 0.0, @@ -175477,14 +175477,14 @@ "Error & Exception Exposure": "81.87%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.66%", - "API Exposure": "7.42%", + "API Exposure": "5.88%", "Concurrency Exposure": "0.0%", "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.81%", + "Documentation Exposure": "87.06%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -175530,7 +175530,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -175663,7 +175663,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "79.14%", "Error & Exception Exposure": "94.72%", - "Tech Debt Exposure": "98.69%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.63%", "API Exposure": "6.83%", "Concurrency Exposure": "0.0%", @@ -175792,7 +175792,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -176060,7 +176060,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 9, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -176131,7 +176131,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "80.01%", "Error & Exception Exposure": "92.27%", - "Tech Debt Exposure": "39.73%", + "Tech Debt Exposure": "19.19%", "Testing Exposure": "80.0%", "API Exposure": "3.84%", "Concurrency Exposure": "0.0%", @@ -176410,7 +176410,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -176481,7 +176481,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "78.81%", "Error & Exception Exposure": "91.56%", - "Tech Debt Exposure": "94.57%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "6.48%", "Concurrency Exposure": "0.0%", @@ -176610,7 +176610,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -176656,9 +176656,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1130.67, - "Y": -119.96, - "Z": -786.46 + "X": -3676.71, + "Y": -168.32, + "Z": -409.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -176850,7 +176850,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -176921,7 +176921,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "29.27%", "Error & Exception Exposure": "68.15%", - "Tech Debt Exposure": "87.12%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.86%", "API Exposure": "9.51%", "Concurrency Exposure": "0.0%", @@ -177080,7 +177080,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -177149,7 +177149,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "37.14%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -177248,7 +177248,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -177294,9 +177294,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -2144.43, - "Y": -9.51, - "Z": 767.05 + "X": -1745.96, + "Y": -174.09, + "Z": -1196.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -177319,7 +177319,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "73.11%", "Error & Exception Exposure": "83.78%", - "Tech Debt Exposure": "84.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", "API Exposure": "1.24%", "Concurrency Exposure": "0.0%", @@ -177458,7 +177458,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -177502,9 +177502,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -1766.95, - "Y": -155.84, - "Z": -945.14 + "X": -2165.47, + "Y": 8.73, + "Z": 1018.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -177516,7 +177516,7 @@ "Total LOC": 210, "Coding LOC": 141, "Documentation LOC": 27, - "Structural Magnitude": 55.12, + "Structural Magnitude": 54.12, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -177529,14 +177529,14 @@ "Error & Exception Exposure": "68.02%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", - "API Exposure": "9.86%", + "API Exposure": "9.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "93.84%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "82.04%", + "Documentation Exposure": "78.08%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -177682,7 +177682,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 13, + "Exposed API / Public Exports": 12, "State Mutations / Variable Reassignments": 17, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -177815,7 +177815,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "67.69%", "Error & Exception Exposure": "69.94%", - "Tech Debt Exposure": "23.03%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.13%", "Concurrency Exposure": "0.0%", @@ -178104,7 +178104,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -178173,7 +178173,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "64.33%", "Error & Exception Exposure": "83.65%", - "Tech Debt Exposure": "96.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "7.58%", "Concurrency Exposure": "0.0%", @@ -178312,7 +178312,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -178358,9 +178358,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -966.22, - "Y": -137.45, - "Z": -1114.38 + "X": -3160.73, + "Y": -255.56, + "Z": -1635.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -178372,7 +178372,7 @@ "Total LOC": 131, "Coding LOC": 34, "Documentation LOC": 60, - "Structural Magnitude": 3.18, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 7, "Raw Churn Frequency": 0.0, @@ -178385,7 +178385,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", - "API Exposure": "2.84%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -178418,7 +178418,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 10, @@ -178553,7 +178553,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "17.11%", "Error & Exception Exposure": "63.53%", - "Tech Debt Exposure": "30.56%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "8.43%", "Concurrency Exposure": "0.0%", @@ -178802,7 +178802,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -178871,7 +178871,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "44.72%", "Error & Exception Exposure": "82.18%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.94%", "Testing Exposure": "2.44%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -178990,7 +178990,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -179220,7 +179220,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -179266,9 +179266,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -3112.34, - "Y": -264.15, - "Z": -1493.38 + "X": -918.66, + "Y": -145.87, + "Z": -970.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -179291,7 +179291,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "85.14%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -179390,7 +179390,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -179436,9 +179436,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -2171.39, - "Y": 36.2, - "Z": 1396.98 + "X": -1423.71, + "Y": -201.18, + "Z": -1496.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -179461,7 +179461,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.21%", "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", @@ -179570,7 +179570,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -179614,9 +179614,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -983.53, - "Y": 66.73, - "Z": 704.31 + "X": -2804.67, + "Y": -201.15, + "Z": -1606.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -179639,7 +179639,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.84%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", @@ -179748,7 +179748,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -179817,7 +179817,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.52%", "Error & Exception Exposure": "88.97%", - "Tech Debt Exposure": "11.38%", + "Tech Debt Exposure": "9.27%", "Testing Exposure": "80.0%", "API Exposure": "2.93%", "Concurrency Exposure": "38.32%", @@ -180516,7 +180516,7 @@ "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -180585,7 +180585,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.56%", "Error & Exception Exposure": "94.54%", - "Tech Debt Exposure": "87.12%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.8%", "API Exposure": "5.28%", "Concurrency Exposure": "93.15%", @@ -180704,7 +180704,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -180773,7 +180773,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "73.11%", "Error & Exception Exposure": "77.11%", - "Tech Debt Exposure": "93.89%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.61%", "API Exposure": "6.89%", "Concurrency Exposure": "95.71%", @@ -180902,7 +180902,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -180971,7 +180971,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "84.81%", "Error & Exception Exposure": "94.78%", - "Tech Debt Exposure": "99.85%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.25%", "API Exposure": "6.53%", "Concurrency Exposure": "83.2%", @@ -181090,7 +181090,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -181159,7 +181159,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.42%", "Error & Exception Exposure": "89.26%", - "Tech Debt Exposure": "56.07%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.74%", "API Exposure": "6.03%", "Concurrency Exposure": "47.39%", @@ -181288,7 +181288,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -181357,7 +181357,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.62%", "Error & Exception Exposure": "91.62%", - "Tech Debt Exposure": "56.07%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "8.78%", "Concurrency Exposure": "100.0%", @@ -181526,7 +181526,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -181595,7 +181595,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "73.11%", "Error & Exception Exposure": "77.51%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", "API Exposure": "6.59%", "Concurrency Exposure": "99.6%", @@ -181714,7 +181714,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -181912,7 +181912,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -181958,9 +181958,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -2749.44, - "Y": -247.63, - "Z": -1871.96 + "X": -2104.22, + "Y": 53.54, + "Z": 1228.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -181972,7 +181972,7 @@ "Total LOC": 76, "Coding LOC": 43, "Documentation LOC": 13, - "Structural Magnitude": 4.86, + "Structural Magnitude": 3.86, "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -181985,14 +181985,14 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", - "API Exposure": "3.19%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.35%", + "Documentation Exposure": "30.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -182018,7 +182018,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -182128,9 +182128,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -880.35, - "Y": -19.81, - "Z": -357.12 + "X": -3224.03, + "Y": 30.27, + "Z": 1036.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -182142,7 +182142,7 @@ "Total LOC": 31, "Coding LOC": 9, "Documentation LOC": 14, - "Structural Magnitude": 11.18, + "Structural Magnitude": 10.18, "Control Flow Ratio": "75.0%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -182155,14 +182155,14 @@ "Error & Exception Exposure": "88.26%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.68%", - "API Exposure": "6.34%", + "API Exposure": "4.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "57.76%", + "Documentation Exposure": "52.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -182198,7 +182198,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -182308,9 +182308,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1862.15, - "Y": -209.67, - "Z": -1395.7 + "X": -1825.33, + "Y": -1.93, + "Z": 889.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -182322,7 +182322,7 @@ "Total LOC": 249, "Coding LOC": 70, "Documentation LOC": 121, - "Structural Magnitude": 29.1, + "Structural Magnitude": 28.1, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -182335,14 +182335,14 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", - "API Exposure": "7.96%", + "API Exposure": "7.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "6.67%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.55%", + "Documentation Exposure": "23.63%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -182438,7 +182438,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 8, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 11, @@ -182548,9 +182548,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -1224.05, - "Y": -176.44, - "Z": -1112.79 + "X": -3252.27, + "Y": -260.77, + "Z": -1319.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -182562,7 +182562,7 @@ "Total LOC": 33, "Coding LOC": 15, "Documentation LOC": 12, - "Structural Magnitude": 9.5, + "Structural Magnitude": 8.5, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -182575,14 +182575,14 @@ "Error & Exception Exposure": "82.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", - "API Exposure": "7.86%", + "API Exposure": "6.23%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "96.21%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "97.36%", + "Documentation Exposure": "92.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -182628,7 +182628,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -182761,7 +182761,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "90.31%", "Error & Exception Exposure": "98.4%", - "Tech Debt Exposure": "92.0%", + "Tech Debt Exposure": "78.23%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -182880,7 +182880,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -182951,7 +182951,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.7%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "97.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -183050,7 +183050,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -183096,9 +183096,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -818.97, - "Y": 35.06, - "Z": 128.97 + "X": -3622.3, + "Y": -7.57, + "Z": 661.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -183110,7 +183110,7 @@ "Total LOC": 1128, "Coding LOC": 224, "Documentation LOC": 604, - "Structural Magnitude": 8.48, + "Structural Magnitude": 7.48, "Control Flow Ratio": "100.0%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -183123,7 +183123,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "1.97%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "5.95%", @@ -183156,7 +183156,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 68, @@ -183266,9 +183266,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -3631.37, - "Y": -181.89, - "Z": -441.91 + "X": -1518.62, + "Y": 15.33, + "Z": 983.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -183291,7 +183291,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "80.1%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "8.23%", "Concurrency Exposure": "0.0%", @@ -183430,7 +183430,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -183474,9 +183474,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -3155.62, - "Y": -126.96, - "Z": -974.42 + "X": -3155.47, + "Y": -126.95, + "Z": -974.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -183488,7 +183488,7 @@ "Total LOC": 57, "Coding LOC": 36, "Documentation LOC": 12, - "Structural Magnitude": 54.12, + "Structural Magnitude": 53.12, "Control Flow Ratio": "69.0%", "Popularity Rank": 11, "Raw Churn Frequency": 0.0, @@ -183501,14 +183501,14 @@ "Error & Exception Exposure": "95.13%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.81%", - "API Exposure": "5.41%", + "API Exposure": "3.41%", "Concurrency Exposure": "0.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": "68.78%", + "Documentation Exposure": "51.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -183544,7 +183544,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 27, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -183677,7 +183677,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.6%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "92.41%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -183776,7 +183776,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -183822,9 +183822,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -3787.25, - "Y": -171.59, - "Z": -851.92 + "X": -3785.96, + "Y": -171.5, + "Z": -851.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -183836,7 +183836,7 @@ "Total LOC": 168, "Coding LOC": 56, "Documentation LOC": 72, - "Structural Magnitude": 6.62, + "Structural Magnitude": 5.62, "Control Flow Ratio": "100.0%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -183849,7 +183849,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", - "API Exposure": "2.7%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -183882,7 +183882,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 6, @@ -183990,9 +183990,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -760.96, - "Y": 7.44, - "Z": 291.49 + "X": -2744.98, + "Y": 42.33, + "Z": 1387.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -184015,7 +184015,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "3.94%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "97.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -184114,7 +184114,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -184160,9 +184160,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1177.56, + "X": -1177.76, "Y": -87.05, - "Z": -406.73 + "Z": -406.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -184174,7 +184174,7 @@ "Total LOC": 674, "Coding LOC": 246, "Documentation LOC": 259, - "Structural Magnitude": 50.22, + "Structural Magnitude": 49.22, "Control Flow Ratio": "18.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -184187,7 +184187,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", - "API Exposure": "6.38%", + "API Exposure": "5.97%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -184350,7 +184350,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 7, + "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 34, @@ -184460,9 +184460,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -2828.36, + "X": -2828.32, "Y": -16.88, - "Z": 479.92 + "Z": 479.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -184474,7 +184474,7 @@ "Total LOC": 254, "Coding LOC": 196, "Documentation LOC": 15, - "Structural Magnitude": 200.32, + "Structural Magnitude": 199.32, "Control Flow Ratio": "70.9%", "Popularity Rank": 5, "Raw Churn Frequency": 0.0, @@ -184487,14 +184487,14 @@ "Error & Exception Exposure": "84.93%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "10.43%", + "API Exposure": "10.23%", "Concurrency Exposure": "0.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": "81.36%", + "Documentation Exposure": "78.39%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -184680,7 +184680,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 54, - "Exposed API / Public Exports": 17, + "Exposed API / Public Exports": 16, "State Mutations / Variable Reassignments": 73, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -184813,7 +184813,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "77.23%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "7.37%", "Concurrency Exposure": "0.0%", @@ -184942,7 +184942,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -185011,7 +185011,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "80.76%", "Error & Exception Exposure": "97.76%", - "Tech Debt Exposure": "48.64%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "1.92%", "Concurrency Exposure": "0.0%", @@ -185160,7 +185160,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -185229,7 +185229,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "88.99%", "Error & Exception Exposure": "97.47%", - "Tech Debt Exposure": "18.31%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "8.77%", "Concurrency Exposure": "0.0%", @@ -185438,7 +185438,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -185507,7 +185507,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.38%", "Error & Exception Exposure": "91.72%", - "Tech Debt Exposure": "40.68%", + "Tech Debt Exposure": "21.51%", "Testing Exposure": "80.0%", "API Exposure": "8.34%", "Concurrency Exposure": "34.44%", @@ -186006,7 +186006,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -186075,7 +186075,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.64%", "Error & Exception Exposure": "92.49%", - "Tech Debt Exposure": "47.86%", + "Tech Debt Exposure": "21.09%", "Testing Exposure": "80.0%", "API Exposure": "2.57%", "Concurrency Exposure": "56.48%", @@ -186284,7 +186284,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -186353,7 +186353,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.18%", "Error & Exception Exposure": "96.44%", - "Tech Debt Exposure": "94.34%", + "Tech Debt Exposure": "69.92%", "Testing Exposure": "80.0%", "API Exposure": "7.66%", "Concurrency Exposure": "88.6%", @@ -186662,7 +186662,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -186731,7 +186731,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.83%", "Error & Exception Exposure": "97.97%", - "Tech Debt Exposure": "12.56%", + "Tech Debt Exposure": "10.23%", "Testing Exposure": "80.0%", "API Exposure": "8.36%", "Concurrency Exposure": "0.0%", @@ -187740,7 +187740,7 @@ "Design Short Vars": 7, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -187809,7 +187809,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.96%", "Error & Exception Exposure": "80.01%", - "Tech Debt Exposure": "14.47%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "4.0%", "Concurrency Exposure": "0.0%", @@ -188248,7 +188248,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -188317,7 +188317,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "90.96%", "Error & Exception Exposure": "97.67%", - "Tech Debt Exposure": "19.04%", + "Tech Debt Exposure": "18.49%", "Testing Exposure": "80.0%", "API Exposure": "9.89%", "Concurrency Exposure": "52.22%", @@ -190006,7 +190006,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -190075,7 +190075,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.13%", "Error & Exception Exposure": "90.74%", - "Tech Debt Exposure": "36.97%", + "Tech Debt Exposure": "22.28%", "Testing Exposure": "80.0%", "API Exposure": "1.09%", "Concurrency Exposure": "45.05%", @@ -190714,7 +190714,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -190783,7 +190783,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "88.63%", "Error & Exception Exposure": "81.46%", - "Tech Debt Exposure": "40.68%", + "Tech Debt Exposure": "20.51%", "Testing Exposure": "80.0%", "API Exposure": "0.3%", "Concurrency Exposure": "0.0%", @@ -191112,7 +191112,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -191450,7 +191450,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 15, + "Orphaned Logic": 14, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -191640,7 +191640,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -191686,9 +191686,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -3663.18, - "Y": -27.11, - "Z": 612.82 + "X": -859.47, + "Y": 15.5, + "Z": 80.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -191711,7 +191711,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "9.97%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.85%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -191860,7 +191860,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -191906,9 +191906,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1816.48, - "Y": 3.62, - "Z": 854.19 + "X": -1853.42, + "Y": -204.14, + "Z": -1430.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -192090,7 +192090,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -192161,7 +192161,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "39.95%", "Error & Exception Exposure": "73.39%", - "Tech Debt Exposure": "92.57%", + "Tech Debt Exposure": "88.85%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -192520,7 +192520,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 9, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -192566,9 +192566,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -3213.78, - "Y": -184.52, - "Z": -1469.97 + "X": -2452.54, + "Y": 84.66, + "Z": 1235.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -192750,7 +192750,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -192821,7 +192821,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.13%", "API Exposure": "8.85%", "Concurrency Exposure": "0.0%", @@ -192960,7 +192960,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -228436,7 +228436,7 @@ } }, "lua/cosmopolitan": { - "Directory Group Magnitude": 21484.2, + "Directory Group Magnitude": 21454.2, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -228444,16 +228444,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "78.52%", "Error & Exception Exposure": "72.22%", - "Tech Debt Exposure": "44.1%", + "Tech Debt Exposure": "20.15%", "Testing Exposure": "47.43%", - "API Exposure": "1.16%", + "API Exposure": "0.99%", "Concurrency Exposure": "26.19%", "State Flux Exposure": "93.01%", "Commented Logic Exposure": "2.82%", "Specification Exposure": "93.8%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.19%", + "Documentation Exposure": "35.32%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -228470,9 +228470,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3819.44, + "X": -3819.4, "Y": 78.38, - "Z": 8151.56 + "Z": 8151.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -228484,7 +228484,7 @@ "Total LOC": 313, "Coding LOC": 204, "Documentation LOC": 48, - "Structural Magnitude": 267.18, + "Structural Magnitude": 266.18, "Control Flow Ratio": "43.7%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -228497,14 +228497,14 @@ "Error & Exception Exposure": "98.17%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.76%", + "API Exposure": "0.56%", "Concurrency Exposure": "62.15%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.22%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.26%", + "Documentation Exposure": "22.04%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -228670,7 +228670,7 @@ "Type/Safety Bypasses": 31, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 5, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 152, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -228806,9 +228806,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3347.43, - "Y": 165.31, - "Z": 7979.29 + "X": -3347.42, + "Y": 165.32, + "Z": 7979.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -228820,7 +228820,7 @@ "Total LOC": 1544, "Coding LOC": 1173, "Documentation LOC": 106, - "Structural Magnitude": 1853.26, + "Structural Magnitude": 1852.26, "Control Flow Ratio": "34.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -228831,16 +228831,16 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.1%", "Error & Exception Exposure": "95.65%", - "Tech Debt Exposure": "32.26%", + "Tech Debt Exposure": "14.75%", "Testing Exposure": "80.0%", - "API Exposure": "0.53%", + "API Exposure": "0.48%", "Concurrency Exposure": "41.79%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.6%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.17%", + "Documentation Exposure": "18.66%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -229476,7 +229476,7 @@ "Type/Safety Bypasses": 115, "High-Risk Execution Commands": 6, "I/O and Network Boundaries": 9, - "Exposed API / Public Exports": 14, + "Exposed API / Public Exports": 13, "State Mutations / Variable Reassignments": 1183, "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 0, @@ -229539,7 +229539,7 @@ "Design Upper Case": 24, "Design Short Vars": 236, "Design Long Vars": 1, - "Duplicate Logic": 2, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -229593,9 +229593,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2810.38, + "X": -2810.39, "Y": 199.71, - "Z": 8293.24 + "Z": 8293.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -229607,7 +229607,7 @@ "Total LOC": 528, "Coding LOC": 386, "Documentation LOC": 35, - "Structural Magnitude": 685.52, + "Structural Magnitude": 684.52, "Control Flow Ratio": "49.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -229620,14 +229620,14 @@ "Error & Exception Exposure": "80.44%", "Tech Debt Exposure": "78.94%", "Testing Exposure": "2.63%", - "API Exposure": "0.41%", + "API Exposure": "0.32%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.57%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.03%", + "Documentation Exposure": "28.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -229833,7 +229833,7 @@ "Type/Safety Bypasses": 18, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 6, + "Exposed API / Public Exports": 5, "State Mutations / Variable Reassignments": 422, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -229960,7 +229960,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3386.65, + "X": -3386.64, "Y": 184.82, "Z": 6646.03 }, @@ -229985,7 +229985,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.99%", "Error & Exception Exposure": "98.77%", - "Tech Debt Exposure": "87.12%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "0.0%", "Concurrency Exposure": "100.0%", @@ -230104,7 +230104,7 @@ "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -230152,7 +230152,7 @@ "2. Topological Coordinates": { "X": -2143.37, "Y": 183.45, - "Z": 8369.69 + "Z": 8369.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -230175,7 +230175,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "82.36%", "Error & Exception Exposure": "87.62%", - "Tech Debt Exposure": "30.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.26%", "Concurrency Exposure": "0.0%", @@ -230334,7 +230334,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -230378,7 +230378,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3884.4, + "X": -3884.36, "Y": 135.47, "Z": 7653.97 }, @@ -230392,7 +230392,7 @@ "Total LOC": 364, "Coding LOC": 274, "Documentation LOC": 18, - "Structural Magnitude": 359.68, + "Structural Magnitude": 358.68, "Control Flow Ratio": "45.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -230405,14 +230405,14 @@ "Error & Exception Exposure": "3.02%", "Tech Debt Exposure": "13.46%", "Testing Exposure": "80.0%", - "API Exposure": "6.05%", + "API Exposure": "5.87%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.99%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "85.27%", + "Documentation Exposure": "83.48%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -230618,7 +230618,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 26, + "Exposed API / Public Exports": 25, "State Mutations / Variable Reassignments": 145, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -230729,9 +230729,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4078.89, + "X": -4078.8, "Y": 119.37, - "Z": 7848.91 + "Z": 7848.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -230743,7 +230743,7 @@ "Total LOC": 79, "Coding LOC": 57, "Documentation LOC": 5, - "Structural Magnitude": 130.84, + "Structural Magnitude": 129.84, "Control Flow Ratio": "33.8%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -230756,14 +230756,14 @@ "Error & Exception Exposure": "98.13%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.48%", + "API Exposure": "0.16%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "13.46%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.21%", + "Documentation Exposure": "42.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -230879,7 +230879,7 @@ "Type/Safety Bypasses": 4, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 65, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -230987,9 +230987,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2274.26, + "X": -2274.27, "Y": 153.22, - "Z": 8507.17 + "Z": 8507.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -231012,7 +231012,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "71.93%", "Error & Exception Exposure": "87.18%", - "Tech Debt Exposure": "98.4%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -231111,7 +231111,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -231157,9 +231157,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3707.71, + "X": -3707.68, "Y": 172.62, - "Z": 7201.3 + "Z": 7201.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -231171,7 +231171,7 @@ "Total LOC": 512, "Coding LOC": 366, "Documentation LOC": 33, - "Structural Magnitude": 676.32, + "Structural Magnitude": 675.32, "Control Flow Ratio": "33.5%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -231184,14 +231184,14 @@ "Error & Exception Exposure": "90.24%", "Tech Debt Exposure": "47.27%", "Testing Exposure": "80.0%", - "API Exposure": "2.01%", + "API Exposure": "1.9%", "Concurrency Exposure": "40.8%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.3%", + "Documentation Exposure": "63.95%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -231647,7 +231647,7 @@ "Type/Safety Bypasses": 19, "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 20, + "Exposed API / Public Exports": 19, "State Mutations / Variable Reassignments": 359, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -231757,7 +231757,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3657.5, + "X": -3657.49, "Y": 199.89, "Z": 6642.93 }, @@ -231782,7 +231782,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.48%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -231881,7 +231881,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -231927,7 +231927,7 @@ "2. Topological Coordinates": { "X": -3162.21, "Y": 233.12, - "Z": 6776.11 + "Z": 6776.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -231939,7 +231939,7 @@ "Total LOC": 273, "Coding LOC": 215, "Documentation LOC": 14, - "Structural Magnitude": 416.2, + "Structural Magnitude": 415.2, "Control Flow Ratio": "42.2%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -231952,14 +231952,14 @@ "Error & Exception Exposure": "97.67%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.85%", + "API Exposure": "0.67%", "Concurrency Exposure": "0.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": "33.82%", + "Documentation Exposure": "30.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -232155,7 +232155,7 @@ "Type/Safety Bypasses": 27, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 6, + "Exposed API / Public Exports": 5, "State Mutations / Variable Reassignments": 253, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -232265,9 +232265,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2424.43, + "X": -2424.45, "Y": 181.49, - "Z": 8360.32 + "Z": 8360.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -232279,7 +232279,7 @@ "Total LOC": 450, "Coding LOC": 319, "Documentation LOC": 40, - "Structural Magnitude": 399.78, + "Structural Magnitude": 398.78, "Control Flow Ratio": "23.4%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -232292,14 +232292,14 @@ "Error & Exception Exposure": "75.01%", "Tech Debt Exposure": "16.27%", "Testing Exposure": "80.0%", - "API Exposure": "0.6%", + "API Exposure": "0.47%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "11.92%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.66%", + "Documentation Exposure": "32.04%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -232605,7 +232605,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 6, + "Exposed API / Public Exports": 5, "State Mutations / Variable Reassignments": 144, "Commented-out Code (Dead Logic)": 5, "Structured Documentation Blocks": 0, @@ -232713,9 +232713,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2756.79, + "X": -2756.8, "Y": 235.08, - "Z": 7262.42 + "Z": 7262.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -232727,7 +232727,7 @@ "Total LOC": 407, "Coding LOC": 302, "Documentation LOC": 24, - "Structural Magnitude": 743.94, + "Structural Magnitude": 742.94, "Control Flow Ratio": "57.7%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -232740,14 +232740,14 @@ "Error & Exception Exposure": "91.56%", "Tech Debt Exposure": "97.97%", "Testing Exposure": "80.0%", - "API Exposure": "0.77%", + "API Exposure": "0.65%", "Concurrency Exposure": "0.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": "45.06%", + "Documentation Exposure": "42.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -232983,7 +232983,7 @@ "Type/Safety Bypasses": 10, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 8, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 321, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -233107,7 +233107,7 @@ "Total LOC": 1155, "Coding LOC": 884, "Documentation LOC": 67, - "Structural Magnitude": 2293.68, + "Structural Magnitude": 2292.68, "Control Flow Ratio": "35.9%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -233120,14 +233120,14 @@ "Error & Exception Exposure": "78.13%", "Tech Debt Exposure": "23.67%", "Testing Exposure": "80.0%", - "API Exposure": "0.41%", + "API Exposure": "0.35%", "Concurrency Exposure": "100.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.11%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.95%", + "Documentation Exposure": "23.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -233903,7 +233903,7 @@ "Type/Safety Bypasses": 63, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 9, "State Mutations / Variable Reassignments": 688, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -234014,9 +234014,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4151.4, + "X": -4151.39, "Y": 71.4, - "Z": 7744.33 + "Z": 7744.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -234039,7 +234039,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "65.75%", "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "99.93%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "3.49%", "Concurrency Exposure": "0.0%", @@ -234168,7 +234168,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -234212,9 +234212,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2586.19, + "X": -2586.22, "Y": 206.36, - "Z": 8492.88 + "Z": 8492.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -234226,7 +234226,7 @@ "Total LOC": 198, "Coding LOC": 148, "Documentation LOC": 19, - "Structural Magnitude": 238.76, + "Structural Magnitude": 237.76, "Control Flow Ratio": "30.1%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -234239,14 +234239,14 @@ "Error & Exception Exposure": "87.37%", "Tech Debt Exposure": "91.67%", "Testing Exposure": "80.0%", - "API Exposure": "0.2%", + "API Exposure": "0.07%", "Concurrency Exposure": "100.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": "24.0%", + "Documentation Exposure": "19.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -234392,7 +234392,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 107, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -234502,9 +234502,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2706.27, + "X": -2706.28, "Y": 152.03, - "Z": 8096.29 + "Z": 8096.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -234516,7 +234516,7 @@ "Total LOC": 1046, "Coding LOC": 802, "Documentation LOC": 49, - "Structural Magnitude": 1573.94, + "Structural Magnitude": 1572.94, "Control Flow Ratio": "47.3%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -234529,14 +234529,14 @@ "Error & Exception Exposure": "98.95%", "Tech Debt Exposure": "14.39%", "Testing Exposure": "80.0%", - "API Exposure": "1.02%", + "API Exposure": "0.97%", "Concurrency Exposure": "100.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.95%", + "Documentation Exposure": "32.87%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -235172,7 +235172,7 @@ "Type/Safety Bypasses": 188, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 22, + "Exposed API / Public Exports": 21, "State Mutations / Variable Reassignments": 783, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -235282,9 +235282,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3216.88, + "X": -3216.87, "Y": 159.22, - "Z": 8308.85 + "Z": 8308.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -235296,7 +235296,7 @@ "Total LOC": 681, "Coding LOC": 500, "Documentation LOC": 52, - "Structural Magnitude": 1089.1, + "Structural Magnitude": 1088.1, "Control Flow Ratio": "40.3%", "Popularity Rank": 30, "Raw Churn Frequency": 0.0, @@ -235309,14 +235309,14 @@ "Error & Exception Exposure": "99.11%", "Tech Debt Exposure": "16.11%", "Testing Exposure": "80.0%", - "API Exposure": "0.19%", + "API Exposure": "0.14%", "Concurrency Exposure": "95.13%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.09%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.78%", + "Documentation Exposure": "21.46%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -235602,7 +235602,7 @@ "Type/Safety Bypasses": 33, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 5, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 660, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -235712,9 +235712,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3699.6, + "X": -3699.58, "Y": 88.45, - "Z": 7892.32 + "Z": 7892.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -235726,7 +235726,7 @@ "Total LOC": 492, "Coding LOC": 381, "Documentation LOC": 17, - "Structural Magnitude": 884.72, + "Structural Magnitude": 883.72, "Control Flow Ratio": "52.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -235739,14 +235739,14 @@ "Error & Exception Exposure": "92.24%", "Tech Debt Exposure": "35.5%", "Testing Exposure": "80.0%", - "API Exposure": "1.72%", + "API Exposure": "1.52%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.64%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.91%", + "Documentation Exposure": "50.42%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -235972,7 +235972,7 @@ "Type/Safety Bypasses": 38, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 9, "State Mutations / Variable Reassignments": 511, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -236082,9 +236082,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2919.93, - "Y": 115.27, - "Z": 8923.1 + "X": -2919.96, + "Y": 115.28, + "Z": 8922.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -236096,7 +236096,7 @@ "Total LOC": 75, "Coding LOC": 70, "Documentation LOC": 1, - "Structural Magnitude": 55.7, + "Structural Magnitude": 54.7, "Control Flow Ratio": "65.4%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -236109,14 +236109,14 @@ "Error & Exception Exposure": "84.02%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", - "API Exposure": "1.07%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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": "38.55%", + "Documentation Exposure": "28.68%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -236162,7 +236162,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 28, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -236270,9 +236270,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2469.46, - "Y": 176.5, - "Z": 7827.65 + "X": -2469.47, + "Y": 176.49, + "Z": 7827.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -236284,7 +236284,7 @@ "Total LOC": 962, "Coding LOC": 756, "Documentation LOC": 66, - "Structural Magnitude": 974.72, + "Structural Magnitude": 973.72, "Control Flow Ratio": "55.6%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -236297,14 +236297,14 @@ "Error & Exception Exposure": "32.91%", "Tech Debt Exposure": "12.59%", "Testing Exposure": "80.0%", - "API Exposure": "0.02%", + "API Exposure": "0.0%", "Concurrency Exposure": "56.06%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.18%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.11%", + "Documentation Exposure": "14.46%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -236530,7 +236530,7 @@ "Type/Safety Bypasses": 23, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 207, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 599, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -236641,9 +236641,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3812.44, + "X": -3812.43, "Y": 108.08, - "Z": 8375.93 + "Z": 8375.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -236666,7 +236666,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "40.05%", "Error & Exception Exposure": "78.34%", - "Tech Debt Exposure": "80.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -236775,7 +236775,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -236819,9 +236819,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2532.36, + "X": -2532.37, "Y": 248.91, - "Z": 7408.5 + "Z": 7408.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -236833,7 +236833,7 @@ "Total LOC": 696, "Coding LOC": 539, "Documentation LOC": 47, - "Structural Magnitude": 1212.58, + "Structural Magnitude": 1211.58, "Control Flow Ratio": "44.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -236846,14 +236846,14 @@ "Error & Exception Exposure": "99.87%", "Tech Debt Exposure": "12.03%", "Testing Exposure": "2.59%", - "API Exposure": "0.23%", + "API Exposure": "0.16%", "Concurrency Exposure": "99.9%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.62%", + "Documentation Exposure": "20.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -237219,7 +237219,7 @@ "Type/Safety Bypasses": 96, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 845, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -237329,9 +237329,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2139.56, - "Y": 265.9, - "Z": 7405.14 + "X": -2139.62, + "Y": 265.89, + "Z": 7405.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -237343,7 +237343,7 @@ "Total LOC": 173, "Coding LOC": 110, "Documentation LOC": 26, - "Structural Magnitude": 179.0, + "Structural Magnitude": 178.0, "Control Flow Ratio": "62.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -237356,14 +237356,14 @@ "Error & Exception Exposure": "98.14%", "Tech Debt Exposure": "98.36%", "Testing Exposure": "80.0%", - "API Exposure": "0.9%", + "API Exposure": "0.5%", "Concurrency Exposure": "100.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": "66.19%", + "Documentation Exposure": "59.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -237429,7 +237429,7 @@ "Type/Safety Bypasses": 32, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 79, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -237564,7 +237564,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.0%", "Error & Exception Exposure": "96.4%", - "Tech Debt Exposure": "68.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -237693,7 +237693,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -237737,9 +237737,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3631.19, + "X": -3631.15, "Y": 159.64, - "Z": 6936.19 + "Z": 6936.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -237751,7 +237751,7 @@ "Total LOC": 272, "Coding LOC": 206, "Documentation LOC": 26, - "Structural Magnitude": 304.02, + "Structural Magnitude": 303.02, "Control Flow Ratio": "56.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -237764,14 +237764,14 @@ "Error & Exception Exposure": "94.09%", "Tech Debt Exposure": "39.25%", "Testing Exposure": "80.0%", - "API Exposure": "0.21%", + "API Exposure": "0.07%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.48%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.62%", + "Documentation Exposure": "30.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -237927,7 +237927,7 @@ "Type/Safety Bypasses": 19, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 144, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -238037,9 +238037,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4008.81, + "X": -4008.8, "Y": 123.66, - "Z": 7585.0 + "Z": 7584.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -238062,7 +238062,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "75.44%", "Error & Exception Exposure": "95.56%", - "Tech Debt Exposure": "98.46%", + "Tech Debt Exposure": "96.88%", "Testing Exposure": "80.0%", "API Exposure": "2.73%", "Concurrency Exposure": "0.0%", @@ -238291,7 +238291,7 @@ "Design Short Vars": 13, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -238360,7 +238360,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "81.76%", "Error & Exception Exposure": "85.39%", - "Tech Debt Exposure": "98.93%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -238469,7 +238469,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -238538,7 +238538,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.53%", "Error & Exception Exposure": "46.96%", - "Tech Debt Exposure": "15.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "25.85%", @@ -238757,7 +238757,7 @@ "Design Short Vars": 27, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -238803,7 +238803,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3579.15, + "X": -3579.13, "Y": 151.38, "Z": 7514.25 }, @@ -238817,7 +238817,7 @@ "Total LOC": 1182, "Coding LOC": 884, "Documentation LOC": 75, - "Structural Magnitude": 1363.98, + "Structural Magnitude": 1362.98, "Control Flow Ratio": "27.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -238830,14 +238830,14 @@ "Error & Exception Exposure": "74.46%", "Tech Debt Exposure": "34.03%", "Testing Exposure": "2.61%", - "API Exposure": "0.36%", + "API Exposure": "0.33%", "Concurrency Exposure": "100.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.48%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.07%", + "Documentation Exposure": "22.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -239583,7 +239583,7 @@ "Type/Safety Bypasses": 49, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 14, + "Exposed API / Public Exports": 13, "State Mutations / Variable Reassignments": 682, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -239694,9 +239694,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2451.26, + "X": -2451.28, "Y": 249.08, - "Z": 7246.03 + "Z": 7246.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -239708,7 +239708,7 @@ "Total LOC": 563, "Coding LOC": 378, "Documentation LOC": 85, - "Structural Magnitude": 348.76, + "Structural Magnitude": 347.76, "Control Flow Ratio": "36.5%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -239721,14 +239721,14 @@ "Error & Exception Exposure": "83.96%", "Tech Debt Exposure": "73.21%", "Testing Exposure": "80.0%", - "API Exposure": "0.44%", + "API Exposure": "0.29%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.41%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.19%", + "Documentation Exposure": "19.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -239864,7 +239864,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 4, + "Exposed API / Public Exports": 3, "State Mutations / Variable Reassignments": 233, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -239974,9 +239974,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3362.35, + "X": -3362.34, "Y": 141.14, - "Z": 7258.15 + "Z": 7258.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -239988,7 +239988,7 @@ "Total LOC": 1025, "Coding LOC": 816, "Documentation LOC": 68, - "Structural Magnitude": 1010.82, + "Structural Magnitude": 1009.82, "Control Flow Ratio": "63.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -240001,14 +240001,14 @@ "Error & Exception Exposure": "2.53%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.07%", + "API Exposure": "0.02%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.16%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.62%", + "Documentation Exposure": "15.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -240404,7 +240404,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 397, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -240512,9 +240512,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3417.35, - "Y": 111.68, - "Z": 8707.0 + "X": -3417.32, + "Y": 111.69, + "Z": 8706.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -240526,7 +240526,7 @@ "Total LOC": 357, "Coding LOC": 344, "Documentation LOC": 2, - "Structural Magnitude": 171.58, + "Structural Magnitude": 170.58, "Control Flow Ratio": "51.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -240539,14 +240539,14 @@ "Error & Exception Exposure": "78.26%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.34%", + "API Exposure": "0.11%", "Concurrency Exposure": "0.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": "18.0%", + "Documentation Exposure": "16.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -240592,7 +240592,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 100, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -240702,9 +240702,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3274.86, - "Y": 130.69, - "Z": 8956.73 + "X": -3274.64, + "Y": 130.76, + "Z": 8955.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -240716,7 +240716,7 @@ "Total LOC": 8, "Coding LOC": 5, "Documentation LOC": 0, - "Structural Magnitude": 7.4, + "Structural Magnitude": 6.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -240729,14 +240729,14 @@ "Error & Exception Exposure": "87.87%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.88%", - "API Exposure": "10.74%", + "API Exposure": "8.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.73%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.33%", + "Documentation Exposure": "33.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -240772,7 +240772,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 4, + "Exposed API / Public Exports": 3, "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -240882,7 +240882,7 @@ "2. Topological Coordinates": { "X": -3053.23, "Y": 222.31, - "Z": 7362.28 + "Z": 7362.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -240894,7 +240894,7 @@ "Total LOC": 826, "Coding LOC": 635, "Documentation LOC": 36, - "Structural Magnitude": 1666.0, + "Structural Magnitude": 1665.0, "Control Flow Ratio": "56.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -240907,14 +240907,14 @@ "Error & Exception Exposure": "99.09%", "Tech Debt Exposure": "20.45%", "Testing Exposure": "80.0%", - "API Exposure": "0.48%", + "API Exposure": "0.39%", "Concurrency Exposure": "66.89%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.87%", + "Documentation Exposure": "21.81%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -241410,7 +241410,7 @@ "Type/Safety Bypasses": 17, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 7, + "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 1113, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -241521,8 +241521,8 @@ }, "2. Topological Coordinates": { "X": -1921.14, - "Y": 231.22, - "Z": 7970.25 + "Y": 231.21, + "Z": 7970.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -241545,7 +241545,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -241644,7 +241644,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -241688,7 +241688,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2331.73, + "X": -2331.76, "Y": 260.08, "Z": 7534.46 }, @@ -241702,7 +241702,7 @@ "Total LOC": 424, "Coding LOC": 333, "Documentation LOC": 13, - "Structural Magnitude": 479.36, + "Structural Magnitude": 478.36, "Control Flow Ratio": "52.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -241715,14 +241715,14 @@ "Error & Exception Exposure": "16.85%", "Tech Debt Exposure": "15.79%", "Testing Exposure": "80.0%", - "API Exposure": "0.7%", + "API Exposure": "0.52%", "Concurrency Exposure": "0.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": "33.9%", + "Documentation Exposure": "31.41%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -241998,7 +241998,7 @@ "Type/Safety Bypasses": 8, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 248, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -242108,7 +242108,7 @@ "2. Topological Coordinates": { "X": -2169.54, "Y": 256.27, - "Z": 7157.61 + "Z": 7157.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -242131,7 +242131,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.01%", "API Exposure": "2.63%", "Concurrency Exposure": "0.0%", @@ -242240,7 +242240,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -242284,9 +242284,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2001.22, + "X": -2001.23, "Y": 258.28, - "Z": 7523.57 + "Z": 7523.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -242309,7 +242309,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "58.26%", "Error & Exception Exposure": "79.78%", - "Tech Debt Exposure": "77.73%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "1.62%", "Concurrency Exposure": "0.0%", @@ -242418,7 +242418,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -242462,9 +242462,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3485.41, - "Y": 78.7, - "Z": 8362.37 + "X": -3485.39, + "Y": 78.71, + "Z": 8362.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -242476,7 +242476,7 @@ "Total LOC": 312, "Coding LOC": 238, "Documentation LOC": 10, - "Structural Magnitude": 460.46, + "Structural Magnitude": 459.46, "Control Flow Ratio": "48.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -242487,16 +242487,16 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "90.48%", "Error & Exception Exposure": "98.49%", - "Tech Debt Exposure": "53.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.23%", + "API Exposure": "0.08%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.23%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.71%", + "Documentation Exposure": "30.34%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -242642,7 +242642,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 318, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -242705,7 +242705,7 @@ "Design Upper Case": 1, "Design Short Vars": 59, "Design Long Vars": 0, - "Duplicate Logic": 2, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -242752,7 +242752,7 @@ "2. Topological Coordinates": { "X": -3077.88, "Y": 160.02, - "Z": 8726.52 + "Z": 8726.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -242764,7 +242764,7 @@ "Total LOC": 528, "Coding LOC": 411, "Documentation LOC": 34, - "Structural Magnitude": 347.22, + "Structural Magnitude": 346.22, "Control Flow Ratio": "48.1%", "Popularity Rank": 21, "Raw Churn Frequency": 0.0, @@ -242777,14 +242777,14 @@ "Error & Exception Exposure": "1.87%", "Tech Debt Exposure": "13.81%", "Testing Exposure": "2.51%", - "API Exposure": "0.18%", + "API Exposure": "0.06%", "Concurrency Exposure": "37.78%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.95%", + "Documentation Exposure": "13.81%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -242990,7 +242990,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 173, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -243098,9 +243098,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2144.24, + "X": -2144.28, "Y": 233.19, - "Z": 7704.48 + "Z": 7704.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -243112,7 +243112,7 @@ "Total LOC": 323, "Coding LOC": 246, "Documentation LOC": 23, - "Structural Magnitude": 285.82, + "Structural Magnitude": 284.82, "Control Flow Ratio": "51.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -243125,14 +243125,14 @@ "Error & Exception Exposure": "26.34%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", - "API Exposure": "0.05%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "8.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.59%", + "Documentation Exposure": "24.69%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -243298,7 +243298,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 166, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -243406,9 +243406,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3951.94, - "Y": 145.72, - "Z": 7007.77 + "X": -3951.74, + "Y": 145.73, + "Z": 7007.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -243420,7 +243420,7 @@ "Total LOC": 41, "Coding LOC": 25, "Documentation LOC": 4, - "Structural Magnitude": 39.7, + "Structural Magnitude": 38.7, "Control Flow Ratio": "38.9%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -243433,14 +243433,14 @@ "Error & Exception Exposure": "98.02%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.72%", - "API Exposure": "7.24%", + "API Exposure": "6.49%", "Concurrency Exposure": "0.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": "99.92%", + "Documentation Exposure": "99.81%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -243496,7 +243496,7 @@ "Type/Safety Bypasses": 4, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 8, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 17, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -247064,9 +247064,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -3771.78, + "X": -3771.77, "Y": 103.99, - "Z": 10887.58 + "Z": 10887.56 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -247224,7 +247224,7 @@ "2. Topological Coordinates": { "X": -3929.59, "Y": 49.62, - "Z": 10717.72 + "Z": 10717.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -249712,7 +249712,7 @@ "2. Topological Coordinates": { "X": -4148.27, "Y": -17.85, - "Z": 10168.2 + "Z": 10168.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -250434,9 +250434,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": -3202.08, + "X": -3202.07, "Y": 197.66, - "Z": 10147.64 + "Z": 10147.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -250636,9 +250636,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": -3626.74, + "X": -3626.73, "Y": 139.82, - "Z": 10438.93 + "Z": 10438.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -255547,9 +255547,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": -3548.01, + "X": -3548.0, "Y": 122.74, - "Z": 9962.96 + "Z": 9962.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -256275,9 +256275,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": -3352.91, + "X": -3352.9, "Y": 170.47, - "Z": 10720.64 + "Z": 10720.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -316899,9 +316899,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 11206.56, + "X": 11206.53, "Y": -99.62, - "Z": 5328.65 + "Z": 5328.64 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -317056,9 +317056,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 11422.49, + "X": 11422.46, "Y": -86.54, - "Z": 5130.36 + "Z": 5130.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333012,9 +333012,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6770.88, + "X": -6770.83, "Y": -18.75, - "Z": -4422.92 + "Z": -4422.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333203,9 +333203,9 @@ "Identity Proof": "Single Indicator (Ext: .pxd)" }, "2. Topological Coordinates": { - "X": -6981.17, + "X": -6981.12, "Y": 2.31, - "Z": -5327.84 + "Z": -5327.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333522,9 +333522,9 @@ "Identity Proof": "Single Indicator (Ext: .pyx)" }, "2. Topological Coordinates": { - "X": -7322.65, + "X": -7322.61, "Y": 23.75, - "Z": -4632.64 + "Z": -4632.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -334525,9 +334525,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7017.86, + "X": -7017.82, "Y": 32.59, - "Z": -4937.39 + "Z": -4937.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -435322,7 +435322,7 @@ } }, "shell/kubernetes": { - "Directory Group Magnitude": 6015.0, + "Directory Group Magnitude": 6013.0, "File Count": 23, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -435330,16 +435330,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "62.29%", "Error & Exception Exposure": "62.48%", - "Tech Debt Exposure": "89.38%", + "Tech Debt Exposure": "57.09%", "Testing Exposure": "15.8%", - "API Exposure": "1.72%", + "API Exposure": "1.51%", "Concurrency Exposure": "16.64%", "State Flux Exposure": "83.09%", "Commented Logic Exposure": "2.53%", "Specification Exposure": "88.7%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.62%", + "Documentation Exposure": "33.15%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -435500,7 +435500,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -435569,7 +435569,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.74%", "Error & Exception Exposure": "61.93%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "99.94%", "Testing Exposure": "80.0%", "API Exposure": "2.98%", "Concurrency Exposure": "0.0%", @@ -435838,7 +435838,7 @@ "Design Short Vars": 6, "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 16, + "Orphaned Logic": 15, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -435884,9 +435884,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3583.33, - "Y": 305.1, - "Z": -2670.46 + "X": 3583.32, + "Y": 305.09, + "Z": -2670.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -435898,7 +435898,7 @@ "Total LOC": 473, "Coding LOC": 285, "Documentation LOC": 122, - "Structural Magnitude": 425.1, + "Structural Magnitude": 424.1, "Control Flow Ratio": "72.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -435911,14 +435911,14 @@ "Error & Exception Exposure": "79.12%", "Tech Debt Exposure": "30.29%", "Testing Exposure": "80.0%", - "API Exposure": "6.37%", + "API Exposure": "6.14%", "Concurrency Exposure": "81.71%", "State Flux Exposure": "99.97%", "Commented Logic Exposure": "5.68%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "49.46%", + "Documentation Exposure": "46.19%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -436134,7 +436134,7 @@ "Type/Safety Bypasses": 28, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 78, - "Exposed API / Public Exports": 19, + "Exposed API / Public Exports": 18, "State Mutations / Variable Reassignments": 88, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 2, @@ -436270,7 +436270,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "69.99%", "Error & Exception Exposure": "77.15%", - "Tech Debt Exposure": "99.82%", + "Tech Debt Exposure": "99.53%", "Testing Exposure": "80.0%", "API Exposure": "10.47%", "Concurrency Exposure": "0.0%", @@ -436439,7 +436439,7 @@ "Design Short Vars": 0, "Design Long Vars": 17, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -436508,7 +436508,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "49.94%", "Error & Exception Exposure": "88.99%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.77%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -436617,7 +436617,7 @@ "Design Short Vars": 0, "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -436688,7 +436688,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.65%", "Error & Exception Exposure": "34.5%", - "Tech Debt Exposure": "95.66%", + "Tech Debt Exposure": "95.43%", "Testing Exposure": "2.75%", "API Exposure": "0.02%", "Concurrency Exposure": "0.0%", @@ -437807,7 +437807,7 @@ "Design Short Vars": 7, "Design Long Vars": 70, "Duplicate Logic": 0, - "Orphaned Logic": 95, + "Orphaned Logic": 94, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -437987,7 +437987,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -438247,7 +438247,7 @@ "Design Short Vars": 4, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 9, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -438316,7 +438316,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "28.14%", "Error & Exception Exposure": "81.27%", - "Tech Debt Exposure": "73.41%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -438415,7 +438415,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -438484,7 +438484,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.02%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -438583,7 +438583,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -438652,7 +438652,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.32%", "Error & Exception Exposure": "80.41%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.88%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -438751,7 +438751,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -438820,7 +438820,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "50.0%", "Error & Exception Exposure": "81.74%", - "Tech Debt Exposure": "98.07%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.06%", "API Exposure": "0.0%", "Concurrency Exposure": "74.4%", @@ -438959,7 +438959,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -439032,7 +439032,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "38.13%", - "Tech Debt Exposure": "90.77%", + "Tech Debt Exposure": "88.08%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "99.88%", @@ -439311,7 +439311,7 @@ "Design Short Vars": 1, "Design Long Vars": 8, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -439513,7 +439513,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -439582,7 +439582,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "71.75%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -439681,7 +439681,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -439869,7 +439869,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -439941,7 +439941,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "27.42%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "99.94%", "Testing Exposure": "2.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -440200,7 +440200,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 17, + "Orphaned Logic": 16, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -440490,7 +440490,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 13, + "Orphaned Logic": 12, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -440559,7 +440559,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "84.08%", - "Tech Debt Exposure": "98.69%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -440668,7 +440668,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -440737,7 +440737,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "47.06%", "Error & Exception Exposure": "81.03%", - "Tech Debt Exposure": "69.19%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -440846,7 +440846,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -440915,7 +440915,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.02%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -441014,7 +441014,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -441182,7 +441182,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -441228,9 +441228,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2677.31, - "Y": 124.85, - "Z": -3920.17 + "X": 2678.79, + "Y": 125.14, + "Z": -3918.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -441242,7 +441242,7 @@ "Total LOC": 21, "Coding LOC": 5, "Documentation LOC": 13, - "Structural Magnitude": 4.1, + "Structural Magnitude": 3.1, "Control Flow Ratio": "0.0%", "Popularity Rank": 13, "Raw Churn Frequency": 0.0, @@ -441255,14 +441255,14 @@ "Error & Exception Exposure": "84.45%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.86%", - "API Exposure": "4.48%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.73%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.69%", + "Documentation Exposure": "23.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -441288,7 +441288,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -453298,7 +453298,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "60.13%", "Error & Exception Exposure": "82.56%", - "Tech Debt Exposure": "7.85%", + "Tech Debt Exposure": "4.77%", "Testing Exposure": "57.48%", "API Exposure": "0.0%", "Concurrency Exposure": "12.31%", @@ -453324,9 +453324,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6581.2, + "X": -6581.16, "Y": 172.11, - "Z": -5076.66 + "Z": -5076.62 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -453481,9 +453481,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6957.79, + "X": -6957.75, "Y": 31.7, - "Z": -5531.83 + "Z": -5531.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -453659,9 +453659,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6472.14, + "X": -6472.1, "Y": 134.89, - "Z": -5520.5 + "Z": -5520.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -453684,7 +453684,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "76.43%", "Error & Exception Exposure": "94.13%", - "Tech Debt Exposure": "11.92%", + "Tech Debt Exposure": "11.04%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -454513,7 +454513,7 @@ "Design Short Vars": 26, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -454557,9 +454557,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5990.77, + "X": -5990.73, "Y": 121.05, - "Z": -5733.08 + "Z": -5733.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454725,9 +454725,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6180.29, + "X": -6180.25, "Y": 256.87, - "Z": -5045.52 + "Z": -5045.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454750,7 +454750,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "79.44%", "Error & Exception Exposure": "95.16%", - "Tech Debt Exposure": "15.03%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -454979,7 +454979,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -455023,9 +455023,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6795.53, + "X": -6795.48, "Y": 143.2, - "Z": -5269.38 + "Z": -5269.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -455048,7 +455048,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.21%", "Error & Exception Exposure": "98.2%", - "Tech Debt Exposure": "11.84%", + "Tech Debt Exposure": "9.46%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -455337,7 +455337,7 @@ "Design Short Vars": 42, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -455381,9 +455381,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6463.8, + "X": -6463.76, "Y": -13.0, - "Z": -5896.59 + "Z": -5896.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -455406,7 +455406,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "77.3%", "Error & Exception Exposure": "97.29%", - "Tech Debt Exposure": "16.12%", + "Tech Debt Exposure": "12.89%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -455765,7 +455765,7 @@ "Design Short Vars": 13, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -459766,9 +459766,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 2435.88, + "X": 2435.83, "Y": 61.77, - "Z": 8560.58 + "Z": 8560.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -460851,9 +460851,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 2685.17, + "X": 2685.13, "Y": -91.82, - "Z": 8859.15 + "Z": 8858.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -461036,9 +461036,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 2080.15, + "X": 2080.1, "Y": -26.07, - "Z": 8715.77 + "Z": 8715.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -461309,9 +461309,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 2878.31, + "X": 2878.27, "Y": 108.29, - "Z": 8402.33 + "Z": 8402.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -461480,9 +461480,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 1909.82, + "X": 1909.77, "Y": 73.38, - "Z": 8335.3 + "Z": 8335.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -461670,9 +461670,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 2449.97, + "X": 2449.92, "Y": 102.5, - "Z": 8051.51 + "Z": 8051.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -470253,9 +470253,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6282.09, + "X": -6282.06, "Y": 205.2, - "Z": -6030.48 + "Z": -6030.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -470724,9 +470724,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6913.38, + "X": -6913.35, "Y": 206.22, - "Z": -6133.52 + "Z": -6133.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -471028,9 +471028,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6608.61, + "X": -6608.58, "Y": 53.47, - "Z": -6853.66 + "Z": -6853.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -471419,9 +471419,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6592.41, + "X": -6592.38, "Y": 177.39, - "Z": -6621.55 + "Z": -6621.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -482475,7 +482475,7 @@ } }, "zig/tigerbeetle": { - "Directory Group Magnitude": 4587.28, + "Directory Group Magnitude": 4586.28, "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -482485,14 +482485,14 @@ "Error & Exception Exposure": "57.29%", "Tech Debt Exposure": "20.72%", "Testing Exposure": "44.75%", - "API Exposure": "3.63%", + "API Exposure": "3.37%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "40.36%", "Commented Logic Exposure": "1.04%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.36%", + "Documentation Exposure": "46.85%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -482677,9 +482677,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6919.99, - "Y": 100.85, - "Z": 4093.63 + "X": -6919.96, + "Y": 100.87, + "Z": 4093.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -482691,7 +482691,7 @@ "Total LOC": 128, "Coding LOC": 98, "Documentation LOC": 16, - "Structural Magnitude": 112.36, + "Structural Magnitude": 111.36, "Control Flow Ratio": "68.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -482704,14 +482704,14 @@ "Error & Exception Exposure": "97.83%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "2.85%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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": "24.36%", + "Documentation Exposure": "18.67%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -482787,7 +482787,7 @@ "Type/Safety Bypasses": 9, "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 22, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 55, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 1, @@ -486632,9 +486632,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6149.73, + "X": -6149.59, "Y": -66.18, - "Z": -6698.17 + "Z": -6697.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487209,9 +487209,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5532.82, + "X": -5532.67, "Y": -114.19, - "Z": -6754.07 + "Z": -6753.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487643,9 +487643,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5361.53, + "X": -5361.38, "Y": -282.71, - "Z": -7413.96 + "Z": -7413.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487928,9 +487928,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5988.56, + "X": -5988.41, "Y": -62.78, - "Z": -6528.75 + "Z": -6528.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -488089,9 +488089,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5889.75, + "X": -5889.6, "Y": -181.22, - "Z": -6942.61 + "Z": -6942.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -488567,9 +488567,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5825.74, + "X": -5825.59, "Y": -178.55, - "Z": -7597.81 + "Z": -7597.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -489025,9 +489025,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6346.17, + "X": -6346.02, "Y": -39.71, - "Z": -7217.74 + "Z": -7217.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -502794,7 +502794,7 @@ } }, "lua/freebsd-src": { - "Directory Group Magnitude": 3863.8, + "Directory Group Magnitude": 3853.8, "File Count": 16, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -502802,16 +502802,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "70.28%", "Error & Exception Exposure": "89.6%", - "Tech Debt Exposure": "40.54%", + "Tech Debt Exposure": "3.12%", "Testing Exposure": "31.59%", - "API Exposure": "3.47%", + "API Exposure": "3.3%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.9%", "Commented Logic Exposure": "1.67%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.46%", + "Documentation Exposure": "59.22%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -502828,8 +502828,8 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9464.51, - "Y": -8.53, + "X": 9464.55, + "Y": -8.54, "Z": 4071.96 }, "3. Architectural Profile": { @@ -502842,7 +502842,7 @@ "Total LOC": 261, "Coding LOC": 177, "Documentation LOC": 45, - "Structural Magnitude": 293.64, + "Structural Magnitude": 292.64, "Control Flow Ratio": "40.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -502855,14 +502855,14 @@ "Error & Exception Exposure": "93.65%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "3.75%", + "API Exposure": "3.54%", "Concurrency Exposure": "0.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": "81.86%", + "Documentation Exposure": "78.65%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -503038,7 +503038,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 17, + "Exposed API / Public Exports": 16, "State Mutations / Variable Reassignments": 131, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -503149,9 +503149,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9769.34, + "X": 9769.35, "Y": -0.93, - "Z": 4771.58 + "Z": 4771.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -503163,7 +503163,7 @@ "Total LOC": 121, "Coding LOC": 75, "Documentation LOC": 30, - "Structural Magnitude": 122.0, + "Structural Magnitude": 121.0, "Control Flow Ratio": "33.3%", "Popularity Rank": 5, "Raw Churn Frequency": 0.0, @@ -503176,14 +503176,14 @@ "Error & Exception Exposure": "95.4%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", - "API Exposure": "10.14%", + "API Exposure": "9.87%", "Concurrency Exposure": "0.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": "99.89%", + "Documentation Exposure": "99.84%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -503299,7 +503299,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 20, + "Exposed API / Public Exports": 19, "State Mutations / Variable Reassignments": 54, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -503410,7 +503410,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9977.71, + "X": 9977.7, "Y": -47.99, "Z": 4158.2 }, @@ -503424,7 +503424,7 @@ "Total LOC": 918, "Coding LOC": 675, "Documentation LOC": 140, - "Structural Magnitude": 1185.0, + "Structural Magnitude": 1184.0, "Control Flow Ratio": "48.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -503437,14 +503437,14 @@ "Error & Exception Exposure": "98.02%", "Tech Debt Exposure": "16.14%", "Testing Exposure": "80.0%", - "API Exposure": "4.6%", + "API Exposure": "4.54%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.21%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.99%", + "Documentation Exposure": "88.42%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -503870,7 +503870,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 14, "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 66, + "Exposed API / Public Exports": 65, "State Mutations / Variable Reassignments": 502, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -503980,9 +503980,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10015.36, + "X": 10015.35, "Y": 2.27, - "Z": 3672.29 + "Z": 3672.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -503994,7 +503994,7 @@ "Total LOC": 587, "Coding LOC": 412, "Documentation LOC": 91, - "Structural Magnitude": 650.14, + "Structural Magnitude": 649.14, "Control Flow Ratio": "48.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -504007,14 +504007,14 @@ "Error & Exception Exposure": "94.72%", "Tech Debt Exposure": "20.63%", "Testing Exposure": "80.0%", - "API Exposure": "9.41%", + "API Exposure": "9.35%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.34%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.8%", + "Documentation Exposure": "99.78%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -504400,7 +504400,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 86, + "Exposed API / Public Exports": 85, "State Mutations / Variable Reassignments": 272, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -504511,9 +504511,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9619.35, + "X": 9619.36, "Y": 16.28, - "Z": 4427.05 + "Z": 4427.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -504525,7 +504525,7 @@ "Total LOC": 621, "Coding LOC": 453, "Documentation LOC": 89, - "Structural Magnitude": 733.26, + "Structural Magnitude": 732.26, "Control Flow Ratio": "46.6%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -504538,14 +504538,14 @@ "Error & Exception Exposure": "98.18%", "Tech Debt Exposure": "13.09%", "Testing Exposure": "80.0%", - "API Exposure": "2.59%", + "API Exposure": "2.48%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.44%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.94%", + "Documentation Exposure": "48.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -504791,7 +504791,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 26, + "Exposed API / Public Exports": 25, "State Mutations / Variable Reassignments": 426, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -504929,7 +504929,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "38.19%", "Error & Exception Exposure": "82.23%", - "Tech Debt Exposure": "99.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505028,7 +505028,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505074,7 +505074,7 @@ "2. Topological Coordinates": { "X": 9493.91, "Y": -11.38, - "Z": 4803.45 + "Z": 4803.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505097,7 +505097,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "33.35%", "Error & Exception Exposure": "81.27%", - "Tech Debt Exposure": "99.79%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505196,7 +505196,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505240,9 +505240,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9816.04, + "X": 9816.03, "Y": -0.79, - "Z": 3278.16 + "Z": 3278.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505265,7 +505265,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "50.0%", "Error & Exception Exposure": "84.39%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505364,7 +505364,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505408,9 +505408,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10125.99, - "Y": -59.98, - "Z": 4742.0 + "X": 10125.97, + "Y": -59.97, + "Z": 4741.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505433,7 +505433,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "75.23%", "Error & Exception Exposure": "88.22%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505532,7 +505532,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505576,9 +505576,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10211.13, + "X": 10211.12, "Y": 39.33, - "Z": 3699.09 + "Z": 3699.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505601,7 +505601,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "66.08%", "Error & Exception Exposure": "88.8%", - "Tech Debt Exposure": "99.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505700,7 +505700,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505744,7 +505744,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10686.06, + "X": 10686.04, "Y": -16.52, "Z": 3898.67 }, @@ -505769,7 +505769,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "45.84%", "Error & Exception Exposure": "83.7%", - "Tech Debt Exposure": "99.9%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505868,7 +505868,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505912,9 +505912,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9680.29, - "Y": 11.6, - "Z": 3749.55 + "X": 9680.37, + "Y": 11.59, + "Z": 3749.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505926,7 +505926,7 @@ "Total LOC": 82, "Coding LOC": 30, "Documentation LOC": 45, - "Structural Magnitude": 53.1, + "Structural Magnitude": 52.1, "Control Flow Ratio": "39.3%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -505939,14 +505939,14 @@ "Error & Exception Exposure": "86.03%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.99%", - "API Exposure": "7.21%", + "API Exposure": "6.63%", "Concurrency Exposure": "0.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": "99.56%", + "Documentation Exposure": "99.02%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -506002,7 +506002,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 9, + "Exposed API / Public Exports": 8, "State Mutations / Variable Reassignments": 15, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -506110,9 +506110,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9327.58, - "Y": 37.97, - "Z": 4446.45 + "X": 9327.89, + "Y": 37.96, + "Z": 4446.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -506124,7 +506124,7 @@ "Total LOC": 60, "Coding LOC": 20, "Documentation LOC": 36, - "Structural Magnitude": 28.2, + "Structural Magnitude": 27.2, "Control Flow Ratio": "36.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -506137,14 +506137,14 @@ "Error & Exception Exposure": "96.69%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.9%", - "API Exposure": "0.56%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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": "43.0%", + "Documentation Exposure": "21.72%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -506200,7 +506200,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -506315,9 +506315,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10222.69, + "X": 10222.66, "Y": -17.72, - "Z": 4662.12 + "Z": 4662.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -506329,7 +506329,7 @@ "Total LOC": 589, "Coding LOC": 480, "Documentation LOC": 75, - "Structural Magnitude": 573.3, + "Structural Magnitude": 572.3, "Control Flow Ratio": "37.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -506342,14 +506342,14 @@ "Error & Exception Exposure": "95.32%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "3.24%", + "API Exposure": "3.08%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "9.66%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.82%", + "Documentation Exposure": "35.96%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -506795,7 +506795,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 20, + "Exposed API / Public Exports": 19, "State Mutations / Variable Reassignments": 333, "Commented-out Code (Dead Logic)": 5, "Structured Documentation Blocks": 0, @@ -506910,9 +506910,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10428.48, + "X": 10428.39, "Y": -3.89, - "Z": 3809.37 + "Z": 3809.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -506924,7 +506924,7 @@ "Total LOC": 147, "Coding LOC": 93, "Documentation LOC": 38, - "Structural Magnitude": 129.26, + "Structural Magnitude": 128.26, "Control Flow Ratio": "42.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -506937,14 +506937,14 @@ "Error & Exception Exposure": "87.56%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "2.76%", + "API Exposure": "2.43%", "Concurrency Exposure": "0.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": "80.3%", + "Documentation Exposure": "74.1%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -507040,7 +507040,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 9, + "Exposed API / Public Exports": 8, "State Mutations / Variable Reassignments": 39, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -507151,9 +507151,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10522.09, - "Y": -26.44, - "Z": 4419.16 + "X": 10521.83, + "Y": -26.43, + "Z": 4419.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -507165,7 +507165,7 @@ "Total LOC": 69, "Coding LOC": 30, "Documentation LOC": 28, - "Structural Magnitude": 39.0, + "Structural Magnitude": 38.0, "Control Flow Ratio": "20.0%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -507178,7 +507178,7 @@ "Error & Exception Exposure": "79.41%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.73%", - "API Exposure": "11.23%", + "API Exposure": "10.88%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "98.97%", "Commented Logic Exposure": "0.0%", @@ -507271,7 +507271,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 16, + "Exposed API / Public Exports": 15, "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -511994,9 +511994,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5839.41, + "X": -5839.24, "Y": -150.43, - "Z": -5666.76 + "Z": -5666.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512313,9 +512313,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4954.9, + "X": -4954.73, "Y": -240.07, - "Z": -5699.36 + "Z": -5699.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512473,9 +512473,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5829.4, + "X": -5829.23, "Y": 41.65, - "Z": -6531.81 + "Z": -6531.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512765,9 +512765,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6200.09, + "X": -6199.93, "Y": -82.15, - "Z": -5843.46 + "Z": -5843.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512958,9 +512958,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5258.72, + "X": -5258.55, "Y": 63.42, - "Z": -6607.97 + "Z": -6607.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513115,9 +513115,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5543.5, + "X": -5543.33, "Y": -102.3, - "Z": -5998.68 + "Z": -5998.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513444,9 +513444,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5746.03, + "X": -5745.87, "Y": -234.62, - "Z": -5440.17 + "Z": -5440.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513607,9 +513607,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5493.51, + "X": -5493.34, "Y": -27.79, - "Z": -6257.39 + "Z": -6257.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513854,9 +513854,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5116.37, + "X": -5116.21, "Y": -23.65, - "Z": -6121.28 + "Z": -6121.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514016,9 +514016,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5293.23, + "X": -5293.07, "Y": -202.88, - "Z": -5486.08 + "Z": -5485.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514338,9 +514338,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6118.29, + "X": -6118.13, "Y": 1.59, - "Z": -6143.26 + "Z": -6143.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514600,9 +514600,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5337.67, + "X": -5337.51, "Y": -269.26, - "Z": -5122.43 + "Z": -5122.25 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -514757,9 +514757,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6195.19, + "X": -6195.02, "Y": 77.41, - "Z": -6369.7 + "Z": -6369.52 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -540712,9 +540712,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4890.3, + "X": -4890.15, "Y": 4.45, - "Z": -7342.65 + "Z": -7342.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540970,9 +540970,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4565.5, + "X": -4565.35, "Y": 56.66, - "Z": -7318.44 + "Z": -7318.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541418,9 +541418,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5279.06, + "X": -5278.91, "Y": -8.05, - "Z": -7353.87 + "Z": -7353.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541596,9 +541596,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4323.61, + "X": -4323.46, "Y": 121.9, - "Z": -6677.26 + "Z": -6677.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541824,9 +541824,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4381.16, + "X": -4381.02, "Y": 48.05, - "Z": -7530.55 + "Z": -7530.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542032,9 +542032,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5113.06, + "X": -5112.91, "Y": -0.05, - "Z": -7029.32 + "Z": -7029.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542250,9 +542250,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4861.09, + "X": -4860.94, "Y": 100.67, - "Z": -6802.87 + "Z": -6802.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542498,9 +542498,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4470.43, + "X": -4470.28, "Y": 187.15, - "Z": -6214.26 + "Z": -6214.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542686,9 +542686,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4073.68, + "X": -4073.53, "Y": 196.82, - "Z": -6679.43 + "Z": -6679.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542904,9 +542904,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5192.22, + "X": -5192.07, "Y": 53.47, - "Z": -6714.14 + "Z": -6713.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543162,9 +543162,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4672.31, + "X": -4672.16, "Y": 123.45, - "Z": -6896.93 + "Z": -6896.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543720,9 +543720,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4823.85, + "X": -4823.7, "Y": 93.56, - "Z": -6399.54 + "Z": -6399.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543918,9 +543918,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4192.76, + "X": -4192.62, "Y": 86.28, - "Z": -7183.01 + "Z": -7182.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544124,7 +544124,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "66.23%", "Error & Exception Exposure": "92.36%", - "Tech Debt Exposure": "73.68%", + "Tech Debt Exposure": "2.7%", "Testing Exposure": "34.33%", "API Exposure": "0.05%", "Concurrency Exposure": "1.08%", @@ -544175,7 +544175,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.55%", "Error & Exception Exposure": "99.96%", - "Tech Debt Exposure": "91.62%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -544324,7 +544324,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -544393,7 +544393,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "34.11%", "Error & Exception Exposure": "76.23%", - "Tech Debt Exposure": "95.2%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -544512,7 +544512,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -544581,7 +544581,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "94.37%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -544690,7 +544690,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -544759,7 +544759,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "92.96%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -544868,7 +544868,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -544937,7 +544937,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "39.76%", "Error & Exception Exposure": "89.06%", - "Tech Debt Exposure": "72.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -545066,7 +545066,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -545135,7 +545135,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "94.59%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.68%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -545244,7 +545244,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -545313,7 +545313,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.99%", "Error & Exception Exposure": "99.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.98%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -545422,7 +545422,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -545491,7 +545491,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "94.14%", - "Tech Debt Exposure": "99.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.92%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -545610,7 +545610,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -545679,7 +545679,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.48%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "35.59%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.89%", "Concurrency Exposure": "0.0%", @@ -545868,7 +545868,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -545937,7 +545937,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "76.25%", "Error & Exception Exposure": "77.86%", - "Tech Debt Exposure": "89.91%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.62%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -546066,7 +546066,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -546135,7 +546135,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.91%", "Error & Exception Exposure": "96.71%", - "Tech Debt Exposure": "52.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -546274,7 +546274,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -546343,7 +546343,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "32.54%", "Error & Exception Exposure": "91.21%", - "Tech Debt Exposure": "10.05%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "18.33%", @@ -546542,7 +546542,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -546613,7 +546613,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.89%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "19.25%", + "Tech Debt Exposure": "11.43%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -546882,7 +546882,7 @@ "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -546951,7 +546951,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "93.25%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.67%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -547050,7 +547050,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -547119,7 +547119,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.79%", "Error & Exception Exposure": "98.62%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -547228,7 +547228,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -547297,7 +547297,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "36.69%", "Error & Exception Exposure": "84.72%", - "Tech Debt Exposure": "68.5%", + "Tech Debt Exposure": "34.54%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -547416,7 +547416,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -547489,7 +547489,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "86.94%", - "Tech Debt Exposure": "18.24%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -547638,7 +547638,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -547672,7 +547672,7 @@ } }, "shell/curl": { - "Directory Group Magnitude": 2458.48, + "Directory Group Magnitude": 2457.48, "File Count": 20, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "95.0%", @@ -547681,16 +547681,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "60.32%", "Error & Exception Exposure": "56.64%", - "Tech Debt Exposure": "77.66%", + "Tech Debt Exposure": "9.29%", "Testing Exposure": "17.76%", - "API Exposure": "1.64%", + "API Exposure": "1.45%", "Concurrency Exposure": "3.28%", "State Flux Exposure": "55.0%", "Commented Logic Exposure": "0.77%", "Specification Exposure": "85.67%", "Instability Exposure": "47.5%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.6%", + "Documentation Exposure": "33.39%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -547889,7 +547889,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "85.37%", "Error & Exception Exposure": "78.78%", - "Tech Debt Exposure": "56.07%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "65.54%", @@ -548038,7 +548038,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -548109,7 +548109,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "32.53%", "Error & Exception Exposure": "65.64%", - "Tech Debt Exposure": "97.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -548218,7 +548218,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -548290,7 +548290,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "79.55%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.99%", "Testing Exposure": "3.24%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -548399,7 +548399,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -548468,7 +548468,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "37.75%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -548567,7 +548567,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -548636,7 +548636,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.63%", "Error & Exception Exposure": "91.33%", - "Tech Debt Exposure": "85.14%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -548765,7 +548765,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -548834,7 +548834,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.84%", "Error & Exception Exposure": "96.21%", - "Tech Debt Exposure": "84.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.73%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -548983,7 +548983,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -549027,9 +549027,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5665.04, - "Y": 186.55, - "Z": -2401.29 + "X": 5665.26, + "Y": 186.63, + "Z": -2399.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -549041,7 +549041,7 @@ "Total LOC": 42, "Coding LOC": 12, "Documentation LOC": 27, - "Structural Magnitude": 5.34, + "Structural Magnitude": 4.34, "Control Flow Ratio": "25.0%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -549054,14 +549054,14 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.03%", - "API Exposure": "3.69%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "51.85%", + "Documentation Exposure": "27.63%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -549087,7 +549087,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -549222,7 +549222,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.37%", "Error & Exception Exposure": "65.25%", - "Tech Debt Exposure": "95.79%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -549331,7 +549331,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -549400,7 +549400,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.58%", "Error & Exception Exposure": "96.91%", - "Tech Debt Exposure": "12.07%", + "Tech Debt Exposure": "9.43%", "Testing Exposure": "80.0%", "API Exposure": "1.05%", "Concurrency Exposure": "0.0%", @@ -549769,7 +549769,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -549840,7 +549840,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.86%", "Error & Exception Exposure": "91.18%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.99%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -549969,7 +549969,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -550038,7 +550038,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.99%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.38%", "API Exposure": "8.41%", "Concurrency Exposure": "0.0%", @@ -550137,7 +550137,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -550206,7 +550206,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.94%", "Error & Exception Exposure": "65.83%", - "Tech Debt Exposure": "85.38%", + "Tech Debt Exposure": "76.43%", "Testing Exposure": "80.0%", "API Exposure": "6.29%", "Concurrency Exposure": "0.0%", @@ -550415,7 +550415,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 5, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -550490,7 +550490,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "58.71%", - "Tech Debt Exposure": "89.01%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -550639,7 +550639,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -550711,7 +550711,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "65.38%", "Error & Exception Exposure": "91.83%", - "Tech Debt Exposure": "86.14%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.77%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -550880,7 +550880,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -550952,7 +550952,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "76.0%", "Error & Exception Exposure": "82.63%", - "Tech Debt Exposure": "62.25%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -551061,7 +551061,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -551133,7 +551133,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.99%", "API Exposure": "9.36%", "Concurrency Exposure": "0.0%", @@ -551232,7 +551232,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -551301,7 +551301,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.11%", "Error & Exception Exposure": "80.0%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.69%", "API Exposure": "4.0%", "Concurrency Exposure": "0.0%", @@ -551420,7 +551420,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -551489,7 +551489,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -551588,7 +551588,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -551657,7 +551657,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -551756,7 +551756,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -569853,9 +569853,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5662.91, + "X": -5662.9, "Y": 206.9, - "Z": 9184.24 + "Z": 9184.23 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -570010,9 +570010,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -5649.75, + "X": -5649.74, "Y": 177.77, - "Z": 10140.72 + "Z": 10140.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -570365,9 +570365,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -4929.0, + "X": -4928.99, "Y": 202.14, - "Z": 9583.46 + "Z": 9583.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -570544,9 +570544,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -5074.36, + "X": -5074.35, "Y": 201.18, - "Z": 10128.3 + "Z": 10128.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -570997,9 +570997,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -5893.51, + "X": -5893.5, "Y": 197.64, - "Z": 9522.08 + "Z": 9522.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -571262,9 +571262,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -5292.26, + "X": -5292.25, "Y": 265.74, - "Z": 9344.27 + "Z": 9344.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -571565,7 +571565,7 @@ "2. Topological Coordinates": { "X": -5395.18, "Y": 235.59, - "Z": 9914.43 + "Z": 9914.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572051,9 +572051,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -5475.12, + "X": -5475.11, "Y": 156.02, - "Z": 10317.6 + "Z": 10317.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -574732,9 +574732,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4686.53, + "X": -4686.41, "Y": -38.82, - "Z": -7972.96 + "Z": -7972.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575225,9 +575225,9 @@ "Identity Proof": "Sibling Anchor (C++)" }, "2. Topological Coordinates": { - "X": -4207.51, + "X": -4207.38, "Y": 30.72, - "Z": -8279.4 + "Z": -8279.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575385,9 +575385,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -5239.07, + "X": -5238.95, "Y": -77.73, - "Z": -8260.9 + "Z": -8260.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575598,9 +575598,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4670.85, + "X": -4670.72, "Y": 13.64, - "Z": -8727.84 + "Z": -8727.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575873,9 +575873,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4388.41, + "X": -4388.29, "Y": -140.05, - "Z": -7902.17 + "Z": -7901.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -576081,9 +576081,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4953.06, + "X": -4952.93, "Y": -172.93, - "Z": -8003.55 + "Z": -8003.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -576379,9 +576379,9 @@ "Identity Proof": "Ecosystem Consensus Lock (81% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4801.45, + "X": -4801.33, "Y": -222.35, - "Z": -7465.83 + "Z": -7465.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -576576,7 +576576,7 @@ } }, "shell/brew": { - "Directory Group Magnitude": 2060.32, + "Directory Group Magnitude": 2059.32, "File Count": 9, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "88.9%", @@ -576585,16 +576585,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "29.34%", "Error & Exception Exposure": "36.82%", - "Tech Debt Exposure": "54.96%", + "Tech Debt Exposure": "41.52%", "Testing Exposure": "36.31%", - "API Exposure": "1.17%", + "API Exposure": "1.12%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "40.62%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "72.59%", "Instability Exposure": "44.44%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.67%", + "Documentation Exposure": "14.01%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -576993,7 +576993,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.33%", "Error & Exception Exposure": "44.67%", - "Tech Debt Exposure": "17.44%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "2.01%", "Concurrency Exposure": "0.0%", @@ -577362,7 +577362,7 @@ "Design Short Vars": 1, "Design Long Vars": 9, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -578021,7 +578021,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 36, + "Orphaned Logic": 35, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -578102,7 +578102,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.62%", "Error & Exception Exposure": "58.46%", - "Tech Debt Exposure": "98.8%", + "Tech Debt Exposure": "97.33%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -578321,7 +578321,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -578398,7 +578398,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.35%", "Error & Exception Exposure": "44.48%", - "Tech Debt Exposure": "78.45%", + "Tech Debt Exposure": "76.35%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -579887,7 +579887,7 @@ "Design Short Vars": 2, "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 20, + "Orphaned Logic": 19, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -579952,9 +579952,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -461.85, - "Y": 6.54, - "Z": 7329.89 + "X": -461.66, + "Y": 6.51, + "Z": 7329.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -579966,7 +579966,7 @@ "Total LOC": 171, "Coding LOC": 135, "Documentation LOC": 3, - "Structural Magnitude": 51.7, + "Structural Magnitude": 50.7, "Control Flow Ratio": "48.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -579979,14 +579979,14 @@ "Error & Exception Exposure": "55.93%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", - "API Exposure": "8.54%", + "API Exposure": "8.08%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.06%", + "Documentation Exposure": "33.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -580142,7 +580142,7 @@ "Type/Safety Bypasses": 7, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 8, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 13, @@ -580451,7 +580451,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -580550,7 +580550,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -580586,7 +580586,7 @@ } }, "shell/moby": { - "Directory Group Magnitude": 2038.02, + "Directory Group Magnitude": 2036.02, "File Count": 13, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -580594,16 +580594,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "71.16%", "Error & Exception Exposure": "76.58%", - "Tech Debt Exposure": "62.73%", + "Tech Debt Exposure": "17.41%", "Testing Exposure": "38.2%", - "API Exposure": "1.59%", + "API Exposure": "0.89%", "Concurrency Exposure": "6.47%", "State Flux Exposure": "79.72%", "Commented Logic Exposure": "0.94%", "Specification Exposure": "92.82%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.84%", + "Documentation Exposure": "28.55%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -580645,7 +580645,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.4%", "Error & Exception Exposure": "89.09%", - "Tech Debt Exposure": "32.11%", + "Tech Debt Exposure": "16.7%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -581104,7 +581104,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -581148,9 +581148,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4767.54, - "Y": -100.34, - "Z": 4126.58 + "X": -4767.83, + "Y": -100.37, + "Z": 4126.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -581162,7 +581162,7 @@ "Total LOC": 30, "Coding LOC": 25, "Documentation LOC": 0, - "Structural Magnitude": 30.9, + "Structural Magnitude": 29.9, "Control Flow Ratio": "75.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -581175,14 +581175,14 @@ "Error & Exception Exposure": "87.21%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", - "API Exposure": "4.04%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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": "75.23%", + "Documentation Exposure": "55.53%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -581218,7 +581218,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 13, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -581326,9 +581326,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5984.28, - "Y": -209.53, - "Z": 4189.11 + "X": -5983.78, + "Y": -209.52, + "Z": 4188.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -581340,7 +581340,7 @@ "Total LOC": 14, "Coding LOC": 10, "Documentation LOC": 1, - "Structural Magnitude": 16.9, + "Structural Magnitude": 15.9, "Control Flow Ratio": "100.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -581353,14 +581353,14 @@ "Error & Exception Exposure": "91.68%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.23%", - "API Exposure": "5.12%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.06%", + "Documentation Exposure": "52.02%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -581396,7 +581396,7 @@ "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -581529,7 +581529,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "95.49%", - "Tech Debt Exposure": "56.37%", + "Tech Debt Exposure": "48.05%", "Testing Exposure": "80.0%", "API Exposure": "0.55%", "Concurrency Exposure": "0.0%", @@ -581828,7 +581828,7 @@ "Design Short Vars": 1, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -581899,7 +581899,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "88.91%", "Error & Exception Exposure": "96.45%", - "Tech Debt Exposure": "29.78%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "4.05%", "Concurrency Exposure": "0.0%", @@ -582128,7 +582128,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -582197,7 +582197,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.16%", "Error & Exception Exposure": "99.93%", - "Tech Debt Exposure": "51.42%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -582376,7 +582376,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -582445,7 +582445,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.66%", "Error & Exception Exposure": "98.21%", - "Tech Debt Exposure": "35.9%", + "Tech Debt Exposure": "17.93%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -582654,7 +582654,7 @@ "Design Short Vars": 0, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -582725,7 +582725,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.93%", "Error & Exception Exposure": "94.91%", - "Tech Debt Exposure": "82.02%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -582874,7 +582874,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -582943,7 +582943,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "30.02%", "Error & Exception Exposure": "55.71%", - "Tech Debt Exposure": "94.2%", + "Tech Debt Exposure": "43.62%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -583052,7 +583052,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -583121,7 +583121,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.97%", "Error & Exception Exposure": "90.54%", - "Tech Debt Exposure": "99.48%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.83%", "API Exposure": "6.93%", "Concurrency Exposure": "0.0%", @@ -583250,7 +583250,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -583321,7 +583321,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.98%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -583430,7 +583430,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -583499,7 +583499,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "96.27%", - "Tech Debt Exposure": "34.17%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "84.09%", @@ -583678,7 +583678,7 @@ "Design Short Vars": 2, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -583747,7 +583747,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.04%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -583856,7 +583856,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -598558,9 +598558,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 10254.35, + "X": 10254.32, "Y": -161.17, - "Z": 4667.33 + "Z": 4667.31 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -598716,9 +598716,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10869.27, + "X": 10869.24, "Y": 5.31, - "Z": 5612.6 + "Z": 5612.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -599388,9 +599388,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10581.62, + "X": 10581.59, "Y": -146.51, - "Z": 4777.9 + "Z": 4777.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -600090,9 +600090,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10399.08, + "X": 10399.04, "Y": 6.68, - "Z": 5669.81 + "Z": 5669.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -600279,9 +600279,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10025.79, + "X": 10025.76, "Y": -134.9, - "Z": 5160.73 + "Z": 5160.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -600594,9 +600594,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 11048.8, + "X": 11048.77, "Y": -53.72, - "Z": 4852.2 + "Z": 4852.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -600974,9 +600974,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10557.0, + "X": 10556.97, "Y": -57.51, - "Z": 5203.15 + "Z": 5203.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -602573,9 +602573,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10275.25, + "X": 10275.22, "Y": 10.63, - "Z": 5512.08 + "Z": 5512.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627569,7 +627569,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "52.27%", "Error & Exception Exposure": "84.37%", - "Tech Debt Exposure": "84.24%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "21.7%", "API Exposure": "0.44%", "Concurrency Exposure": "0.99%", @@ -627595,9 +627595,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4957.27, + "X": -4957.11, "Y": 11.21, - "Z": -5613.05 + "Z": -5612.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627620,7 +627620,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "97.73%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.59%", "API Exposure": "3.93%", "Concurrency Exposure": "0.0%", @@ -627729,7 +627729,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -627773,9 +627773,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3539.71, + "X": -3539.54, "Y": 150.86, - "Z": -6136.43 + "Z": -6136.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627798,7 +627798,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "51.47%", "Error & Exception Exposure": "87.5%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.58%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -627907,7 +627907,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -627951,9 +627951,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4286.79, + "X": -4286.62, "Y": -67.81, - "Z": -4875.88 + "Z": -4875.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627976,7 +627976,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.64%", "Error & Exception Exposure": "99.91%", - "Tech Debt Exposure": "62.25%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.77%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -628095,7 +628095,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -628139,9 +628139,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3852.5, + "X": -3852.33, "Y": 152.92, - "Z": -5935.01 + "Z": -5934.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628164,7 +628164,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -628273,7 +628273,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -628317,9 +628317,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4721.36, + "X": -4721.19, "Y": -28.59, - "Z": -5111.08 + "Z": -5110.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628342,7 +628342,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.2%", "Error & Exception Exposure": "99.89%", - "Tech Debt Exposure": "99.79%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.95%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -628471,7 +628471,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -628515,9 +628515,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4394.91, + "X": -4394.75, "Y": -40.58, - "Z": -5237.62 + "Z": -5237.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628540,7 +628540,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.87%", "Error & Exception Exposure": "99.88%", - "Tech Debt Exposure": "52.9%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -628729,7 +628729,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -628773,9 +628773,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4133.91, + "X": -4133.75, "Y": 60.19, - "Z": -5318.67 + "Z": -5318.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628798,7 +628798,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "90.52%", "Error & Exception Exposure": "99.64%", - "Tech Debt Exposure": "25.78%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -628927,7 +628927,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -628971,9 +628971,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3590.28, + "X": -3590.11, "Y": -102.43, - "Z": -5103.94 + "Z": -5103.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628996,7 +628996,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.26%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.83%", "API Exposure": "3.71%", "Concurrency Exposure": "0.0%", @@ -629105,7 +629105,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -629149,9 +629149,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3290.64, + "X": -3290.47, "Y": -27.2, - "Z": -5440.63 + "Z": -5440.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629174,7 +629174,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "95.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -629273,7 +629273,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -629317,9 +629317,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4730.43, + "X": -4730.26, "Y": 167.57, - "Z": -5963.53 + "Z": -5963.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629342,7 +629342,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "22.27%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -629451,7 +629451,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -629495,9 +629495,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3940.88, + "X": -3940.72, "Y": 253.61, - "Z": -6289.25 + "Z": -6289.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629520,7 +629520,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -629619,7 +629619,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -629663,9 +629663,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4606.29, + "X": -4606.12, "Y": 25.64, - "Z": -5426.09 + "Z": -5425.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629688,7 +629688,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "93.74%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "53.67%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -629897,7 +629897,7 @@ "Design Short Vars": 6, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -629941,9 +629941,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4539.63, + "X": -4539.46, "Y": -117.75, - "Z": -5015.81 + "Z": -5015.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629966,7 +629966,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "27.97%", "Error & Exception Exposure": "90.12%", - "Tech Debt Exposure": "97.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -630075,7 +630075,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -630119,9 +630119,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4099.0, + "X": -4098.83, "Y": 154.95, - "Z": -6010.71 + "Z": -6010.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630144,7 +630144,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.66%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "24.93%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "23.69%", @@ -630293,7 +630293,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -630339,9 +630339,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4869.25, + "X": -4869.08, "Y": -91.87, - "Z": -5054.33 + "Z": -5054.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630364,7 +630364,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "91.21%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.89%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -630463,7 +630463,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -630507,9 +630507,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3883.87, + "X": -3883.7, "Y": -45.39, - "Z": -5207.75 + "Z": -5207.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630532,7 +630532,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.56%", "Error & Exception Exposure": "99.92%", - "Tech Debt Exposure": "55.25%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "2.84%", "Concurrency Exposure": "0.0%", @@ -630701,7 +630701,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -630745,9 +630745,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4192.94, + "X": -4192.78, "Y": -113.36, - "Z": -4792.73 + "Z": -4792.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630770,7 +630770,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "21.15%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -630879,7 +630879,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -630923,9 +630923,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4798.61, + "X": -4798.45, "Y": 68.97, - "Z": -5659.82 + "Z": -5659.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630948,7 +630948,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.51%", "Error & Exception Exposure": "91.92%", - "Tech Debt Exposure": "99.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631077,7 +631077,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -631121,9 +631121,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3579.9, + "X": -3579.73, "Y": -15.87, - "Z": -5240.66 + "Z": -5240.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631146,7 +631146,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "64.41%", "Error & Exception Exposure": "89.16%", - "Tech Debt Exposure": "78.81%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631245,7 +631245,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -631289,9 +631289,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4272.65, + "X": -4272.48, "Y": 227.2, - "Z": -6270.76 + "Z": -6270.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631314,7 +631314,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.12%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631413,7 +631413,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -631460,9 +631460,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3423.12, + "X": -3422.95, "Y": 105.78, - "Z": -5598.06 + "Z": -5597.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631485,7 +631485,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.49%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.63%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631594,7 +631594,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -631638,9 +631638,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3909.35, + "X": -3909.18, "Y": -100.54, - "Z": -4686.25 + "Z": -4686.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631663,7 +631663,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.61%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.24%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631782,7 +631782,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -631826,9 +631826,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3720.74, + "X": -3720.58, "Y": 101.34, - "Z": -5637.37 + "Z": -5637.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631851,7 +631851,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "93.66%", "Error & Exception Exposure": "98.24%", - "Tech Debt Exposure": "72.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631990,7 +631990,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -632036,9 +632036,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4431.23, + "X": -4431.06, "Y": 164.03, - "Z": -6032.84 + "Z": -6032.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632061,7 +632061,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.3%", "Error & Exception Exposure": "97.15%", - "Tech Debt Exposure": "99.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -632200,7 +632200,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -633719,7 +633719,7 @@ } }, "lua/pandoc": { - "Directory Group Magnitude": 1355.84, + "Directory Group Magnitude": 1353.84, "File Count": 26, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "92.3%", @@ -633728,9 +633728,9 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "36.29%", "Error & Exception Exposure": "60.0%", - "Tech Debt Exposure": "58.2%", + "Tech Debt Exposure": "35.4%", "Testing Exposure": "4.88%", - "API Exposure": "2.92%", + "API Exposure": "2.79%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "79.88%", "Commented Logic Exposure": "1.12%", @@ -633754,9 +633754,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3560.95, + "X": -3560.96, "Y": -92.25, - "Z": -3944.45 + "Z": -3944.44 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -633911,9 +633911,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": -5299.26, + "X": -5299.23, "Y": -83.52, - "Z": -4529.78 + "Z": -4529.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -634068,9 +634068,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4930.19, + "X": -4930.16, "Y": -133.7, - "Z": -4825.08 + "Z": -4825.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634212,7 +634212,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -634258,7 +634258,7 @@ "2. Topological Coordinates": { "X": -3767.76, "Y": -54.7, - "Z": -4785.01 + "Z": -4784.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634424,9 +634424,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4447.8, + "X": -4447.78, "Y": -83.88, - "Z": -4726.75 + "Z": -4726.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634592,7 +634592,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4782.75, + "X": -4782.72, "Y": -82.78, "Z": -3579.09 }, @@ -634760,9 +634760,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4875.37, + "X": -4875.33, "Y": -114.56, - "Z": -4332.33 + "Z": -4332.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634785,7 +634785,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.12%", "Error & Exception Exposure": "98.81%", - "Tech Debt Exposure": "99.89%", + "Tech Debt Exposure": "98.07%", "Testing Exposure": "2.6%", "API Exposure": "5.74%", "Concurrency Exposure": "0.0%", @@ -634934,7 +634934,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -634978,7 +634978,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4630.24, + "X": -4630.21, "Y": -114.75, "Z": -3720.91 }, @@ -635003,7 +635003,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "58.26%", "Error & Exception Exposure": "88.57%", - "Tech Debt Exposure": "33.3%", + "Tech Debt Exposure": "22.27%", "Testing Exposure": "2.45%", "API Exposure": "0.38%", "Concurrency Exposure": "0.0%", @@ -635172,7 +635172,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -635216,9 +635216,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3679.35, + "X": -3679.36, "Y": -92.75, - "Z": -4249.41 + "Z": -4249.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -635350,7 +635350,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -635394,9 +635394,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4147.31, + "X": -4147.3, "Y": -50.21, - "Z": -4889.73 + "Z": -4889.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -635587,7 +635587,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "21.64%", "Error & Exception Exposure": "1.53%", - "Tech Debt Exposure": "27.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -636096,7 +636096,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -636142,7 +636142,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5147.92, + "X": -5147.89, "Y": -161.67, "Z": -3657.94 }, @@ -636167,7 +636167,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.09%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.67%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -636276,7 +636276,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -636320,9 +636320,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4226.33, + "X": -4226.32, "Y": -55.46, - "Z": -5134.6 + "Z": -5134.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636488,9 +636488,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4452.25, + "X": -4452.23, "Y": -160.13, - "Z": -3202.76 + "Z": -3202.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636645,9 +636645,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3809.06, + "X": -3809.07, "Y": -88.51, - "Z": -3732.11 + "Z": -3732.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636823,9 +636823,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4153.24, + "X": -4153.23, "Y": -87.86, - "Z": -3559.7 + "Z": -3559.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637007,7 +637007,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -637078,7 +637078,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.2%", "API Exposure": "2.63%", "Concurrency Exposure": "0.0%", @@ -637187,7 +637187,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -637231,9 +637231,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5188.45, + "X": -5187.76, "Y": -135.86, - "Z": -3994.62 + "Z": -3994.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637245,7 +637245,7 @@ "Total LOC": 11, "Coding LOC": 10, "Documentation LOC": 0, - "Structural Magnitude": 13.9, + "Structural Magnitude": 12.9, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -637258,7 +637258,7 @@ "Error & Exception Exposure": "91.68%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.81%", - "API Exposure": "8.84%", + "API Exposure": "5.58%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", @@ -637301,7 +637301,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -637409,9 +637409,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4968.29, + "X": -4968.25, "Y": -64.92, - "Z": -4638.04 + "Z": -4638.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637434,7 +637434,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "60.48%", "Error & Exception Exposure": "74.55%", - "Tech Debt Exposure": "90.78%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -637563,7 +637563,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -637610,9 +637610,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4500.67, + "X": -4500.64, "Y": -150.22, - "Z": -3423.89 + "Z": -3423.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637635,7 +637635,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.19%", "Error & Exception Exposure": "67.96%", - "Tech Debt Exposure": "78.81%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "1.03%", "Concurrency Exposure": "0.0%", @@ -637814,7 +637814,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -637861,9 +637861,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4662.87, + "X": -4662.84, "Y": -97.63, - "Z": -4727.73 + "Z": -4727.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637886,7 +637886,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "23.94%", - "Tech Debt Exposure": "38.83%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -638195,7 +638195,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -638243,9 +638243,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4389.77, + "X": -4389.76, "Y": -99.43, - "Z": -4454.89 + "Z": -4454.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638268,7 +638268,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "62.01%", "Error & Exception Exposure": "35.6%", - "Tech Debt Exposure": "27.5%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -638587,7 +638587,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -638634,7 +638634,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5012.91, + "X": -5012.87, "Y": -123.45, "Z": -3846.89 }, @@ -638659,7 +638659,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "74.51%", "Error & Exception Exposure": "31.0%", - "Tech Debt Exposure": "76.65%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.34%", "API Exposure": "0.23%", "Concurrency Exposure": "0.0%", @@ -638838,7 +638838,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -638888,7 +638888,7 @@ "2. Topological Coordinates": { "X": -3900.71, "Y": -133.74, - "Z": -4235.95 + "Z": -4235.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638911,7 +638911,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.07%", "Error & Exception Exposure": "40.04%", - "Tech Debt Exposure": "40.2%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -639100,7 +639100,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -639147,9 +639147,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4383.92, + "X": -4383.9, "Y": -138.4, - "Z": -4194.69 + "Z": -4194.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -639161,7 +639161,7 @@ "Total LOC": 370, "Coding LOC": 277, "Documentation LOC": 45, - "Structural Magnitude": 536.84, + "Structural Magnitude": 535.84, "Control Flow Ratio": "35.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -639174,14 +639174,14 @@ "Error & Exception Exposure": "94.54%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "11.21%", + "API Exposure": "11.15%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.97%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.96%", + "Documentation Exposure": "99.95%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -639667,7 +639667,7 @@ "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 80, + "Exposed API / Public Exports": 79, "State Mutations / Variable Reassignments": 188, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -639953,7 +639953,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "83.04%", "Error & Exception Exposure": "95.16%", - "Tech Debt Exposure": "48.9%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "35.83%", "API Exposure": "0.74%", "Concurrency Exposure": "0.0%", @@ -640004,7 +640004,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "78.66%", "Error & Exception Exposure": "98.21%", - "Tech Debt Exposure": "47.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.16%", "Concurrency Exposure": "0.0%", @@ -640143,7 +640143,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -640218,7 +640218,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "78.12%", "Error & Exception Exposure": "95.15%", - "Tech Debt Exposure": "38.83%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -640437,7 +640437,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -640506,7 +640506,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "79.32%", "Error & Exception Exposure": "97.64%", - "Tech Debt Exposure": "50.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.66%", "API Exposure": "0.18%", "Concurrency Exposure": "0.0%", @@ -640645,7 +640645,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -640721,7 +640721,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.32%", "Error & Exception Exposure": "84.53%", - "Tech Debt Exposure": "14.84%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "4.81%", "Concurrency Exposure": "0.0%", @@ -640970,7 +640970,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -641039,7 +641039,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.73%", "Error & Exception Exposure": "98.32%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.95%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -641168,7 +641168,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -641239,7 +641239,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.79%", "Error & Exception Exposure": "97.88%", - "Tech Debt Exposure": "75.57%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -641368,7 +641368,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -641442,7 +641442,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "86.37%", "Error & Exception Exposure": "94.41%", - "Tech Debt Exposure": "15.76%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -641801,7 +641801,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -662865,7 +662865,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "45.81%", "Error & Exception Exposure": "85.32%", - "Tech Debt Exposure": "89.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "15.6%", "API Exposure": "0.14%", "Concurrency Exposure": "1.33%", @@ -663073,7 +663073,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.29%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -663192,7 +663192,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -663261,7 +663261,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "79.82%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "98.93%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -663400,7 +663400,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -663469,7 +663469,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "93.15%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.8%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -663568,7 +663568,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -663637,7 +663637,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "81.56%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "82.02%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -663746,7 +663746,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -663815,7 +663815,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.97%", "Error & Exception Exposure": "99.96%", - "Tech Debt Exposure": "99.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.86%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -663944,7 +663944,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664013,7 +664013,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -664112,7 +664112,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664183,7 +664183,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.72%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.7%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -664282,7 +664282,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664353,7 +664353,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.72%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.7%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -664452,7 +664452,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664523,7 +664523,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "89.27%", - "Tech Debt Exposure": "92.41%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.01%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -664642,7 +664642,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664711,7 +664711,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.33%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "5.06%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -664840,7 +664840,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664909,7 +664909,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "11.43%", "Error & Exception Exposure": "88.95%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -665018,7 +665018,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -665087,7 +665087,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.62%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.81%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -665206,7 +665206,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -665275,7 +665275,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "36.63%", "Error & Exception Exposure": "82.81%", - "Tech Debt Exposure": "10.19%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "3.12%", "Concurrency Exposure": "30.53%", @@ -665474,7 +665474,7 @@ "Design Short Vars": 8, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -665546,7 +665546,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.49%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "4.85%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -665675,7 +665675,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -665744,7 +665744,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.91%", "Error & Exception Exposure": "99.3%", - "Tech Debt Exposure": "72.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -665883,7 +665883,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -665954,7 +665954,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.68%", "Error & Exception Exposure": "89.8%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.02%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666073,7 +666073,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -666142,7 +666142,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666241,7 +666241,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -666310,7 +666310,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.89%", "Error & Exception Exposure": "99.17%", - "Tech Debt Exposure": "99.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.78%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666419,7 +666419,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -666488,7 +666488,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "85.27%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.72%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666597,7 +666597,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -666666,7 +666666,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666765,7 +666765,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -666836,7 +666836,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666935,7 +666935,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -667006,7 +667006,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -667105,7 +667105,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -667149,7 +667149,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "83.72%", "Error & Exception Exposure": "95.81%", - "Tech Debt Exposure": "83.96%", + "Tech Debt Exposure": "33.33%", "Testing Exposure": "41.18%", "API Exposure": "0.39%", "Concurrency Exposure": "16.57%", @@ -667177,7 +667177,7 @@ "2. Topological Coordinates": { "X": -2807.34, "Y": 159.56, - "Z": 11274.34 + "Z": 11274.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -667200,7 +667200,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.94%", "Error & Exception Exposure": "99.94%", - "Tech Debt Exposure": "35.59%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "99.4%", @@ -667349,7 +667349,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -667393,9 +667393,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -2535.4, + "X": -2535.39, "Y": 99.32, - "Z": 10744.99 + "Z": 10744.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -668327,7 +668327,7 @@ "Design Short Vars": 15, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 78, + "Orphaned Logic": 77, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -668380,7 +668380,7 @@ "2. Topological Coordinates": { "X": -2148.73, "Y": -69.1, - "Z": 10484.48 + "Z": 10484.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -668403,7 +668403,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "91.53%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.78%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -668502,7 +668502,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -668548,7 +668548,7 @@ "2. Topological Coordinates": { "X": -3034.62, "Y": 106.69, - "Z": 10928.61 + "Z": 10928.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -668571,7 +668571,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.97%", "Error & Exception Exposure": "89.57%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -668670,7 +668670,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -668714,9 +668714,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -2529.42, + "X": -2529.41, "Y": 0.02, - "Z": 10439.0 + "Z": 10438.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -668739,7 +668739,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.69%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "68.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -668898,7 +668898,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -668942,9 +668942,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -2249.07, + "X": -2249.06, "Y": 82.27, - "Z": 11244.5 + "Z": 11244.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -668967,7 +668967,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.67%", "Error & Exception Exposure": "94.68%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.97%", "Testing Exposure": "2.74%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -669106,7 +669106,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -684839,9 +684839,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 11161.51, + "X": 11161.48, "Y": 4.24, - "Z": 5673.98 + "Z": 5673.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685248,7 +685248,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "60.47%", "Error & Exception Exposure": "82.57%", - "Tech Debt Exposure": "85.2%", + "Tech Debt Exposure": "11.22%", "Testing Exposure": "13.95%", "API Exposure": "0.0%", "Concurrency Exposure": "9.1%", @@ -685456,7 +685456,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.94%", "Error & Exception Exposure": "98.15%", - "Tech Debt Exposure": "51.21%", + "Tech Debt Exposure": "24.52%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "81.96%", @@ -685685,7 +685685,7 @@ "Design Short Vars": 5, "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -685754,7 +685754,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.75%", "Error & Exception Exposure": "99.18%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.91%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -685863,7 +685863,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -685932,7 +685932,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.27%", "Error & Exception Exposure": "98.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -686061,7 +686061,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -686130,7 +686130,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "99.75%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.9%", "API Exposure": "0.0%", "Concurrency Exposure": "100.0%", @@ -686239,7 +686239,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -686308,7 +686308,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -686407,7 +686407,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -686476,7 +686476,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "94.1%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -686585,7 +686585,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -686654,7 +686654,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.51%", "Error & Exception Exposure": "99.95%", - "Tech Debt Exposure": "99.79%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.79%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -686773,7 +686773,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -686842,7 +686842,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.62%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -686951,7 +686951,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -687020,7 +687020,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.91%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -687129,7 +687129,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -687198,7 +687198,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.73%", "Error & Exception Exposure": "96.89%", - "Tech Debt Exposure": "17.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -687447,7 +687447,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -687625,7 +687625,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -687694,7 +687694,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.95%", "Error & Exception Exposure": "86.52%", - "Tech Debt Exposure": "35.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -687873,7 +687873,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -687942,7 +687942,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.72%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.68%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688041,7 +688041,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -688110,7 +688110,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.73%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688209,7 +688209,7 @@ "Design Short Vars": 7, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -688278,7 +688278,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.72%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.68%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688387,7 +688387,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -688456,7 +688456,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.96%", "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "99.9%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.86%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688575,7 +688575,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -688644,7 +688644,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.61%", "Error & Exception Exposure": "99.7%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.98%", "Testing Exposure": "2.6%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688753,7 +688753,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -688822,7 +688822,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.89%", "Error & Exception Exposure": "99.95%", - "Tech Debt Exposure": "99.85%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.09%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688951,7 +688951,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -689020,7 +689020,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.72%", "Error & Exception Exposure": "99.91%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -689129,7 +689129,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -693738,7 +693738,7 @@ } }, "ruby/rails": { - "Directory Group Magnitude": 741.52, + "Directory Group Magnitude": 740.52, "File Count": 8, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "87.5%", @@ -693747,16 +693747,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "30.9%", "Error & Exception Exposure": "60.21%", - "Tech Debt Exposure": "44.67%", + "Tech Debt Exposure": "41.02%", "Testing Exposure": "50.6%", - "API Exposure": "1.14%", + "API Exposure": "1.11%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "76.05%", "Commented Logic Exposure": "6.49%", "Specification Exposure": "86.67%", "Instability Exposure": "43.75%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.09%", + "Documentation Exposure": "15.34%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -693955,7 +693955,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "75.88%", "Error & Exception Exposure": "76.31%", - "Tech Debt Exposure": "18.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -694084,7 +694084,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -694137,9 +694137,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -7451.78, + "X": -7451.68, "Y": -200.67, - "Z": 6328.5 + "Z": 6328.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -694151,7 +694151,7 @@ "Total LOC": 298, "Coding LOC": 130, "Documentation LOC": 125, - "Structural Magnitude": 104.2, + "Structural Magnitude": 103.2, "Control Flow Ratio": "36.9%", "Popularity Rank": 10, "Raw Churn Frequency": 0.0, @@ -694164,14 +694164,14 @@ "Error & Exception Exposure": "69.8%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "9.12%", + "API Exposure": "8.87%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "98.71%", "Commented Logic Exposure": "6.31%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.19%", + "Documentation Exposure": "31.2%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -694447,7 +694447,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 15, + "Exposed API / Public Exports": 14, "State Mutations / Variable Reassignments": 22, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 8, @@ -694589,7 +694589,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "24.33%", "Error & Exception Exposure": "46.98%", - "Tech Debt Exposure": "99.73%", + "Tech Debt Exposure": "99.57%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -695098,7 +695098,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 18, + "Orphaned Logic": 17, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -695172,7 +695172,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "58.71%", "Error & Exception Exposure": "86.63%", - "Tech Debt Exposure": "39.73%", + "Tech Debt Exposure": "29.33%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -695501,7 +695501,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -695845,7 +695845,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "37.2%", "Error & Exception Exposure": "70.59%", - "Tech Debt Exposure": "99.64%", + "Tech Debt Exposure": "99.35%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -696194,7 +696194,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 13, + "Orphaned Logic": 12, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -696430,9 +696430,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 2030.94, + "X": 2030.91, "Y": -180.04, - "Z": 8902.94 + "Z": 8902.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -696862,9 +696862,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1748.73, + "X": 1748.7, "Y": -268.88, - "Z": 9605.96 + "Z": 9605.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -697222,9 +697222,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1941.62, + "X": 1941.59, "Y": -217.33, - "Z": 9219.9 + "Z": 9219.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -697983,9 +697983,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 2203.86, + "X": 2203.83, "Y": -132.14, - "Z": 9792.6 + "Z": 9792.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -698188,95 +698188,215 @@ } } }, - "lua/redis": { - "Directory Group Magnitude": 719.96, - "File Count": 21, + "solidity/openzeppelin": { + "Directory Group Magnitude": 719.82, + "File Count": 7, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "90.5%", - "Static: Literature & Documentation": "9.5%" + "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "37.06%", - "Error & Exception Exposure": "75.74%", - "Tech Debt Exposure": "57.03%", - "Testing Exposure": "5.52%", - "API Exposure": "1.51%", - "Concurrency Exposure": "4.76%", - "State Flux Exposure": "80.95%", - "Commented Logic Exposure": "2.68%", - "Specification Exposure": "61.9%", - "Instability Exposure": "45.24%", + "Cognitive Load Exposure": "23.26%", + "Error & Exception Exposure": "74.78%", + "Tech Debt Exposure": "84.77%", + "Testing Exposure": "13.63%", + "API Exposure": "2.52%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "86.27%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "86.61%", + "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "48.95%", + "Documentation Exposure": "16.72%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "lua/redis/README": { + "solidity/openzeppelin/AccessControl.sol": { "1. Artifact Identity": { - "Filename": "README", - "Path": "lua/redis/README", - "Language": "Markdown", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "AccessControl.sol", + "Path": "solidity/openzeppelin/AccessControl.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (README)" + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": 1244.35, - "Y": -63.99, - "Z": 6114.13 + "X": -1575.62, + "Y": -141.56, + "Z": -8611.41 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 38, - "Coding LOC": 0, - "Documentation LOC": 29, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 208, + "Coding LOC": 68, + "Documentation LOC": 121, + "Structural Magnitude": 63.66, + "Control Flow Ratio": "24.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.588 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "17.18%", + "Error & Exception Exposure": "65.11%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.76%", + "API Exposure": "4.19%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "93.12%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "_grantRole", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 181, + "End Line": 189 + }, + { + "Function Name": "_revokeRole", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 198, + "End Line": 206 + }, + { + "Function Name": "renounceRole", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 155, + "End Line": 161 + }, + { + "Function Name": "_checkRole", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 92, + "End Line": 96 + }, + { + "Function Name": "hasRole", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 76, + "End Line": 78 + }, + { + "Function Name": "supportsInterface", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 69, + "End Line": 71 + }, + { + "Function Name": "getRoleAdmin", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 104, + "End Line": 106 + }, + { + "Function Name": "_setRoleAdmin", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 172 + }, + { + "Function Name": "grantRole", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 120, + "End Line": 122 + }, + { + "Function Name": "revokeRole", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 135, + "End Line": 137 + }, + { + "Function Name": "onlyRole", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 63, + "End Line": 66 + }, + { + "Function Name": "_checkRole", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 86 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 13, + "Sequential Logic Declarations": 40, + "Function Parameters": 12, + "Function/Method Declarations": 12, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 7, + "State Mutations / Variable Reassignments": 11, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 25, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, @@ -698287,13 +698407,13 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Module Dependencies (Imports)": 3, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 3, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -698302,21 +698422,21 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 6, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 6, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 62, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 3, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -698329,15 +698449,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 4, + "Design Camel Case": 1, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 1, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -698345,7 +698465,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -698361,119 +698481,194 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "../utils/Context.sol", + "../utils/introspection/ERC165.sol", + "./IAccessControl.sol" + ] }, - "lua/redis/COPYRIGHT": { + "solidity/openzeppelin/CrosschainRemoteExecutor.sol": { "1. Artifact Identity": { - "Filename": "COPYRIGHT", - "Path": "lua/redis/COPYRIGHT", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "CrosschainRemoteExecutor.sol", + "Path": "solidity/openzeppelin/CrosschainRemoteExecutor.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYRIGHT)" + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": 695.29, - "Y": -348.66, - "Z": 4585.92 + "X": -1287.75, + "Y": -203.92, + "Z": -7929.34 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 35, - "Coding LOC": 0, - "Documentation LOC": 25, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 99, + "Coding LOC": 54, + "Documentation LOC": 27, + "Structural Magnitude": 42.68, + "Control Flow Ratio": "26.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.593 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "17.38%", + "Error & Exception Exposure": "66.94%", + "Tech Debt Exposure": "99.93%", + "Testing Exposure": "2.7%", + "API Exposure": "2.26%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "93.79%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "80.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "19.6%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "_processMessage", + "Structural Impact": 16.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 6, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 80, + "End Line": 97 + }, + { + "Function Name": "_isAuthorizedGateway", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 72, + "End Line": 77 + }, + { + "Function Name": "_setup", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 60, + "End Line": 69 + }, + { + "Function Name": "gateway", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 38, + "End Line": 40 + }, + { + "Function Name": "controller", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 46, + "End Line": 48 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 35 + }, + { + "Function Name": "reconfigure", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 54, + "End Line": 57 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 11, + "Sequential Logic Declarations": 30, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 8, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 20, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Module Dependencies (Imports)": 4, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, + "Specification Traceability Tags": 2, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 2, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Pointer Arithmetic & Addressing": 8, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Explicit Type Casts": 3, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 3, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 5, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 47, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 1, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -698486,15 +698681,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 3, + "Design Camel Case": 1, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -698502,7 +698697,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -698518,29 +698713,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "../account/utils/draft-ERC7579Utils.sol", + "../interfaces/draft-IERC7786.sol", + "../utils/Bytes.sol", + "./ERC7786Recipient.sol" + ] }, - "lua/redis/bisect.lua": { + "solidity/openzeppelin/ERC2771Forwarder.sol": { "1. Artifact Identity": { - "Filename": "bisect.lua", - "Path": "lua/redis/bisect.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "ERC2771Forwarder.sol", + "Path": "solidity/openzeppelin/ERC2771Forwarder.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "lua", + "Folder Dominant Lang": "solidity", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" + "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": 1508.8, - "Y": -154.65, - "Z": 5779.39 + "X": -1880.5, + "Y": -280.56, + "Z": -7970.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -698549,133 +698749,183 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 28, - "Coding LOC": 18, - "Documentation LOC": 4, - "Structural Magnitude": 52.66, - "Control Flow Ratio": "36.8%", + "Total LOC": 380, + "Coding LOC": 144, + "Documentation LOC": 196, + "Structural Magnitude": 107.88, + "Control Flow Ratio": "18.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.948 + "Raw Cognitive Density": 1.056 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.18%", - "Error & Exception Exposure": "97.89%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.44%", - "API Exposure": "4.12%", + "Cognitive Load Exposure": "38.62%", + "Error & Exception Exposure": "81.76%", + "Tech Debt Exposure": "97.04%", + "Testing Exposure": "2.52%", + "API Exposure": "1.56%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "56.25%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "97.29%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "bisect", - "Structural Impact": 20.0, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 7, - "Input Parameters": 5, - "Control Flow Ratio": "46.7%", - "Start Line": 5, - "End Line": 12 + "Function Name": "_execute", + "Structural Impact": 12.6, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "27.8%", + "Start Line": 262, + "End Line": 305 }, { - "Function Name": "solve", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 15, - "End Line": 19 + "Function Name": "executeBatch", + "Structural Impact": 12.1, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "41.7%", + "Start Line": 168, + "End Line": 201 }, { - "Function Name": "f", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, + "Function Name": "_checkForwardedGas", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 348, + "End Line": 378 + }, + { + "Function Name": "execute", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 22, - "End Line": 24 + "Control Flow Ratio": "100.0%", + "Start Line": 132, + "End Line": 143 }, { - "Function Name": "__global_context__", + "Function Name": "_recoverForwardRequestSigner", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 226, + "End Line": 245 + }, + { + "Function Name": "_isTrustedByTarget", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "12.5%", + "Start Line": 316, + "End Line": 334 + }, + { + "Function Name": "_validate", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "14.3%", + "Start Line": 207, + "End Line": 218 + }, + { + "Function Name": "verify", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 117, + "End Line": 120 + }, + { + "Function Name": "constructor", "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 27 + "Start Line": 106, + "End Line": 106 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 7, - "Sequential Logic Declarations": 12, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 18, + "Sequential Logic Declarations": 77, + "Function Parameters": 15, + "Function/Method Declarations": 15, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 7, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 24, + "State Mutations / Variable Reassignments": 52, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 32, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 5, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Scientific & Mathematical Operations": 3, + "Metaprogramming & Reflection": 5, + "Module Dependencies (Imports)": 6, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, + "Specification Traceability Tags": 7, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 2, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Pointer Arithmetic & Addressing": 13, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 3, + "Fatal Aborts & Exceptions": 7, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 6, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, + "Private / Encapsulated Scopes": 6, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 135, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 2, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 2, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -698684,15 +698934,1976 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 7, - "Design Camel Case": 0, - "Design Snake Case": 7, + "Core Var Decl": 9, + "Design Camel Case": 3, + "Design Snake Case": 5, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 6, + "Design Upper Case": 1, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 4, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 6, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "../utils/Address.sol", + "../utils/Errors.sol", + "../utils/Nonces.sol", + "../utils/cryptography/ECDSA.sol", + "../utils/cryptography/EIP712.sol", + "./ERC2771Context.sol" + ] + }, + "solidity/openzeppelin/Governor.sol": { + "1. Artifact Identity": { + "Filename": "Governor.sol", + "Path": "solidity/openzeppelin/Governor.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" + }, + "2. Topological Coordinates": { + "X": -1551.74, + "Y": -165.03, + "Z": -8428.28 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 821, + "Coding LOC": 482, + "Documentation LOC": 234, + "Structural Magnitude": 442.84, + "Control Flow Ratio": "23.6%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.726 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "23.81%", + "Error & Exception Exposure": "70.34%", + "Tech Debt Exposure": "96.56%", + "Testing Exposure": "80.0%", + "API Exposure": "6.23%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.85%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "27.04%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "state", + "Structural Impact": 27.4, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "73.9%", + "Start Line": 141, + "End Line": 178 + }, + { + "Function Name": "execute", + "Structural Impact": 17.5, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 6, + "Input Parameters": 4, + "Control Flow Ratio": "35.3%", + "Start Line": 390, + "End Line": 426 + }, + { + "Function Name": "propose", + "Structural Impact": 12.4, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 4, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 274, + "End Line": 297 + }, + { + "Function Name": "_isValidDescriptionForProposer", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "31.2%", + "Start Line": 757, + "End Line": 781 + }, + { + "Function Name": "_castVote", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 3, + "Input Parameters": 5, + "Control Flow Ratio": "27.3%", + "Start Line": 628, + "End Line": 649 + }, + { + "Function Name": "queue", + "Structural Impact": 10.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "30.0%", + "Start Line": 344, + "End Line": 364 + }, + { + "Function Name": "_propose", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 2, + "Input Parameters": 5, + "Control Flow Ratio": "15.4%", + "Start Line": 304, + "End Line": 341 + }, + { + "Function Name": "castVoteWithReasonAndParamsBySig", + "Structural Impact": 8.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 6, + "Control Flow Ratio": "22.2%", + "Start Line": 549, + "End Line": 561 + }, + { + "Function Name": "onERC1155BatchReceived", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 5, + "Control Flow Ratio": "22.2%", + "Start Line": 696, + "End Line": 707 + }, + { + "Function Name": "onERC1155Received", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 5, + "Control Flow Ratio": "22.2%", + "Start Line": 685, + "End Line": 690 + }, + { + "Function Name": "cancel", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "22.2%", + "Start Line": 449, + "End Line": 464 + }, + { + "Function Name": "castVoteBySig", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "28.6%", + "Start Line": 536, + "End Line": 546 + }, + { + "Function Name": "onERC721Received", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "25.0%", + "Start Line": 674, + "End Line": 679 + }, + { + "Function Name": "_validateExtendedVoteSig", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 1, + "Input Parameters": 6, + "Control Flow Ratio": "11.1%", + "Start Line": 579, + "End Line": 605 + }, + { + "Function Name": "_executeOperations", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "11.1%", + "Start Line": 435, + "End Line": 446 + }, + { + "Function Name": "_cancel", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "14.3%", + "Start Line": 472, + "End Line": 492 + }, + { + "Function Name": "_validateStateBitmap", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 731, + "End Line": 737 + }, + { + "Function Name": "_queueOperations", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "14.3%", + "Start Line": 379, + "End Line": 387 + }, + { + "Function Name": "_validateVoteSig", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "16.7%", + "Start Line": 564, + "End Line": 576 + }, + { + "Function Name": "hashProposal", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "14.3%", + "Start Line": 121, + "End Line": 128 + }, + { + "Function Name": "getProposalId", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "16.7%", + "Start Line": 131, + "End Line": 138 + }, + { + "Function Name": "castVoteWithReasonAndParams", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "14.3%", + "Start Line": 525, + "End Line": 533 + }, + { + "Function Name": "_castVote", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "16.7%", + "Start Line": 613, + "End Line": 620 + }, + { + "Function Name": "_checkGovernance", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 215, + "End Line": 224 + }, + { + "Function Name": "castVoteWithReason", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "16.7%", + "Start Line": 515, + "End Line": 522 + }, + { + "Function Name": "getVotesWithParams", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "20.0%", + "Start Line": 500, + "End Line": 506 + }, + { + "Function Name": "castVote", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 509, + "End Line": 512 + }, + { + "Function Name": "getVotes", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 495, + "End Line": 497 + }, + { + "Function Name": "_validateCancel", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 788, + "End Line": 790 + }, + { + "Function Name": "supportsInterface", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "16.7%", + "Start Line": 90, + "End Line": 96 + }, + { + "Function Name": "proposalSnapshot", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 186, + "End Line": 188 + }, + { + "Function Name": "proposalDeadline", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 191, + "End Line": 193 + }, + { + "Function Name": "proposalProposer", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 196, + "End Line": 198 + }, + { + "Function Name": "proposalEta", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 201, + "End Line": 203 + }, + { + "Function Name": "proposalNeedsQueuing", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 206, + "End Line": 208 + }, + { + "Function Name": "_encodeStateBitmap", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 721, + "End Line": 723 + }, + { + "Function Name": "_countVote", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 246, + "End Line": 252 + }, + { + "Function Name": "receive", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 83, + "End Line": 87 + }, + { + "Function Name": "relay", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 657, + "End Line": 660 + }, + { + "Function Name": "name", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 99, + "End Line": 101 + }, + { + "Function Name": "version", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 104, + "End Line": 106 + }, + { + "Function Name": "proposalThreshold", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 181, + "End Line": 183 + }, + { + "Function Name": "_defaultParams", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 267, + "End Line": 269 + }, + { + "Function Name": "_executor", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 666, + "End Line": 668 + }, + { + "Function Name": "_getVotes", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 239, + "End Line": 239 + }, + { + "Function Name": "_unsafeReadBytesOffset", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 814, + "End Line": 819 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 76, + "End Line": 78 + }, + { + "Function Name": "_quorumReached", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 229, + "End Line": 229 + }, + { + "Function Name": "_voteSucceeded", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 234, + "End Line": 234 + }, + { + "Function Name": "_tallyUpdated", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 259, + "End Line": 259 + }, + { + "Function Name": "quorum", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 806, + "End Line": 806 + }, + { + "Function Name": "onlyGovernance", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 68, + "End Line": 71 + }, + { + "Function Name": "clock", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 793, + "End Line": 793 + }, + { + "Function Name": "CLOCK_MODE", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 797, + "End Line": 797 + }, + { + "Function Name": "votingDelay", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 800, + "End Line": 800 + }, + { + "Function Name": "votingPeriod", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 803, + "End Line": 803 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 85, + "Sequential Logic Declarations": 275, + "Function Parameters": 56, + "Function/Method Declarations": 56, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 16, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 35, + "State Mutations / Variable Reassignments": 120, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 88, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 10, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 12, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 3, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 6, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 67, + "Manual Memory Allocation": 1, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 22, + "Fatal Aborts & Exceptions": 15, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 7, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 32, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 25, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 467, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 8, + "Feature Flags": 0, + "Serialization Parsing": 3, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 36, + "Design Camel Case": 17, + "Design Snake Case": 16, + "Design Pascal Case": 0, + "Design Upper Case": 3, + "Design Short Vars": 2, + "Design Long Vars": 1, + "Duplicate Logic": 0, + "Orphaned Logic": 16, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 12, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "../token/ERC1155/IERC1155Receiver.sol", + "../token/ERC721/IERC721Receiver.sol", + "../utils/Address.sol", + "../utils/Context.sol", + "../utils/Nonces.sol", + "../utils/Strings.sol", + "../utils/cryptography/EIP712.sol", + "../utils/cryptography/SignatureChecker.sol", + "../utils/introspection/ERC165.sol", + "../utils/math/SafeCast.sol", + "../utils/structs/DoubleEndedQueue.sol", + "./IGovernor.sol" + ] + }, + "solidity/openzeppelin/Proxy.sol": { + "1. Artifact Identity": { + "Filename": "Proxy.sol", + "Path": "solidity/openzeppelin/Proxy.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" + }, + "2. Topological Coordinates": { + "X": -1706.47, + "Y": -276.55, + "Z": -7690.93 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 70, + "Coding LOC": 24, + "Documentation LOC": 37, + "Structural Magnitude": 10.78, + "Control Flow Ratio": "20.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.432 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "46.94%", + "Error & Exception Exposure": "81.96%", + "Tech Debt Exposure": "99.9%", + "Testing Exposure": "2.5%", + "API Exposure": "0.81%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "59.87%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "12.84%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "_delegate", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 22, + "End Line": 45 + }, + { + "Function Name": "_implementation", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 51 + }, + { + "Function Name": "_fallback", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 58, + "End Line": 60 + }, + { + "Function Name": "fallback", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 66, + "End Line": 68 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 4, + "Function Parameters": 4, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 2, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 10, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 3, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 1, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 1, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 3, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 21, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 1, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "solidity/openzeppelin/ReentrancyGuard.sol": { + "1. Artifact Identity": { + "Filename": "ReentrancyGuard.sol", + "Path": "solidity/openzeppelin/ReentrancyGuard.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" + }, + "2. Topological Coordinates": { + "X": -1132.36, + "Y": -115.73, + "Z": -8506.82 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 120, + "Coding LOC": 40, + "Documentation LOC": 63, + "Structural Magnitude": 21.3, + "Control Flow Ratio": "30.8%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.625 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "18.88%", + "Error & Exception Exposure": "67.66%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.48%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "94.78%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "80.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "_nonReentrantBeforeView", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 88, + "End Line": 92 + }, + { + "Function Name": "_reentrancyGuardEntered", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 112, + "End Line": 114 + }, + { + "Function Name": "_reentrancyGuardStorageSlot", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 116, + "End Line": 118 + }, + { + "Function Name": "_nonReentrantBefore", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 94, + "End Line": 100 + }, + { + "Function Name": "nonReentrant", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 73 + }, + { + "Function Name": "nonReentrantView", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 83, + "End Line": 86 + }, + { + "Function Name": "_nonReentrantAfter", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 102, + "End Line": 106 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 58, + "End Line": 60 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 4, + "Sequential Logic Declarations": 9, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 4, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 8, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 11, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 2, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 1, + "Thread Synchronization Locks": 1, + "Immutable Data Declarations": 6, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 8, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 36, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 3, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 3, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 3, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "./StorageSlot.sol" + ] + }, + "solidity/openzeppelin/StorageSlot.sol": { + "1. Artifact Identity": { + "Filename": "StorageSlot.sol", + "Path": "solidity/openzeppelin/StorageSlot.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" + }, + "2. Topological Coordinates": { + "X": -2036.7, + "Y": -170.9, + "Z": -8298.76 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 144, + "Coding LOC": 69, + "Documentation LOC": 57, + "Structural Magnitude": 30.68, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "89.7%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.45%", + "API Exposure": "2.57%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "62.45%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "90.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "21.77%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "getAddressSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 66, + "End Line": 70 + }, + { + "Function Name": "getBooleanSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 79 + }, + { + "Function Name": "getBytes32Slot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 88 + }, + { + "Function Name": "getUint256Slot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 93, + "End Line": 97 + }, + { + "Function Name": "getInt256Slot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 102, + "End Line": 106 + }, + { + "Function Name": "getStringSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 111, + "End Line": 115 + }, + { + "Function Name": "getStringSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 120, + "End Line": 124 + }, + { + "Function Name": "getBytesSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 129, + "End Line": 133 + }, + { + "Function Name": "getBytesSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 138, + "End Line": 142 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 25, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 9, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 5, + "State Mutations / Variable Reassignments": 9, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 20, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 9, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 1, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 20, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 1, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 9, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 9, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 66, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 1, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + } + } + }, + "lua/redis": { + "Directory Group Magnitude": 715.96, + "File Count": 21, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "90.5%", + "Static: Literature & Documentation": "9.5%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "37.06%", + "Error & Exception Exposure": "75.74%", + "Tech Debt Exposure": "4.69%", + "Testing Exposure": "5.52%", + "API Exposure": "1.24%", + "Concurrency Exposure": "4.76%", + "State Flux Exposure": "80.95%", + "Commented Logic Exposure": "2.68%", + "Specification Exposure": "61.9%", + "Instability Exposure": "45.24%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "47.11%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "lua/redis/README": { + "1. Artifact Identity": { + "Filename": "README", + "Path": "lua/redis/README", + "Language": "Markdown", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (README)" + }, + "2. Topological Coordinates": { + "X": 1244.35, + "Y": -63.99, + "Z": 6114.13 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 38, + "Coding LOC": 0, + "Documentation LOC": 29, + "Structural Magnitude": 1.0, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "lua/redis/COPYRIGHT": { + "1. Artifact Identity": { + "Filename": "COPYRIGHT", + "Path": "lua/redis/COPYRIGHT", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYRIGHT)" + }, + "2. Topological Coordinates": { + "X": 695.29, + "Y": -348.66, + "Z": 4585.92 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 35, + "Coding LOC": 0, + "Documentation LOC": 25, + "Structural Magnitude": 1.0, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "lua/redis/bisect.lua": { + "1. Artifact Identity": { + "Filename": "bisect.lua", + "Path": "lua/redis/bisect.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": 1508.8, + "Y": -154.65, + "Z": 5779.39 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 28, + "Coding LOC": 18, + "Documentation LOC": 4, + "Structural Magnitude": 52.66, + "Control Flow Ratio": "36.8%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.948 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "99.18%", + "Error & Exception Exposure": "97.89%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "3.44%", + "API Exposure": "4.12%", + "Concurrency Exposure": "0.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": "97.29%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "bisect", + "Structural Impact": 20.0, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 7, + "Input Parameters": 5, + "Control Flow Ratio": "46.7%", + "Start Line": 5, + "End Line": 12 + }, + { + "Function Name": "solve", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 15, + "End Line": 19 + }, + { + "Function Name": "f", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 22, + "End Line": 24 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 27 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 7, + "Sequential Logic Declarations": 12, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 24, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 1, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 2, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 3, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 7, + "Design Camel Case": 0, + "Design Snake Case": 7, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 6, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -699072,9 +701283,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 1832.47, - "Y": -121.6, - "Z": 5911.03 + "X": 471.82, + "Y": -255.97, + "Z": 5462.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -699086,7 +701297,7 @@ "Total LOC": 8, "Coding LOC": 3, "Documentation LOC": 2, - "Structural Magnitude": 5.16, + "Structural Magnitude": 4.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -699099,14 +701310,14 @@ "Error & Exception Exposure": "94.95%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.57%", - "API Exposure": "2.89%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.61%", + "Documentation Exposure": "17.96%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -699132,7 +701343,7 @@ "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -699265,7 +701476,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "86.03%", "Error & Exception Exposure": "91.35%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.78%", "API Exposure": "1.31%", "Concurrency Exposure": "0.0%", @@ -699404,7 +701615,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -699473,7 +701684,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "81.76%", "Error & Exception Exposure": "96.4%", - "Tech Debt Exposure": "98.93%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.69%", "API Exposure": "4.79%", "Concurrency Exposure": "0.0%", @@ -699602,7 +701813,7 @@ "Design Short Vars": 10, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -699671,7 +701882,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "91.68%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.99%", "API Exposure": "2.56%", "Concurrency Exposure": "100.0%", @@ -699780,7 +701991,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700017,7 +702228,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.21%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -700116,7 +702327,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700185,7 +702396,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "84.83%", "Error & Exception Exposure": "99.38%", - "Tech Debt Exposure": "99.56%", + "Tech Debt Exposure": "98.44%", "Testing Exposure": "80.0%", "API Exposure": "3.09%", "Concurrency Exposure": "0.0%", @@ -700354,7 +702565,7 @@ "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700423,7 +702634,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "54.67%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.73%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -700522,7 +702733,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700566,9 +702777,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 455.44, - "Y": -248.96, - "Z": 5192.57 + "X": 1817.06, + "Y": -114.62, + "Z": 5640.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -700591,7 +702802,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.81%", "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", @@ -700700,7 +702911,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700769,7 +702980,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "98.06%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -700868,7 +703079,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700912,9 +703123,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 1038.18, - "Y": -232.21, - "Z": 5530.45 + "X": 1038.25, + "Y": -232.22, + "Z": 5530.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -700926,7 +703137,7 @@ "Total LOC": 67, "Coding LOC": 54, "Documentation LOC": 6, - "Structural Magnitude": 113.88, + "Structural Magnitude": 112.88, "Control Flow Ratio": "40.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -700939,14 +703150,14 @@ "Error & Exception Exposure": "98.68%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.97%", - "API Exposure": "3.54%", + "API Exposure": "2.77%", "Concurrency Exposure": "0.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": "86.92%", + "Documentation Exposure": "79.46%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -701012,7 +703223,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 61, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -701120,9 +703331,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 1311.69, - "Y": -298.49, - "Z": 5058.6 + "X": 1311.67, + "Y": -298.47, + "Z": 5058.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -701134,7 +703345,7 @@ "Total LOC": 42, "Coding LOC": 27, "Documentation LOC": 7, - "Structural Magnitude": 62.04, + "Structural Magnitude": 61.04, "Control Flow Ratio": "51.7%", "Popularity Rank": 19, "Raw Churn Frequency": 0.0, @@ -701147,14 +703358,14 @@ "Error & Exception Exposure": "99.53%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.27%", - "API Exposure": "0.61%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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": "66.46%", + "Documentation Exposure": "45.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -701220,7 +703431,7 @@ "Type/Safety Bypasses": 9, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 27, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -701328,9 +703539,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 1409.58, - "Y": -142.12, - "Z": 6033.99 + "X": 1409.44, + "Y": -142.2, + "Z": 6033.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -701342,7 +703553,7 @@ "Total LOC": 13, "Coding LOC": 9, "Documentation LOC": 2, - "Structural Magnitude": 19.68, + "Structural Magnitude": 18.68, "Control Flow Ratio": "53.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -701355,14 +703566,14 @@ "Error & Exception Exposure": "95.02%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.88%", - "API Exposure": "1.31%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.19%", + "Documentation Exposure": "47.27%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -701398,7 +703609,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 9, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -701531,7 +703742,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.1%", "Error & Exception Exposure": "98.04%", - "Tech Debt Exposure": "99.79%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.21%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -701640,7 +703851,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -701709,7 +703920,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.27%", "Error & Exception Exposure": "97.85%", - "Tech Debt Exposure": "99.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -701838,2156 +704049,7 @@ "Design Short Vars": 8, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "lua/redis/xd.lua": { - "1. Artifact Identity": { - "Filename": "xd.lua", - "Path": "lua/redis/xd.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": 672.54, - "Y": -282.71, - "Z": 5109.79 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 15, - "Coding LOC": 11, - "Documentation LOC": 2, - "Structural Magnitude": 18.52, - "Control Flow Ratio": "40.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.455 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.18%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.22%", - "API Exposure": "1.67%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.17%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "44.4%", - "Start Line": 5, - "End Line": 14 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 10 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 14 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 6, - "Function Parameters": 1, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 7, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 4, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 2, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 2, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 3, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "solidity/openzeppelin": { - "Directory Group Magnitude": 719.82, - "File Count": 7, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "23.26%", - "Error & Exception Exposure": "74.78%", - "Tech Debt Exposure": "84.77%", - "Testing Exposure": "13.63%", - "API Exposure": "2.52%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "86.27%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.61%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.72%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "solidity/openzeppelin/AccessControl.sol": { - "1. Artifact Identity": { - "Filename": "AccessControl.sol", - "Path": "solidity/openzeppelin/AccessControl.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1575.62, - "Y": -141.56, - "Z": -8611.41 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 208, - "Coding LOC": 68, - "Documentation LOC": 121, - "Structural Magnitude": 63.66, - "Control Flow Ratio": "24.5%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.588 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.18%", - "Error & Exception Exposure": "65.11%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.76%", - "API Exposure": "4.19%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "93.12%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_grantRole", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 181, - "End Line": 189 - }, - { - "Function Name": "_revokeRole", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 198, - "End Line": 206 - }, - { - "Function Name": "renounceRole", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 155, - "End Line": 161 - }, - { - "Function Name": "_checkRole", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 92, - "End Line": 96 - }, - { - "Function Name": "hasRole", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 76, - "End Line": 78 - }, - { - "Function Name": "supportsInterface", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 69, - "End Line": 71 - }, - { - "Function Name": "getRoleAdmin", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 104, - "End Line": 106 - }, - { - "Function Name": "_setRoleAdmin", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 172 - }, - { - "Function Name": "grantRole", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 122 - }, - { - "Function Name": "revokeRole", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 137 - }, - { - "Function Name": "onlyRole", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 63, - "End Line": 66 - }, - { - "Function Name": "_checkRole", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 86 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 13, - "Sequential Logic Declarations": 40, - "Function Parameters": 12, - "Function/Method Declarations": 12, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 3, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 7, - "State Mutations / Variable Reassignments": 11, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 25, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 3, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 6, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 6, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 62, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 3, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, - "Design Camel Case": 1, - "Design Snake Case": 2, - "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../utils/Context.sol", - "../utils/introspection/ERC165.sol", - "./IAccessControl.sol" - ] - }, - "solidity/openzeppelin/CrosschainRemoteExecutor.sol": { - "1. Artifact Identity": { - "Filename": "CrosschainRemoteExecutor.sol", - "Path": "solidity/openzeppelin/CrosschainRemoteExecutor.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1287.75, - "Y": -203.92, - "Z": -7929.34 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 99, - "Coding LOC": 54, - "Documentation LOC": 27, - "Structural Magnitude": 42.68, - "Control Flow Ratio": "26.8%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.593 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.38%", - "Error & Exception Exposure": "66.94%", - "Tech Debt Exposure": "99.93%", - "Testing Exposure": "2.7%", - "API Exposure": "2.26%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "93.79%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.6%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_processMessage", - "Structural Impact": 16.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 6, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 80, - "End Line": 97 - }, - { - "Function Name": "_isAuthorizedGateway", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 72, - "End Line": 77 - }, - { - "Function Name": "_setup", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 60, - "End Line": 69 - }, - { - "Function Name": "gateway", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 38, - "End Line": 40 - }, - { - "Function Name": "controller", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 46, - "End Line": 48 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 35 - }, - { - "Function Name": "reconfigure", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 54, - "End Line": 57 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 11, - "Sequential Logic Declarations": 30, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 8, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 20, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 2, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 2, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 8, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 3, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 5, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 47, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 1, - "Design Snake Case": 2, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../account/utils/draft-ERC7579Utils.sol", - "../interfaces/draft-IERC7786.sol", - "../utils/Bytes.sol", - "./ERC7786Recipient.sol" - ] - }, - "solidity/openzeppelin/ERC2771Forwarder.sol": { - "1. Artifact Identity": { - "Filename": "ERC2771Forwarder.sol", - "Path": "solidity/openzeppelin/ERC2771Forwarder.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1880.5, - "Y": -280.56, - "Z": -7970.29 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 380, - "Coding LOC": 144, - "Documentation LOC": 196, - "Structural Magnitude": 107.88, - "Control Flow Ratio": "18.9%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.056 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "38.62%", - "Error & Exception Exposure": "81.76%", - "Tech Debt Exposure": "97.04%", - "Testing Exposure": "2.52%", - "API Exposure": "1.56%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "56.25%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_execute", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "27.8%", - "Start Line": 262, - "End Line": 305 - }, - { - "Function Name": "executeBatch", - "Structural Impact": 12.1, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "41.7%", - "Start Line": 168, - "End Line": 201 - }, - { - "Function Name": "_checkForwardedGas", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 348, - "End Line": 378 - }, - { - "Function Name": "execute", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 132, - "End Line": 143 - }, - { - "Function Name": "_recoverForwardRequestSigner", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 226, - "End Line": 245 - }, - { - "Function Name": "_isTrustedByTarget", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "12.5%", - "Start Line": 316, - "End Line": 334 - }, - { - "Function Name": "_validate", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "14.3%", - "Start Line": 207, - "End Line": 218 - }, - { - "Function Name": "verify", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 117, - "End Line": 120 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 106, - "End Line": 106 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 18, - "Sequential Logic Declarations": 77, - "Function Parameters": 15, - "Function/Method Declarations": 15, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 7, - "Type/Safety Bypasses": 3, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 52, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 32, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 5, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 3, - "Metaprogramming & Reflection": 5, - "Module Dependencies (Imports)": 6, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 7, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 2, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 13, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, - "Fatal Aborts & Exceptions": 7, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 6, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 6, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 135, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 2, - "Feature Flags": 0, - "Serialization Parsing": 2, - "Regex Execution": 0, - "Time Date Logic": 1, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, - "Design Camel Case": 3, - "Design Snake Case": 5, - "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 1, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 6, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../utils/Address.sol", - "../utils/Errors.sol", - "../utils/Nonces.sol", - "../utils/cryptography/ECDSA.sol", - "../utils/cryptography/EIP712.sol", - "./ERC2771Context.sol" - ] - }, - "solidity/openzeppelin/Governor.sol": { - "1. Artifact Identity": { - "Filename": "Governor.sol", - "Path": "solidity/openzeppelin/Governor.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1551.74, - "Y": -165.03, - "Z": -8428.28 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 821, - "Coding LOC": 482, - "Documentation LOC": 234, - "Structural Magnitude": 442.84, - "Control Flow Ratio": "23.6%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.726 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "23.81%", - "Error & Exception Exposure": "70.34%", - "Tech Debt Exposure": "96.56%", - "Testing Exposure": "80.0%", - "API Exposure": "6.23%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.85%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.04%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "state", - "Structural Impact": 27.4, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "73.9%", - "Start Line": 141, - "End Line": 178 - }, - { - "Function Name": "execute", - "Structural Impact": 17.5, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 6, - "Input Parameters": 4, - "Control Flow Ratio": "35.3%", - "Start Line": 390, - "End Line": 426 - }, - { - "Function Name": "propose", - "Structural Impact": 12.4, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 4, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 274, - "End Line": 297 - }, - { - "Function Name": "_isValidDescriptionForProposer", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "31.2%", - "Start Line": 757, - "End Line": 781 - }, - { - "Function Name": "_castVote", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 3, - "Input Parameters": 5, - "Control Flow Ratio": "27.3%", - "Start Line": 628, - "End Line": 649 - }, - { - "Function Name": "queue", - "Structural Impact": 10.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "30.0%", - "Start Line": 344, - "End Line": 364 - }, - { - "Function Name": "_propose", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 2, - "Input Parameters": 5, - "Control Flow Ratio": "15.4%", - "Start Line": 304, - "End Line": 341 - }, - { - "Function Name": "castVoteWithReasonAndParamsBySig", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 6, - "Control Flow Ratio": "22.2%", - "Start Line": 549, - "End Line": 561 - }, - { - "Function Name": "onERC1155BatchReceived", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 5, - "Control Flow Ratio": "22.2%", - "Start Line": 696, - "End Line": 707 - }, - { - "Function Name": "onERC1155Received", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 5, - "Control Flow Ratio": "22.2%", - "Start Line": 685, - "End Line": 690 - }, - { - "Function Name": "cancel", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "22.2%", - "Start Line": 449, - "End Line": 464 - }, - { - "Function Name": "castVoteBySig", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "28.6%", - "Start Line": 536, - "End Line": 546 - }, - { - "Function Name": "onERC721Received", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "25.0%", - "Start Line": 674, - "End Line": 679 - }, - { - "Function Name": "_validateExtendedVoteSig", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 1, - "Input Parameters": 6, - "Control Flow Ratio": "11.1%", - "Start Line": 579, - "End Line": 605 - }, - { - "Function Name": "_executeOperations", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "11.1%", - "Start Line": 435, - "End Line": 446 - }, - { - "Function Name": "_cancel", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "14.3%", - "Start Line": 472, - "End Line": 492 - }, - { - "Function Name": "_validateStateBitmap", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 731, - "End Line": 737 - }, - { - "Function Name": "_queueOperations", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "14.3%", - "Start Line": 379, - "End Line": 387 - }, - { - "Function Name": "_validateVoteSig", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "16.7%", - "Start Line": 564, - "End Line": 576 - }, - { - "Function Name": "hashProposal", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "14.3%", - "Start Line": 121, - "End Line": 128 - }, - { - "Function Name": "getProposalId", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "16.7%", - "Start Line": 131, - "End Line": 138 - }, - { - "Function Name": "castVoteWithReasonAndParams", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "14.3%", - "Start Line": 525, - "End Line": 533 - }, - { - "Function Name": "_castVote", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "16.7%", - "Start Line": 613, - "End Line": 620 - }, - { - "Function Name": "_checkGovernance", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 215, - "End Line": 224 - }, - { - "Function Name": "castVoteWithReason", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "16.7%", - "Start Line": 515, - "End Line": 522 - }, - { - "Function Name": "getVotesWithParams", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "20.0%", - "Start Line": 500, - "End Line": 506 - }, - { - "Function Name": "castVote", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 509, - "End Line": 512 - }, - { - "Function Name": "getVotes", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 495, - "End Line": 497 - }, - { - "Function Name": "_validateCancel", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 788, - "End Line": 790 - }, - { - "Function Name": "supportsInterface", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "16.7%", - "Start Line": 90, - "End Line": 96 - }, - { - "Function Name": "proposalSnapshot", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 186, - "End Line": 188 - }, - { - "Function Name": "proposalDeadline", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 191, - "End Line": 193 - }, - { - "Function Name": "proposalProposer", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 196, - "End Line": 198 - }, - { - "Function Name": "proposalEta", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 201, - "End Line": 203 - }, - { - "Function Name": "proposalNeedsQueuing", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 206, - "End Line": 208 - }, - { - "Function Name": "_encodeStateBitmap", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 721, - "End Line": 723 - }, - { - "Function Name": "_countVote", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 246, - "End Line": 252 - }, - { - "Function Name": "receive", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 83, - "End Line": 87 - }, - { - "Function Name": "relay", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 657, - "End Line": 660 - }, - { - "Function Name": "name", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 99, - "End Line": 101 - }, - { - "Function Name": "version", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 104, - "End Line": 106 - }, - { - "Function Name": "proposalThreshold", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 181, - "End Line": 183 - }, - { - "Function Name": "_defaultParams", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 267, - "End Line": 269 - }, - { - "Function Name": "_executor", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 666, - "End Line": 668 - }, - { - "Function Name": "_getVotes", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 239, - "End Line": 239 - }, - { - "Function Name": "_unsafeReadBytesOffset", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 814, - "End Line": 819 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 76, - "End Line": 78 - }, - { - "Function Name": "_quorumReached", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 229, - "End Line": 229 - }, - { - "Function Name": "_voteSucceeded", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 234, - "End Line": 234 - }, - { - "Function Name": "_tallyUpdated", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 259, - "End Line": 259 - }, - { - "Function Name": "quorum", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 806, - "End Line": 806 - }, - { - "Function Name": "onlyGovernance", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 68, - "End Line": 71 - }, - { - "Function Name": "clock", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 793, - "End Line": 793 - }, - { - "Function Name": "CLOCK_MODE", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 797, - "End Line": 797 - }, - { - "Function Name": "votingDelay", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 800, - "End Line": 800 - }, - { - "Function Name": "votingPeriod", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 803, - "End Line": 803 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 85, - "Sequential Logic Declarations": 275, - "Function Parameters": 56, - "Function/Method Declarations": 56, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 16, - "Type/Safety Bypasses": 2, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 35, - "State Mutations / Variable Reassignments": 120, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 88, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 10, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 12, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 3, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 6, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 67, - "Manual Memory Allocation": 1, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 22, - "Fatal Aborts & Exceptions": 15, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 7, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 32, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 25, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 467, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 8, - "Feature Flags": 0, - "Serialization Parsing": 3, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 36, - "Design Camel Case": 17, - "Design Snake Case": 16, - "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 2, - "Design Long Vars": 1, - "Duplicate Logic": 0, - "Orphaned Logic": 16, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 12, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../token/ERC1155/IERC1155Receiver.sol", - "../token/ERC721/IERC721Receiver.sol", - "../utils/Address.sol", - "../utils/Context.sol", - "../utils/Nonces.sol", - "../utils/Strings.sol", - "../utils/cryptography/EIP712.sol", - "../utils/cryptography/SignatureChecker.sol", - "../utils/introspection/ERC165.sol", - "../utils/math/SafeCast.sol", - "../utils/structs/DoubleEndedQueue.sol", - "./IGovernor.sol" - ] - }, - "solidity/openzeppelin/Proxy.sol": { - "1. Artifact Identity": { - "Filename": "Proxy.sol", - "Path": "solidity/openzeppelin/Proxy.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1706.47, - "Y": -276.55, - "Z": -7690.93 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 70, - "Coding LOC": 24, - "Documentation LOC": 37, - "Structural Magnitude": 10.78, - "Control Flow Ratio": "20.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.432 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "46.94%", - "Error & Exception Exposure": "81.96%", - "Tech Debt Exposure": "99.9%", - "Testing Exposure": "2.5%", - "API Exposure": "0.81%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "59.87%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.84%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_delegate", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 22, - "End Line": 45 - }, - { - "Function Name": "_implementation", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 51 - }, - { - "Function Name": "_fallback", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 58, - "End Line": 60 - }, - { - "Function Name": "fallback", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 68 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 4, - "Function Parameters": 4, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 2, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 2, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 10, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 1, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 21, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "solidity/openzeppelin/ReentrancyGuard.sol": { - "1. Artifact Identity": { - "Filename": "ReentrancyGuard.sol", - "Path": "solidity/openzeppelin/ReentrancyGuard.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1132.36, - "Y": -115.73, - "Z": -8506.82 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 120, - "Coding LOC": 40, - "Documentation LOC": 63, - "Structural Magnitude": 21.3, - "Control Flow Ratio": "30.8%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.88%", - "Error & Exception Exposure": "67.66%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.48%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "94.78%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_nonReentrantBeforeView", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 88, - "End Line": 92 - }, - { - "Function Name": "_reentrancyGuardEntered", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 112, - "End Line": 114 - }, - { - "Function Name": "_reentrancyGuardStorageSlot", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 116, - "End Line": 118 - }, - { - "Function Name": "_nonReentrantBefore", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 94, - "End Line": 100 - }, - { - "Function Name": "nonReentrant", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 73 - }, - { - "Function Name": "nonReentrantView", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 83, - "End Line": 86 - }, - { - "Function Name": "_nonReentrantAfter", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 102, - "End Line": 106 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 58, - "End Line": 60 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 9, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 4, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 8, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 11, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 2, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 1, - "Immutable Data Declarations": 6, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 8, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 36, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -704011,31 +704073,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "./StorageSlot.sol" - ] + "9. Extracted Dependencies": [] }, - "solidity/openzeppelin/StorageSlot.sol": { + "lua/redis/xd.lua": { "1. Artifact Identity": { - "Filename": "StorageSlot.sol", - "Path": "solidity/openzeppelin/StorageSlot.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", + "Filename": "xd.lua", + "Path": "lua/redis/xd.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", + "Folder Dominant Lang": "lua", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" + "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2036.7, - "Y": -170.9, - "Z": -8298.76 + "X": 672.54, + "Y": -282.71, + "Z": 5109.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -704044,182 +704104,122 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 144, - "Coding LOC": 69, - "Documentation LOC": 57, - "Structural Magnitude": 30.68, - "Control Flow Ratio": "0.0%", + "Total LOC": 15, + "Coding LOC": 11, + "Documentation LOC": 2, + "Structural Magnitude": 18.52, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.455 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "89.7%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.18%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.45%", - "API Exposure": "2.57%", + "Testing Exposure": "2.22%", + "API Exposure": "1.67%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "62.45%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "90.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.77%", + "Documentation Exposure": "67.17%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "getAddressSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 70 - }, - { - "Function Name": "getBooleanSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 79 - }, - { - "Function Name": "getBytes32Slot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 88 - }, - { - "Function Name": "getUint256Slot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 93, - "End Line": 97 - }, - { - "Function Name": "getInt256Slot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 102, - "End Line": 106 - }, - { - "Function Name": "getStringSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 111, - "End Line": 115 - }, - { - "Function Name": "getStringSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, + "Function Name": "Anonymous_Block", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 124 + "Control Flow Ratio": "44.4%", + "Start Line": 5, + "End Line": 14 }, { - "Function Name": "getBytesSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 129, - "End Line": 133 + "Start Line": 10, + "End Line": 10 }, { - "Function Name": "getBytesSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "__global_context__", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 138, - "End Line": 142 + "Start Line": 1, + "End Line": 14 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 25, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 1, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 6, + "Function Parameters": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 9, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, - "State Mutations / Variable Reassignments": 9, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 7, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 20, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, + "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 1, + "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 20, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 4, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 9, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 9, + "Private / Encapsulated Scopes": 2, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 66, + "Structural Tab Indentations": 1, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 2, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -704229,12 +704229,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 3, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -704245,7 +704245,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -712073,7 +712073,7 @@ } }, "shell/serenity": { - "Directory Group Magnitude": 637.94, + "Directory Group Magnitude": 635.94, "File Count": 23, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -712081,16 +712081,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "70.92%", "Error & Exception Exposure": "86.99%", - "Tech Debt Exposure": "90.92%", + "Tech Debt Exposure": "49.89%", "Testing Exposure": "5.65%", - "API Exposure": "1.15%", + "API Exposure": "1.03%", "Concurrency Exposure": "6.55%", "State Flux Exposure": "99.95%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "92.17%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.86%", + "Documentation Exposure": "55.25%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -712107,9 +712107,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2242.79, - "Y": 121.83, - "Z": 6198.88 + "X": 2242.82, + "Y": 121.82, + "Z": 6198.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712132,7 +712132,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.7%", "Error & Exception Exposure": "87.47%", - "Tech Debt Exposure": "98.14%", + "Tech Debt Exposure": "65.95%", "Testing Exposure": "80.0%", "API Exposure": "2.54%", "Concurrency Exposure": "0.0%", @@ -712271,7 +712271,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -712315,9 +712315,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1915.75, + "X": 1915.8, "Y": 134.51, - "Z": 6123.42 + "Z": 6123.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712340,7 +712340,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.33%", "Error & Exception Exposure": "87.91%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.9%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -712449,7 +712449,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -712493,9 +712493,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2717.77, - "Y": 191.83, - "Z": 6503.62 + "X": 2717.71, + "Y": 191.82, + "Z": 6503.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712518,7 +712518,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.45%", "Error & Exception Exposure": "74.34%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.9%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "50.82%", @@ -712647,7 +712647,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -712693,7 +712693,7 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2414.51, + "X": 2414.49, "Y": 36.01, "Z": 5275.81 }, @@ -712718,7 +712718,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.7%", "Error & Exception Exposure": "91.49%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -712817,7 +712817,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -712861,9 +712861,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2056.8, + "X": 2056.85, "Y": 98.28, - "Z": 5926.07 + "Z": 5926.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712886,7 +712886,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "95.45%", - "Tech Debt Exposure": "98.62%", + "Tech Debt Exposure": "89.91%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -713015,7 +713015,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713059,9 +713059,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1980.99, - "Y": 19.17, - "Z": 5473.84 + "X": 1981.01, + "Y": 19.18, + "Z": 5473.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713203,7 +713203,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713247,9 +713247,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2211.53, - "Y": 53.3, - "Z": 5373.44 + "X": 2333.74, + "Y": 154.25, + "Z": 6391.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713272,7 +713272,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "90.47%", "Error & Exception Exposure": "88.86%", - "Tech Debt Exposure": "99.95%", + "Tech Debt Exposure": "98.93%", "Testing Exposure": "2.38%", "API Exposure": "1.27%", "Concurrency Exposure": "0.0%", @@ -713381,7 +713381,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713425,9 +713425,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3328.57, + "X": 3328.46, "Y": 94.59, - "Z": 5964.97 + "Z": 5964.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713450,7 +713450,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "91.76%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.29%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -713549,7 +713549,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713593,9 +713593,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2091.67, - "Y": 141.49, - "Z": 6506.73 + "X": 2091.68, + "Y": 141.48, + "Z": 6506.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713618,7 +713618,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.99%", "Error & Exception Exposure": "76.41%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "99.48%", "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -713747,7 +713747,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713791,9 +713791,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3081.75, - "Y": 7.85, - "Z": 5414.94 + "X": 3081.66, + "Y": 7.86, + "Z": 5414.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713816,7 +713816,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "92.76%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -713915,7 +713915,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713959,9 +713959,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3101.7, + "X": 3101.6, "Y": 126.35, - "Z": 6593.24 + "Z": 6593.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713984,7 +713984,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "93.66%", "Error & Exception Exposure": "81.56%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.79%", "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -714103,7 +714103,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -714147,8 +714147,8 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2808.2, - "Y": 76.51, + "X": 2808.13, + "Y": 76.52, "Z": 5463.42 }, "3. Architectural Profile": { @@ -714172,7 +714172,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.83%", "Error & Exception Exposure": "79.27%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.97%", "Testing Exposure": "2.4%", "API Exposure": "1.29%", "Concurrency Exposure": "0.0%", @@ -714301,7 +714301,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -714345,9 +714345,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2458.3, - "Y": 168.36, - "Z": 6972.63 + "X": 2458.27, + "Y": 168.35, + "Z": 6972.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714370,7 +714370,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.86%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -714469,7 +714469,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -714513,9 +714513,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3188.06, + "X": 3187.95, "Y": 116.39, - "Z": 5756.88 + "Z": 5756.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714657,7 +714657,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -714701,9 +714701,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1747.74, + "X": 1747.79, "Y": 81.45, - "Z": 6042.27 + "Z": 6042.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714726,7 +714726,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.54%", "Error & Exception Exposure": "86.6%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -714835,7 +714835,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -714879,9 +714879,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3099.48, - "Y": 92.49, - "Z": 6263.87 + "X": 3099.37, + "Y": 92.48, + "Z": 6263.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714904,7 +714904,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.44%", "Error & Exception Exposure": "85.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.99%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -715023,7 +715023,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -715067,9 +715067,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1904.1, + "X": 1904.14, "Y": 66.93, - "Z": 5494.53 + "Z": 5494.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715092,7 +715092,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.07%", "API Exposure": "3.8%", "Concurrency Exposure": "0.0%", @@ -715191,7 +715191,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -715235,9 +715235,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2751.92, - "Y": 121.85, - "Z": 6400.34 + "X": 2751.84, + "Y": 121.84, + "Z": 6400.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715260,7 +715260,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "77.3%", "Error & Exception Exposure": "98.11%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "93.64%", "Testing Exposure": "2.72%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -715389,7 +715389,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -715433,9 +715433,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2474.55, + "X": 2474.51, "Y": 118.94, - "Z": 6009.67 + "Z": 6009.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715447,7 +715447,7 @@ "Total LOC": 97, "Coding LOC": 91, "Documentation LOC": 0, - "Structural Magnitude": 129.42, + "Structural Magnitude": 128.42, "Control Flow Ratio": "75.0%", "Popularity Rank": 12, "Raw Churn Frequency": 0.0, @@ -715460,14 +715460,14 @@ "Error & Exception Exposure": "99.69%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", - "API Exposure": "7.02%", + "API Exposure": "6.05%", "Concurrency Exposure": "99.87%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.48%", + "Documentation Exposure": "49.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -715533,7 +715533,7 @@ "Type/Safety Bypasses": 20, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 16, - "Exposed API / Public Exports": 4, + "Exposed API / Public Exports": 3, "State Mutations / Variable Reassignments": 79, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -715641,9 +715641,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1830.04, - "Y": 147.18, - "Z": 6569.37 + "X": 1830.07, + "Y": 147.17, + "Z": 6569.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715666,7 +715666,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "85.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.98%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -715765,7 +715765,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -715809,9 +715809,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2542.47, - "Y": 28.86, - "Z": 5656.42 + "X": 2542.43, + "Y": 28.87, + "Z": 5656.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715834,7 +715834,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "72.27%", - "Tech Debt Exposure": "94.57%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.13%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -715993,7 +715993,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -716039,9 +716039,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2367.13, - "Y": 149.64, - "Z": 6428.68 + "X": 2245.05, + "Y": 48.63, + "Z": 5410.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716053,7 +716053,7 @@ "Total LOC": 24, "Coding LOC": 21, "Documentation LOC": 0, - "Structural Magnitude": 17.52, + "Structural Magnitude": 16.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -716066,14 +716066,14 @@ "Error & Exception Exposure": "85.27%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", - "API Exposure": "6.46%", + "API Exposure": "4.55%", "Concurrency Exposure": "0.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": "96.66%", + "Documentation Exposure": "91.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -716119,7 +716119,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 10, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -716227,9 +716227,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2923.69, - "Y": 95.7, - "Z": 5558.3 + "X": 2923.59, + "Y": 95.71, + "Z": 5558.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716252,7 +716252,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.97%", "Error & Exception Exposure": "92.89%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.92%", "API Exposure": "4.16%", "Concurrency Exposure": "0.0%", @@ -716381,7 +716381,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -716415,7 +716415,7 @@ } }, "shell/ansible": { - "Directory Group Magnitude": 625.28, + "Directory Group Magnitude": 624.28, "File Count": 14, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "92.9%", @@ -716424,16 +716424,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "35.61%", "Error & Exception Exposure": "37.33%", - "Tech Debt Exposure": "79.86%", + "Tech Debt Exposure": "14.96%", "Testing Exposure": "12.63%", - "API Exposure": "2.31%", + "API Exposure": "2.18%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "54.16%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "59.52%", "Instability Exposure": "46.43%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "38.44%", + "Documentation Exposure": "37.03%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -716450,9 +716450,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -6412.08, + "X": -6412.03, "Y": -297.08, - "Z": -4506.9 + "Z": -4506.87 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -716607,9 +716607,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6039.28, + "X": -6039.24, "Y": -179.18, - "Z": -4041.44 + "Z": -4041.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716632,7 +716632,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "87.87%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.82%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -716741,7 +716741,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -716785,9 +716785,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -6538.34, + "X": -6538.3, "Y": -379.97, - "Z": -4656.68 + "Z": -4656.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716810,7 +716810,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.21%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -716909,7 +716909,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -716953,9 +716953,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6158.09, + "X": -6158.04, "Y": -292.28, - "Z": -5140.64 + "Z": -5140.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717087,7 +717087,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -717131,9 +717131,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5918.32, + "X": -5918.28, "Y": -240.29, - "Z": -4442.1 + "Z": -4442.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717156,7 +717156,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.99%", "Error & Exception Exposure": "88.67%", - "Tech Debt Exposure": "94.43%", + "Tech Debt Exposure": "63.73%", "Testing Exposure": "80.0%", "API Exposure": "2.42%", "Concurrency Exposure": "0.0%", @@ -717285,7 +717285,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -717334,9 +717334,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6154.53, + "X": -6154.48, "Y": -269.3, - "Z": -4143.81 + "Z": -4143.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717359,7 +717359,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "26.81%", - "Tech Debt Exposure": "80.87%", + "Tech Debt Exposure": "45.69%", "Testing Exposure": "80.0%", "API Exposure": "0.14%", "Concurrency Exposure": "0.0%", @@ -717498,7 +717498,7 @@ "Design Short Vars": 2, "Design Long Vars": 8, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -717544,9 +717544,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5649.72, + "X": -5649.68, "Y": -264.86, - "Z": -4908.08 + "Z": -4908.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717569,7 +717569,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.17%", "API Exposure": "5.4%", "Concurrency Exposure": "0.0%", @@ -717668,7 +717668,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -717714,9 +717714,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5536.6, + "X": -5536.56, "Y": -181.38, - "Z": -4826.03 + "Z": -4825.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717739,7 +717739,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "95.72%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "9.79%", "Concurrency Exposure": "0.0%", @@ -717848,7 +717848,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -717892,9 +717892,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5922.6, + "X": -5922.55, "Y": -244.29, - "Z": -5059.29 + "Z": -5059.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717917,7 +717917,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "7.79%", - "Tech Debt Exposure": "42.7%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", "API Exposure": "6.46%", "Concurrency Exposure": "0.0%", @@ -718066,7 +718066,7 @@ "Design Short Vars": 1, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -718110,9 +718110,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5746.42, + "X": -5746.37, "Y": -138.58, - "Z": -3837.83 + "Z": -3837.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718135,7 +718135,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -718234,7 +718234,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -718278,9 +718278,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6445.66, + "X": -6445.61, "Y": -276.61, - "Z": -4192.52 + "Z": -4192.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718303,7 +718303,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "63.33%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -718402,7 +718402,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -718446,9 +718446,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5398.42, + "X": -5398.38, "Y": -50.64, - "Z": -4128.27 + "Z": -4128.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718471,7 +718471,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.52%", "Error & Exception Exposure": "83.12%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", "API Exposure": "6.34%", "Concurrency Exposure": "0.0%", @@ -718570,7 +718570,7 @@ "Design Short Vars": 0, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -718614,9 +718614,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5209.09, + "X": -5209.05, "Y": -112.55, - "Z": -4507.5 + "Z": -4507.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718639,7 +718639,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.21%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -718738,7 +718738,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -718782,9 +718782,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5622.36, - "Y": -116.08, - "Z": -4283.66 + "X": -5622.46, + "Y": -116.13, + "Z": -4283.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718796,7 +718796,7 @@ "Total LOC": 47, "Coding LOC": 30, "Documentation LOC": 4, - "Structural Magnitude": 38.6, + "Structural Magnitude": 37.6, "Control Flow Ratio": "87.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -718809,14 +718809,14 @@ "Error & Exception Exposure": "69.36%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.92%", - "API Exposure": "1.79%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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.91%", + "Documentation Exposure": "40.17%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -718852,7 +718852,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 15, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 11, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 2, @@ -718959,7 +718959,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "60.82%", "Error & Exception Exposure": "62.55%", - "Tech Debt Exposure": "84.74%", + "Tech Debt Exposure": "12.76%", "Testing Exposure": "7.13%", "API Exposure": "0.0%", "Concurrency Exposure": "5.57%", @@ -718985,9 +718985,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -4157.08, + "X": -4157.07, "Y": 43.06, - "Z": 9888.7 + "Z": 9888.69 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -719142,9 +719142,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -3769.18, + "X": -3769.17, "Y": -15.96, - "Z": 9379.4 + "Z": 9379.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719167,7 +719167,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.34%", "Error & Exception Exposure": "98.47%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.8%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -719286,7 +719286,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -719330,9 +719330,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4449.91, + "X": -4449.9, "Y": -19.59, - "Z": 9884.87 + "Z": 9884.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719355,7 +719355,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "55.28%", "Error & Exception Exposure": "94.89%", - "Tech Debt Exposure": "98.69%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.03%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -719494,7 +719494,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -719542,7 +719542,7 @@ "2. Topological Coordinates": { "X": -4572.09, "Y": -120.97, - "Z": 8511.43 + "Z": 8511.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719565,7 +719565,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.99%", "Error & Exception Exposure": "82.85%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.06%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -719684,7 +719684,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -719730,9 +719730,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4947.96, + "X": -4947.95, "Y": -26.65, - "Z": 9396.29 + "Z": 9396.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719898,9 +719898,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4021.16, + "X": -4021.15, "Y": 23.53, - "Z": 9636.03 + "Z": 9636.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719923,7 +719923,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "96.08%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "91.38%", "Testing Exposure": "2.76%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720062,7 +720062,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -720110,7 +720110,7 @@ "2. Topological Coordinates": { "X": -4284.74, "Y": -157.64, - "Z": 8652.24 + "Z": 8652.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -720133,7 +720133,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.17%", "Error & Exception Exposure": "99.3%", - "Tech Debt Exposure": "89.01%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720282,7 +720282,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -720326,9 +720326,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4015.26, + "X": -4015.25, "Y": -149.73, - "Z": 8681.94 + "Z": 8681.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -720351,7 +720351,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.12%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720480,7 +720480,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -720524,9 +720524,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4847.56, + "X": -4847.55, "Y": -107.56, - "Z": 9288.29 + "Z": 9288.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -720549,7 +720549,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "76.74%", "Error & Exception Exposure": "85.81%", - "Tech Debt Exposure": "99.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.5%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720658,7 +720658,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -720702,9 +720702,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4951.0, + "X": -4950.99, "Y": -92.36, - "Z": 8696.66 + "Z": 8696.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -720727,7 +720727,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720826,7 +720826,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -720870,9 +720870,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3634.71, + "X": -3634.7, "Y": -136.49, - "Z": 8927.55 + "Z": 8927.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -720895,7 +720895,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720994,7 +720994,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -721038,9 +721038,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4767.92, + "X": -4767.91, "Y": 29.23, - "Z": 9795.76 + "Z": 9795.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -721063,7 +721063,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -721162,7 +721162,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -721206,9 +721206,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4603.99, + "X": -4603.98, "Y": 7.26, - "Z": 9311.25 + "Z": 9311.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -721231,7 +721231,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.04%", "Error & Exception Exposure": "99.63%", - "Tech Debt Exposure": "51.42%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -721370,7 +721370,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -721418,7 +721418,7 @@ "2. Topological Coordinates": { "X": -3933.18, "Y": -113.3, - "Z": 8963.59 + "Z": 8963.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -721441,7 +721441,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.67%", "Error & Exception Exposure": "99.24%", - "Tech Debt Exposure": "99.61%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -721570,7 +721570,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -721614,9 +721614,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4294.25, + "X": -4294.24, "Y": -103.58, - "Z": 9095.52 + "Z": 9095.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -721639,7 +721639,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "79.0%", "Error & Exception Exposure": "99.59%", - "Tech Debt Exposure": "33.5%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "83.5%", @@ -721828,7 +721828,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -725610,9 +725610,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3075.65, + "X": 3075.59, "Y": -338.21, - "Z": 7200.99 + "Z": 7200.82 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -725767,9 +725767,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3106.81, + "X": 3106.75, "Y": -406.69, - "Z": 7706.57 + "Z": 7706.4 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -725924,9 +725924,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 2077.97, + "X": 2077.91, "Y": -192.07, - "Z": 7795.7 + "Z": 7795.52 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -726081,9 +726081,9 @@ "Identity Proof": "Metadata Anchor (NOTICE)" }, "2. Topological Coordinates": { - "X": 2915.07, + "X": 2915.0, "Y": -252.8, - "Z": 7050.15 + "Z": 7049.97 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -726238,9 +726238,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2463.87, + "X": 2463.81, "Y": -272.98, - "Z": 7965.4 + "Z": 7965.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -726428,9 +726428,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2134.16, + "X": 2134.09, "Y": -157.85, - "Z": 7523.62 + "Z": 7523.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -726776,9 +726776,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2684.85, + "X": 2684.79, "Y": -180.49, - "Z": 7024.7 + "Z": 7024.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -727168,9 +727168,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2834.21, + "X": 2834.15, "Y": -329.2, - "Z": 7886.01 + "Z": 7885.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -727537,9 +727537,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2365.55, + "X": 2365.48, "Y": -216.96, - "Z": 7618.62 + "Z": 7618.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728030,9 +728030,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2569.74, + "X": 2569.68, "Y": -230.5, - "Z": 7584.11 + "Z": 7583.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729801,9 +729801,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2364.46, + "X": 2364.4, "Y": -153.12, - "Z": 6836.7 + "Z": 6836.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -757667,7 +757667,7 @@ } }, "shell/sqlite": { - "Directory Group Magnitude": 459.2, + "Directory Group Magnitude": 458.2, "File Count": 13, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "92.3%", @@ -757676,9 +757676,9 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "35.49%", "Error & Exception Exposure": "66.87%", - "Tech Debt Exposure": "75.36%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "8.21%", - "API Exposure": "0.29%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "46.15%", "Commented Logic Exposure": "2.64%", @@ -757884,7 +757884,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.68%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.93%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -757993,7 +757993,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -758062,7 +758062,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "98.62%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -758171,7 +758171,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -758240,7 +758240,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "81.23%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "66.13%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -758369,7 +758369,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -758438,7 +758438,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.76%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "85.14%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -758547,7 +758547,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -758620,7 +758620,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.23%", "Error & Exception Exposure": "99.77%", - "Tech Debt Exposure": "28.59%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -758829,7 +758829,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -758898,7 +758898,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "34.05%", "Error & Exception Exposure": "91.62%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.94%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -759076,8 +759076,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 7, - "Orphaned Logic": 1, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -759148,7 +759148,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.22%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -759267,7 +759267,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -759311,9 +759311,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 6634.12, - "Y": 20.91, - "Z": -4501.41 + "X": 5799.89, + "Y": 40.56, + "Z": -3692.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -759336,7 +759336,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "11.51%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.85%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -759435,7 +759435,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -759479,9 +759479,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5836.81, - "Y": 9.6, - "Z": -3544.71 + "X": 6670.55, + "Y": -10.03, + "Z": -4352.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -759493,7 +759493,7 @@ "Total LOC": 37, "Coding LOC": 28, "Documentation LOC": 4, - "Structural Magnitude": 4.36, + "Structural Magnitude": 3.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -759506,7 +759506,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", - "API Exposure": "3.81%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -759539,7 +759539,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 15, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -759672,7 +759672,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "89.26%", "Error & Exception Exposure": "99.23%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.69%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -759781,7 +759781,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -759852,7 +759852,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "25.06%", "Error & Exception Exposure": "80.64%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -759961,7 +759961,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -760032,7 +760032,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -760131,7 +760131,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -774818,7 +774818,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "21.02%", "Error & Exception Exposure": "11.84%", - "Tech Debt Exposure": "94.4%", + "Tech Debt Exposure": "9.09%", "Testing Exposure": "2.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -774869,7 +774869,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "15.45%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -775028,7 +775028,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -775097,7 +775097,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "17.39%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.6%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -775345,8 +775345,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 7, - "Orphaned Logic": 5, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -775415,7 +775415,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "46.84%", "Error & Exception Exposure": "61.42%", - "Tech Debt Exposure": "66.13%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.69%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -775554,7 +775554,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -775623,7 +775623,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "12.07%", "Error & Exception Exposure": "40.42%", - "Tech Debt Exposure": "73.82%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -775951,8 +775951,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 2, - "Orphaned Logic": 1, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -776021,7 +776021,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "10.94%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -776170,7 +776170,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -776239,7 +776239,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "14.4%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.99%", "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -776348,7 +776348,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -776417,7 +776417,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "13.88%", "Error & Exception Exposure": "28.42%", - "Tech Debt Exposure": "99.76%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -776925,8 +776925,8 @@ "Design Upper Case": 0, "Design Short Vars": 5, "Design Long Vars": 0, - "Duplicate Logic": 4, - "Orphaned Logic": 13, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -776995,7 +776995,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "9.23%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.61%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -777124,7 +777124,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -777193,7 +777193,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "12.71%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.56%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -777342,7 +777342,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -777411,7 +777411,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "51.47%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -777510,7 +777510,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -777579,7 +777579,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.61%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -777678,7 +777678,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797578,7 +797578,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "5.49%", "Error & Exception Exposure": "33.6%", - "Tech Debt Exposure": "90.91%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.62%", "API Exposure": "0.42%", "Concurrency Exposure": "0.0%", @@ -797786,7 +797786,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.84%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -797975,7 +797975,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798044,7 +798044,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.82%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -798153,7 +798153,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798222,7 +798222,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -798331,7 +798331,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798400,7 +798400,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.36%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -798599,7 +798599,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798668,7 +798668,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -798767,7 +798767,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798836,7 +798836,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "13.14%", "Error & Exception Exposure": "84.62%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -798975,7 +798975,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799044,7 +799044,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -799173,7 +799173,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799242,7 +799242,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "94.1%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.14%", "API Exposure": "4.63%", "Concurrency Exposure": "0.0%", @@ -799361,7 +799361,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799430,7 +799430,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "98.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -799599,7 +799599,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799668,7 +799668,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -801737,7 +801737,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 198, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -801806,9 +801806,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -4576.34, + "X": -4576.33, "Y": 99.18, - "Z": 10610.36 + "Z": 10610.35 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -801965,7 +801965,7 @@ "2. Topological Coordinates": { "X": -4313.79, "Y": 191.44, - "Z": 10129.75 + "Z": 10129.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802120,9 +802120,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4069.66, + "X": -4069.65, "Y": 187.76, - "Z": 10761.84 + "Z": 10761.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802290,9 +802290,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4807.34, + "X": -4807.33, "Y": 107.58, - "Z": 10237.09 + "Z": 10237.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802458,9 +802458,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4390.23, + "X": -4390.22, "Y": 179.55, - "Z": 10396.93 + "Z": 10396.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802701,9 +802701,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -3977.43, + "X": -3977.42, "Y": 253.19, - "Z": 10025.73 + "Z": 10025.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -831251,7 +831251,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "6.15%", "Error & Exception Exposure": "75.28%", - "Tech Debt Exposure": "85.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "12.8%", "API Exposure": "0.34%", "Concurrency Exposure": "0.0%", @@ -831459,7 +831459,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "90.79%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -831568,7 +831568,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -831637,7 +831637,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "13.29%", "Error & Exception Exposure": "89.97%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -831786,7 +831786,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -831855,7 +831855,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.11%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.03%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -831984,7 +831984,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -832053,7 +832053,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "14.74%", "Error & Exception Exposure": "82.37%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -832242,7 +832242,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -832311,7 +832311,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "90.79%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -832420,7 +832420,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -832489,7 +832489,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "84.95%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "2.35%", "Concurrency Exposure": "0.0%", @@ -833878,7 +833878,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 130, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -834286,9 +834286,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4181.48, + "X": 4181.39, "Y": 97.47, - "Z": 8635.49 + "Z": 8635.32 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -834443,9 +834443,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4384.22, + "X": 4384.13, "Y": 141.84, - "Z": 8428.52 + "Z": 8428.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -839998,9 +839998,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5998.65, + "X": -5998.64, "Y": 189.55, - "Z": 10257.44 + "Z": 10257.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844148,7 +844148,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "5.51%", "Error & Exception Exposure": "70.41%", - "Tech Debt Exposure": "94.74%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -844176,7 +844176,7 @@ "2. Topological Coordinates": { "X": -2153.4, "Y": -100.23, - "Z": 9108.0 + "Z": 9107.98 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -844333,7 +844333,7 @@ "2. Topological Coordinates": { "X": -2910.7, "Y": -75.07, - "Z": 9127.37 + "Z": 9127.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844356,7 +844356,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "68.53%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -844525,7 +844525,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -844569,9 +844569,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2288.03, + "X": -2288.02, "Y": -103.55, - "Z": 9294.53 + "Z": 9294.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844594,7 +844594,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "71.35%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -844773,7 +844773,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -844817,9 +844817,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -3292.89, + "X": -3292.88, "Y": -72.06, - "Z": 9363.91 + "Z": 9363.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844842,7 +844842,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.5%", "Error & Exception Exposure": "74.31%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -845001,7 +845001,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -845047,7 +845047,7 @@ "2. Topological Coordinates": { "X": -2771.56, "Y": 64.38, - "Z": 9917.7 + "Z": 9917.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845070,7 +845070,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "71.35%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -845249,7 +845249,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -845295,7 +845295,7 @@ "2. Topological Coordinates": { "X": -2448.47, "Y": 75.02, - "Z": 10049.34 + "Z": 10049.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845318,7 +845318,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.21%", "Error & Exception Exposure": "73.05%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -845487,7 +845487,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -845533,7 +845533,7 @@ "2. Topological Coordinates": { "X": -3206.13, "Y": -31.21, - "Z": 9938.33 + "Z": 9938.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845556,7 +845556,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.98%", "Error & Exception Exposure": "68.38%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -845735,7 +845735,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -845779,9 +845779,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2043.31, + "X": -2043.3, "Y": -95.66, - "Z": 9297.81 + "Z": 9297.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845804,7 +845804,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.68%", "Error & Exception Exposure": "74.99%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -845963,7 +845963,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -846007,9 +846007,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -3094.95, + "X": -3094.94, "Y": 54.97, - "Z": 10187.52 + "Z": 10187.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846032,7 +846032,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "9.46%", "Error & Exception Exposure": "79.88%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -846191,7 +846191,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -846237,7 +846237,7 @@ "2. Topological Coordinates": { "X": -2403.14, "Y": 55.78, - "Z": 9979.67 + "Z": 9979.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846260,7 +846260,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.68%", "Error & Exception Exposure": "74.99%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -846459,7 +846459,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -846503,9 +846503,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -3137.36, + "X": -3137.35, "Y": -37.4, - "Z": 9376.76 + "Z": 9376.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846528,7 +846528,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.36%", "Error & Exception Exposure": "77.25%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.57%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -846727,7 +846727,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -846771,9 +846771,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2703.78, + "X": -2703.77, "Y": -82.96, - "Z": 9651.63 + "Z": 9651.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846796,7 +846796,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "65.23%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -846985,7 +846985,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -847029,9 +847029,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2609.89, + "X": -2609.88, "Y": -60.61, - "Z": 9181.41 + "Z": 9181.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -847054,7 +847054,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "68.58%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -847243,7 +847243,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -847287,9 +847287,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2418.23, + "X": -2418.22, "Y": -169.19, - "Z": 9106.58 + "Z": 9106.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -847312,7 +847312,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.51%", "Error & Exception Exposure": "77.66%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -847491,7 +847491,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -847537,7 +847537,7 @@ "2. Topological Coordinates": { "X": -2120.14, "Y": -34.54, - "Z": 9641.96 + "Z": 9641.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -847560,7 +847560,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.98%", "Error & Exception Exposure": "76.08%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -847739,7 +847739,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -847783,9 +847783,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2119.78, + "X": -2119.77, "Y": 15.2, - "Z": 10073.88 + "Z": 10073.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -847808,7 +847808,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "11.43%", "Error & Exception Exposure": "82.93%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -847957,7 +847957,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -848001,9 +848001,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -3457.47, + "X": -3457.46, "Y": -40.18, - "Z": 9789.64 + "Z": 9789.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -848026,7 +848026,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "11.43%", "Error & Exception Exposure": "82.93%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -848175,7 +848175,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -848221,7 +848221,7 @@ "2. Topological Coordinates": { "X": -2913.98, "Y": -20.81, - "Z": 9744.45 + "Z": 9744.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -848244,7 +848244,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "70.42%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -848433,7 +848433,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -848477,9 +848477,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2729.08, + "X": -2729.07, "Y": -121.0, - "Z": 8930.86 + "Z": 8930.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -848502,7 +848502,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "9.46%", "Error & Exception Exposure": "79.88%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -848661,7 +848661,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -848729,9 +848729,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3804.82, + "X": 3804.73, "Y": 220.88, - "Z": 7727.95 + "Z": 7727.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -848919,9 +848919,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3485.67, + "X": 3485.59, "Y": 80.83, - "Z": 8010.28 + "Z": 8010.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -849276,9 +849276,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3730.32, + "X": 3730.24, "Y": 88.82, - "Z": 7926.52 + "Z": 7926.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -849938,9 +849938,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3321.45, + "X": 3321.37, "Y": 55.02, - "Z": 7969.55 + "Z": 7969.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850150,9 +850150,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3514.8, + "X": 3514.71, "Y": 189.49, - "Z": 7484.65 + "Z": 7484.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850320,9 +850320,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4032.57, + "X": 4032.48, "Y": 96.85, - "Z": 8180.83 + "Z": 8180.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850531,9 +850531,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3570.94, + "X": 3570.86, "Y": 43.58, - "Z": 8444.24 + "Z": 8444.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850732,9 +850732,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4112.72, + "X": 4112.64, "Y": 249.89, - "Z": 7768.96 + "Z": 7768.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -865355,9 +865355,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3767.17, + "X": 3767.06, "Y": 16.76, - "Z": 6698.29 + "Z": 6698.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -865512,9 +865512,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3479.48, + "X": 3479.38, "Y": 49.47, - "Z": 6949.73 + "Z": 6949.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -865669,9 +865669,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3763.27, + "X": 3763.17, "Y": -76.57, - "Z": 6479.85 + "Z": 6479.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -865826,9 +865826,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4004.4, + "X": 4004.3, "Y": 6.25, - "Z": 7023.56 + "Z": 7023.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -865983,9 +865983,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3276.31, + "X": 3276.21, "Y": 10.01, - "Z": 6634.51 + "Z": 6634.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866140,9 +866140,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4102.1, + "X": 4102.0, "Y": 1.61, - "Z": 6688.85 + "Z": 6688.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866297,9 +866297,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3613.42, + "X": 3613.32, "Y": 51.98, - "Z": 7189.61 + "Z": 7189.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866454,9 +866454,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3445.38, + "X": 3445.28, "Y": -98.14, - "Z": 6172.23 + "Z": 6172.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866611,9 +866611,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4219.12, + "X": 4219.02, "Y": 55.71, - "Z": 6993.58 + "Z": 6993.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866768,9 +866768,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3167.03, + "X": 3166.92, "Y": 24.54, - "Z": 6908.7 + "Z": 6908.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866925,9 +866925,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3988.6, + "X": 3988.5, "Y": -131.27, - "Z": 6255.06 + "Z": 6254.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -867082,9 +867082,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3932.31, + "X": 3932.21, "Y": 70.76, - "Z": 7338.03 + "Z": 7337.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -867239,9 +867239,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3128.32, + "X": 3128.22, "Y": -31.6, - "Z": 6323.82 + "Z": 6323.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -867396,9 +867396,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4384.15, + "X": 4384.05, "Y": 3.17, - "Z": 6462.99 + "Z": 6462.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869212,9 +869212,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6218.37, + "X": -6218.26, "Y": 109.85, - "Z": -8045.89 + "Z": -8045.75 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -869369,9 +869369,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5691.97, + "X": -5691.87, "Y": 139.12, - "Z": -8425.14 + "Z": -8425.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869526,9 +869526,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5709.72, + "X": -5709.61, "Y": 91.46, - "Z": -7751.32 + "Z": -7751.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869714,9 +869714,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5523.81, + "X": -5523.71, "Y": 67.31, - "Z": -7419.62 + "Z": -7419.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869882,9 +869882,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5940.32, + "X": -5940.22, "Y": 100.04, - "Z": -7579.96 + "Z": -7579.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875888,9 +875888,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4606.39, + "X": -4606.33, "Y": -77.64, - "Z": -8470.37 + "Z": -8470.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876186,9 +876186,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4320.34, + "X": -4320.28, "Y": -42.95, - "Z": -9147.48 + "Z": -9147.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876354,9 +876354,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4847.42, + "X": -4847.36, "Y": -172.45, - "Z": -9026.09 + "Z": -9025.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876522,9 +876522,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4109.48, + "X": -4109.42, "Y": 23.44, - "Z": -8520.0 + "Z": -8519.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876700,9 +876700,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4378.01, + "X": -4377.96, "Y": -92.58, - "Z": -8812.05 + "Z": -8811.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877856,7 +877856,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "5.38%", "Error & Exception Exposure": "47.52%", - "Tech Debt Exposure": "79.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.94%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -878064,7 +878064,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "40.44%", - "Tech Debt Exposure": "99.94%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -878233,7 +878233,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -878302,7 +878302,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "45.92%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -878471,7 +878471,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -878540,7 +878540,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "71.85%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -878778,8 +878778,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 4, - "Orphaned Logic": 9, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -878848,7 +878848,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "79.41%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -879017,7 +879017,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -880788,9 +880788,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 11185.32, + "X": 11185.29, "Y": -212.79, - "Z": 4019.93 + "Z": 4019.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881006,9 +881006,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 11403.3, + "X": 11403.28, "Y": -136.24, - "Z": 4373.27 + "Z": 4373.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881174,9 +881174,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 10949.92, + "X": 10949.89, "Y": -137.15, - "Z": 4252.76 + "Z": 4252.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881372,9 +881372,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 11570.19, + "X": 11570.16, "Y": -152.78, - "Z": 3742.04 + "Z": 3742.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881550,9 +881550,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 10778.2, + "X": 10778.18, "Y": -169.6, - "Z": 3952.46 + "Z": 3952.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881718,9 +881718,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 11260.64, + "X": 11260.62, "Y": -211.67, - "Z": 3916.68 + "Z": 3916.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881896,9 +881896,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 11023.33, + "X": 11023.31, "Y": -190.42, - "Z": 4486.95 + "Z": 4486.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882062,7 +882062,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "31.92%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.87%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.67%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -882113,7 +882113,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "51.47%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -882212,7 +882212,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -882281,7 +882281,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.61%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -882380,7 +882380,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -882449,7 +882449,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "17.39%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.6%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -882697,8 +882697,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 7, - "Orphaned Logic": 5, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884068,7 +884068,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884119,7 +884119,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884218,7 +884218,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884287,7 +884287,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884386,7 +884386,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884455,7 +884455,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884554,7 +884554,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884623,7 +884623,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884722,7 +884722,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884791,7 +884791,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884890,7 +884890,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884959,7 +884959,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885058,7 +885058,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885127,7 +885127,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885226,7 +885226,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885295,7 +885295,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885394,7 +885394,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885463,7 +885463,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885562,7 +885562,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885631,7 +885631,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885730,7 +885730,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885799,7 +885799,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885898,7 +885898,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885967,7 +885967,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -886066,7 +886066,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -886135,7 +886135,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -886234,7 +886234,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -886303,7 +886303,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -886402,7 +886402,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -886471,7 +886471,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -886570,7 +886570,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -886639,7 +886639,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -886738,7 +886738,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -886806,9 +886806,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7573.2, + "X": -7573.16, "Y": -160.84, - "Z": -5505.89 + "Z": -5505.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -886963,9 +886963,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7350.38, + "X": -7350.34, "Y": -103.73, - "Z": -6239.43 + "Z": -6239.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887106,204 +887106,23 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "proto/tensorflow/framework/tensor.proto": { - "1. Artifact Identity": { - "Filename": "tensor.proto", - "Path": "proto/tensorflow/framework/tensor.proto", - "Language": "Proto", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "proto", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .proto)" - }, - "2. Topological Coordinates": { - "X": -7371.5, - "Y": -123.93, - "Z": -5973.03 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 102, - "Coding LOC": 35, - "Documentation LOC": 42, - "Structural Magnitude": 15.7, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.143 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.1%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "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.53%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 21, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 27, - "Design Camel Case": 0, - "Design Snake Case": 27, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "sql/postgresql/mediawiki": { - "Directory Group Magnitude": 46.04, - "File Count": 1, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "46.88%", - "Error & Exception Exposure": "78.55%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.1%", - "API Exposure": "11.23%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.68%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "sql/postgresql/mediawiki/tables.sql": { + }, + "proto/tensorflow/framework/tensor.proto": { "1. Artifact Identity": { - "Filename": "tables.sql", - "Path": "sql/postgresql/mediawiki/tables.sql", - "Language": "Sqlite", + "Filename": "tensor.proto", + "Path": "proto/tensorflow/framework/tensor.proto", + "Language": "Proto", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "proto", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -9597.21, - "Y": -241.05, - "Z": -6125.11 + "X": -7371.46, + "Y": -123.93, + "Z": -5972.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887312,247 +887131,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 49, - "Coding LOC": 32, - "Documentation LOC": 9, - "Structural Magnitude": 46.04, - "Control Flow Ratio": "80.0%", + "Total LOC": 102, + "Coding LOC": 35, + "Documentation LOC": 42, + "Structural Magnitude": 15.7, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.719 + "Raw Cognitive Density": 0.143 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "46.88%", - "Error & Exception Exposure": "78.55%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.1%", - "API Exposure": "11.23%", + "Cognitive Load Exposure": "8.1%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.68%", + "Documentation Exposure": "15.53%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CREATE_Statement", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 15, - "End Line": 19 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 32, - "End Line": 36 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 20, - "End Line": 21 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 37, - "End Line": 38 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 22, - "End Line": 22 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 24, - "End Line": 24 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 39, - "End Line": 39 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 41, - "End Line": 41 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 25 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 42 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 9 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 10 - }, - { - "Function Name": "ALTER_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 14 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 23 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 28 - }, - { - "Function Name": "ALTER_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 31 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 40 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 45 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 47, - "End Line": 47 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 48 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, - "Sequential Logic Declarations": 2, - "Function Parameters": 4, - "Function/Method Declarations": 4, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 8, - "State Mutations / Variable Reassignments": 5, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -887567,11 +887185,11 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, + "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 4, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -887587,10 +887205,10 @@ "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 2, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 21, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -887607,14 +887225,14 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 27, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 27, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 8, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -887684,9 +887302,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": 2735.23, + "X": 2735.17, "Y": 13.48, - "Z": 9280.2 + "Z": 9280.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887850,9 +887468,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": 2944.92, + "X": 2944.86, "Y": -7.95, - "Z": 9276.69 + "Z": 9276.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888708,23 +888326,204 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "td/tensorflow/compiler/mlir/tfrt/tf_mlrt_tpu_ops.td": { + }, + "td/tensorflow/compiler/mlir/tfrt/tf_mlrt_tpu_ops.td": { + "1. Artifact Identity": { + "Filename": "tf_mlrt_tpu_ops.td", + "Path": "td/tensorflow/compiler/mlir/tfrt/tf_mlrt_tpu_ops.td", + "Language": "Td", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "td", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .td)" + }, + "2. Topological Coordinates": { + "X": -9321.1, + "Y": -168.7, + "Z": 2826.21 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 83, + "Coding LOC": 54, + "Documentation LOC": 11, + "Structural Magnitude": 16.08, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "28.03%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 39, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 12, + "Design Camel Case": 3, + "Design Snake Case": 9, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + } + } + }, + "sql/postgresql/mediawiki": { + "Directory Group Magnitude": 38.04, + "File Count": 1, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "46.88%", + "Error & Exception Exposure": "78.55%", + "Tech Debt Exposure": "95.11%", + "Testing Exposure": "3.1%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "39.66%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "sql/postgresql/mediawiki/tables.sql": { "1. Artifact Identity": { - "Filename": "tf_mlrt_tpu_ops.td", - "Path": "td/tensorflow/compiler/mlir/tfrt/tf_mlrt_tpu_ops.td", - "Language": "Td", + "Filename": "tables.sql", + "Path": "sql/postgresql/mediawiki/tables.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "td", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .td)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -9321.1, - "Y": -168.7, - "Z": 2826.21 + "X": -9595.67, + "Y": -241.05, + "Z": -6124.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888733,22 +888532,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 83, - "Coding LOC": 54, - "Documentation LOC": 11, - "Structural Magnitude": 16.08, - "Control Flow Ratio": "0.0%", + "Total LOC": 49, + "Coding LOC": 32, + "Documentation LOC": 9, + "Structural Magnitude": 38.04, + "Control Flow Ratio": "80.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.719 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "46.88%", + "Error & Exception Exposure": "78.55%", + "Tech Debt Exposure": "95.11%", + "Testing Exposure": "3.1%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -888756,23 +888555,224 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.03%", + "Documentation Exposure": "39.66%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CREATE_Statement", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 15, + "End Line": 19 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 32, + "End Line": 36 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 20, + "End Line": 21 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 37, + "End Line": 38 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 22, + "End Line": 22 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 24, + "End Line": 24 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 39, + "End Line": 39 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 41, + "End Line": 41 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 25 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 42, + "End Line": 42 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 9 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 10 + }, + { + "Function Name": "ALTER_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 14 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 23, + "End Line": 23 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 28 + }, + { + "Function Name": "ALTER_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 31, + "End Line": 31 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 40, + "End Line": 40 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 45 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 47, + "End Line": 47 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 48, + "End Line": 48 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Control Flow Branches": 8, + "Sequential Logic Declarations": 2, + "Function Parameters": 4, + "Function/Method Declarations": 4, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -888787,11 +888787,11 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 4, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -888807,10 +888807,10 @@ "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Event Listeners & Subscribers": 2, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 39, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -888827,11 +888827,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 12, - "Design Camel Case": 3, - "Design Snake Case": 9, + "Core Var Decl": 3, + "Design Camel Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -889736,9 +889736,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6649.63, + "X": -6649.49, "Y": -147.44, - "Z": -7316.7 + "Z": -7316.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889893,9 +889893,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6922.71, + "X": -6922.56, "Y": -198.73, - "Z": -7386.24 + "Z": -7386.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890050,9 +890050,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6681.47, + "X": -6681.32, "Y": -172.08, - "Z": -7752.02 + "Z": -7751.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894061,9 +894061,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3437.69, + "X": 3437.63, "Y": 10.06, - "Z": 8593.03 + "Z": 8592.88 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -894218,9 +894218,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3283.34, + "X": 3283.28, "Y": -22.31, - "Z": 9015.18 + "Z": 9015.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894379,9 +894379,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3457.47, + "X": 3457.4, "Y": 78.84, - "Z": 8300.27 + "Z": 8300.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894538,9 +894538,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3700.4, + "X": 3700.34, "Y": 46.7, - "Z": 8967.09 + "Z": 8966.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894698,9 +894698,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3024.18, + "X": 3024.11, "Y": 6.34, - "Z": 8590.42 + "Z": 8590.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897380,9 +897380,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7244.93, + "X": -7244.9, "Y": 164.39, - "Z": -6712.59 + "Z": -6712.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -898599,9 +898599,9 @@ "Identity Proof": "Single Indicator (Ext: .csv)" }, "2. Topological Coordinates": { - "X": -6375.86, + "X": -6375.76, "Y": 155.1, - "Z": -8020.75 + "Z": -8020.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -898927,7 +898927,7 @@ } }, "sqlite/flask_tutorial_sqlite": { - "Directory Group Magnitude": 12.54, + "Directory Group Magnitude": 10.54, "File Count": 3, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "66.7%", @@ -898936,16 +898936,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "6.96%", "Error & Exception Exposure": "29.38%", - "Tech Debt Exposure": "33.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.23%", - "API Exposure": "3.05%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "7.72%", "Specification Exposure": "48.89%", "Instability Exposure": "33.33%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "38.01%", + "Documentation Exposure": "35.76%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -898962,9 +898962,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5414.94, - "Y": -204.61, - "Z": 6744.23 + "X": 5413.56, + "Y": -204.31, + "Z": 6744.6 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -899119,9 +899119,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5459.41, - "Y": -174.26, - "Z": 7214.24 + "X": 5252.02, + "Y": -169.51, + "Z": 7400.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899133,7 +899133,7 @@ "Total LOC": 9, "Coding LOC": 7, "Documentation LOC": 0, - "Structural Magnitude": 6.44, + "Structural Magnitude": 4.44, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -899146,14 +899146,14 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.29%", - "API Exposure": "9.16%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.23%", + "Documentation Exposure": "39.48%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -899189,7 +899189,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -899297,9 +899297,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5205.3, - "Y": -147.84, - "Z": 7245.36 + "X": 5412.62, + "Y": -152.64, + "Z": 7053.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899322,7 +899322,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "15.89%", "Error & Exception Exposure": "88.14%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -899451,7 +899451,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -900834,7 +900834,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "2.5%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "50.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -901042,7 +901042,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.77%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -901141,7 +901141,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -901465,346 +901465,7 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "html/wordpress_blocks": { - "Directory Group Magnitude": 7.73, - "File Count": 4, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "75.0%", - "Static: Literature & Documentation": "25.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "3.75%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.54%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "23.33%", - "Instability Exposure": "37.5%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.32%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "html/wordpress_blocks/LICENSE.txt": { - "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "html/wordpress_blocks/LICENSE.txt", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "html", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" - }, - "2. Topological Coordinates": { - "X": 11874.36, - "Y": 179.76, - "Z": 2991.77 - }, - "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "N/A", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 385, - "Coding LOC": 0, - "Documentation LOC": 309, - "Structural Magnitude": 7.7, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "html/wordpress_blocks/index.html": { - "1. Artifact Identity": { - "Filename": "index.html", - "Path": "html/wordpress_blocks/index.html", - "Language": "Html", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "html", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (index.html)" - }, - "2. Topological Coordinates": { - "X": 11731.53, - "Y": 259.77, - "Z": 3133.04 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 28, - "Coding LOC": 5, - "Documentation LOC": 18, - "Structural Magnitude": 0.01, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.2 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.77%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "33.33%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.33%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 1, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 3, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 5, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 3, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -901822,9 +901483,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 3, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -901857,65 +901518,90 @@ "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "html/wordpress_blocks/page.html": { + } + } + }, + "html/wordpress_blocks": { + "Directory Group Magnitude": 7.73, + "File Count": 4, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "75.0%", + "Static: Literature & Documentation": "25.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "3.75%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.54%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "23.33%", + "Instability Exposure": "37.5%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "15.32%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "html/wordpress_blocks/LICENSE.txt": { "1. Artifact Identity": { - "Filename": "page.html", - "Path": "html/wordpress_blocks/page.html", - "Language": "Html", + "Filename": "LICENSE.txt", + "Path": "html/wordpress_blocks/LICENSE.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "html", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .html)" + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 11986.08, - "Y": 114.06, - "Z": 2749.43 + "X": 11874.36, + "Y": 179.76, + "Z": 2991.77 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 4, - "Documentation LOC": 10, - "Structural Magnitude": 0.01, + "Total LOC": 385, + "Coding LOC": 0, + "Documentation LOC": 309, + "Structural Magnitude": 7.7, "Control Flow Ratio": "0.0%", - "Popularity Rank": 3, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.5 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.61%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "26.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.14%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -901929,14 +901615,14 @@ "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 2, + "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 3, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -901961,7 +901647,7 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 2, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -901979,9 +901665,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -902012,28 +901698,28 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] }, - "html/wordpress_blocks/search.html": { + "html/wordpress_blocks/index.html": { "1. Artifact Identity": { - "Filename": "search.html", - "Path": "html/wordpress_blocks/search.html", + "Filename": "index.html", + "Path": "html/wordpress_blocks/index.html", "Language": "Html", "Architect": "Unknown Architect", "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "html", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .html)" + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (index.html)" }, "2. Topological Coordinates": { - "X": 12111.81, - "Y": 242.79, - "Z": 3479.24 + "X": 11731.53, + "Y": 259.77, + "Z": 3133.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902042,16 +901728,16 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 34, + "Total LOC": 28, "Coding LOC": 5, - "Documentation LOC": 22, + "Documentation LOC": 18, "Structural Magnitude": 0.01, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.4 + "Raw Cognitive Density": 1.2 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", @@ -902065,7 +901751,7 @@ "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.8%", + "Documentation Exposure": "21.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -902089,11 +901775,11 @@ "UI / View Layer Components": 3, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 6, + "Decorators and Annotations": 5, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -902171,89 +901857,65 @@ "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [] - } - } - }, - "css/wordpress": { - "Directory Group Magnitude": 7.7, - "File Count": 1, - "Ecosystem Fingerprint (Archetypes)": { - "Static: Literature & Documentation": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "0.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "css/wordpress/LICENSE.txt": { + }, + "html/wordpress_blocks/page.html": { "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "css/wordpress/LICENSE.txt", - "Language": "Plaintext", + "Filename": "page.html", + "Path": "html/wordpress_blocks/page.html", + "Language": "Html", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" + "Folder Dominant Lang": "html", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -5019.65, - "Y": 12.49, - "Z": -9127.1 + "X": 11986.08, + "Y": 114.06, + "Z": 2749.43 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 385, - "Coding LOC": 0, - "Documentation LOC": 309, - "Structural Magnitude": 7.7, + "Total LOC": 18, + "Coding LOC": 4, + "Documentation LOC": 10, + "Structural Magnitude": 0.01, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 3, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.61%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "26.67%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "21.14%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 2, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -902267,14 +901929,14 @@ "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, + "UI / View Layer Components": 2, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 3, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -902299,7 +901961,7 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 2, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -902317,9 +901979,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -902350,52 +902012,28 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 3, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "sqlite/dancer2_sqlite": { - "Directory Group Magnitude": 7.68, - "File Count": 2, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.13%", - "API Exposure": "7.47%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.52%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "sqlite/dancer2_sqlite/entries.sql": { + }, + "html/wordpress_blocks/search.html": { "1. Artifact Identity": { - "Filename": "entries.sql", - "Path": "sqlite/dancer2_sqlite/entries.sql", - "Language": "Sqlite", + "Filename": "search.html", + "Path": "html/wordpress_blocks/search.html", + "Language": "Html", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "html", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 2663.5, - "Y": 288.93, - "Z": -9993.19 + "X": 12111.81, + "Y": 242.79, + "Z": 3479.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902404,69 +902042,58 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.54, + "Total LOC": 34, + "Coding LOC": 5, + "Documentation LOC": 22, + "Structural Magnitude": 0.01, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.4 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.11%", - "API Exposure": "5.78%", + "Testing Exposure": "0.77%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "18.8%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 7 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 1, "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, + "UI / View Layer Components": 3, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 6, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -902491,8 +902118,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 5, + "Structural Tab Indentations": 3, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -902500,7 +902127,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 1, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -902509,9 +902136,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 3, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -902542,96 +902169,99 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "sqlite/dancer2_sqlite/users.sql": { + } + } + }, + "css/wordpress": { + "Directory Group Magnitude": 7.7, + "File Count": 1, + "Ecosystem Fingerprint (Archetypes)": { + "Static: Literature & Documentation": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", + "Instability Exposure": "0.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "css/wordpress/LICENSE.txt": { "1. Artifact Identity": { - "Filename": "users.sql", - "Path": "sqlite/dancer2_sqlite/users.sql", - "Language": "Sqlite", + "Filename": "LICENSE.txt", + "Path": "css/wordpress/LICENSE.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 2890.16, - "Y": 208.99, - "Z": -10255.92 + "X": -5019.59, + "Y": 12.49, + "Z": -9126.99 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 5.14, + "Total LOC": 385, + "Coding LOC": 0, + "Documentation LOC": 309, + "Structural Magnitude": 7.7, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.16%", - "API Exposure": "9.16%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.23%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "INSERT_Statement", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 5 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 2, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -902670,7 +902300,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -902711,7 +902341,7 @@ "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, - "Sec Entropy": 1, + "Sec Entropy": 0, "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, @@ -902720,7 +902350,7 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, @@ -902766,7 +902396,7 @@ "2. Topological Coordinates": { "X": -3455.45, "Y": 213.48, - "Z": 11249.4 + "Z": 11249.38 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -902923,7 +902553,7 @@ "2. Topological Coordinates": { "X": -3587.36, "Y": 193.72, - "Z": 11534.15 + "Z": 11534.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903080,7 +902710,7 @@ "2. Topological Coordinates": { "X": -3231.51, "Y": 333.18, - "Z": 11464.26 + "Z": 11464.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903254,7 +902884,7 @@ "2. Topological Coordinates": { "X": -3420.39, "Y": 186.08, - "Z": 11106.57 + "Z": 11106.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903437,9 +903067,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -2234.18, + "X": -2234.17, "Y": -96.74, - "Z": 11441.41 + "Z": 11441.39 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -903594,9 +903224,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -2366.72, + "X": -2366.71, "Y": -88.78, - "Z": 11651.42 + "Z": 11651.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903731,56 +903361,268 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "https://unpkg.com/xterm@4.18.0/css/xterm.css", + "src.mjs" + ] + } + } + }, + "sql/postgresql/sqlmap": { + "Directory Group Magnitude": 5.08, + "File Count": 1, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "89.26%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "93.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "67.14%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "sql/postgresql/sqlmap/dns_request.sql": { + "1. Artifact Identity": { + "Filename": "dns_request.sql", + "Path": "sql/postgresql/sqlmap/dns_request.sql", + "Language": "Sqlite", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "sqlite", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sql)" + }, + "2. Topological Coordinates": { + "X": 8622.44, + "Y": 104.77, + "Z": -4340.93 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 14, + "Coding LOC": 14, + "Documentation LOC": 0, + "Structural Magnitude": 5.08, + "Control Flow Ratio": "16.7%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.429 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "89.26%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "93.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "67.14%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "DROP_Statement", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 1, + "End Line": 12 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 13 + }, + { + "Function Name": "SELECT_Statement_[Unterminated]", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 14 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 3, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 1, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "https://unpkg.com/xterm@4.18.0/css/xterm.css", - "src.mjs" - ] + "9. Extracted Dependencies": [] } } }, - "sql/postgresql/sqlmap": { - "Directory Group Magnitude": 5.08, - "File Count": 1, + "sqlite/dancer2_sqlite": { + "Directory Group Magnitude": 4.68, + "File Count": 2, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "89.26%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.37%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.13%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.14%", + "Documentation Exposure": "39.48%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "sql/postgresql/sqlmap/dns_request.sql": { + "sqlite/dancer2_sqlite/entries.sql": { "1. Artifact Identity": { - "Filename": "dns_request.sql", - "Path": "sql/postgresql/sqlmap/dns_request.sql", + "Filename": "entries.sql", + "Path": "sqlite/dancer2_sqlite/entries.sql", "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "sqlite", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8622.44, - "Y": 104.77, - "Z": -4340.93 + "X": 2666.91, + "Y": 287.86, + "Z": -9993.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903789,75 +903631,233 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 14, + "Total LOC": 9, + "Coding LOC": 7, "Documentation LOC": 0, - "Structural Magnitude": 5.08, - "Control Flow Ratio": "16.7%", - "Popularity Rank": 0, + "Structural Magnitude": 1.54, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.429 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "89.26%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.37%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.11%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.14%", + "Documentation Exposure": "39.48%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "DROP_Statement", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "20.0%", + "Control Flow Ratio": "0.0%", "Start Line": 1, - "End Line": 12 - }, + "End Line": 7 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 5, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 1, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [] + }, + "sqlite/dancer2_sqlite/users.sql": { + "1. Artifact Identity": { + "Filename": "users.sql", + "Path": "sqlite/dancer2_sqlite/users.sql", + "Language": "Sqlite", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "sqlite", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sql)" + }, + "2. Topological Coordinates": { + "X": 2889.07, + "Y": 208.99, + "Z": -10251.99 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 7, + "Documentation LOC": 0, + "Structural Magnitude": 3.14, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.714 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.16%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "46.67%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "39.48%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "Declarative_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "INSERT_Statement", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 13 + "Start Line": 7, + "End Line": 8 }, { - "Function Name": "SELECT_Statement_[Unterminated]", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 14 + "Start Line": 1, + "End Line": 5 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 1, "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -903892,12 +903892,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -903922,7 +903922,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -903938,7 +903938,7 @@ "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, - "Sec Entropy": 0, + "Sec Entropy": 1, "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, @@ -903947,7 +903947,7 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, @@ -903990,9 +903990,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3992.4, + "X": 3992.34, "Y": 161.35, - "Z": 9108.36 + "Z": 9108.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -904688,7 +904688,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "13.9%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -904714,9 +904714,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2509.31, + "X": 2509.28, "Y": -179.88, - "Z": 9667.95 + "Z": 9667.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -904739,7 +904739,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "13.9%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -904848,7 +904848,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -905645,9 +905645,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5412.04, + "X": -5411.91, "Y": -155.19, - "Z": -9041.42 + "Z": -9041.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -905813,9 +905813,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5621.79, + "X": -5621.66, "Y": -246.07, - "Z": -8432.96 + "Z": -8432.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -905970,9 +905970,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5408.12, + "X": -5407.99, "Y": -270.45, - "Z": -8570.93 + "Z": -8570.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -909815,7 +909815,7 @@ "2. Topological Coordinates": { "X": -4378.26, "Y": 152.01, - "Z": 11478.1 + "Z": 11478.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -909991,9 +909991,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -4180.9, + "X": -4180.89, "Y": 110.36, - "Z": 11255.24 + "Z": 11255.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911742,9 +911742,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -2945.6, + "X": -2945.59, "Y": 185.26, - "Z": 11558.71 + "Z": 11558.69 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -912285,9 +912285,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 11750.34, + "X": 11750.31, "Y": -139.01, - "Z": 4724.84 + "Z": 4724.83 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -912466,9 +912466,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -4862.8, + "X": -4862.79, "Y": 90.84, - "Z": 11003.08 + "Z": 11003.06 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913371,9 +913371,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7494.04, + "X": -7494.0, "Y": -57.56, - "Z": -5373.25 + "Z": -5373.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914095,9 +914095,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6938.04, + "X": -6938.01, "Y": 266.93, - "Z": -7014.35 + "Z": -7014.32 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914457,9 +914457,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5858.34, + "X": 5629.11, "Y": 209.11, - "Z": 7151.45 + "Z": 6874.36 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914819,9 +914819,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -5940.61, + "X": -5940.51, "Y": -69.95, - "Z": -8478.22 + "Z": -8478.07 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915543,9 +915543,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -4476.36, + "X": -4476.3, "Y": 175.43, - "Z": -9445.76 + "Z": -9445.64 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915905,9 +915905,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3501.35, + "X": 3501.29, "Y": -26.04, - "Z": 9480.01 + "Z": 9479.86 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916629,9 +916629,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 1897.03, + "X": 1897.0, "Y": 215.25, - "Z": 10001.52 + "Z": 10001.39 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -918803,7 +918803,7 @@ "2. Topological Coordinates": { "X": -3817.97, "Y": 110.97, - "Z": 11834.24 + "Z": 11834.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -919344,9 +919344,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 11807.25, + "X": 11807.22, "Y": 255.88, - "Z": 5628.38 + "Z": 5628.37 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -919525,9 +919525,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -5748.93, + "X": -5748.92, "Y": -33.48, - "Z": 11076.67 + "Z": 11076.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920430,9 +920430,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7628.65, + "X": -7628.61, "Y": -9.01, - "Z": -6239.81 + "Z": -6239.77 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920973,9 +920973,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": -6857.46, + "X": -6857.32, "Y": 220.39, - "Z": -7800.29 + "Z": -7800.12 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921309,7 +921309,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "33.56%", - "Tech Debt Exposure": "50.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.79%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -921335,9 +921335,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5286.18, + "X": -5286.17, "Y": 60.21, - "Z": 10643.91 + "Z": 10643.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -921492,9 +921492,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5481.56, + "X": -5481.55, "Y": 17.77, - "Z": 10923.66 + "Z": 10923.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -921517,7 +921517,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "67.12%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -921626,7 +921626,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -921670,9 +921670,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5299.53, + "X": -5299.52, "Y": 26.93, - "Z": 10443.25 + "Z": 10443.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -921695,7 +921695,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "67.12%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -921804,7 +921804,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -921848,9 +921848,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5035.15, + "X": -5035.14, "Y": 1.84, - "Z": 10859.3 + "Z": 10859.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -925700,9 +925700,9 @@ "Identity Proof": "Single Indicator (Ext: .bat)" }, "2. Topological Coordinates": { - "X": 11794.51, + "X": 11794.48, "Y": -200.63, - "Z": 3948.79 + "Z": 3948.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -925857,7 +925857,7 @@ "Identity Proof": "Single Indicator (Ext: .bat)" }, "2. Topological Coordinates": { - "X": 11654.27, + "X": 11654.25, "Y": -263.49, "Z": 3846.88 }, @@ -926376,9 +926376,9 @@ "Identity Proof": "Single Indicator (Ext: .bat)" }, "2. Topological Coordinates": { - "X": 5612.93, + "X": 5610.26, "Y": -64.84, - "Z": 7787.13 + "Z": 7783.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index 291b96e3a..a5214e3df 100644 --- a/tests/golden_master_zero_dep_audit.json +++ b/tests/golden_master_zero_dep_audit.json @@ -11,14 +11,14 @@ "pyyaml": false }, "Target Root Name": "data", - "Absolute Project Path": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-31T18:16:21.322205+00:00", - "Total Scan Duration": "18.31 seconds" + "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", + "Analysis ISO Timestamp": "2026-08-31T20:57:30.709225+00:00", + "Total Scan Duration": "49.87 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -238,8 +238,8 @@ "health": { "avg_cognitive_load": 29.79, "avg_safety_score": 47.68, - "avg_tech_debt": 42.638, - "avg_documentation": 28.959 + "avg_tech_debt": 32.24, + "avg_documentation": 28.806 }, "composition": { "markdown": { @@ -365,7 +365,7 @@ "shell": { "files": 213, "loc": 26320, - "impact": 29727.299999999992 + "impact": 29717.299999999992 }, "fortran": { "files": 6, @@ -420,12 +420,12 @@ "livecode": { "files": 98, "loc": 18042, - "impact": 26808.34 + "impact": 26789.34 }, "lua": { "files": 109, "loc": 18112, - "impact": 28729.660000000003 + "impact": 28683.660000000003 }, "matlab": { "files": 6, @@ -465,7 +465,7 @@ "ruby": { "files": 14, "loc": 2951, - "impact": 2362.1199999999994 + "impact": 2360.1199999999994 }, "rust": { "files": 43, @@ -490,7 +490,7 @@ "sqlite": { "files": 80, "loc": 3242, - "impact": 1420.2099999999996 + "impact": 1407.2099999999996 }, "swift": { "files": 6, @@ -1247,13 +1247,13 @@ }, "lua/pandoc": { "file_count": 26, - "total_mass": 1355.84, + "total_mass": 1353.84, "avg_exposures": { "cognitive_load": 36.29, "safety_score": 60.0, - "tech_debt": 58.2, + "tech_debt": 35.4, "verification": 4.88, - "api_exposure": 2.92, + "api_exposure": 2.79, "concurrency": 0.0, "state_flux": 79.88, "dead_code": 1.12, @@ -1266,20 +1266,20 @@ }, "lua/redis": { "file_count": 21, - "total_mass": 719.96, + "total_mass": 715.96, "avg_exposures": { "cognitive_load": 37.06, "safety_score": 75.74, - "tech_debt": 57.03, + "tech_debt": 4.69, "verification": 5.52, - "api_exposure": 1.51, + "api_exposure": 1.24, "concurrency": 4.76, "state_flux": 80.95, "dead_code": 2.68, "spec_match": 61.9, "stability": 45.24, "churn": 0.0, - "documentation": 48.95, + "documentation": 47.11, "secrets_risk": 0.0 } }, @@ -1346,7 +1346,7 @@ "avg_exposures": { "cognitive_load": 60.13, "safety_score": 82.56, - "tech_debt": 7.85, + "tech_debt": 4.77, "verification": 57.48, "api_exposure": 0.0, "concurrency": 12.31, @@ -1726,7 +1726,7 @@ "avg_exposures": { "cognitive_load": 60.47, "safety_score": 82.57, - "tech_debt": 85.2, + "tech_debt": 11.22, "verification": 13.95, "api_exposure": 0.0, "concurrency": 9.1, @@ -1741,13 +1741,13 @@ }, "shell/sqlite": { "file_count": 13, - "total_mass": 459.2, + "total_mass": 458.2, "avg_exposures": { "cognitive_load": 35.49, "safety_score": 66.87, - "tech_debt": 75.36, + "tech_debt": 0.0, "verification": 8.21, - "api_exposure": 0.29, + "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 46.15, "dead_code": 2.64, @@ -1821,7 +1821,7 @@ "avg_exposures": { "cognitive_load": 5.38, "safety_score": 47.52, - "tech_debt": 79.98, + "tech_debt": 0.0, "verification": 1.94, "api_exposure": 0.0, "concurrency": 0.0, @@ -1840,7 +1840,7 @@ "avg_exposures": { "cognitive_load": 6.15, "safety_score": 75.28, - "tech_debt": 85.71, + "tech_debt": 0.0, "verification": 12.8, "api_exposure": 0.34, "concurrency": 0.0, @@ -2904,7 +2904,7 @@ "avg_exposures": { "cognitive_load": 72.65, "safety_score": 84.77, - "tech_debt": 20.92, + "tech_debt": 4.35, "verification": 59.21, "api_exposure": 5.41, "concurrency": 4.24, @@ -3489,20 +3489,20 @@ }, "ruby/rails": { "file_count": 8, - "total_mass": 741.52, + "total_mass": 740.52, "avg_exposures": { "cognitive_load": 30.9, "safety_score": 60.21, - "tech_debt": 44.67, + "tech_debt": 41.02, "verification": 50.6, - "api_exposure": 1.14, + "api_exposure": 1.11, "concurrency": 0.0, "state_flux": 76.05, "dead_code": 6.49, "spec_match": 86.67, "stability": 43.75, "churn": 0.0, - "documentation": 16.09, + "documentation": 15.34, "secrets_risk": 0.0 } }, @@ -3527,58 +3527,58 @@ }, "shell/ansible": { "file_count": 14, - "total_mass": 625.28, + "total_mass": 624.28, "avg_exposures": { "cognitive_load": 35.61, "safety_score": 37.33, - "tech_debt": 79.86, + "tech_debt": 14.96, "verification": 12.63, - "api_exposure": 2.31, + "api_exposure": 2.18, "concurrency": 0.0, "state_flux": 54.16, "dead_code": 0.0, "spec_match": 59.52, "stability": 46.43, "churn": 0.0, - "documentation": 38.44, + "documentation": 37.03, "secrets_risk": 0.0 } }, "shell/brew": { "file_count": 9, - "total_mass": 2060.32, + "total_mass": 2059.32, "avg_exposures": { "cognitive_load": 29.34, "safety_score": 36.82, - "tech_debt": 54.96, + "tech_debt": 41.52, "verification": 36.31, - "api_exposure": 1.17, + "api_exposure": 1.12, "concurrency": 0.0, "state_flux": 40.62, "dead_code": 0.0, "spec_match": 72.59, "stability": 44.44, "churn": 0.0, - "documentation": 14.67, + "documentation": 14.01, "secrets_risk": 0.0 } }, "shell/curl": { "file_count": 20, - "total_mass": 2458.48, + "total_mass": 2457.48, "avg_exposures": { "cognitive_load": 60.32, "safety_score": 56.64, - "tech_debt": 77.66, + "tech_debt": 9.29, "verification": 17.76, - "api_exposure": 1.64, + "api_exposure": 1.45, "concurrency": 3.28, "state_flux": 55.0, "dead_code": 0.77, "spec_match": 85.67, "stability": 47.5, "churn": 0.0, - "documentation": 34.6, + "documentation": 33.39, "secrets_risk": 0.0 } }, @@ -3588,7 +3588,7 @@ "avg_exposures": { "cognitive_load": 45.81, "safety_score": 85.32, - "tech_debt": 89.33, + "tech_debt": 0.0, "verification": 15.6, "api_exposure": 0.14, "concurrency": 1.33, @@ -3607,7 +3607,7 @@ "avg_exposures": { "cognitive_load": 60.82, "safety_score": 62.55, - "tech_debt": 84.74, + "tech_debt": 12.76, "verification": 7.13, "api_exposure": 0.0, "concurrency": 5.57, @@ -3626,7 +3626,7 @@ "avg_exposures": { "cognitive_load": 2.5, "safety_score": 0.0, - "tech_debt": 50.0, + "tech_debt": 0.0, "verification": 0.38, "api_exposure": 0.0, "concurrency": 0.0, @@ -3641,20 +3641,20 @@ }, "sqlite/flask_tutorial_sqlite": { "file_count": 3, - "total_mass": 12.54, + "total_mass": 10.54, "avg_exposures": { "cognitive_load": 6.96, "safety_score": 29.38, - "tech_debt": 33.33, + "tech_debt": 0.0, "verification": 1.23, - "api_exposure": 3.05, + "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 7.72, "spec_match": 48.89, "stability": 33.33, "churn": 0.0, - "documentation": 38.01, + "documentation": 35.76, "secrets_risk": 0.0 } }, @@ -3664,7 +3664,7 @@ "avg_exposures": { "cognitive_load": 5.51, "safety_score": 70.41, - "tech_debt": 94.74, + "tech_debt": 0.0, "verification": 2.35, "api_exposure": 0.0, "concurrency": 0.0, @@ -3683,7 +3683,7 @@ "avg_exposures": { "cognitive_load": 5.49, "safety_score": 33.6, - "tech_debt": 90.91, + "tech_debt": 0.0, "verification": 1.62, "api_exposure": 0.42, "concurrency": 0.0, @@ -4249,20 +4249,20 @@ }, "zig/tigerbeetle": { "file_count": 11, - "total_mass": 4587.28, + "total_mass": 4586.28, "avg_exposures": { "cognitive_load": 32.09, "safety_score": 57.29, "tech_debt": 20.72, "verification": 44.75, - "api_exposure": 3.63, + "api_exposure": 3.37, "concurrency": 0.0, "state_flux": 40.36, "dead_code": 1.04, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 47.36, + "documentation": 46.85, "secrets_risk": 0.0 } }, @@ -4557,7 +4557,7 @@ "avg_exposures": { "cognitive_load": 66.23, "safety_score": 92.36, - "tech_debt": 73.68, + "tech_debt": 2.7, "verification": 34.33, "api_exposure": 0.05, "concurrency": 1.08, @@ -4576,7 +4576,7 @@ "avg_exposures": { "cognitive_load": 83.72, "safety_score": 95.81, - "tech_debt": 83.96, + "tech_debt": 33.33, "verification": 41.18, "api_exposure": 0.39, "concurrency": 16.57, @@ -4595,7 +4595,7 @@ "avg_exposures": { "cognitive_load": 52.27, "safety_score": 84.37, - "tech_debt": 84.24, + "tech_debt": 0.0, "verification": 21.7, "api_exposure": 0.44, "concurrency": 0.99, @@ -4610,58 +4610,58 @@ }, "shell/kubernetes": { "file_count": 23, - "total_mass": 6015.0, + "total_mass": 6013.0, "avg_exposures": { "cognitive_load": 62.29, "safety_score": 62.48, - "tech_debt": 89.38, + "tech_debt": 57.09, "verification": 15.8, - "api_exposure": 1.72, + "api_exposure": 1.51, "concurrency": 16.64, "state_flux": 83.09, "dead_code": 2.53, "spec_match": 88.7, "stability": 50.0, "churn": 0.0, - "documentation": 33.62, + "documentation": 33.15, "secrets_risk": 0.0 } }, "shell/moby": { "file_count": 13, - "total_mass": 2038.02, + "total_mass": 2036.02, "avg_exposures": { "cognitive_load": 71.16, "safety_score": 76.58, - "tech_debt": 62.73, + "tech_debt": 17.41, "verification": 38.2, - "api_exposure": 1.59, + "api_exposure": 0.89, "concurrency": 6.47, "state_flux": 79.72, "dead_code": 0.94, "spec_match": 92.82, "stability": 50.0, "churn": 0.0, - "documentation": 30.84, + "documentation": 28.55, "secrets_risk": 0.0 } }, "shell/serenity": { "file_count": 23, - "total_mass": 637.94, + "total_mass": 635.94, "avg_exposures": { "cognitive_load": 70.92, "safety_score": 86.99, - "tech_debt": 90.92, + "tech_debt": 49.89, "verification": 5.65, - "api_exposure": 1.15, + "api_exposure": 1.03, "concurrency": 6.55, "state_flux": 99.95, "dead_code": 0.0, "spec_match": 92.17, "stability": 50.0, "churn": 0.0, - "documentation": 55.86, + "documentation": 55.25, "secrets_risk": 0.0 } }, @@ -5104,39 +5104,39 @@ }, "livecode/livecode": { "file_count": 98, - "total_mass": 26808.34, + "total_mass": 26789.34, "avg_exposures": { "cognitive_load": 45.43, "safety_score": 59.72, - "tech_debt": 62.39, + "tech_debt": 18.66, "verification": 20.62, - "api_exposure": 4.56, + "api_exposure": 4.23, "concurrency": 10.39, "state_flux": 63.42, "dead_code": 3.04, "spec_match": 96.39, "stability": 50.0, "churn": 0.0, - "documentation": 52.56, + "documentation": 51.75, "secrets_risk": 0.0 } }, "lua/cosmopolitan": { "file_count": 43, - "total_mass": 21484.2, + "total_mass": 21454.2, "avg_exposures": { "cognitive_load": 78.52, "safety_score": 72.22, - "tech_debt": 44.1, + "tech_debt": 20.15, "verification": 47.43, - "api_exposure": 1.16, + "api_exposure": 0.99, "concurrency": 26.19, "state_flux": 93.01, "dead_code": 2.82, "spec_match": 93.8, "stability": 50.0, "churn": 0.0, - "documentation": 37.19, + "documentation": 35.32, "secrets_risk": 0.0 } }, @@ -5146,7 +5146,7 @@ "avg_exposures": { "cognitive_load": 83.04, "safety_score": 95.16, - "tech_debt": 48.9, + "tech_debt": 0.0, "verification": 35.83, "api_exposure": 0.74, "concurrency": 0.0, @@ -5161,20 +5161,20 @@ }, "lua/freebsd-src": { "file_count": 16, - "total_mass": 3863.8, + "total_mass": 3853.8, "avg_exposures": { "cognitive_load": 70.28, "safety_score": 89.6, - "tech_debt": 40.54, + "tech_debt": 3.12, "verification": 31.59, - "api_exposure": 3.47, + "api_exposure": 3.3, "concurrency": 0.0, "state_flux": 99.9, "dead_code": 1.67, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 61.46, + "documentation": 59.22, "secrets_risk": 0.0 } }, @@ -5564,7 +5564,7 @@ "avg_exposures": { "cognitive_load": 13.9, "safety_score": 0.0, - "tech_debt": 100.0, + "tech_debt": 0.0, "verification": 2.36, "api_exposure": 0.0, "concurrency": 0.0, @@ -5579,20 +5579,20 @@ }, "sql/postgresql/mediawiki": { "file_count": 1, - "total_mass": 46.04, + "total_mass": 38.04, "avg_exposures": { "cognitive_load": 46.88, "safety_score": 78.55, - "tech_debt": 100.0, + "tech_debt": 95.11, "verification": 3.1, - "api_exposure": 11.23, + "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 99.68, + "documentation": 39.66, "secrets_risk": 0.0 } }, @@ -5602,7 +5602,7 @@ "avg_exposures": { "cognitive_load": 5.0, "safety_score": 89.26, - "tech_debt": 100.0, + "tech_debt": 0.0, "verification": 2.37, "api_exposure": 0.0, "concurrency": 0.0, @@ -5621,7 +5621,7 @@ "avg_exposures": { "cognitive_load": 31.92, "safety_score": 0.0, - "tech_debt": 99.87, + "tech_debt": 0.0, "verification": 2.67, "api_exposure": 0.0, "concurrency": 0.0, @@ -5636,20 +5636,20 @@ }, "sqlite/dancer2_sqlite": { "file_count": 2, - "total_mass": 7.68, + "total_mass": 4.68, "avg_exposures": { "cognitive_load": 5.0, "safety_score": 0.0, "tech_debt": 0.0, "verification": 1.13, - "api_exposure": 7.47, + "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 46.67, "stability": 50.0, "churn": 0.0, - "documentation": 45.52, + "documentation": 39.48, "secrets_risk": 0.0 } }, @@ -5659,7 +5659,7 @@ "avg_exposures": { "cognitive_load": 5.0, "safety_score": 33.56, - "tech_debt": 50.0, + "tech_debt": 0.0, "verification": 0.79, "api_exposure": 0.0, "concurrency": 0.0, @@ -5678,7 +5678,7 @@ "avg_exposures": { "cognitive_load": 5.0, "safety_score": 0.0, - "tech_debt": 100.0, + "tech_debt": 0.0, "verification": 0.36, "api_exposure": 0.0, "concurrency": 0.0, @@ -5697,7 +5697,7 @@ "avg_exposures": { "cognitive_load": 21.02, "safety_score": 11.84, - "tech_debt": 94.4, + "tech_debt": 9.09, "verification": 2.55, "api_exposure": 0.0, "concurrency": 0.0, @@ -6729,22 +6729,7 @@ { "name": "gengc.lua", "path": "lua/cosmopolitan/gengc.lua", - "value": 793.27 - }, - { - "name": "installeruiinstallcardbehavior.livecodescript", - "path": "livecode/livecode/installeruiinstallcardbehavior.livecodescript", - "value": 768.58 - }, - { - "name": "revdeploylibraryios.livecodescript", - "path": "livecode/livecode/revdeploylibraryios.livecodescript", - "value": 755.63 - }, - { - "name": "automaticactivationprocessinggroupbehavior.livecodescript", - "path": "livecode/livecode/automaticactivationprocessinggroupbehavior.livecodescript", - "value": 747.56 + "value": 785.69 }, { "name": "frames.ts", @@ -6756,11 +6741,6 @@ "path": "cobol/che-che4z_nist_ccvs85/IC2244.2.cbl", "value": 737.13 }, - { - "name": "cstack.lua", - "path": "lua/cosmopolitan/cstack.lua", - "value": 733.24 - }, { "name": "containerbackend.go", "path": "dockerfile/moby/builder/dockerfile/containerbackend.go", @@ -6771,10 +6751,30 @@ "path": "typescript/playwright/bidiConnection.ts", "value": 732.29 }, + { + "name": "revdeploylibraryios.livecodescript", + "path": "livecode/livecode/revdeploylibraryios.livecodescript", + "value": 731.2 + }, { "name": "IC2014.2.cbl", "path": "cobol/che-che4z_nist_ccvs85/IC2014.2.cbl", "value": 729.56 + }, + { + "name": "cstack.lua", + "path": "lua/cosmopolitan/cstack.lua", + "value": 729.03 + }, + { + "name": "dispatcher.ts", + "path": "typescript/playwright/dispatcher.ts", + "value": 728.94 + }, + { + "name": "connection.ts", + "path": "typescript/playwright/connection.ts", + "value": 724.53 } ], "lowest": [ @@ -118391,7 +118391,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "72.65%", "Error & Exception Exposure": "84.77%", - "Tech Debt Exposure": "20.92%", + "Tech Debt Exposure": "4.35%", "Testing Exposure": "59.21%", "API Exposure": "5.41%", "Concurrency Exposure": "4.24%", @@ -119265,7 +119265,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.95%", "Error & Exception Exposure": "97.69%", - "Tech Debt Exposure": "76.65%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.86%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -119424,7 +119424,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -119493,7 +119493,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.19%", "Error & Exception Exposure": "92.37%", - "Tech Debt Exposure": "74.49%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.73%", "API Exposure": "16.58%", "Concurrency Exposure": "0.0%", @@ -119602,7 +119602,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -119671,7 +119671,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.81%", "Error & Exception Exposure": "98.54%", - "Tech Debt Exposure": "9.33%", + "Tech Debt Exposure": "8.22%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "18.25%", @@ -119780,7 +119780,7 @@ "Design Short Vars": 39, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -119855,7 +119855,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.52%", "Error & Exception Exposure": "99.54%", - "Tech Debt Exposure": "9.49%", + "Tech Debt Exposure": "8.27%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "23.53%", @@ -119964,7 +119964,7 @@ "Design Short Vars": 43, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -120037,7 +120037,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.35%", "Error & Exception Exposure": "99.46%", - "Tech Debt Exposure": "9.59%", + "Tech Debt Exposure": "8.31%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "21.88%", @@ -120146,7 +120146,7 @@ "Design Short Vars": 39, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -120219,7 +120219,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "98.23%", - "Tech Debt Exposure": "93.89%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "15.01%", "Concurrency Exposure": "0.0%", @@ -120328,7 +120328,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -166777,7 +166777,7 @@ } }, "livecode/livecode": { - "Directory Group Magnitude": 26808.34, + "Directory Group Magnitude": 26789.34, "File Count": 98, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -166785,16 +166785,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "45.43%", "Error & Exception Exposure": "59.72%", - "Tech Debt Exposure": "62.39%", + "Tech Debt Exposure": "18.66%", "Testing Exposure": "20.62%", - "API Exposure": "4.56%", + "API Exposure": "4.23%", "Concurrency Exposure": "10.39%", "State Flux Exposure": "63.42%", "Commented Logic Exposure": "3.04%", "Specification Exposure": "96.39%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.56%", + "Documentation Exposure": "51.75%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -166836,7 +166836,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "96.23%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.95%", "API Exposure": "4.36%", "Concurrency Exposure": "0.0%", @@ -166945,7 +166945,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -167014,7 +167014,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "96.23%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.93%", "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", @@ -167123,7 +167123,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -167192,7 +167192,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "45.02%", "Error & Exception Exposure": "96.69%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.81%", "API Exposure": "5.72%", "Concurrency Exposure": "0.0%", @@ -167331,7 +167331,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -167400,7 +167400,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "93.81%", "Error & Exception Exposure": "82.42%", - "Tech Debt Exposure": "90.78%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.69%", "API Exposure": "7.8%", "Concurrency Exposure": "0.0%", @@ -167539,7 +167539,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -167608,7 +167608,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "82.86%", "Error & Exception Exposure": "97.23%", - "Tech Debt Exposure": "91.87%", + "Tech Debt Exposure": "71.28%", "Testing Exposure": "2.71%", "API Exposure": "8.2%", "Concurrency Exposure": "0.0%", @@ -167757,7 +167757,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -167826,7 +167826,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "54.72%", "Error & Exception Exposure": "60.38%", - "Tech Debt Exposure": "63.19%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "2.99%", "Concurrency Exposure": "0.0%", @@ -168015,7 +168015,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -168059,9 +168059,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -2457.58, - "Y": 54.52, - "Z": 1415.69 + "X": -1190.99, + "Y": -130.3, + "Z": -1082.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -168084,7 +168084,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "2.68%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "21.36%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -168183,7 +168183,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -168229,9 +168229,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1639.43, - "Y": 75.12, - "Z": 1037.07 + "X": -1640.04, + "Y": 74.99, + "Z": 1035.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -168243,7 +168243,7 @@ "Total LOC": 361, "Coding LOC": 65, "Documentation LOC": 195, - "Structural Magnitude": 6.8, + "Structural Magnitude": 5.8, "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -168256,7 +168256,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", - "API Exposure": "2.35%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -168289,7 +168289,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 20, @@ -168399,9 +168399,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -1540.51, + "X": -1540.55, "Y": -59.32, - "Z": -192.12 + "Z": -192.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -168413,7 +168413,7 @@ "Total LOC": 291, "Coding LOC": 204, "Documentation LOC": 17, - "Structural Magnitude": 249.08, + "Structural Magnitude": 248.08, "Control Flow Ratio": "44.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -168426,14 +168426,14 @@ "Error & Exception Exposure": "94.12%", "Tech Debt Exposure": "39.73%", "Testing Exposure": "80.0%", - "API Exposure": "4.97%", + "API Exposure": "4.56%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.35%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.05%", + "Documentation Exposure": "47.58%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -168619,7 +168619,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 9, "State Mutations / Variable Reassignments": 128, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -168727,9 +168727,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -2256.98, - "Y": 13.87, - "Z": 1088.53 + "X": -3234.03, + "Y": -221.53, + "Z": -1165.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -168741,7 +168741,7 @@ "Total LOC": 145, "Coding LOC": 31, "Documentation LOC": 85, - "Structural Magnitude": 20.12, + "Structural Magnitude": 19.12, "Control Flow Ratio": "80.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -168754,7 +168754,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", - "API Exposure": "2.78%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -168807,7 +168807,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 4, @@ -168917,9 +168917,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -2778.09, - "Y": 1.42, - "Z": 1092.06 + "X": -1139.99, + "Y": -126.74, + "Z": -912.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -168942,7 +168942,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "89.0%", "Error & Exception Exposure": "78.14%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.94%", "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -169071,7 +169071,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -169142,7 +169142,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "62.68%", "Error & Exception Exposure": "91.82%", - "Tech Debt Exposure": "39.73%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "9.75%", "Concurrency Exposure": "0.0%", @@ -169341,7 +169341,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -169410,7 +169410,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.73%", "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", @@ -169519,7 +169519,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -169563,9 +169563,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -2995.46, - "Y": -0.73, - "Z": 1389.96 + "X": -860.24, + "Y": -112.11, + "Z": -606.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -169588,7 +169588,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "82.45%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", @@ -169697,7 +169697,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -169766,7 +169766,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "81.76%", "Error & Exception Exposure": "83.7%", - "Tech Debt Exposure": "99.9%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "4.08%", "Concurrency Exposure": "0.0%", @@ -169875,7 +169875,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -169944,7 +169944,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.97%", "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.64%", "API Exposure": "8.32%", "Concurrency Exposure": "99.98%", @@ -170073,7 +170073,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -170142,7 +170142,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "85.54%", "Error & Exception Exposure": "89.4%", - "Tech Debt Exposure": "92.41%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.6%", "API Exposure": "3.22%", "Concurrency Exposure": "0.0%", @@ -170251,7 +170251,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -170295,9 +170295,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -2861.81, - "Y": -168.15, - "Z": -974.97 + "X": -2861.75, + "Y": -168.14, + "Z": -974.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -170309,7 +170309,7 @@ "Total LOC": 182, "Coding LOC": 138, "Documentation LOC": 12, - "Structural Magnitude": 107.96, + "Structural Magnitude": 106.96, "Control Flow Ratio": "68.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -170322,14 +170322,14 @@ "Error & Exception Exposure": "78.75%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "8.84%", + "API Exposure": "8.44%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.79%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.16%", + "Documentation Exposure": "62.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -170435,7 +170435,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 9, + "Exposed API / Public Exports": 8, "State Mutations / Variable Reassignments": 36, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -170543,9 +170543,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -867.64, - "Y": -100.37, - "Z": -603.87 + "X": -3004.01, + "Y": 11.0, + "Z": 1393.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -170557,7 +170557,7 @@ "Total LOC": 212, "Coding LOC": 51, "Documentation LOC": 94, - "Structural Magnitude": 6.02, + "Structural Magnitude": 5.02, "Control Flow Ratio": "33.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -170570,7 +170570,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", - "API Exposure": "2.59%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -170603,7 +170603,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 16, @@ -170738,7 +170738,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "6.1%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "96.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -170837,7 +170837,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -170908,7 +170908,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "14.7%", "Error & Exception Exposure": "75.06%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.91%", "Testing Exposure": "2.46%", "API Exposure": "6.62%", "Concurrency Exposure": "0.0%", @@ -171037,7 +171037,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -171106,7 +171106,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.37%", "Error & Exception Exposure": "98.01%", - "Tech Debt Exposure": "67.54%", + "Tech Debt Exposure": "28.51%", "Testing Exposure": "80.0%", "API Exposure": "6.03%", "Concurrency Exposure": "0.0%", @@ -171245,7 +171245,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -171317,7 +171317,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.12%", "Error & Exception Exposure": "74.02%", - "Tech Debt Exposure": "13.51%", + "Tech Debt Exposure": "9.74%", "Testing Exposure": "80.0%", "API Exposure": "11.61%", "Concurrency Exposure": "83.8%", @@ -172226,7 +172226,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -172297,7 +172297,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "74.92%", - "Tech Debt Exposure": "84.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", "API Exposure": "7.1%", "Concurrency Exposure": "0.0%", @@ -172436,7 +172436,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -172480,9 +172480,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1343.02, - "Y": -171.12, - "Z": -1594.31 + "X": -3842.98, + "Y": -104.82, + "Z": 34.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -172505,7 +172505,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "27.5%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -172604,7 +172604,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -172675,7 +172675,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "17.51%", "Error & Exception Exposure": "68.22%", - "Tech Debt Exposure": "16.75%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -172794,7 +172794,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -172840,9 +172840,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -3281.69, - "Y": -215.59, - "Z": -1230.81 + "X": -2304.65, + "Y": 19.78, + "Z": 1022.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -172865,7 +172865,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "51.36%", "Error & Exception Exposure": "79.55%", - "Tech Debt Exposure": "98.69%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", "API Exposure": "7.8%", "Concurrency Exposure": "0.0%", @@ -173004,7 +173004,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -173048,9 +173048,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -3401.52, - "Y": 1.17, - "Z": 611.1 + "X": -1024.77, + "Y": 6.61, + "Z": -179.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -173073,7 +173073,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "76.85%", "Error & Exception Exposure": "87.13%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.59%", "API Exposure": "7.28%", "Concurrency Exposure": "0.0%", @@ -173202,7 +173202,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -173246,9 +173246,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -3914.27, - "Y": -101.4, - "Z": 144.06 + "X": -986.27, + "Y": 36.45, + "Z": 620.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -173271,7 +173271,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "26.32%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -173370,7 +173370,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -173441,7 +173441,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.67%", "Error & Exception Exposure": "80.2%", - "Tech Debt Exposure": "23.16%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "5.3%", "Concurrency Exposure": "0.0%", @@ -173640,7 +173640,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -173709,7 +173709,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "32.45%", "Error & Exception Exposure": "80.85%", - "Tech Debt Exposure": "99.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "10.62%", "Concurrency Exposure": "0.0%", @@ -173868,7 +173868,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -173912,9 +173912,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -1550.49, - "Y": 39.06, - "Z": 839.39 + "X": -2755.61, + "Y": 18.34, + "Z": 1041.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -173926,7 +173926,7 @@ "Total LOC": 35, "Coding LOC": 13, "Documentation LOC": 12, - "Structural Magnitude": 14.46, + "Structural Magnitude": 13.46, "Control Flow Ratio": "25.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -173939,14 +173939,14 @@ "Error & Exception Exposure": "89.86%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.24%", - "API Exposure": "7.74%", + "API Exposure": "6.13%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "85.02%", + "Documentation Exposure": "81.38%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -173992,7 +173992,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -174125,7 +174125,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "48.64%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -174224,7 +174224,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -174295,7 +174295,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "75.68%", "Error & Exception Exposure": "95.54%", - "Tech Debt Exposure": "63.19%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", "API Exposure": "7.42%", "Concurrency Exposure": "0.0%", @@ -174444,7 +174444,7 @@ "Design Short Vars": 6, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -174513,7 +174513,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "63.91%", "Error & Exception Exposure": "87.69%", - "Tech Debt Exposure": "98.07%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", "API Exposure": "7.83%", "Concurrency Exposure": "0.0%", @@ -174652,7 +174652,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -174696,9 +174696,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -3256.35, - "Y": 22.59, - "Z": 902.26 + "X": -912.96, + "Y": -27.52, + "Z": -491.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -174721,7 +174721,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "47.23%", "Error & Exception Exposure": "84.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "6.59%", "Concurrency Exposure": "0.0%", @@ -174840,7 +174840,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -174909,7 +174909,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "10.55%", "Error & Exception Exposure": "66.76%", - "Tech Debt Exposure": "87.12%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", "API Exposure": "6.31%", "Concurrency Exposure": "0.0%", @@ -175038,7 +175038,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -175107,7 +175107,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "22.44%", "Error & Exception Exposure": "78.58%", - "Tech Debt Exposure": "99.85%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "7.16%", "Concurrency Exposure": "0.0%", @@ -175236,7 +175236,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -175280,9 +175280,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -2745.71, - "Y": 85.84, - "Z": 1397.18 + "X": -762.09, + "Y": 50.72, + "Z": 298.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -175294,7 +175294,7 @@ "Total LOC": 110, "Coding LOC": 21, "Documentation LOC": 61, - "Structural Magnitude": 2.92, + "Structural Magnitude": 1.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -175307,7 +175307,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", - "API Exposure": "2.94%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -175340,7 +175340,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 6, @@ -175450,9 +175450,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -1003.28, - "Y": -34.81, - "Z": -176.27 + "X": -3379.99, + "Y": -40.27, + "Z": 614.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -175464,7 +175464,7 @@ "Total LOC": 41, "Coding LOC": 20, "Documentation LOC": 12, - "Structural Magnitude": 18.9, + "Structural Magnitude": 17.9, "Control Flow Ratio": "66.7%", "Popularity Rank": 10, "Raw Churn Frequency": 0.0, @@ -175477,14 +175477,14 @@ "Error & Exception Exposure": "81.87%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.66%", - "API Exposure": "7.42%", + "API Exposure": "5.88%", "Concurrency Exposure": "0.0%", "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.81%", + "Documentation Exposure": "87.06%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -175530,7 +175530,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -175663,7 +175663,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "79.14%", "Error & Exception Exposure": "94.72%", - "Tech Debt Exposure": "98.69%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.63%", "API Exposure": "6.83%", "Concurrency Exposure": "0.0%", @@ -175792,7 +175792,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -176060,7 +176060,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 9, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -176131,7 +176131,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "80.01%", "Error & Exception Exposure": "92.27%", - "Tech Debt Exposure": "39.73%", + "Tech Debt Exposure": "19.19%", "Testing Exposure": "80.0%", "API Exposure": "3.84%", "Concurrency Exposure": "0.0%", @@ -176410,7 +176410,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -176481,7 +176481,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "78.81%", "Error & Exception Exposure": "91.56%", - "Tech Debt Exposure": "94.57%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "6.48%", "Concurrency Exposure": "0.0%", @@ -176610,7 +176610,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -176656,9 +176656,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1130.67, - "Y": -119.96, - "Z": -786.46 + "X": -3676.71, + "Y": -168.32, + "Z": -409.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -176850,7 +176850,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -176921,7 +176921,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "29.27%", "Error & Exception Exposure": "68.15%", - "Tech Debt Exposure": "87.12%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.86%", "API Exposure": "9.51%", "Concurrency Exposure": "0.0%", @@ -177080,7 +177080,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -177149,7 +177149,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "37.14%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -177248,7 +177248,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -177294,9 +177294,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -2144.43, - "Y": -9.51, - "Z": 767.05 + "X": -1745.96, + "Y": -174.09, + "Z": -1196.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -177319,7 +177319,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "73.11%", "Error & Exception Exposure": "83.78%", - "Tech Debt Exposure": "84.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", "API Exposure": "1.24%", "Concurrency Exposure": "0.0%", @@ -177458,7 +177458,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -177502,9 +177502,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -1766.95, - "Y": -155.84, - "Z": -945.14 + "X": -2165.47, + "Y": 8.73, + "Z": 1018.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -177516,7 +177516,7 @@ "Total LOC": 210, "Coding LOC": 141, "Documentation LOC": 27, - "Structural Magnitude": 55.12, + "Structural Magnitude": 54.12, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -177529,14 +177529,14 @@ "Error & Exception Exposure": "68.02%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", - "API Exposure": "9.86%", + "API Exposure": "9.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "93.84%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "82.04%", + "Documentation Exposure": "78.08%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -177682,7 +177682,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 13, + "Exposed API / Public Exports": 12, "State Mutations / Variable Reassignments": 17, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -177815,7 +177815,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "67.69%", "Error & Exception Exposure": "69.94%", - "Tech Debt Exposure": "23.03%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.13%", "Concurrency Exposure": "0.0%", @@ -178104,7 +178104,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -178173,7 +178173,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "64.33%", "Error & Exception Exposure": "83.65%", - "Tech Debt Exposure": "96.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "7.58%", "Concurrency Exposure": "0.0%", @@ -178312,7 +178312,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -178358,9 +178358,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -966.22, - "Y": -137.45, - "Z": -1114.38 + "X": -3160.73, + "Y": -255.56, + "Z": -1635.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -178372,7 +178372,7 @@ "Total LOC": 131, "Coding LOC": 34, "Documentation LOC": 60, - "Structural Magnitude": 3.18, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 7, "Raw Churn Frequency": 0.0, @@ -178385,7 +178385,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", - "API Exposure": "2.84%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -178418,7 +178418,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 10, @@ -178553,7 +178553,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "17.11%", "Error & Exception Exposure": "63.53%", - "Tech Debt Exposure": "30.56%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "8.43%", "Concurrency Exposure": "0.0%", @@ -178802,7 +178802,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -178871,7 +178871,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "44.72%", "Error & Exception Exposure": "82.18%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.94%", "Testing Exposure": "2.44%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -178990,7 +178990,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -179220,7 +179220,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -179266,9 +179266,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -3112.34, - "Y": -264.15, - "Z": -1493.38 + "X": -918.66, + "Y": -145.87, + "Z": -970.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -179291,7 +179291,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "85.14%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -179390,7 +179390,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -179436,9 +179436,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -2171.39, - "Y": 36.2, - "Z": 1396.98 + "X": -1423.71, + "Y": -201.18, + "Z": -1496.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -179461,7 +179461,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.21%", "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", @@ -179570,7 +179570,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -179614,9 +179614,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -983.53, - "Y": 66.73, - "Z": 704.31 + "X": -2804.67, + "Y": -201.15, + "Z": -1606.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -179639,7 +179639,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.84%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", @@ -179748,7 +179748,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -179817,7 +179817,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.52%", "Error & Exception Exposure": "88.97%", - "Tech Debt Exposure": "11.38%", + "Tech Debt Exposure": "9.27%", "Testing Exposure": "80.0%", "API Exposure": "2.93%", "Concurrency Exposure": "38.32%", @@ -180516,7 +180516,7 @@ "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -180585,7 +180585,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.56%", "Error & Exception Exposure": "94.54%", - "Tech Debt Exposure": "87.12%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.8%", "API Exposure": "5.28%", "Concurrency Exposure": "93.15%", @@ -180704,7 +180704,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -180773,7 +180773,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "73.11%", "Error & Exception Exposure": "77.11%", - "Tech Debt Exposure": "93.89%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.61%", "API Exposure": "6.89%", "Concurrency Exposure": "95.71%", @@ -180902,7 +180902,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -180971,7 +180971,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "84.81%", "Error & Exception Exposure": "94.78%", - "Tech Debt Exposure": "99.85%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.25%", "API Exposure": "6.53%", "Concurrency Exposure": "83.2%", @@ -181090,7 +181090,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -181159,7 +181159,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.42%", "Error & Exception Exposure": "89.26%", - "Tech Debt Exposure": "56.07%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.74%", "API Exposure": "6.03%", "Concurrency Exposure": "47.39%", @@ -181288,7 +181288,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -181357,7 +181357,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.62%", "Error & Exception Exposure": "91.62%", - "Tech Debt Exposure": "56.07%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "8.78%", "Concurrency Exposure": "100.0%", @@ -181526,7 +181526,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -181595,7 +181595,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "73.11%", "Error & Exception Exposure": "77.51%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", "API Exposure": "6.59%", "Concurrency Exposure": "99.6%", @@ -181714,7 +181714,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -181912,7 +181912,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -181958,9 +181958,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -2749.44, - "Y": -247.63, - "Z": -1871.96 + "X": -2104.22, + "Y": 53.54, + "Z": 1228.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -181972,7 +181972,7 @@ "Total LOC": 76, "Coding LOC": 43, "Documentation LOC": 13, - "Structural Magnitude": 4.86, + "Structural Magnitude": 3.86, "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -181985,14 +181985,14 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", - "API Exposure": "3.19%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.35%", + "Documentation Exposure": "30.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -182018,7 +182018,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -182128,9 +182128,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -880.35, - "Y": -19.81, - "Z": -357.12 + "X": -3224.03, + "Y": 30.27, + "Z": 1036.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -182142,7 +182142,7 @@ "Total LOC": 31, "Coding LOC": 9, "Documentation LOC": 14, - "Structural Magnitude": 11.18, + "Structural Magnitude": 10.18, "Control Flow Ratio": "75.0%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -182155,14 +182155,14 @@ "Error & Exception Exposure": "88.26%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.68%", - "API Exposure": "6.34%", + "API Exposure": "4.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "57.76%", + "Documentation Exposure": "52.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -182198,7 +182198,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -182308,9 +182308,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1862.15, - "Y": -209.67, - "Z": -1395.7 + "X": -1825.33, + "Y": -1.93, + "Z": 889.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -182322,7 +182322,7 @@ "Total LOC": 249, "Coding LOC": 70, "Documentation LOC": 121, - "Structural Magnitude": 29.1, + "Structural Magnitude": 28.1, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -182335,14 +182335,14 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", - "API Exposure": "7.96%", + "API Exposure": "7.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "6.67%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.55%", + "Documentation Exposure": "23.63%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -182438,7 +182438,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 8, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 11, @@ -182548,9 +182548,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -1224.05, - "Y": -176.44, - "Z": -1112.79 + "X": -3252.27, + "Y": -260.77, + "Z": -1319.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -182562,7 +182562,7 @@ "Total LOC": 33, "Coding LOC": 15, "Documentation LOC": 12, - "Structural Magnitude": 9.5, + "Structural Magnitude": 8.5, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -182575,14 +182575,14 @@ "Error & Exception Exposure": "82.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", - "API Exposure": "7.86%", + "API Exposure": "6.23%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "96.21%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "97.36%", + "Documentation Exposure": "92.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -182628,7 +182628,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -182761,7 +182761,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "90.31%", "Error & Exception Exposure": "98.4%", - "Tech Debt Exposure": "92.0%", + "Tech Debt Exposure": "78.23%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -182880,7 +182880,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -182951,7 +182951,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.7%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "97.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -183050,7 +183050,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -183096,9 +183096,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -818.97, - "Y": 35.06, - "Z": 128.97 + "X": -3622.3, + "Y": -7.57, + "Z": 661.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -183110,7 +183110,7 @@ "Total LOC": 1128, "Coding LOC": 224, "Documentation LOC": 604, - "Structural Magnitude": 8.48, + "Structural Magnitude": 7.48, "Control Flow Ratio": "100.0%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -183123,7 +183123,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "1.97%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "5.95%", @@ -183156,7 +183156,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 68, @@ -183266,9 +183266,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -3631.37, - "Y": -181.89, - "Z": -441.91 + "X": -1518.62, + "Y": 15.33, + "Z": 983.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -183291,7 +183291,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "80.1%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "8.23%", "Concurrency Exposure": "0.0%", @@ -183430,7 +183430,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -183474,9 +183474,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -3155.62, - "Y": -126.96, - "Z": -974.42 + "X": -3155.47, + "Y": -126.95, + "Z": -974.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -183488,7 +183488,7 @@ "Total LOC": 57, "Coding LOC": 36, "Documentation LOC": 12, - "Structural Magnitude": 54.12, + "Structural Magnitude": 53.12, "Control Flow Ratio": "69.0%", "Popularity Rank": 11, "Raw Churn Frequency": 0.0, @@ -183501,14 +183501,14 @@ "Error & Exception Exposure": "95.13%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.81%", - "API Exposure": "5.41%", + "API Exposure": "3.41%", "Concurrency Exposure": "0.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": "68.78%", + "Documentation Exposure": "51.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -183544,7 +183544,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 27, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -183677,7 +183677,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.6%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "92.41%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -183776,7 +183776,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -183822,9 +183822,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -3787.25, - "Y": -171.59, - "Z": -851.92 + "X": -3785.96, + "Y": -171.5, + "Z": -851.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -183836,7 +183836,7 @@ "Total LOC": 168, "Coding LOC": 56, "Documentation LOC": 72, - "Structural Magnitude": 6.62, + "Structural Magnitude": 5.62, "Control Flow Ratio": "100.0%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -183849,7 +183849,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", - "API Exposure": "2.7%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -183882,7 +183882,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 6, @@ -183990,9 +183990,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -760.96, - "Y": 7.44, - "Z": 291.49 + "X": -2744.98, + "Y": 42.33, + "Z": 1387.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -184015,7 +184015,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "3.94%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "97.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -184114,7 +184114,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -184160,9 +184160,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1177.56, + "X": -1177.76, "Y": -87.05, - "Z": -406.73 + "Z": -406.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -184174,7 +184174,7 @@ "Total LOC": 674, "Coding LOC": 246, "Documentation LOC": 259, - "Structural Magnitude": 50.22, + "Structural Magnitude": 49.22, "Control Flow Ratio": "18.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -184187,7 +184187,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", - "API Exposure": "6.38%", + "API Exposure": "5.97%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -184350,7 +184350,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 7, + "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 34, @@ -184460,9 +184460,9 @@ "Identity Proof": "Single Indicator (Ext: .livecodescript)" }, "2. Topological Coordinates": { - "X": -2828.36, + "X": -2828.32, "Y": -16.88, - "Z": 479.92 + "Z": 479.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -184474,7 +184474,7 @@ "Total LOC": 254, "Coding LOC": 196, "Documentation LOC": 15, - "Structural Magnitude": 200.32, + "Structural Magnitude": 199.32, "Control Flow Ratio": "70.9%", "Popularity Rank": 6, "Raw Churn Frequency": 0.0, @@ -184487,14 +184487,14 @@ "Error & Exception Exposure": "84.93%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "10.43%", + "API Exposure": "10.23%", "Concurrency Exposure": "0.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": "81.36%", + "Documentation Exposure": "78.39%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -184680,7 +184680,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 54, - "Exposed API / Public Exports": 17, + "Exposed API / Public Exports": 16, "State Mutations / Variable Reassignments": 73, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -184813,7 +184813,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "77.23%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "7.37%", "Concurrency Exposure": "0.0%", @@ -184942,7 +184942,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -185011,7 +185011,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "80.76%", "Error & Exception Exposure": "97.76%", - "Tech Debt Exposure": "48.64%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "1.92%", "Concurrency Exposure": "0.0%", @@ -185160,7 +185160,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -185229,7 +185229,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "88.99%", "Error & Exception Exposure": "97.47%", - "Tech Debt Exposure": "18.31%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "8.77%", "Concurrency Exposure": "0.0%", @@ -185438,7 +185438,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -185507,7 +185507,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.38%", "Error & Exception Exposure": "91.72%", - "Tech Debt Exposure": "40.68%", + "Tech Debt Exposure": "21.51%", "Testing Exposure": "80.0%", "API Exposure": "8.34%", "Concurrency Exposure": "34.44%", @@ -186006,7 +186006,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -186075,7 +186075,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.64%", "Error & Exception Exposure": "92.49%", - "Tech Debt Exposure": "47.86%", + "Tech Debt Exposure": "21.09%", "Testing Exposure": "80.0%", "API Exposure": "2.57%", "Concurrency Exposure": "56.48%", @@ -186284,7 +186284,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -186353,7 +186353,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.18%", "Error & Exception Exposure": "96.44%", - "Tech Debt Exposure": "94.34%", + "Tech Debt Exposure": "69.92%", "Testing Exposure": "80.0%", "API Exposure": "7.66%", "Concurrency Exposure": "88.6%", @@ -186662,7 +186662,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -186731,7 +186731,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.83%", "Error & Exception Exposure": "97.97%", - "Tech Debt Exposure": "12.56%", + "Tech Debt Exposure": "10.23%", "Testing Exposure": "80.0%", "API Exposure": "8.36%", "Concurrency Exposure": "0.0%", @@ -187740,7 +187740,7 @@ "Design Short Vars": 7, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -187809,7 +187809,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.96%", "Error & Exception Exposure": "80.01%", - "Tech Debt Exposure": "14.47%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "4.0%", "Concurrency Exposure": "0.0%", @@ -188248,7 +188248,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -188317,7 +188317,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "90.96%", "Error & Exception Exposure": "97.67%", - "Tech Debt Exposure": "19.04%", + "Tech Debt Exposure": "18.49%", "Testing Exposure": "80.0%", "API Exposure": "9.89%", "Concurrency Exposure": "52.22%", @@ -190006,7 +190006,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -190075,7 +190075,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.13%", "Error & Exception Exposure": "90.74%", - "Tech Debt Exposure": "36.97%", + "Tech Debt Exposure": "22.28%", "Testing Exposure": "80.0%", "API Exposure": "1.09%", "Concurrency Exposure": "45.05%", @@ -190714,7 +190714,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -190783,7 +190783,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "88.63%", "Error & Exception Exposure": "81.46%", - "Tech Debt Exposure": "40.68%", + "Tech Debt Exposure": "20.51%", "Testing Exposure": "80.0%", "API Exposure": "0.3%", "Concurrency Exposure": "0.0%", @@ -191112,7 +191112,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -191450,7 +191450,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 15, + "Orphaned Logic": 14, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -191640,7 +191640,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -191686,9 +191686,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -3663.18, - "Y": -27.11, - "Z": 612.82 + "X": -859.47, + "Y": 15.5, + "Z": 80.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -191711,7 +191711,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "9.97%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.85%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -191860,7 +191860,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -191906,9 +191906,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -1816.48, - "Y": 3.62, - "Z": 854.19 + "X": -1853.42, + "Y": -204.14, + "Z": -1430.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -192090,7 +192090,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -192161,7 +192161,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "39.95%", "Error & Exception Exposure": "73.39%", - "Tech Debt Exposure": "92.57%", + "Tech Debt Exposure": "88.85%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -192520,7 +192520,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 9, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -192566,9 +192566,9 @@ "Identity Proof": "Single Indicator (Ext: .lcb)" }, "2. Topological Coordinates": { - "X": -3213.78, - "Y": -184.52, - "Z": -1469.97 + "X": -2452.54, + "Y": 84.66, + "Z": 1235.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -192750,7 +192750,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -192821,7 +192821,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.13%", "API Exposure": "8.85%", "Concurrency Exposure": "0.0%", @@ -192960,7 +192960,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -228436,7 +228436,7 @@ } }, "lua/cosmopolitan": { - "Directory Group Magnitude": 21484.2, + "Directory Group Magnitude": 21454.2, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -228444,16 +228444,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "78.52%", "Error & Exception Exposure": "72.22%", - "Tech Debt Exposure": "44.1%", + "Tech Debt Exposure": "20.15%", "Testing Exposure": "47.43%", - "API Exposure": "1.16%", + "API Exposure": "0.99%", "Concurrency Exposure": "26.19%", "State Flux Exposure": "93.01%", "Commented Logic Exposure": "2.82%", "Specification Exposure": "93.8%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.19%", + "Documentation Exposure": "35.32%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -228470,9 +228470,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3819.44, + "X": -3819.4, "Y": 78.38, - "Z": 8151.56 + "Z": 8151.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -228484,7 +228484,7 @@ "Total LOC": 313, "Coding LOC": 204, "Documentation LOC": 48, - "Structural Magnitude": 267.18, + "Structural Magnitude": 266.18, "Control Flow Ratio": "43.7%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -228497,14 +228497,14 @@ "Error & Exception Exposure": "98.17%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.76%", + "API Exposure": "0.56%", "Concurrency Exposure": "62.15%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.22%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.26%", + "Documentation Exposure": "22.04%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -228670,7 +228670,7 @@ "Type/Safety Bypasses": 31, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 5, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 152, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -228806,9 +228806,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3347.43, - "Y": 165.31, - "Z": 7979.29 + "X": -3347.42, + "Y": 165.32, + "Z": 7979.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -228820,7 +228820,7 @@ "Total LOC": 1544, "Coding LOC": 1173, "Documentation LOC": 106, - "Structural Magnitude": 1853.26, + "Structural Magnitude": 1852.26, "Control Flow Ratio": "34.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -228831,16 +228831,16 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.1%", "Error & Exception Exposure": "95.65%", - "Tech Debt Exposure": "32.26%", + "Tech Debt Exposure": "14.75%", "Testing Exposure": "80.0%", - "API Exposure": "0.53%", + "API Exposure": "0.48%", "Concurrency Exposure": "41.79%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.6%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.17%", + "Documentation Exposure": "18.66%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -229476,7 +229476,7 @@ "Type/Safety Bypasses": 115, "High-Risk Execution Commands": 6, "I/O and Network Boundaries": 9, - "Exposed API / Public Exports": 14, + "Exposed API / Public Exports": 13, "State Mutations / Variable Reassignments": 1183, "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 0, @@ -229539,7 +229539,7 @@ "Design Upper Case": 24, "Design Short Vars": 236, "Design Long Vars": 1, - "Duplicate Logic": 2, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -229593,9 +229593,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2810.38, + "X": -2810.39, "Y": 199.71, - "Z": 8293.24 + "Z": 8293.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -229607,7 +229607,7 @@ "Total LOC": 528, "Coding LOC": 386, "Documentation LOC": 35, - "Structural Magnitude": 685.52, + "Structural Magnitude": 684.52, "Control Flow Ratio": "49.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -229620,14 +229620,14 @@ "Error & Exception Exposure": "80.44%", "Tech Debt Exposure": "78.94%", "Testing Exposure": "2.63%", - "API Exposure": "0.41%", + "API Exposure": "0.32%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.57%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.03%", + "Documentation Exposure": "28.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -229833,7 +229833,7 @@ "Type/Safety Bypasses": 18, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 6, + "Exposed API / Public Exports": 5, "State Mutations / Variable Reassignments": 422, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -229960,7 +229960,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3386.65, + "X": -3386.64, "Y": 184.82, "Z": 6646.03 }, @@ -229985,7 +229985,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.99%", "Error & Exception Exposure": "98.77%", - "Tech Debt Exposure": "87.12%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "0.0%", "Concurrency Exposure": "100.0%", @@ -230104,7 +230104,7 @@ "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -230152,7 +230152,7 @@ "2. Topological Coordinates": { "X": -2143.37, "Y": 183.45, - "Z": 8369.69 + "Z": 8369.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -230175,7 +230175,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "82.36%", "Error & Exception Exposure": "87.62%", - "Tech Debt Exposure": "30.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.26%", "Concurrency Exposure": "0.0%", @@ -230334,7 +230334,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -230378,7 +230378,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3884.4, + "X": -3884.36, "Y": 135.47, "Z": 7653.97 }, @@ -230392,7 +230392,7 @@ "Total LOC": 364, "Coding LOC": 274, "Documentation LOC": 18, - "Structural Magnitude": 359.68, + "Structural Magnitude": 358.68, "Control Flow Ratio": "45.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -230405,14 +230405,14 @@ "Error & Exception Exposure": "3.02%", "Tech Debt Exposure": "13.46%", "Testing Exposure": "80.0%", - "API Exposure": "6.05%", + "API Exposure": "5.87%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.99%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "85.27%", + "Documentation Exposure": "83.48%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -230618,7 +230618,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 26, + "Exposed API / Public Exports": 25, "State Mutations / Variable Reassignments": 145, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -230729,9 +230729,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4078.89, + "X": -4078.8, "Y": 119.37, - "Z": 7848.91 + "Z": 7848.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -230743,7 +230743,7 @@ "Total LOC": 79, "Coding LOC": 57, "Documentation LOC": 5, - "Structural Magnitude": 130.84, + "Structural Magnitude": 129.84, "Control Flow Ratio": "33.8%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -230756,14 +230756,14 @@ "Error & Exception Exposure": "98.13%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.48%", + "API Exposure": "0.16%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "13.46%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.21%", + "Documentation Exposure": "42.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -230879,7 +230879,7 @@ "Type/Safety Bypasses": 4, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 65, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -230987,9 +230987,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2274.26, + "X": -2274.27, "Y": 153.22, - "Z": 8507.17 + "Z": 8507.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -231012,7 +231012,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "71.93%", "Error & Exception Exposure": "87.18%", - "Tech Debt Exposure": "98.4%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -231111,7 +231111,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -231157,9 +231157,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3707.71, + "X": -3707.68, "Y": 172.62, - "Z": 7201.3 + "Z": 7201.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -231171,7 +231171,7 @@ "Total LOC": 512, "Coding LOC": 366, "Documentation LOC": 33, - "Structural Magnitude": 676.32, + "Structural Magnitude": 675.32, "Control Flow Ratio": "33.5%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -231184,14 +231184,14 @@ "Error & Exception Exposure": "90.24%", "Tech Debt Exposure": "47.27%", "Testing Exposure": "80.0%", - "API Exposure": "2.01%", + "API Exposure": "1.9%", "Concurrency Exposure": "40.8%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.3%", + "Documentation Exposure": "63.95%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -231647,7 +231647,7 @@ "Type/Safety Bypasses": 19, "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 20, + "Exposed API / Public Exports": 19, "State Mutations / Variable Reassignments": 359, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -231757,7 +231757,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3657.5, + "X": -3657.49, "Y": 199.89, "Z": 6642.93 }, @@ -231782,7 +231782,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.48%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -231881,7 +231881,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -231927,7 +231927,7 @@ "2. Topological Coordinates": { "X": -3162.21, "Y": 233.12, - "Z": 6776.11 + "Z": 6776.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -231939,7 +231939,7 @@ "Total LOC": 273, "Coding LOC": 215, "Documentation LOC": 14, - "Structural Magnitude": 416.2, + "Structural Magnitude": 415.2, "Control Flow Ratio": "42.2%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -231952,14 +231952,14 @@ "Error & Exception Exposure": "97.67%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.85%", + "API Exposure": "0.67%", "Concurrency Exposure": "0.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": "33.82%", + "Documentation Exposure": "30.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -232155,7 +232155,7 @@ "Type/Safety Bypasses": 27, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 6, + "Exposed API / Public Exports": 5, "State Mutations / Variable Reassignments": 253, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -232265,9 +232265,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2424.43, + "X": -2424.45, "Y": 181.49, - "Z": 8360.32 + "Z": 8360.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -232279,7 +232279,7 @@ "Total LOC": 450, "Coding LOC": 319, "Documentation LOC": 40, - "Structural Magnitude": 399.78, + "Structural Magnitude": 398.78, "Control Flow Ratio": "23.4%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -232292,14 +232292,14 @@ "Error & Exception Exposure": "75.01%", "Tech Debt Exposure": "16.27%", "Testing Exposure": "80.0%", - "API Exposure": "0.6%", + "API Exposure": "0.47%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "11.92%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.66%", + "Documentation Exposure": "32.04%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -232605,7 +232605,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 6, + "Exposed API / Public Exports": 5, "State Mutations / Variable Reassignments": 144, "Commented-out Code (Dead Logic)": 5, "Structured Documentation Blocks": 0, @@ -232713,9 +232713,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2756.79, + "X": -2756.8, "Y": 235.08, - "Z": 7262.42 + "Z": 7262.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -232727,7 +232727,7 @@ "Total LOC": 407, "Coding LOC": 302, "Documentation LOC": 24, - "Structural Magnitude": 743.94, + "Structural Magnitude": 742.94, "Control Flow Ratio": "57.7%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -232740,14 +232740,14 @@ "Error & Exception Exposure": "91.56%", "Tech Debt Exposure": "97.97%", "Testing Exposure": "80.0%", - "API Exposure": "0.77%", + "API Exposure": "0.65%", "Concurrency Exposure": "0.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": "45.06%", + "Documentation Exposure": "42.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -232983,7 +232983,7 @@ "Type/Safety Bypasses": 10, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 8, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 321, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -233107,7 +233107,7 @@ "Total LOC": 1155, "Coding LOC": 884, "Documentation LOC": 67, - "Structural Magnitude": 2293.68, + "Structural Magnitude": 2292.68, "Control Flow Ratio": "35.9%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -233120,14 +233120,14 @@ "Error & Exception Exposure": "78.13%", "Tech Debt Exposure": "23.67%", "Testing Exposure": "80.0%", - "API Exposure": "0.41%", + "API Exposure": "0.35%", "Concurrency Exposure": "100.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.11%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.95%", + "Documentation Exposure": "23.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -233903,7 +233903,7 @@ "Type/Safety Bypasses": 63, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 9, "State Mutations / Variable Reassignments": 688, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -234014,9 +234014,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4151.4, + "X": -4151.39, "Y": 71.4, - "Z": 7744.33 + "Z": 7744.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -234039,7 +234039,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "65.75%", "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "99.93%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "3.49%", "Concurrency Exposure": "0.0%", @@ -234168,7 +234168,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -234212,9 +234212,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2586.19, + "X": -2586.22, "Y": 206.36, - "Z": 8492.88 + "Z": 8492.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -234226,7 +234226,7 @@ "Total LOC": 198, "Coding LOC": 148, "Documentation LOC": 19, - "Structural Magnitude": 238.76, + "Structural Magnitude": 237.76, "Control Flow Ratio": "30.1%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -234239,14 +234239,14 @@ "Error & Exception Exposure": "87.37%", "Tech Debt Exposure": "91.67%", "Testing Exposure": "80.0%", - "API Exposure": "0.2%", + "API Exposure": "0.07%", "Concurrency Exposure": "100.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": "24.0%", + "Documentation Exposure": "19.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -234392,7 +234392,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 107, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -234502,9 +234502,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2706.27, + "X": -2706.28, "Y": 152.03, - "Z": 8096.29 + "Z": 8096.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -234516,7 +234516,7 @@ "Total LOC": 1046, "Coding LOC": 802, "Documentation LOC": 49, - "Structural Magnitude": 1573.94, + "Structural Magnitude": 1572.94, "Control Flow Ratio": "47.3%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -234529,14 +234529,14 @@ "Error & Exception Exposure": "98.95%", "Tech Debt Exposure": "14.39%", "Testing Exposure": "80.0%", - "API Exposure": "1.02%", + "API Exposure": "0.97%", "Concurrency Exposure": "100.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.95%", + "Documentation Exposure": "32.87%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -235172,7 +235172,7 @@ "Type/Safety Bypasses": 188, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 22, + "Exposed API / Public Exports": 21, "State Mutations / Variable Reassignments": 783, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -235282,9 +235282,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3216.88, + "X": -3216.87, "Y": 159.22, - "Z": 8308.85 + "Z": 8308.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -235296,7 +235296,7 @@ "Total LOC": 681, "Coding LOC": 500, "Documentation LOC": 52, - "Structural Magnitude": 1089.1, + "Structural Magnitude": 1088.1, "Control Flow Ratio": "40.3%", "Popularity Rank": 32, "Raw Churn Frequency": 0.0, @@ -235309,14 +235309,14 @@ "Error & Exception Exposure": "99.11%", "Tech Debt Exposure": "16.11%", "Testing Exposure": "80.0%", - "API Exposure": "0.19%", + "API Exposure": "0.14%", "Concurrency Exposure": "95.13%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.09%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.78%", + "Documentation Exposure": "21.46%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -235602,7 +235602,7 @@ "Type/Safety Bypasses": 33, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 5, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 660, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -235712,9 +235712,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3699.6, + "X": -3699.58, "Y": 88.45, - "Z": 7892.32 + "Z": 7892.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -235726,7 +235726,7 @@ "Total LOC": 492, "Coding LOC": 381, "Documentation LOC": 17, - "Structural Magnitude": 884.72, + "Structural Magnitude": 883.72, "Control Flow Ratio": "52.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -235739,14 +235739,14 @@ "Error & Exception Exposure": "92.24%", "Tech Debt Exposure": "35.5%", "Testing Exposure": "80.0%", - "API Exposure": "1.72%", + "API Exposure": "1.52%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.64%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.91%", + "Documentation Exposure": "50.42%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -235972,7 +235972,7 @@ "Type/Safety Bypasses": 38, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 9, "State Mutations / Variable Reassignments": 511, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -236082,9 +236082,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2919.93, - "Y": 115.27, - "Z": 8923.1 + "X": -2919.96, + "Y": 115.28, + "Z": 8922.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -236096,7 +236096,7 @@ "Total LOC": 75, "Coding LOC": 70, "Documentation LOC": 1, - "Structural Magnitude": 55.7, + "Structural Magnitude": 54.7, "Control Flow Ratio": "65.4%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -236109,14 +236109,14 @@ "Error & Exception Exposure": "84.02%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", - "API Exposure": "1.07%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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": "38.55%", + "Documentation Exposure": "28.68%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -236162,7 +236162,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 28, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -236270,9 +236270,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2469.46, - "Y": 176.5, - "Z": 7827.65 + "X": -2469.47, + "Y": 176.49, + "Z": 7827.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -236284,7 +236284,7 @@ "Total LOC": 962, "Coding LOC": 756, "Documentation LOC": 66, - "Structural Magnitude": 974.72, + "Structural Magnitude": 973.72, "Control Flow Ratio": "55.6%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -236297,14 +236297,14 @@ "Error & Exception Exposure": "32.91%", "Tech Debt Exposure": "12.59%", "Testing Exposure": "80.0%", - "API Exposure": "0.02%", + "API Exposure": "0.0%", "Concurrency Exposure": "56.06%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.18%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.11%", + "Documentation Exposure": "14.46%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -236530,7 +236530,7 @@ "Type/Safety Bypasses": 23, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 207, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 599, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -236641,9 +236641,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3812.44, + "X": -3812.43, "Y": 108.08, - "Z": 8375.93 + "Z": 8375.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -236666,7 +236666,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "40.05%", "Error & Exception Exposure": "78.34%", - "Tech Debt Exposure": "80.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -236775,7 +236775,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -236819,9 +236819,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2532.36, + "X": -2532.37, "Y": 248.91, - "Z": 7408.5 + "Z": 7408.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -236833,7 +236833,7 @@ "Total LOC": 696, "Coding LOC": 539, "Documentation LOC": 47, - "Structural Magnitude": 1212.58, + "Structural Magnitude": 1211.58, "Control Flow Ratio": "44.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -236846,14 +236846,14 @@ "Error & Exception Exposure": "99.87%", "Tech Debt Exposure": "12.03%", "Testing Exposure": "2.59%", - "API Exposure": "0.23%", + "API Exposure": "0.16%", "Concurrency Exposure": "99.9%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.62%", + "Documentation Exposure": "20.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -237219,7 +237219,7 @@ "Type/Safety Bypasses": 96, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 845, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -237329,9 +237329,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2139.56, - "Y": 265.9, - "Z": 7405.14 + "X": -2139.62, + "Y": 265.89, + "Z": 7405.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -237343,7 +237343,7 @@ "Total LOC": 173, "Coding LOC": 110, "Documentation LOC": 26, - "Structural Magnitude": 179.0, + "Structural Magnitude": 178.0, "Control Flow Ratio": "62.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -237356,14 +237356,14 @@ "Error & Exception Exposure": "98.14%", "Tech Debt Exposure": "98.36%", "Testing Exposure": "80.0%", - "API Exposure": "0.9%", + "API Exposure": "0.5%", "Concurrency Exposure": "100.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": "66.19%", + "Documentation Exposure": "59.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -237429,7 +237429,7 @@ "Type/Safety Bypasses": 32, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 79, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -237564,7 +237564,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.0%", "Error & Exception Exposure": "96.4%", - "Tech Debt Exposure": "68.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -237693,7 +237693,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -237737,9 +237737,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3631.19, + "X": -3631.15, "Y": 159.64, - "Z": 6936.19 + "Z": 6936.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -237751,7 +237751,7 @@ "Total LOC": 272, "Coding LOC": 206, "Documentation LOC": 26, - "Structural Magnitude": 304.02, + "Structural Magnitude": 303.02, "Control Flow Ratio": "56.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -237764,14 +237764,14 @@ "Error & Exception Exposure": "94.09%", "Tech Debt Exposure": "39.25%", "Testing Exposure": "80.0%", - "API Exposure": "0.21%", + "API Exposure": "0.07%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.48%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.62%", + "Documentation Exposure": "30.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -237927,7 +237927,7 @@ "Type/Safety Bypasses": 19, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 144, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -238037,9 +238037,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4008.81, + "X": -4008.8, "Y": 123.66, - "Z": 7585.0 + "Z": 7584.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -238062,7 +238062,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "75.44%", "Error & Exception Exposure": "95.56%", - "Tech Debt Exposure": "98.46%", + "Tech Debt Exposure": "96.88%", "Testing Exposure": "80.0%", "API Exposure": "2.73%", "Concurrency Exposure": "0.0%", @@ -238291,7 +238291,7 @@ "Design Short Vars": 13, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -238360,7 +238360,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "81.76%", "Error & Exception Exposure": "85.39%", - "Tech Debt Exposure": "98.93%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -238469,7 +238469,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -238538,7 +238538,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.53%", "Error & Exception Exposure": "46.96%", - "Tech Debt Exposure": "15.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "25.85%", @@ -238757,7 +238757,7 @@ "Design Short Vars": 27, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -238803,7 +238803,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3579.15, + "X": -3579.13, "Y": 151.38, "Z": 7514.25 }, @@ -238817,7 +238817,7 @@ "Total LOC": 1182, "Coding LOC": 884, "Documentation LOC": 75, - "Structural Magnitude": 1363.98, + "Structural Magnitude": 1362.98, "Control Flow Ratio": "27.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -238830,14 +238830,14 @@ "Error & Exception Exposure": "74.46%", "Tech Debt Exposure": "34.03%", "Testing Exposure": "2.61%", - "API Exposure": "0.36%", + "API Exposure": "0.33%", "Concurrency Exposure": "100.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.48%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.07%", + "Documentation Exposure": "22.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -239583,7 +239583,7 @@ "Type/Safety Bypasses": 49, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 14, + "Exposed API / Public Exports": 13, "State Mutations / Variable Reassignments": 682, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -239694,9 +239694,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2451.26, + "X": -2451.28, "Y": 249.08, - "Z": 7246.03 + "Z": 7246.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -239708,7 +239708,7 @@ "Total LOC": 563, "Coding LOC": 378, "Documentation LOC": 85, - "Structural Magnitude": 348.76, + "Structural Magnitude": 347.76, "Control Flow Ratio": "36.5%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -239721,14 +239721,14 @@ "Error & Exception Exposure": "83.96%", "Tech Debt Exposure": "73.21%", "Testing Exposure": "80.0%", - "API Exposure": "0.44%", + "API Exposure": "0.29%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.41%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.19%", + "Documentation Exposure": "19.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -239864,7 +239864,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 4, + "Exposed API / Public Exports": 3, "State Mutations / Variable Reassignments": 233, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -239974,9 +239974,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3362.35, + "X": -3362.34, "Y": 141.14, - "Z": 7258.15 + "Z": 7258.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -239988,7 +239988,7 @@ "Total LOC": 1025, "Coding LOC": 816, "Documentation LOC": 68, - "Structural Magnitude": 1010.82, + "Structural Magnitude": 1009.82, "Control Flow Ratio": "63.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -240001,14 +240001,14 @@ "Error & Exception Exposure": "2.53%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.07%", + "API Exposure": "0.02%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.16%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.62%", + "Documentation Exposure": "15.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -240404,7 +240404,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 397, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -240512,9 +240512,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3417.35, - "Y": 111.68, - "Z": 8707.0 + "X": -3417.32, + "Y": 111.69, + "Z": 8706.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -240526,7 +240526,7 @@ "Total LOC": 357, "Coding LOC": 344, "Documentation LOC": 2, - "Structural Magnitude": 171.58, + "Structural Magnitude": 170.58, "Control Flow Ratio": "51.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -240539,14 +240539,14 @@ "Error & Exception Exposure": "78.26%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.34%", + "API Exposure": "0.11%", "Concurrency Exposure": "0.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": "18.0%", + "Documentation Exposure": "16.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -240592,7 +240592,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 100, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -240702,9 +240702,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3274.86, - "Y": 130.69, - "Z": 8956.73 + "X": -3274.64, + "Y": 130.76, + "Z": 8955.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -240716,7 +240716,7 @@ "Total LOC": 8, "Coding LOC": 5, "Documentation LOC": 0, - "Structural Magnitude": 7.4, + "Structural Magnitude": 6.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -240729,14 +240729,14 @@ "Error & Exception Exposure": "87.87%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.88%", - "API Exposure": "10.74%", + "API Exposure": "8.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.73%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.33%", + "Documentation Exposure": "33.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -240772,7 +240772,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 4, + "Exposed API / Public Exports": 3, "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -240882,7 +240882,7 @@ "2. Topological Coordinates": { "X": -3053.23, "Y": 222.31, - "Z": 7362.28 + "Z": 7362.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -240894,7 +240894,7 @@ "Total LOC": 826, "Coding LOC": 635, "Documentation LOC": 36, - "Structural Magnitude": 1666.0, + "Structural Magnitude": 1665.0, "Control Flow Ratio": "56.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -240907,14 +240907,14 @@ "Error & Exception Exposure": "99.09%", "Tech Debt Exposure": "20.45%", "Testing Exposure": "80.0%", - "API Exposure": "0.48%", + "API Exposure": "0.39%", "Concurrency Exposure": "66.89%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.87%", + "Documentation Exposure": "21.81%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -241410,7 +241410,7 @@ "Type/Safety Bypasses": 17, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 7, + "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 1113, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -241521,8 +241521,8 @@ }, "2. Topological Coordinates": { "X": -1921.14, - "Y": 231.22, - "Z": 7970.25 + "Y": 231.21, + "Z": 7970.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -241545,7 +241545,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -241644,7 +241644,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -241688,7 +241688,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2331.73, + "X": -2331.76, "Y": 260.08, "Z": 7534.46 }, @@ -241702,7 +241702,7 @@ "Total LOC": 424, "Coding LOC": 333, "Documentation LOC": 13, - "Structural Magnitude": 479.36, + "Structural Magnitude": 478.36, "Control Flow Ratio": "52.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -241715,14 +241715,14 @@ "Error & Exception Exposure": "16.85%", "Tech Debt Exposure": "15.79%", "Testing Exposure": "80.0%", - "API Exposure": "0.7%", + "API Exposure": "0.52%", "Concurrency Exposure": "0.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": "33.9%", + "Documentation Exposure": "31.41%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -241998,7 +241998,7 @@ "Type/Safety Bypasses": 8, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 248, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -242108,7 +242108,7 @@ "2. Topological Coordinates": { "X": -2169.54, "Y": 256.27, - "Z": 7157.61 + "Z": 7157.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -242131,7 +242131,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.01%", "API Exposure": "2.63%", "Concurrency Exposure": "0.0%", @@ -242240,7 +242240,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -242284,9 +242284,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2001.22, + "X": -2001.23, "Y": 258.28, - "Z": 7523.57 + "Z": 7523.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -242309,7 +242309,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "58.26%", "Error & Exception Exposure": "79.78%", - "Tech Debt Exposure": "77.73%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "1.62%", "Concurrency Exposure": "0.0%", @@ -242418,7 +242418,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -242462,9 +242462,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3485.41, - "Y": 78.7, - "Z": 8362.37 + "X": -3485.39, + "Y": 78.71, + "Z": 8362.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -242476,7 +242476,7 @@ "Total LOC": 312, "Coding LOC": 238, "Documentation LOC": 10, - "Structural Magnitude": 460.46, + "Structural Magnitude": 459.46, "Control Flow Ratio": "48.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -242487,16 +242487,16 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "90.48%", "Error & Exception Exposure": "98.49%", - "Tech Debt Exposure": "53.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.23%", + "API Exposure": "0.08%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.23%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.71%", + "Documentation Exposure": "30.34%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -242642,7 +242642,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 318, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -242705,7 +242705,7 @@ "Design Upper Case": 1, "Design Short Vars": 59, "Design Long Vars": 0, - "Duplicate Logic": 2, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -242752,7 +242752,7 @@ "2. Topological Coordinates": { "X": -3077.88, "Y": 160.02, - "Z": 8726.52 + "Z": 8726.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -242764,7 +242764,7 @@ "Total LOC": 528, "Coding LOC": 411, "Documentation LOC": 34, - "Structural Magnitude": 347.22, + "Structural Magnitude": 346.22, "Control Flow Ratio": "48.1%", "Popularity Rank": 21, "Raw Churn Frequency": 0.0, @@ -242777,14 +242777,14 @@ "Error & Exception Exposure": "1.87%", "Tech Debt Exposure": "13.81%", "Testing Exposure": "2.51%", - "API Exposure": "0.18%", + "API Exposure": "0.06%", "Concurrency Exposure": "37.78%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.95%", + "Documentation Exposure": "13.81%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -242990,7 +242990,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 173, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -243098,9 +243098,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2144.24, + "X": -2144.28, "Y": 233.19, - "Z": 7704.48 + "Z": 7704.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -243112,7 +243112,7 @@ "Total LOC": 323, "Coding LOC": 246, "Documentation LOC": 23, - "Structural Magnitude": 285.82, + "Structural Magnitude": 284.82, "Control Flow Ratio": "51.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -243125,14 +243125,14 @@ "Error & Exception Exposure": "26.34%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", - "API Exposure": "0.05%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "8.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.59%", + "Documentation Exposure": "24.69%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -243298,7 +243298,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 166, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -243406,9 +243406,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3951.94, - "Y": 145.72, - "Z": 7007.77 + "X": -3951.74, + "Y": 145.73, + "Z": 7007.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -243420,7 +243420,7 @@ "Total LOC": 41, "Coding LOC": 25, "Documentation LOC": 4, - "Structural Magnitude": 39.7, + "Structural Magnitude": 38.7, "Control Flow Ratio": "38.9%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -243433,14 +243433,14 @@ "Error & Exception Exposure": "98.02%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.72%", - "API Exposure": "7.24%", + "API Exposure": "6.49%", "Concurrency Exposure": "0.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": "99.92%", + "Documentation Exposure": "99.81%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -243496,7 +243496,7 @@ "Type/Safety Bypasses": 4, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 8, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 17, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -247064,9 +247064,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -3771.78, + "X": -3771.77, "Y": 103.99, - "Z": 10887.58 + "Z": 10887.56 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -247224,7 +247224,7 @@ "2. Topological Coordinates": { "X": -3929.59, "Y": 49.62, - "Z": 10717.72 + "Z": 10717.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -249712,7 +249712,7 @@ "2. Topological Coordinates": { "X": -4148.27, "Y": -17.85, - "Z": 10168.2 + "Z": 10168.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -250434,9 +250434,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": -3202.08, + "X": -3202.07, "Y": 197.66, - "Z": 10147.64 + "Z": 10147.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -250636,9 +250636,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": -3626.74, + "X": -3626.73, "Y": 139.82, - "Z": 10438.93 + "Z": 10438.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -255547,9 +255547,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": -3548.01, + "X": -3548.0, "Y": 122.74, - "Z": 9962.96 + "Z": 9962.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -256275,9 +256275,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": -3352.91, + "X": -3352.9, "Y": 170.47, - "Z": 10720.64 + "Z": 10720.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -316899,9 +316899,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 11206.56, + "X": 11206.53, "Y": -99.62, - "Z": 5328.65 + "Z": 5328.64 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -317056,9 +317056,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 11422.49, + "X": 11422.46, "Y": -86.54, - "Z": 5130.36 + "Z": 5130.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333012,9 +333012,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6770.88, + "X": -6770.83, "Y": -18.75, - "Z": -4422.92 + "Z": -4422.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333203,9 +333203,9 @@ "Identity Proof": "Single Indicator (Ext: .pxd)" }, "2. Topological Coordinates": { - "X": -6981.17, + "X": -6981.12, "Y": 2.31, - "Z": -5327.84 + "Z": -5327.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333522,9 +333522,9 @@ "Identity Proof": "Single Indicator (Ext: .pyx)" }, "2. Topological Coordinates": { - "X": -7322.65, + "X": -7322.61, "Y": 23.75, - "Z": -4632.64 + "Z": -4632.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -334525,9 +334525,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7017.86, + "X": -7017.82, "Y": 32.59, - "Z": -4937.39 + "Z": -4937.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -435322,7 +435322,7 @@ } }, "shell/kubernetes": { - "Directory Group Magnitude": 6015.0, + "Directory Group Magnitude": 6013.0, "File Count": 23, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -435330,16 +435330,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "62.29%", "Error & Exception Exposure": "62.48%", - "Tech Debt Exposure": "89.38%", + "Tech Debt Exposure": "57.09%", "Testing Exposure": "15.8%", - "API Exposure": "1.72%", + "API Exposure": "1.51%", "Concurrency Exposure": "16.64%", "State Flux Exposure": "83.09%", "Commented Logic Exposure": "2.53%", "Specification Exposure": "88.7%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.62%", + "Documentation Exposure": "33.15%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -435500,7 +435500,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -435569,7 +435569,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.74%", "Error & Exception Exposure": "61.93%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "99.94%", "Testing Exposure": "80.0%", "API Exposure": "2.98%", "Concurrency Exposure": "0.0%", @@ -435838,7 +435838,7 @@ "Design Short Vars": 6, "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 16, + "Orphaned Logic": 15, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -435884,9 +435884,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3583.33, - "Y": 305.1, - "Z": -2670.46 + "X": 3583.32, + "Y": 305.09, + "Z": -2670.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -435898,7 +435898,7 @@ "Total LOC": 473, "Coding LOC": 285, "Documentation LOC": 122, - "Structural Magnitude": 425.1, + "Structural Magnitude": 424.1, "Control Flow Ratio": "72.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -435911,14 +435911,14 @@ "Error & Exception Exposure": "79.12%", "Tech Debt Exposure": "30.29%", "Testing Exposure": "80.0%", - "API Exposure": "6.37%", + "API Exposure": "6.14%", "Concurrency Exposure": "81.71%", "State Flux Exposure": "99.97%", "Commented Logic Exposure": "5.68%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "49.46%", + "Documentation Exposure": "46.19%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -436134,7 +436134,7 @@ "Type/Safety Bypasses": 28, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 78, - "Exposed API / Public Exports": 19, + "Exposed API / Public Exports": 18, "State Mutations / Variable Reassignments": 88, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 2, @@ -436270,7 +436270,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "69.99%", "Error & Exception Exposure": "77.15%", - "Tech Debt Exposure": "99.82%", + "Tech Debt Exposure": "99.53%", "Testing Exposure": "80.0%", "API Exposure": "10.47%", "Concurrency Exposure": "0.0%", @@ -436439,7 +436439,7 @@ "Design Short Vars": 0, "Design Long Vars": 17, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -436508,7 +436508,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "49.94%", "Error & Exception Exposure": "88.99%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.77%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -436617,7 +436617,7 @@ "Design Short Vars": 0, "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -436688,7 +436688,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.65%", "Error & Exception Exposure": "34.5%", - "Tech Debt Exposure": "95.66%", + "Tech Debt Exposure": "95.43%", "Testing Exposure": "2.75%", "API Exposure": "0.02%", "Concurrency Exposure": "0.0%", @@ -437807,7 +437807,7 @@ "Design Short Vars": 7, "Design Long Vars": 70, "Duplicate Logic": 0, - "Orphaned Logic": 95, + "Orphaned Logic": 94, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -437987,7 +437987,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -438247,7 +438247,7 @@ "Design Short Vars": 4, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 9, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -438316,7 +438316,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "28.14%", "Error & Exception Exposure": "81.27%", - "Tech Debt Exposure": "73.41%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -438415,7 +438415,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -438484,7 +438484,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.02%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -438583,7 +438583,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -438652,7 +438652,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.32%", "Error & Exception Exposure": "80.41%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.88%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -438751,7 +438751,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -438820,7 +438820,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "50.0%", "Error & Exception Exposure": "81.74%", - "Tech Debt Exposure": "98.07%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.06%", "API Exposure": "0.0%", "Concurrency Exposure": "74.4%", @@ -438959,7 +438959,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -439032,7 +439032,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "38.13%", - "Tech Debt Exposure": "90.77%", + "Tech Debt Exposure": "88.08%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "99.88%", @@ -439311,7 +439311,7 @@ "Design Short Vars": 1, "Design Long Vars": 8, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -439513,7 +439513,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -439582,7 +439582,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "71.75%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -439681,7 +439681,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -439869,7 +439869,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -439941,7 +439941,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "27.42%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "99.94%", "Testing Exposure": "2.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -440200,7 +440200,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 17, + "Orphaned Logic": 16, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -440490,7 +440490,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 13, + "Orphaned Logic": 12, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -440559,7 +440559,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "84.08%", - "Tech Debt Exposure": "98.69%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -440668,7 +440668,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -440737,7 +440737,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "47.06%", "Error & Exception Exposure": "81.03%", - "Tech Debt Exposure": "69.19%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -440846,7 +440846,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -440915,7 +440915,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.02%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -441014,7 +441014,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -441182,7 +441182,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -441228,9 +441228,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2677.31, - "Y": 124.85, - "Z": -3920.17 + "X": 2678.79, + "Y": 125.14, + "Z": -3918.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -441242,7 +441242,7 @@ "Total LOC": 21, "Coding LOC": 5, "Documentation LOC": 13, - "Structural Magnitude": 4.1, + "Structural Magnitude": 3.1, "Control Flow Ratio": "0.0%", "Popularity Rank": 14, "Raw Churn Frequency": 0.0, @@ -441255,14 +441255,14 @@ "Error & Exception Exposure": "84.45%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.86%", - "API Exposure": "4.48%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.73%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.69%", + "Documentation Exposure": "23.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -441288,7 +441288,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -453298,7 +453298,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "60.13%", "Error & Exception Exposure": "82.56%", - "Tech Debt Exposure": "7.85%", + "Tech Debt Exposure": "4.77%", "Testing Exposure": "57.48%", "API Exposure": "0.0%", "Concurrency Exposure": "12.31%", @@ -453324,9 +453324,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6581.2, + "X": -6581.16, "Y": 172.11, - "Z": -5076.66 + "Z": -5076.62 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -453481,9 +453481,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6957.79, + "X": -6957.75, "Y": 31.7, - "Z": -5531.83 + "Z": -5531.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -453659,9 +453659,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6472.14, + "X": -6472.1, "Y": 134.89, - "Z": -5520.5 + "Z": -5520.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -453684,7 +453684,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "76.43%", "Error & Exception Exposure": "94.13%", - "Tech Debt Exposure": "11.92%", + "Tech Debt Exposure": "11.04%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -454513,7 +454513,7 @@ "Design Short Vars": 26, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -454557,9 +454557,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5990.77, + "X": -5990.73, "Y": 121.05, - "Z": -5733.08 + "Z": -5733.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454725,9 +454725,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6180.29, + "X": -6180.25, "Y": 256.87, - "Z": -5045.52 + "Z": -5045.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454750,7 +454750,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "79.44%", "Error & Exception Exposure": "95.16%", - "Tech Debt Exposure": "15.03%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -454979,7 +454979,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -455023,9 +455023,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6795.53, + "X": -6795.48, "Y": 143.2, - "Z": -5269.38 + "Z": -5269.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -455048,7 +455048,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.21%", "Error & Exception Exposure": "98.2%", - "Tech Debt Exposure": "11.84%", + "Tech Debt Exposure": "9.46%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -455337,7 +455337,7 @@ "Design Short Vars": 42, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -455381,9 +455381,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6463.8, + "X": -6463.76, "Y": -13.0, - "Z": -5896.59 + "Z": -5896.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -455406,7 +455406,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "77.3%", "Error & Exception Exposure": "97.29%", - "Tech Debt Exposure": "16.12%", + "Tech Debt Exposure": "12.89%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -455765,7 +455765,7 @@ "Design Short Vars": 13, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -459766,9 +459766,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 2435.88, + "X": 2435.83, "Y": 61.77, - "Z": 8560.58 + "Z": 8560.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -460851,9 +460851,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 2685.17, + "X": 2685.13, "Y": -91.82, - "Z": 8859.15 + "Z": 8858.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -461036,9 +461036,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 2080.15, + "X": 2080.1, "Y": -26.07, - "Z": 8715.77 + "Z": 8715.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -461309,9 +461309,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 2878.31, + "X": 2878.27, "Y": 108.29, - "Z": 8402.33 + "Z": 8402.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -461480,9 +461480,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 1909.82, + "X": 1909.77, "Y": 73.38, - "Z": 8335.3 + "Z": 8335.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -461670,9 +461670,9 @@ "Identity Proof": "Single Indicator (Ext: .cc)" }, "2. Topological Coordinates": { - "X": 2449.97, + "X": 2449.92, "Y": 102.5, - "Z": 8051.51 + "Z": 8051.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -470253,9 +470253,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6282.09, + "X": -6282.06, "Y": 205.2, - "Z": -6030.48 + "Z": -6030.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -470724,9 +470724,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6913.38, + "X": -6913.35, "Y": 206.22, - "Z": -6133.52 + "Z": -6133.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -471028,9 +471028,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6608.61, + "X": -6608.58, "Y": 53.47, - "Z": -6853.66 + "Z": -6853.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -471419,9 +471419,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6592.41, + "X": -6592.38, "Y": 177.39, - "Z": -6621.55 + "Z": -6621.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -482475,7 +482475,7 @@ } }, "zig/tigerbeetle": { - "Directory Group Magnitude": 4587.28, + "Directory Group Magnitude": 4586.28, "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -482485,14 +482485,14 @@ "Error & Exception Exposure": "57.29%", "Tech Debt Exposure": "20.72%", "Testing Exposure": "44.75%", - "API Exposure": "3.63%", + "API Exposure": "3.37%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "40.36%", "Commented Logic Exposure": "1.04%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.36%", + "Documentation Exposure": "46.85%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -482677,9 +482677,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6919.99, - "Y": 100.85, - "Z": 4093.63 + "X": -6919.96, + "Y": 100.87, + "Z": 4093.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -482691,7 +482691,7 @@ "Total LOC": 128, "Coding LOC": 98, "Documentation LOC": 16, - "Structural Magnitude": 112.36, + "Structural Magnitude": 111.36, "Control Flow Ratio": "68.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -482704,14 +482704,14 @@ "Error & Exception Exposure": "97.83%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "2.85%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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": "24.36%", + "Documentation Exposure": "18.67%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -482787,7 +482787,7 @@ "Type/Safety Bypasses": 9, "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 22, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 55, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 1, @@ -486632,9 +486632,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6149.73, + "X": -6149.59, "Y": -66.18, - "Z": -6698.17 + "Z": -6697.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487209,9 +487209,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5532.82, + "X": -5532.67, "Y": -114.19, - "Z": -6754.07 + "Z": -6753.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487643,9 +487643,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5361.53, + "X": -5361.38, "Y": -282.71, - "Z": -7413.96 + "Z": -7413.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487928,9 +487928,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5988.56, + "X": -5988.41, "Y": -62.78, - "Z": -6528.75 + "Z": -6528.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -488089,9 +488089,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5889.75, + "X": -5889.6, "Y": -181.22, - "Z": -6942.61 + "Z": -6942.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -488567,9 +488567,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5825.74, + "X": -5825.59, "Y": -178.55, - "Z": -7597.81 + "Z": -7597.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -489025,9 +489025,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6346.17, + "X": -6346.02, "Y": -39.71, - "Z": -7217.74 + "Z": -7217.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -502794,7 +502794,7 @@ } }, "lua/freebsd-src": { - "Directory Group Magnitude": 3863.8, + "Directory Group Magnitude": 3853.8, "File Count": 16, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -502802,16 +502802,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "70.28%", "Error & Exception Exposure": "89.6%", - "Tech Debt Exposure": "40.54%", + "Tech Debt Exposure": "3.12%", "Testing Exposure": "31.59%", - "API Exposure": "3.47%", + "API Exposure": "3.3%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.9%", "Commented Logic Exposure": "1.67%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.46%", + "Documentation Exposure": "59.22%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -502828,8 +502828,8 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9464.51, - "Y": -8.53, + "X": 9464.55, + "Y": -8.54, "Z": 4071.96 }, "3. Architectural Profile": { @@ -502842,7 +502842,7 @@ "Total LOC": 261, "Coding LOC": 177, "Documentation LOC": 45, - "Structural Magnitude": 293.64, + "Structural Magnitude": 292.64, "Control Flow Ratio": "40.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -502855,14 +502855,14 @@ "Error & Exception Exposure": "93.65%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "3.75%", + "API Exposure": "3.54%", "Concurrency Exposure": "0.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": "81.86%", + "Documentation Exposure": "78.65%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -503038,7 +503038,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 17, + "Exposed API / Public Exports": 16, "State Mutations / Variable Reassignments": 131, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -503149,9 +503149,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9769.34, + "X": 9769.35, "Y": -0.93, - "Z": 4771.58 + "Z": 4771.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -503163,7 +503163,7 @@ "Total LOC": 121, "Coding LOC": 75, "Documentation LOC": 30, - "Structural Magnitude": 122.0, + "Structural Magnitude": 121.0, "Control Flow Ratio": "33.3%", "Popularity Rank": 5, "Raw Churn Frequency": 0.0, @@ -503176,14 +503176,14 @@ "Error & Exception Exposure": "95.4%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", - "API Exposure": "10.14%", + "API Exposure": "9.87%", "Concurrency Exposure": "0.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": "99.89%", + "Documentation Exposure": "99.84%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -503299,7 +503299,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 20, + "Exposed API / Public Exports": 19, "State Mutations / Variable Reassignments": 54, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -503410,7 +503410,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9977.71, + "X": 9977.7, "Y": -47.99, "Z": 4158.2 }, @@ -503424,7 +503424,7 @@ "Total LOC": 918, "Coding LOC": 675, "Documentation LOC": 140, - "Structural Magnitude": 1185.0, + "Structural Magnitude": 1184.0, "Control Flow Ratio": "48.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -503437,14 +503437,14 @@ "Error & Exception Exposure": "98.02%", "Tech Debt Exposure": "16.14%", "Testing Exposure": "80.0%", - "API Exposure": "4.6%", + "API Exposure": "4.54%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.21%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.99%", + "Documentation Exposure": "88.42%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -503870,7 +503870,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 14, "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 66, + "Exposed API / Public Exports": 65, "State Mutations / Variable Reassignments": 502, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -503980,9 +503980,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10015.36, + "X": 10015.35, "Y": 2.27, - "Z": 3672.29 + "Z": 3672.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -503994,7 +503994,7 @@ "Total LOC": 587, "Coding LOC": 412, "Documentation LOC": 91, - "Structural Magnitude": 650.14, + "Structural Magnitude": 649.14, "Control Flow Ratio": "48.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -504007,14 +504007,14 @@ "Error & Exception Exposure": "94.72%", "Tech Debt Exposure": "20.63%", "Testing Exposure": "80.0%", - "API Exposure": "9.41%", + "API Exposure": "9.35%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.34%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.8%", + "Documentation Exposure": "99.78%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -504400,7 +504400,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 86, + "Exposed API / Public Exports": 85, "State Mutations / Variable Reassignments": 272, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -504511,9 +504511,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9619.35, + "X": 9619.36, "Y": 16.28, - "Z": 4427.05 + "Z": 4427.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -504525,7 +504525,7 @@ "Total LOC": 621, "Coding LOC": 453, "Documentation LOC": 89, - "Structural Magnitude": 733.26, + "Structural Magnitude": 732.26, "Control Flow Ratio": "46.6%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -504538,14 +504538,14 @@ "Error & Exception Exposure": "98.18%", "Tech Debt Exposure": "13.09%", "Testing Exposure": "80.0%", - "API Exposure": "2.59%", + "API Exposure": "2.48%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.44%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.94%", + "Documentation Exposure": "48.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -504791,7 +504791,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 26, + "Exposed API / Public Exports": 25, "State Mutations / Variable Reassignments": 426, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -504929,7 +504929,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "38.19%", "Error & Exception Exposure": "82.23%", - "Tech Debt Exposure": "99.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505028,7 +505028,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505074,7 +505074,7 @@ "2. Topological Coordinates": { "X": 9493.91, "Y": -11.38, - "Z": 4803.45 + "Z": 4803.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505097,7 +505097,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "33.35%", "Error & Exception Exposure": "81.27%", - "Tech Debt Exposure": "99.79%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505196,7 +505196,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505240,9 +505240,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9816.04, + "X": 9816.03, "Y": -0.79, - "Z": 3278.16 + "Z": 3278.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505265,7 +505265,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "50.0%", "Error & Exception Exposure": "84.39%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505364,7 +505364,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505408,9 +505408,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10125.99, - "Y": -59.98, - "Z": 4742.0 + "X": 10125.97, + "Y": -59.97, + "Z": 4741.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505433,7 +505433,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "75.23%", "Error & Exception Exposure": "88.22%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505532,7 +505532,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505576,9 +505576,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10211.13, + "X": 10211.12, "Y": 39.33, - "Z": 3699.09 + "Z": 3699.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505601,7 +505601,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "66.08%", "Error & Exception Exposure": "88.8%", - "Tech Debt Exposure": "99.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505700,7 +505700,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505744,7 +505744,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10686.06, + "X": 10686.04, "Y": -16.52, "Z": 3898.67 }, @@ -505769,7 +505769,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "45.84%", "Error & Exception Exposure": "83.7%", - "Tech Debt Exposure": "99.9%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -505868,7 +505868,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -505912,9 +505912,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9680.29, - "Y": 11.6, - "Z": 3749.55 + "X": 9680.37, + "Y": 11.59, + "Z": 3749.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505926,7 +505926,7 @@ "Total LOC": 82, "Coding LOC": 30, "Documentation LOC": 45, - "Structural Magnitude": 53.1, + "Structural Magnitude": 52.1, "Control Flow Ratio": "39.3%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -505939,14 +505939,14 @@ "Error & Exception Exposure": "86.03%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.99%", - "API Exposure": "7.21%", + "API Exposure": "6.63%", "Concurrency Exposure": "0.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": "99.56%", + "Documentation Exposure": "99.02%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -506002,7 +506002,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 9, + "Exposed API / Public Exports": 8, "State Mutations / Variable Reassignments": 15, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -506110,9 +506110,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9327.58, - "Y": 37.97, - "Z": 4446.45 + "X": 9327.89, + "Y": 37.96, + "Z": 4446.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -506124,7 +506124,7 @@ "Total LOC": 60, "Coding LOC": 20, "Documentation LOC": 36, - "Structural Magnitude": 28.2, + "Structural Magnitude": 27.2, "Control Flow Ratio": "36.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -506137,14 +506137,14 @@ "Error & Exception Exposure": "96.69%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.9%", - "API Exposure": "0.56%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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": "43.0%", + "Documentation Exposure": "21.72%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -506200,7 +506200,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -506315,9 +506315,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10222.69, + "X": 10222.66, "Y": -17.72, - "Z": 4662.12 + "Z": 4662.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -506329,7 +506329,7 @@ "Total LOC": 589, "Coding LOC": 480, "Documentation LOC": 75, - "Structural Magnitude": 573.3, + "Structural Magnitude": 572.3, "Control Flow Ratio": "37.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -506342,14 +506342,14 @@ "Error & Exception Exposure": "95.32%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "3.24%", + "API Exposure": "3.08%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "9.66%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.82%", + "Documentation Exposure": "35.96%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -506795,7 +506795,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 20, + "Exposed API / Public Exports": 19, "State Mutations / Variable Reassignments": 333, "Commented-out Code (Dead Logic)": 5, "Structured Documentation Blocks": 0, @@ -506910,9 +506910,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10428.48, + "X": 10428.39, "Y": -3.89, - "Z": 3809.37 + "Z": 3809.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -506924,7 +506924,7 @@ "Total LOC": 147, "Coding LOC": 93, "Documentation LOC": 38, - "Structural Magnitude": 129.26, + "Structural Magnitude": 128.26, "Control Flow Ratio": "42.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -506937,14 +506937,14 @@ "Error & Exception Exposure": "87.56%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "2.76%", + "API Exposure": "2.43%", "Concurrency Exposure": "0.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": "80.3%", + "Documentation Exposure": "74.1%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -507040,7 +507040,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 9, + "Exposed API / Public Exports": 8, "State Mutations / Variable Reassignments": 39, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -507151,9 +507151,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 10522.09, - "Y": -26.44, - "Z": 4419.16 + "X": 10521.83, + "Y": -26.43, + "Z": 4419.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -507165,7 +507165,7 @@ "Total LOC": 69, "Coding LOC": 30, "Documentation LOC": 28, - "Structural Magnitude": 39.0, + "Structural Magnitude": 38.0, "Control Flow Ratio": "20.0%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -507178,7 +507178,7 @@ "Error & Exception Exposure": "79.41%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.73%", - "API Exposure": "11.23%", + "API Exposure": "10.88%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "98.97%", "Commented Logic Exposure": "0.0%", @@ -507271,7 +507271,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 16, + "Exposed API / Public Exports": 15, "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -511994,9 +511994,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5839.41, + "X": -5839.24, "Y": -150.43, - "Z": -5666.76 + "Z": -5666.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512313,9 +512313,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4954.9, + "X": -4954.73, "Y": -240.07, - "Z": -5699.36 + "Z": -5699.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512473,9 +512473,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5829.4, + "X": -5829.23, "Y": 41.65, - "Z": -6531.81 + "Z": -6531.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512765,9 +512765,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6200.09, + "X": -6199.93, "Y": -82.15, - "Z": -5843.46 + "Z": -5843.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512958,9 +512958,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5258.72, + "X": -5258.55, "Y": 63.42, - "Z": -6607.97 + "Z": -6607.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513115,9 +513115,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5543.5, + "X": -5543.33, "Y": -102.3, - "Z": -5998.68 + "Z": -5998.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513444,9 +513444,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5746.03, + "X": -5745.87, "Y": -234.62, - "Z": -5440.17 + "Z": -5440.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513607,9 +513607,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5493.51, + "X": -5493.34, "Y": -27.79, - "Z": -6257.39 + "Z": -6257.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513854,9 +513854,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5116.37, + "X": -5116.21, "Y": -23.65, - "Z": -6121.28 + "Z": -6121.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514016,9 +514016,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5293.23, + "X": -5293.07, "Y": -202.88, - "Z": -5486.08 + "Z": -5485.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514338,9 +514338,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6118.29, + "X": -6118.13, "Y": 1.59, - "Z": -6143.26 + "Z": -6143.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514600,9 +514600,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5337.67, + "X": -5337.51, "Y": -269.26, - "Z": -5122.43 + "Z": -5122.25 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -514757,9 +514757,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6195.19, + "X": -6195.02, "Y": 77.41, - "Z": -6369.7 + "Z": -6369.52 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -540712,9 +540712,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4890.3, + "X": -4890.15, "Y": 4.45, - "Z": -7342.65 + "Z": -7342.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540970,9 +540970,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4565.5, + "X": -4565.35, "Y": 56.66, - "Z": -7318.44 + "Z": -7318.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541418,9 +541418,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5279.06, + "X": -5278.91, "Y": -8.05, - "Z": -7353.87 + "Z": -7353.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541596,9 +541596,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4323.61, + "X": -4323.46, "Y": 121.9, - "Z": -6677.26 + "Z": -6677.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541824,9 +541824,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4381.16, + "X": -4381.02, "Y": 48.05, - "Z": -7530.55 + "Z": -7530.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542032,9 +542032,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5113.06, + "X": -5112.91, "Y": -0.05, - "Z": -7029.32 + "Z": -7029.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542250,9 +542250,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4861.09, + "X": -4860.94, "Y": 100.67, - "Z": -6802.87 + "Z": -6802.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542498,9 +542498,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4470.43, + "X": -4470.28, "Y": 187.15, - "Z": -6214.26 + "Z": -6214.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542686,9 +542686,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4073.68, + "X": -4073.53, "Y": 196.82, - "Z": -6679.43 + "Z": -6679.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542904,9 +542904,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5192.22, + "X": -5192.07, "Y": 53.47, - "Z": -6714.14 + "Z": -6713.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543162,9 +543162,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4672.31, + "X": -4672.16, "Y": 123.45, - "Z": -6896.93 + "Z": -6896.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543720,9 +543720,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4823.85, + "X": -4823.7, "Y": 93.56, - "Z": -6399.54 + "Z": -6399.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543918,9 +543918,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4192.76, + "X": -4192.62, "Y": 86.28, - "Z": -7183.01 + "Z": -7182.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544124,7 +544124,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "66.23%", "Error & Exception Exposure": "92.36%", - "Tech Debt Exposure": "73.68%", + "Tech Debt Exposure": "2.7%", "Testing Exposure": "34.33%", "API Exposure": "0.05%", "Concurrency Exposure": "1.08%", @@ -544175,7 +544175,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.55%", "Error & Exception Exposure": "99.96%", - "Tech Debt Exposure": "91.62%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -544324,7 +544324,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -544393,7 +544393,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "34.11%", "Error & Exception Exposure": "76.23%", - "Tech Debt Exposure": "95.2%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -544512,7 +544512,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -544581,7 +544581,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "94.37%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -544690,7 +544690,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -544759,7 +544759,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "92.96%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -544868,7 +544868,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -544937,7 +544937,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "39.76%", "Error & Exception Exposure": "89.06%", - "Tech Debt Exposure": "72.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -545066,7 +545066,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -545135,7 +545135,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "94.59%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.68%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -545244,7 +545244,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -545313,7 +545313,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.99%", "Error & Exception Exposure": "99.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.98%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -545422,7 +545422,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -545491,7 +545491,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "94.14%", - "Tech Debt Exposure": "99.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.92%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -545610,7 +545610,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -545679,7 +545679,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.48%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "35.59%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.89%", "Concurrency Exposure": "0.0%", @@ -545868,7 +545868,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -545937,7 +545937,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "76.25%", "Error & Exception Exposure": "77.86%", - "Tech Debt Exposure": "89.91%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.62%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -546066,7 +546066,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -546135,7 +546135,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.91%", "Error & Exception Exposure": "96.71%", - "Tech Debt Exposure": "52.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -546274,7 +546274,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -546343,7 +546343,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "32.54%", "Error & Exception Exposure": "91.21%", - "Tech Debt Exposure": "10.05%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "18.33%", @@ -546542,7 +546542,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -546613,7 +546613,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.89%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "19.25%", + "Tech Debt Exposure": "11.43%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -546882,7 +546882,7 @@ "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -546951,7 +546951,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "93.25%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.67%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -547050,7 +547050,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -547119,7 +547119,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.79%", "Error & Exception Exposure": "98.62%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -547228,7 +547228,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -547297,7 +547297,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "36.69%", "Error & Exception Exposure": "84.72%", - "Tech Debt Exposure": "68.5%", + "Tech Debt Exposure": "34.54%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -547416,7 +547416,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -547489,7 +547489,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "86.94%", - "Tech Debt Exposure": "18.24%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -547638,7 +547638,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -547672,7 +547672,7 @@ } }, "shell/curl": { - "Directory Group Magnitude": 2458.48, + "Directory Group Magnitude": 2457.48, "File Count": 20, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "95.0%", @@ -547681,16 +547681,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "60.32%", "Error & Exception Exposure": "56.64%", - "Tech Debt Exposure": "77.66%", + "Tech Debt Exposure": "9.29%", "Testing Exposure": "17.76%", - "API Exposure": "1.64%", + "API Exposure": "1.45%", "Concurrency Exposure": "3.28%", "State Flux Exposure": "55.0%", "Commented Logic Exposure": "0.77%", "Specification Exposure": "85.67%", "Instability Exposure": "47.5%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.6%", + "Documentation Exposure": "33.39%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -547889,7 +547889,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "85.37%", "Error & Exception Exposure": "78.78%", - "Tech Debt Exposure": "56.07%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "65.54%", @@ -548038,7 +548038,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -548109,7 +548109,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "32.53%", "Error & Exception Exposure": "65.64%", - "Tech Debt Exposure": "97.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -548218,7 +548218,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -548290,7 +548290,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "79.55%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.99%", "Testing Exposure": "3.24%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -548399,7 +548399,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -548468,7 +548468,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "37.75%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -548567,7 +548567,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -548636,7 +548636,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.63%", "Error & Exception Exposure": "91.33%", - "Tech Debt Exposure": "85.14%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -548765,7 +548765,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -548834,7 +548834,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.84%", "Error & Exception Exposure": "96.21%", - "Tech Debt Exposure": "84.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.73%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -548983,7 +548983,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -549027,9 +549027,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5665.04, - "Y": 186.55, - "Z": -2401.29 + "X": 5665.26, + "Y": 186.63, + "Z": -2399.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -549041,7 +549041,7 @@ "Total LOC": 42, "Coding LOC": 12, "Documentation LOC": 27, - "Structural Magnitude": 5.34, + "Structural Magnitude": 4.34, "Control Flow Ratio": "25.0%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -549054,14 +549054,14 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.03%", - "API Exposure": "3.69%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "51.85%", + "Documentation Exposure": "27.63%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -549087,7 +549087,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -549222,7 +549222,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.37%", "Error & Exception Exposure": "65.25%", - "Tech Debt Exposure": "95.79%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -549331,7 +549331,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -549400,7 +549400,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.58%", "Error & Exception Exposure": "96.91%", - "Tech Debt Exposure": "12.07%", + "Tech Debt Exposure": "9.43%", "Testing Exposure": "80.0%", "API Exposure": "1.05%", "Concurrency Exposure": "0.0%", @@ -549769,7 +549769,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -549840,7 +549840,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.86%", "Error & Exception Exposure": "91.18%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.99%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -549969,7 +549969,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -550038,7 +550038,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.99%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.38%", "API Exposure": "8.41%", "Concurrency Exposure": "0.0%", @@ -550137,7 +550137,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -550206,7 +550206,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.94%", "Error & Exception Exposure": "65.83%", - "Tech Debt Exposure": "85.38%", + "Tech Debt Exposure": "76.43%", "Testing Exposure": "80.0%", "API Exposure": "6.29%", "Concurrency Exposure": "0.0%", @@ -550415,7 +550415,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 5, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -550490,7 +550490,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "58.71%", - "Tech Debt Exposure": "89.01%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -550639,7 +550639,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -550711,7 +550711,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "65.38%", "Error & Exception Exposure": "91.83%", - "Tech Debt Exposure": "86.14%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.77%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -550880,7 +550880,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -550952,7 +550952,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "76.0%", "Error & Exception Exposure": "82.63%", - "Tech Debt Exposure": "62.25%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -551061,7 +551061,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -551133,7 +551133,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.99%", "API Exposure": "9.36%", "Concurrency Exposure": "0.0%", @@ -551232,7 +551232,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -551301,7 +551301,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.11%", "Error & Exception Exposure": "80.0%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.69%", "API Exposure": "4.0%", "Concurrency Exposure": "0.0%", @@ -551420,7 +551420,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -551489,7 +551489,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -551588,7 +551588,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -551657,7 +551657,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -551756,7 +551756,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -569853,9 +569853,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5662.91, + "X": -5662.9, "Y": 206.9, - "Z": 9184.24 + "Z": 9184.23 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -570010,9 +570010,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -5649.75, + "X": -5649.74, "Y": 177.77, - "Z": 10140.72 + "Z": 10140.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -570365,9 +570365,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -4929.0, + "X": -4928.99, "Y": 202.14, - "Z": 9583.46 + "Z": 9583.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -570544,9 +570544,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -5074.36, + "X": -5074.35, "Y": 201.18, - "Z": 10128.3 + "Z": 10128.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -570997,9 +570997,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -5893.51, + "X": -5893.5, "Y": 197.64, - "Z": 9522.08 + "Z": 9522.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -571262,9 +571262,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -5292.26, + "X": -5292.25, "Y": 265.74, - "Z": 9344.27 + "Z": 9344.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -571565,7 +571565,7 @@ "2. Topological Coordinates": { "X": -5395.18, "Y": 235.59, - "Z": 9914.43 + "Z": 9914.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572051,9 +572051,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": -5475.12, + "X": -5475.11, "Y": 156.02, - "Z": 10317.6 + "Z": 10317.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -574732,9 +574732,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4686.53, + "X": -4686.41, "Y": -38.82, - "Z": -7972.96 + "Z": -7972.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575225,9 +575225,9 @@ "Identity Proof": "Sibling Anchor (C++)" }, "2. Topological Coordinates": { - "X": -4207.51, + "X": -4207.38, "Y": 30.72, - "Z": -8279.4 + "Z": -8279.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575385,9 +575385,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -5239.07, + "X": -5238.95, "Y": -77.73, - "Z": -8260.9 + "Z": -8260.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575598,9 +575598,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4670.85, + "X": -4670.72, "Y": 13.64, - "Z": -8727.84 + "Z": -8727.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575873,9 +575873,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4388.41, + "X": -4388.29, "Y": -140.05, - "Z": -7902.17 + "Z": -7901.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -576081,9 +576081,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4953.06, + "X": -4952.93, "Y": -172.93, - "Z": -8003.55 + "Z": -8003.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -576379,9 +576379,9 @@ "Identity Proof": "Ecosystem Consensus Lock (81% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4801.45, + "X": -4801.33, "Y": -222.35, - "Z": -7465.83 + "Z": -7465.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -576576,7 +576576,7 @@ } }, "shell/brew": { - "Directory Group Magnitude": 2060.32, + "Directory Group Magnitude": 2059.32, "File Count": 9, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "88.9%", @@ -576585,16 +576585,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "29.34%", "Error & Exception Exposure": "36.82%", - "Tech Debt Exposure": "54.96%", + "Tech Debt Exposure": "41.52%", "Testing Exposure": "36.31%", - "API Exposure": "1.17%", + "API Exposure": "1.12%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "40.62%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "72.59%", "Instability Exposure": "44.44%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.67%", + "Documentation Exposure": "14.01%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -576993,7 +576993,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.33%", "Error & Exception Exposure": "44.67%", - "Tech Debt Exposure": "17.44%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "2.01%", "Concurrency Exposure": "0.0%", @@ -577362,7 +577362,7 @@ "Design Short Vars": 1, "Design Long Vars": 9, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -578021,7 +578021,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 36, + "Orphaned Logic": 35, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -578102,7 +578102,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.62%", "Error & Exception Exposure": "58.46%", - "Tech Debt Exposure": "98.8%", + "Tech Debt Exposure": "97.33%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -578321,7 +578321,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -578398,7 +578398,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.35%", "Error & Exception Exposure": "44.48%", - "Tech Debt Exposure": "78.45%", + "Tech Debt Exposure": "76.35%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -579887,7 +579887,7 @@ "Design Short Vars": 2, "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 20, + "Orphaned Logic": 19, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -579952,9 +579952,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -461.85, - "Y": 6.54, - "Z": 7329.89 + "X": -461.66, + "Y": 6.51, + "Z": 7329.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -579966,7 +579966,7 @@ "Total LOC": 171, "Coding LOC": 135, "Documentation LOC": 3, - "Structural Magnitude": 51.7, + "Structural Magnitude": 50.7, "Control Flow Ratio": "48.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -579979,14 +579979,14 @@ "Error & Exception Exposure": "55.93%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", - "API Exposure": "8.54%", + "API Exposure": "8.08%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.06%", + "Documentation Exposure": "33.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -580142,7 +580142,7 @@ "Type/Safety Bypasses": 7, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 8, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 13, @@ -580451,7 +580451,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -580550,7 +580550,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -580586,7 +580586,7 @@ } }, "shell/moby": { - "Directory Group Magnitude": 2038.02, + "Directory Group Magnitude": 2036.02, "File Count": 13, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -580594,16 +580594,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "71.16%", "Error & Exception Exposure": "76.58%", - "Tech Debt Exposure": "62.73%", + "Tech Debt Exposure": "17.41%", "Testing Exposure": "38.2%", - "API Exposure": "1.59%", + "API Exposure": "0.89%", "Concurrency Exposure": "6.47%", "State Flux Exposure": "79.72%", "Commented Logic Exposure": "0.94%", "Specification Exposure": "92.82%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.84%", + "Documentation Exposure": "28.55%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -580645,7 +580645,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.4%", "Error & Exception Exposure": "89.09%", - "Tech Debt Exposure": "32.11%", + "Tech Debt Exposure": "16.7%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -581104,7 +581104,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -581148,9 +581148,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4767.54, - "Y": -100.34, - "Z": 4126.58 + "X": -4767.83, + "Y": -100.37, + "Z": 4126.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -581162,7 +581162,7 @@ "Total LOC": 30, "Coding LOC": 25, "Documentation LOC": 0, - "Structural Magnitude": 30.9, + "Structural Magnitude": 29.9, "Control Flow Ratio": "75.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -581175,14 +581175,14 @@ "Error & Exception Exposure": "87.21%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", - "API Exposure": "4.04%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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": "75.23%", + "Documentation Exposure": "55.53%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -581218,7 +581218,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 13, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -581326,9 +581326,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5984.28, - "Y": -209.53, - "Z": 4189.11 + "X": -5983.78, + "Y": -209.52, + "Z": 4188.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -581340,7 +581340,7 @@ "Total LOC": 14, "Coding LOC": 10, "Documentation LOC": 1, - "Structural Magnitude": 16.9, + "Structural Magnitude": 15.9, "Control Flow Ratio": "100.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -581353,14 +581353,14 @@ "Error & Exception Exposure": "91.68%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.23%", - "API Exposure": "5.12%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.06%", + "Documentation Exposure": "52.02%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -581396,7 +581396,7 @@ "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -581529,7 +581529,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "95.49%", - "Tech Debt Exposure": "56.37%", + "Tech Debt Exposure": "48.05%", "Testing Exposure": "80.0%", "API Exposure": "0.55%", "Concurrency Exposure": "0.0%", @@ -581828,7 +581828,7 @@ "Design Short Vars": 1, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -581899,7 +581899,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "88.91%", "Error & Exception Exposure": "96.45%", - "Tech Debt Exposure": "29.78%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "4.05%", "Concurrency Exposure": "0.0%", @@ -582128,7 +582128,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -582197,7 +582197,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.16%", "Error & Exception Exposure": "99.93%", - "Tech Debt Exposure": "51.42%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -582376,7 +582376,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -582445,7 +582445,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.66%", "Error & Exception Exposure": "98.21%", - "Tech Debt Exposure": "35.9%", + "Tech Debt Exposure": "17.93%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -582654,7 +582654,7 @@ "Design Short Vars": 0, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -582725,7 +582725,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.93%", "Error & Exception Exposure": "94.91%", - "Tech Debt Exposure": "82.02%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -582874,7 +582874,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -582943,7 +582943,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "30.02%", "Error & Exception Exposure": "55.71%", - "Tech Debt Exposure": "94.2%", + "Tech Debt Exposure": "43.62%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -583052,7 +583052,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -583121,7 +583121,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.97%", "Error & Exception Exposure": "90.54%", - "Tech Debt Exposure": "99.48%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.83%", "API Exposure": "6.93%", "Concurrency Exposure": "0.0%", @@ -583250,7 +583250,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -583321,7 +583321,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.98%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -583430,7 +583430,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -583499,7 +583499,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "96.27%", - "Tech Debt Exposure": "34.17%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "84.09%", @@ -583678,7 +583678,7 @@ "Design Short Vars": 2, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -583747,7 +583747,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.04%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -583856,7 +583856,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -598558,9 +598558,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 10254.35, + "X": 10254.32, "Y": -161.17, - "Z": 4667.33 + "Z": 4667.31 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -598716,9 +598716,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10869.27, + "X": 10869.24, "Y": 5.31, - "Z": 5612.6 + "Z": 5612.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -599388,9 +599388,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10581.62, + "X": 10581.59, "Y": -146.51, - "Z": 4777.9 + "Z": 4777.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -600090,9 +600090,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10399.08, + "X": 10399.04, "Y": 6.68, - "Z": 5669.81 + "Z": 5669.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -600279,9 +600279,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10025.79, + "X": 10025.76, "Y": -134.9, - "Z": 5160.73 + "Z": 5160.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -600594,9 +600594,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 11048.8, + "X": 11048.77, "Y": -53.72, - "Z": 4852.2 + "Z": 4852.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -600974,9 +600974,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10557.0, + "X": 10556.97, "Y": -57.51, - "Z": 5203.15 + "Z": 5203.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -602573,9 +602573,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 10275.25, + "X": 10275.22, "Y": 10.63, - "Z": 5512.08 + "Z": 5512.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627569,7 +627569,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "52.27%", "Error & Exception Exposure": "84.37%", - "Tech Debt Exposure": "84.24%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "21.7%", "API Exposure": "0.44%", "Concurrency Exposure": "0.99%", @@ -627595,9 +627595,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4957.27, + "X": -4957.11, "Y": 11.21, - "Z": -5613.05 + "Z": -5612.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627620,7 +627620,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "97.73%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.59%", "API Exposure": "3.93%", "Concurrency Exposure": "0.0%", @@ -627729,7 +627729,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -627773,9 +627773,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3539.71, + "X": -3539.54, "Y": 150.86, - "Z": -6136.43 + "Z": -6136.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627798,7 +627798,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "51.47%", "Error & Exception Exposure": "87.5%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.58%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -627907,7 +627907,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -627951,9 +627951,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4286.79, + "X": -4286.62, "Y": -67.81, - "Z": -4875.88 + "Z": -4875.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627976,7 +627976,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.64%", "Error & Exception Exposure": "99.91%", - "Tech Debt Exposure": "62.25%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.77%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -628095,7 +628095,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -628139,9 +628139,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3852.5, + "X": -3852.33, "Y": 152.92, - "Z": -5935.01 + "Z": -5934.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628164,7 +628164,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -628273,7 +628273,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -628317,9 +628317,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4721.36, + "X": -4721.19, "Y": -28.59, - "Z": -5111.08 + "Z": -5110.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628342,7 +628342,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.2%", "Error & Exception Exposure": "99.89%", - "Tech Debt Exposure": "99.79%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.95%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -628471,7 +628471,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -628515,9 +628515,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4394.91, + "X": -4394.75, "Y": -40.58, - "Z": -5237.62 + "Z": -5237.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628540,7 +628540,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.87%", "Error & Exception Exposure": "99.88%", - "Tech Debt Exposure": "52.9%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -628729,7 +628729,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -628773,9 +628773,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4133.91, + "X": -4133.75, "Y": 60.19, - "Z": -5318.67 + "Z": -5318.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628798,7 +628798,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "90.52%", "Error & Exception Exposure": "99.64%", - "Tech Debt Exposure": "25.78%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -628927,7 +628927,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -628971,9 +628971,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3590.28, + "X": -3590.11, "Y": -102.43, - "Z": -5103.94 + "Z": -5103.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628996,7 +628996,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.26%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.83%", "API Exposure": "3.71%", "Concurrency Exposure": "0.0%", @@ -629105,7 +629105,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -629149,9 +629149,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3290.64, + "X": -3290.47, "Y": -27.2, - "Z": -5440.63 + "Z": -5440.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629174,7 +629174,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "95.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -629273,7 +629273,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -629317,9 +629317,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4730.43, + "X": -4730.26, "Y": 167.57, - "Z": -5963.53 + "Z": -5963.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629342,7 +629342,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "22.27%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -629451,7 +629451,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -629495,9 +629495,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3940.88, + "X": -3940.72, "Y": 253.61, - "Z": -6289.25 + "Z": -6289.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629520,7 +629520,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -629619,7 +629619,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -629663,9 +629663,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4606.29, + "X": -4606.12, "Y": 25.64, - "Z": -5426.09 + "Z": -5425.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629688,7 +629688,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "93.74%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "53.67%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -629897,7 +629897,7 @@ "Design Short Vars": 6, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -629941,9 +629941,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4539.63, + "X": -4539.46, "Y": -117.75, - "Z": -5015.81 + "Z": -5015.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629966,7 +629966,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "27.97%", "Error & Exception Exposure": "90.12%", - "Tech Debt Exposure": "97.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.56%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -630075,7 +630075,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -630119,9 +630119,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4099.0, + "X": -4098.83, "Y": 154.95, - "Z": -6010.71 + "Z": -6010.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630144,7 +630144,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.66%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "24.93%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "23.69%", @@ -630293,7 +630293,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -630339,9 +630339,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4869.25, + "X": -4869.08, "Y": -91.87, - "Z": -5054.33 + "Z": -5054.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630364,7 +630364,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "91.21%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.89%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -630463,7 +630463,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -630507,9 +630507,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3883.87, + "X": -3883.7, "Y": -45.39, - "Z": -5207.75 + "Z": -5207.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630532,7 +630532,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.56%", "Error & Exception Exposure": "99.92%", - "Tech Debt Exposure": "55.25%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "2.84%", "Concurrency Exposure": "0.0%", @@ -630701,7 +630701,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -630745,9 +630745,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4192.94, + "X": -4192.78, "Y": -113.36, - "Z": -4792.73 + "Z": -4792.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630770,7 +630770,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "21.15%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -630879,7 +630879,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -630923,9 +630923,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4798.61, + "X": -4798.45, "Y": 68.97, - "Z": -5659.82 + "Z": -5659.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630948,7 +630948,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.51%", "Error & Exception Exposure": "91.92%", - "Tech Debt Exposure": "99.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631077,7 +631077,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -631121,9 +631121,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3579.9, + "X": -3579.73, "Y": -15.87, - "Z": -5240.66 + "Z": -5240.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631146,7 +631146,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "64.41%", "Error & Exception Exposure": "89.16%", - "Tech Debt Exposure": "78.81%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631245,7 +631245,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -631289,9 +631289,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4272.65, + "X": -4272.48, "Y": 227.2, - "Z": -6270.76 + "Z": -6270.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631314,7 +631314,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.12%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631413,7 +631413,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -631460,9 +631460,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3423.12, + "X": -3422.95, "Y": 105.78, - "Z": -5598.06 + "Z": -5597.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631485,7 +631485,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.49%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.63%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631594,7 +631594,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -631638,9 +631638,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3909.35, + "X": -3909.18, "Y": -100.54, - "Z": -4686.25 + "Z": -4686.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631663,7 +631663,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.61%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.24%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631782,7 +631782,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -631826,9 +631826,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3720.74, + "X": -3720.58, "Y": 101.34, - "Z": -5637.37 + "Z": -5637.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631851,7 +631851,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "93.66%", "Error & Exception Exposure": "98.24%", - "Tech Debt Exposure": "72.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -631990,7 +631990,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -632036,9 +632036,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4431.23, + "X": -4431.06, "Y": 164.03, - "Z": -6032.84 + "Z": -6032.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632061,7 +632061,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.3%", "Error & Exception Exposure": "97.15%", - "Tech Debt Exposure": "99.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -632200,7 +632200,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -633719,7 +633719,7 @@ } }, "lua/pandoc": { - "Directory Group Magnitude": 1355.84, + "Directory Group Magnitude": 1353.84, "File Count": 26, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "92.3%", @@ -633728,9 +633728,9 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "36.29%", "Error & Exception Exposure": "60.0%", - "Tech Debt Exposure": "58.2%", + "Tech Debt Exposure": "35.4%", "Testing Exposure": "4.88%", - "API Exposure": "2.92%", + "API Exposure": "2.79%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "79.88%", "Commented Logic Exposure": "1.12%", @@ -633754,9 +633754,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3560.95, + "X": -3560.96, "Y": -92.25, - "Z": -3944.45 + "Z": -3944.44 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -633911,9 +633911,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": -5299.26, + "X": -5299.23, "Y": -83.52, - "Z": -4529.78 + "Z": -4529.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -634068,9 +634068,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4930.19, + "X": -4930.16, "Y": -133.7, - "Z": -4825.08 + "Z": -4825.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634212,7 +634212,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -634258,7 +634258,7 @@ "2. Topological Coordinates": { "X": -3767.76, "Y": -54.7, - "Z": -4785.01 + "Z": -4784.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634424,9 +634424,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4447.8, + "X": -4447.78, "Y": -83.88, - "Z": -4726.75 + "Z": -4726.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634592,7 +634592,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4782.75, + "X": -4782.72, "Y": -82.78, "Z": -3579.09 }, @@ -634760,9 +634760,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4875.37, + "X": -4875.33, "Y": -114.56, - "Z": -4332.33 + "Z": -4332.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634785,7 +634785,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.12%", "Error & Exception Exposure": "98.81%", - "Tech Debt Exposure": "99.89%", + "Tech Debt Exposure": "98.07%", "Testing Exposure": "2.6%", "API Exposure": "5.74%", "Concurrency Exposure": "0.0%", @@ -634934,7 +634934,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -634978,7 +634978,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4630.24, + "X": -4630.21, "Y": -114.75, "Z": -3720.91 }, @@ -635003,7 +635003,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "58.26%", "Error & Exception Exposure": "88.57%", - "Tech Debt Exposure": "33.3%", + "Tech Debt Exposure": "22.27%", "Testing Exposure": "2.45%", "API Exposure": "0.38%", "Concurrency Exposure": "0.0%", @@ -635172,7 +635172,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -635216,9 +635216,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3679.35, + "X": -3679.36, "Y": -92.75, - "Z": -4249.41 + "Z": -4249.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -635350,7 +635350,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -635394,9 +635394,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4147.31, + "X": -4147.3, "Y": -50.21, - "Z": -4889.73 + "Z": -4889.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -635587,7 +635587,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "21.64%", "Error & Exception Exposure": "1.53%", - "Tech Debt Exposure": "27.29%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -636096,7 +636096,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -636142,7 +636142,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5147.92, + "X": -5147.89, "Y": -161.67, "Z": -3657.94 }, @@ -636167,7 +636167,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.09%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.67%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -636276,7 +636276,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -636320,9 +636320,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4226.33, + "X": -4226.32, "Y": -55.46, - "Z": -5134.6 + "Z": -5134.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636488,9 +636488,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4452.25, + "X": -4452.23, "Y": -160.13, - "Z": -3202.76 + "Z": -3202.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636645,9 +636645,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3809.06, + "X": -3809.07, "Y": -88.51, - "Z": -3732.11 + "Z": -3732.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636823,9 +636823,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4153.24, + "X": -4153.23, "Y": -87.86, - "Z": -3559.7 + "Z": -3559.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637007,7 +637007,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -637078,7 +637078,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.2%", "API Exposure": "2.63%", "Concurrency Exposure": "0.0%", @@ -637187,7 +637187,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -637231,9 +637231,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5188.45, + "X": -5187.76, "Y": -135.86, - "Z": -3994.62 + "Z": -3994.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637245,7 +637245,7 @@ "Total LOC": 11, "Coding LOC": 10, "Documentation LOC": 0, - "Structural Magnitude": 13.9, + "Structural Magnitude": 12.9, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -637258,7 +637258,7 @@ "Error & Exception Exposure": "91.68%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.81%", - "API Exposure": "8.84%", + "API Exposure": "5.58%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", @@ -637301,7 +637301,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -637409,9 +637409,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4968.29, + "X": -4968.25, "Y": -64.92, - "Z": -4638.04 + "Z": -4638.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637434,7 +637434,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "60.48%", "Error & Exception Exposure": "74.55%", - "Tech Debt Exposure": "90.78%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -637563,7 +637563,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -637610,9 +637610,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4500.67, + "X": -4500.64, "Y": -150.22, - "Z": -3423.89 + "Z": -3423.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637635,7 +637635,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.19%", "Error & Exception Exposure": "67.96%", - "Tech Debt Exposure": "78.81%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "1.03%", "Concurrency Exposure": "0.0%", @@ -637814,7 +637814,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -637861,9 +637861,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4662.87, + "X": -4662.84, "Y": -97.63, - "Z": -4727.73 + "Z": -4727.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637886,7 +637886,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "23.94%", - "Tech Debt Exposure": "38.83%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -638195,7 +638195,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -638243,9 +638243,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4389.77, + "X": -4389.76, "Y": -99.43, - "Z": -4454.89 + "Z": -4454.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638268,7 +638268,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "62.01%", "Error & Exception Exposure": "35.6%", - "Tech Debt Exposure": "27.5%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -638587,7 +638587,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -638634,7 +638634,7 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5012.91, + "X": -5012.87, "Y": -123.45, "Z": -3846.89 }, @@ -638659,7 +638659,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "74.51%", "Error & Exception Exposure": "31.0%", - "Tech Debt Exposure": "76.65%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.34%", "API Exposure": "0.23%", "Concurrency Exposure": "0.0%", @@ -638838,7 +638838,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -638888,7 +638888,7 @@ "2. Topological Coordinates": { "X": -3900.71, "Y": -133.74, - "Z": -4235.95 + "Z": -4235.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638911,7 +638911,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.07%", "Error & Exception Exposure": "40.04%", - "Tech Debt Exposure": "40.2%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -639100,7 +639100,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -639147,9 +639147,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4383.92, + "X": -4383.9, "Y": -138.4, - "Z": -4194.69 + "Z": -4194.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -639161,7 +639161,7 @@ "Total LOC": 370, "Coding LOC": 277, "Documentation LOC": 45, - "Structural Magnitude": 536.84, + "Structural Magnitude": 535.84, "Control Flow Ratio": "35.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -639174,14 +639174,14 @@ "Error & Exception Exposure": "94.54%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "11.21%", + "API Exposure": "11.15%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.97%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.96%", + "Documentation Exposure": "99.95%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -639667,7 +639667,7 @@ "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 80, + "Exposed API / Public Exports": 79, "State Mutations / Variable Reassignments": 188, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -639953,7 +639953,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "83.04%", "Error & Exception Exposure": "95.16%", - "Tech Debt Exposure": "48.9%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "35.83%", "API Exposure": "0.74%", "Concurrency Exposure": "0.0%", @@ -640004,7 +640004,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "78.66%", "Error & Exception Exposure": "98.21%", - "Tech Debt Exposure": "47.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.16%", "Concurrency Exposure": "0.0%", @@ -640143,7 +640143,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -640218,7 +640218,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "78.12%", "Error & Exception Exposure": "95.15%", - "Tech Debt Exposure": "38.83%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -640437,7 +640437,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -640506,7 +640506,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "79.32%", "Error & Exception Exposure": "97.64%", - "Tech Debt Exposure": "50.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.66%", "API Exposure": "0.18%", "Concurrency Exposure": "0.0%", @@ -640645,7 +640645,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -640721,7 +640721,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.32%", "Error & Exception Exposure": "84.53%", - "Tech Debt Exposure": "14.84%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "4.81%", "Concurrency Exposure": "0.0%", @@ -640970,7 +640970,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -641039,7 +641039,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "92.73%", "Error & Exception Exposure": "98.32%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.95%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -641168,7 +641168,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -641239,7 +641239,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.79%", "Error & Exception Exposure": "97.88%", - "Tech Debt Exposure": "75.57%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -641368,7 +641368,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -641442,7 +641442,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "86.37%", "Error & Exception Exposure": "94.41%", - "Tech Debt Exposure": "15.76%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -641801,7 +641801,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -662865,7 +662865,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "45.81%", "Error & Exception Exposure": "85.32%", - "Tech Debt Exposure": "89.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "15.6%", "API Exposure": "0.14%", "Concurrency Exposure": "1.33%", @@ -663073,7 +663073,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.29%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -663192,7 +663192,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -663261,7 +663261,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "79.82%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "98.93%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -663400,7 +663400,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -663469,7 +663469,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "93.15%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.8%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -663568,7 +663568,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -663637,7 +663637,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "81.56%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "82.02%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -663746,7 +663746,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -663815,7 +663815,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.97%", "Error & Exception Exposure": "99.96%", - "Tech Debt Exposure": "99.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.86%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -663944,7 +663944,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664013,7 +664013,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -664112,7 +664112,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664183,7 +664183,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.72%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.7%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -664282,7 +664282,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664353,7 +664353,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.72%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.7%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -664452,7 +664452,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664523,7 +664523,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "89.27%", - "Tech Debt Exposure": "92.41%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.01%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -664642,7 +664642,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664711,7 +664711,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.33%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "5.06%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -664840,7 +664840,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -664909,7 +664909,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "11.43%", "Error & Exception Exposure": "88.95%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -665018,7 +665018,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -665087,7 +665087,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.62%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.81%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -665206,7 +665206,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -665275,7 +665275,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "36.63%", "Error & Exception Exposure": "82.81%", - "Tech Debt Exposure": "10.19%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "3.12%", "Concurrency Exposure": "30.53%", @@ -665474,7 +665474,7 @@ "Design Short Vars": 8, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -665546,7 +665546,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.49%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "4.85%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -665675,7 +665675,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -665744,7 +665744,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.91%", "Error & Exception Exposure": "99.3%", - "Tech Debt Exposure": "72.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -665883,7 +665883,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -665954,7 +665954,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.68%", "Error & Exception Exposure": "89.8%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.02%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666073,7 +666073,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -666142,7 +666142,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666241,7 +666241,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -666310,7 +666310,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.89%", "Error & Exception Exposure": "99.17%", - "Tech Debt Exposure": "99.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.78%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666419,7 +666419,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -666488,7 +666488,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "85.27%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.72%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666597,7 +666597,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -666666,7 +666666,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666765,7 +666765,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -666836,7 +666836,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -666935,7 +666935,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -667006,7 +667006,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -667105,7 +667105,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -667149,7 +667149,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "83.72%", "Error & Exception Exposure": "95.81%", - "Tech Debt Exposure": "83.96%", + "Tech Debt Exposure": "33.33%", "Testing Exposure": "41.18%", "API Exposure": "0.39%", "Concurrency Exposure": "16.57%", @@ -667177,7 +667177,7 @@ "2. Topological Coordinates": { "X": -2807.34, "Y": 159.56, - "Z": 11274.34 + "Z": 11274.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -667200,7 +667200,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.94%", "Error & Exception Exposure": "99.94%", - "Tech Debt Exposure": "35.59%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "99.4%", @@ -667349,7 +667349,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -667393,9 +667393,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -2535.4, + "X": -2535.39, "Y": 99.32, - "Z": 10744.99 + "Z": 10744.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -668327,7 +668327,7 @@ "Design Short Vars": 15, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 78, + "Orphaned Logic": 77, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -668380,7 +668380,7 @@ "2. Topological Coordinates": { "X": -2148.73, "Y": -69.1, - "Z": 10484.48 + "Z": 10484.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -668403,7 +668403,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "91.53%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.78%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -668502,7 +668502,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -668548,7 +668548,7 @@ "2. Topological Coordinates": { "X": -3034.62, "Y": 106.69, - "Z": 10928.61 + "Z": 10928.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -668571,7 +668571,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.97%", "Error & Exception Exposure": "89.57%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -668670,7 +668670,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -668714,9 +668714,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -2529.42, + "X": -2529.41, "Y": 0.02, - "Z": 10439.0 + "Z": 10438.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -668739,7 +668739,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.69%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "68.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -668898,7 +668898,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -668942,9 +668942,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -2249.07, + "X": -2249.06, "Y": 82.27, - "Z": 11244.5 + "Z": 11244.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -668967,7 +668967,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.67%", "Error & Exception Exposure": "94.68%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.97%", "Testing Exposure": "2.74%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -669106,7 +669106,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -684839,9 +684839,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 11161.51, + "X": 11161.48, "Y": 4.24, - "Z": 5673.98 + "Z": 5673.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685248,7 +685248,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "60.47%", "Error & Exception Exposure": "82.57%", - "Tech Debt Exposure": "85.2%", + "Tech Debt Exposure": "11.22%", "Testing Exposure": "13.95%", "API Exposure": "0.0%", "Concurrency Exposure": "9.1%", @@ -685456,7 +685456,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.94%", "Error & Exception Exposure": "98.15%", - "Tech Debt Exposure": "51.21%", + "Tech Debt Exposure": "24.52%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "81.96%", @@ -685685,7 +685685,7 @@ "Design Short Vars": 5, "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -685754,7 +685754,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.75%", "Error & Exception Exposure": "99.18%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.91%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -685863,7 +685863,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -685932,7 +685932,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.27%", "Error & Exception Exposure": "98.59%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -686061,7 +686061,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -686130,7 +686130,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "99.75%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.9%", "API Exposure": "0.0%", "Concurrency Exposure": "100.0%", @@ -686239,7 +686239,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -686308,7 +686308,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -686407,7 +686407,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -686476,7 +686476,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "94.1%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -686585,7 +686585,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -686654,7 +686654,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.51%", "Error & Exception Exposure": "99.95%", - "Tech Debt Exposure": "99.79%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.79%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -686773,7 +686773,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -686842,7 +686842,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.62%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -686951,7 +686951,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -687020,7 +687020,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.91%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -687129,7 +687129,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -687198,7 +687198,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.73%", "Error & Exception Exposure": "96.89%", - "Tech Debt Exposure": "17.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -687447,7 +687447,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -687625,7 +687625,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -687694,7 +687694,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.95%", "Error & Exception Exposure": "86.52%", - "Tech Debt Exposure": "35.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -687873,7 +687873,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -687942,7 +687942,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.72%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.68%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688041,7 +688041,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -688110,7 +688110,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.73%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688209,7 +688209,7 @@ "Design Short Vars": 7, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -688278,7 +688278,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.72%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.68%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688387,7 +688387,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -688456,7 +688456,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.96%", "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "99.9%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.86%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688575,7 +688575,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -688644,7 +688644,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "95.61%", "Error & Exception Exposure": "99.7%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.98%", "Testing Exposure": "2.6%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688753,7 +688753,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -688822,7 +688822,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.89%", "Error & Exception Exposure": "99.95%", - "Tech Debt Exposure": "99.85%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.09%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -688951,7 +688951,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -689020,7 +689020,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.72%", "Error & Exception Exposure": "99.91%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -689129,7 +689129,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -693738,7 +693738,7 @@ } }, "ruby/rails": { - "Directory Group Magnitude": 741.52, + "Directory Group Magnitude": 740.52, "File Count": 8, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "87.5%", @@ -693747,16 +693747,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "30.9%", "Error & Exception Exposure": "60.21%", - "Tech Debt Exposure": "44.67%", + "Tech Debt Exposure": "41.02%", "Testing Exposure": "50.6%", - "API Exposure": "1.14%", + "API Exposure": "1.11%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "76.05%", "Commented Logic Exposure": "6.49%", "Specification Exposure": "86.67%", "Instability Exposure": "43.75%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.09%", + "Documentation Exposure": "15.34%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -693955,7 +693955,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "75.88%", "Error & Exception Exposure": "76.31%", - "Tech Debt Exposure": "18.34%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -694084,7 +694084,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -694137,9 +694137,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -7451.78, + "X": -7451.68, "Y": -200.67, - "Z": 6328.5 + "Z": 6328.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -694151,7 +694151,7 @@ "Total LOC": 298, "Coding LOC": 130, "Documentation LOC": 125, - "Structural Magnitude": 104.2, + "Structural Magnitude": 103.2, "Control Flow Ratio": "36.9%", "Popularity Rank": 11, "Raw Churn Frequency": 0.0, @@ -694164,14 +694164,14 @@ "Error & Exception Exposure": "69.8%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "9.12%", + "API Exposure": "8.87%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "98.71%", "Commented Logic Exposure": "6.31%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.19%", + "Documentation Exposure": "31.2%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -694447,7 +694447,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 15, + "Exposed API / Public Exports": 14, "State Mutations / Variable Reassignments": 22, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 8, @@ -694589,7 +694589,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "24.33%", "Error & Exception Exposure": "46.98%", - "Tech Debt Exposure": "99.73%", + "Tech Debt Exposure": "99.57%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -695098,7 +695098,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 18, + "Orphaned Logic": 17, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -695172,7 +695172,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "58.71%", "Error & Exception Exposure": "86.63%", - "Tech Debt Exposure": "39.73%", + "Tech Debt Exposure": "29.33%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -695501,7 +695501,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -695845,7 +695845,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "37.2%", "Error & Exception Exposure": "70.59%", - "Tech Debt Exposure": "99.64%", + "Tech Debt Exposure": "99.35%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -696194,7 +696194,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 13, + "Orphaned Logic": 12, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -696430,9 +696430,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 2030.94, + "X": 2030.91, "Y": -180.04, - "Z": 8902.94 + "Z": 8902.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -696862,9 +696862,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1748.73, + "X": 1748.7, "Y": -268.88, - "Z": 9605.96 + "Z": 9605.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -697222,9 +697222,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1941.62, + "X": 1941.59, "Y": -217.33, - "Z": 9219.9 + "Z": 9219.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -697983,9 +697983,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 2203.86, + "X": 2203.83, "Y": -132.14, - "Z": 9792.6 + "Z": 9792.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -698188,95 +698188,215 @@ } } }, - "lua/redis": { - "Directory Group Magnitude": 719.96, - "File Count": 21, + "solidity/openzeppelin": { + "Directory Group Magnitude": 719.82, + "File Count": 7, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "90.5%", - "Static: Literature & Documentation": "9.5%" + "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "37.06%", - "Error & Exception Exposure": "75.74%", - "Tech Debt Exposure": "57.03%", - "Testing Exposure": "5.52%", - "API Exposure": "1.51%", - "Concurrency Exposure": "4.76%", - "State Flux Exposure": "80.95%", - "Commented Logic Exposure": "2.68%", - "Specification Exposure": "61.9%", - "Instability Exposure": "45.24%", + "Cognitive Load Exposure": "23.26%", + "Error & Exception Exposure": "74.78%", + "Tech Debt Exposure": "84.77%", + "Testing Exposure": "13.63%", + "API Exposure": "2.52%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "86.27%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "86.61%", + "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "48.95%", + "Documentation Exposure": "16.72%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "lua/redis/README": { + "solidity/openzeppelin/AccessControl.sol": { "1. Artifact Identity": { - "Filename": "README", - "Path": "lua/redis/README", - "Language": "Markdown", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "AccessControl.sol", + "Path": "solidity/openzeppelin/AccessControl.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (README)" + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": 1244.35, - "Y": -63.99, - "Z": 6114.13 + "X": -1575.62, + "Y": -141.56, + "Z": -8611.41 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 38, - "Coding LOC": 0, - "Documentation LOC": 29, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 208, + "Coding LOC": 68, + "Documentation LOC": 121, + "Structural Magnitude": 63.66, + "Control Flow Ratio": "24.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.588 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "17.18%", + "Error & Exception Exposure": "65.11%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.76%", + "API Exposure": "4.19%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "93.12%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "_grantRole", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 181, + "End Line": 189 + }, + { + "Function Name": "_revokeRole", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 198, + "End Line": 206 + }, + { + "Function Name": "renounceRole", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 155, + "End Line": 161 + }, + { + "Function Name": "_checkRole", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 92, + "End Line": 96 + }, + { + "Function Name": "hasRole", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 76, + "End Line": 78 + }, + { + "Function Name": "supportsInterface", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 69, + "End Line": 71 + }, + { + "Function Name": "getRoleAdmin", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 104, + "End Line": 106 + }, + { + "Function Name": "_setRoleAdmin", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 172 + }, + { + "Function Name": "grantRole", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 120, + "End Line": 122 + }, + { + "Function Name": "revokeRole", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 135, + "End Line": 137 + }, + { + "Function Name": "onlyRole", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 63, + "End Line": 66 + }, + { + "Function Name": "_checkRole", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 86 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 13, + "Sequential Logic Declarations": 40, + "Function Parameters": 12, + "Function/Method Declarations": 12, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 7, + "State Mutations / Variable Reassignments": 11, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 25, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, @@ -698287,13 +698407,13 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Module Dependencies (Imports)": 3, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 3, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -698302,21 +698422,21 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 6, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 6, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 62, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 3, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -698329,15 +698449,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 4, + "Design Camel Case": 1, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 1, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -698345,7 +698465,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -698361,119 +698481,194 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "../utils/Context.sol", + "../utils/introspection/ERC165.sol", + "./IAccessControl.sol" + ] }, - "lua/redis/COPYRIGHT": { + "solidity/openzeppelin/CrosschainRemoteExecutor.sol": { "1. Artifact Identity": { - "Filename": "COPYRIGHT", - "Path": "lua/redis/COPYRIGHT", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "CrosschainRemoteExecutor.sol", + "Path": "solidity/openzeppelin/CrosschainRemoteExecutor.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYRIGHT)" + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": 695.29, - "Y": -348.66, - "Z": 4585.92 + "X": -1287.75, + "Y": -203.92, + "Z": -7929.34 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 35, - "Coding LOC": 0, - "Documentation LOC": 25, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 99, + "Coding LOC": 54, + "Documentation LOC": 27, + "Structural Magnitude": 42.68, + "Control Flow Ratio": "26.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.593 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "17.38%", + "Error & Exception Exposure": "66.94%", + "Tech Debt Exposure": "99.93%", + "Testing Exposure": "2.7%", + "API Exposure": "2.26%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "93.79%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "80.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "19.6%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "_processMessage", + "Structural Impact": 16.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 6, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 80, + "End Line": 97 + }, + { + "Function Name": "_isAuthorizedGateway", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 72, + "End Line": 77 + }, + { + "Function Name": "_setup", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 60, + "End Line": 69 + }, + { + "Function Name": "gateway", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 38, + "End Line": 40 + }, + { + "Function Name": "controller", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 46, + "End Line": 48 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 35 + }, + { + "Function Name": "reconfigure", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 54, + "End Line": 57 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 11, + "Sequential Logic Declarations": 30, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 8, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 20, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Module Dependencies (Imports)": 4, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, + "Specification Traceability Tags": 2, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 2, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Pointer Arithmetic & Addressing": 8, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Explicit Type Casts": 3, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 3, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 5, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 47, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 1, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -698486,15 +698681,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 3, + "Design Camel Case": 1, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -698502,7 +698697,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -698518,29 +698713,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "../account/utils/draft-ERC7579Utils.sol", + "../interfaces/draft-IERC7786.sol", + "../utils/Bytes.sol", + "./ERC7786Recipient.sol" + ] }, - "lua/redis/bisect.lua": { + "solidity/openzeppelin/ERC2771Forwarder.sol": { "1. Artifact Identity": { - "Filename": "bisect.lua", - "Path": "lua/redis/bisect.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "ERC2771Forwarder.sol", + "Path": "solidity/openzeppelin/ERC2771Forwarder.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "lua", + "Folder Dominant Lang": "solidity", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" + "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": 1508.8, - "Y": -154.65, - "Z": 5779.39 + "X": -1880.5, + "Y": -280.56, + "Z": -7970.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -698549,133 +698749,183 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 28, - "Coding LOC": 18, - "Documentation LOC": 4, - "Structural Magnitude": 52.66, - "Control Flow Ratio": "36.8%", + "Total LOC": 380, + "Coding LOC": 144, + "Documentation LOC": 196, + "Structural Magnitude": 107.88, + "Control Flow Ratio": "18.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.948 + "Raw Cognitive Density": 1.056 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.18%", - "Error & Exception Exposure": "97.89%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.44%", - "API Exposure": "4.12%", + "Cognitive Load Exposure": "38.62%", + "Error & Exception Exposure": "81.76%", + "Tech Debt Exposure": "97.04%", + "Testing Exposure": "2.52%", + "API Exposure": "1.56%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "56.25%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "97.29%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "bisect", - "Structural Impact": 20.0, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 7, - "Input Parameters": 5, - "Control Flow Ratio": "46.7%", - "Start Line": 5, - "End Line": 12 + "Function Name": "_execute", + "Structural Impact": 12.6, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "27.8%", + "Start Line": 262, + "End Line": 305 }, { - "Function Name": "solve", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 15, - "End Line": 19 + "Function Name": "executeBatch", + "Structural Impact": 12.1, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "41.7%", + "Start Line": 168, + "End Line": 201 }, { - "Function Name": "f", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, + "Function Name": "_checkForwardedGas", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 348, + "End Line": 378 + }, + { + "Function Name": "execute", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 22, - "End Line": 24 + "Control Flow Ratio": "100.0%", + "Start Line": 132, + "End Line": 143 }, { - "Function Name": "__global_context__", + "Function Name": "_recoverForwardRequestSigner", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 226, + "End Line": 245 + }, + { + "Function Name": "_isTrustedByTarget", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "12.5%", + "Start Line": 316, + "End Line": 334 + }, + { + "Function Name": "_validate", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "14.3%", + "Start Line": 207, + "End Line": 218 + }, + { + "Function Name": "verify", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 117, + "End Line": 120 + }, + { + "Function Name": "constructor", "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 27 + "Start Line": 106, + "End Line": 106 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 7, - "Sequential Logic Declarations": 12, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 18, + "Sequential Logic Declarations": 77, + "Function Parameters": 15, + "Function/Method Declarations": 15, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 7, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 24, + "State Mutations / Variable Reassignments": 52, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 32, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 5, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Scientific & Mathematical Operations": 3, + "Metaprogramming & Reflection": 5, + "Module Dependencies (Imports)": 6, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, + "Specification Traceability Tags": 7, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 2, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Pointer Arithmetic & Addressing": 13, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 3, + "Fatal Aborts & Exceptions": 7, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 6, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, + "Private / Encapsulated Scopes": 6, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 135, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 2, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 2, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -698684,15 +698934,1976 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 7, - "Design Camel Case": 0, - "Design Snake Case": 7, + "Core Var Decl": 9, + "Design Camel Case": 3, + "Design Snake Case": 5, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 6, + "Design Upper Case": 1, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 4, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 6, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "../utils/Address.sol", + "../utils/Errors.sol", + "../utils/Nonces.sol", + "../utils/cryptography/ECDSA.sol", + "../utils/cryptography/EIP712.sol", + "./ERC2771Context.sol" + ] + }, + "solidity/openzeppelin/Governor.sol": { + "1. Artifact Identity": { + "Filename": "Governor.sol", + "Path": "solidity/openzeppelin/Governor.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" + }, + "2. Topological Coordinates": { + "X": -1551.74, + "Y": -165.03, + "Z": -8428.28 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 821, + "Coding LOC": 482, + "Documentation LOC": 234, + "Structural Magnitude": 442.84, + "Control Flow Ratio": "23.6%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.726 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "23.81%", + "Error & Exception Exposure": "70.34%", + "Tech Debt Exposure": "96.56%", + "Testing Exposure": "80.0%", + "API Exposure": "6.23%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.85%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "27.04%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "state", + "Structural Impact": 27.4, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "73.9%", + "Start Line": 141, + "End Line": 178 + }, + { + "Function Name": "execute", + "Structural Impact": 17.5, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 6, + "Input Parameters": 4, + "Control Flow Ratio": "35.3%", + "Start Line": 390, + "End Line": 426 + }, + { + "Function Name": "propose", + "Structural Impact": 12.4, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 4, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 274, + "End Line": 297 + }, + { + "Function Name": "_isValidDescriptionForProposer", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "31.2%", + "Start Line": 757, + "End Line": 781 + }, + { + "Function Name": "_castVote", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 3, + "Input Parameters": 5, + "Control Flow Ratio": "27.3%", + "Start Line": 628, + "End Line": 649 + }, + { + "Function Name": "queue", + "Structural Impact": 10.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "30.0%", + "Start Line": 344, + "End Line": 364 + }, + { + "Function Name": "_propose", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 2, + "Input Parameters": 5, + "Control Flow Ratio": "15.4%", + "Start Line": 304, + "End Line": 341 + }, + { + "Function Name": "castVoteWithReasonAndParamsBySig", + "Structural Impact": 8.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 6, + "Control Flow Ratio": "22.2%", + "Start Line": 549, + "End Line": 561 + }, + { + "Function Name": "onERC1155BatchReceived", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 5, + "Control Flow Ratio": "22.2%", + "Start Line": 696, + "End Line": 707 + }, + { + "Function Name": "onERC1155Received", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 5, + "Control Flow Ratio": "22.2%", + "Start Line": 685, + "End Line": 690 + }, + { + "Function Name": "cancel", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "22.2%", + "Start Line": 449, + "End Line": 464 + }, + { + "Function Name": "castVoteBySig", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "28.6%", + "Start Line": 536, + "End Line": 546 + }, + { + "Function Name": "onERC721Received", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "25.0%", + "Start Line": 674, + "End Line": 679 + }, + { + "Function Name": "_validateExtendedVoteSig", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 1, + "Input Parameters": 6, + "Control Flow Ratio": "11.1%", + "Start Line": 579, + "End Line": 605 + }, + { + "Function Name": "_executeOperations", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "11.1%", + "Start Line": 435, + "End Line": 446 + }, + { + "Function Name": "_cancel", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "14.3%", + "Start Line": 472, + "End Line": 492 + }, + { + "Function Name": "_validateStateBitmap", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 731, + "End Line": 737 + }, + { + "Function Name": "_queueOperations", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "14.3%", + "Start Line": 379, + "End Line": 387 + }, + { + "Function Name": "_validateVoteSig", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "16.7%", + "Start Line": 564, + "End Line": 576 + }, + { + "Function Name": "hashProposal", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "14.3%", + "Start Line": 121, + "End Line": 128 + }, + { + "Function Name": "getProposalId", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "16.7%", + "Start Line": 131, + "End Line": 138 + }, + { + "Function Name": "castVoteWithReasonAndParams", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "14.3%", + "Start Line": 525, + "End Line": 533 + }, + { + "Function Name": "_castVote", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "16.7%", + "Start Line": 613, + "End Line": 620 + }, + { + "Function Name": "_checkGovernance", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 215, + "End Line": 224 + }, + { + "Function Name": "castVoteWithReason", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "16.7%", + "Start Line": 515, + "End Line": 522 + }, + { + "Function Name": "getVotesWithParams", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "20.0%", + "Start Line": 500, + "End Line": 506 + }, + { + "Function Name": "castVote", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 509, + "End Line": 512 + }, + { + "Function Name": "getVotes", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 495, + "End Line": 497 + }, + { + "Function Name": "_validateCancel", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 788, + "End Line": 790 + }, + { + "Function Name": "supportsInterface", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "16.7%", + "Start Line": 90, + "End Line": 96 + }, + { + "Function Name": "proposalSnapshot", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 186, + "End Line": 188 + }, + { + "Function Name": "proposalDeadline", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 191, + "End Line": 193 + }, + { + "Function Name": "proposalProposer", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 196, + "End Line": 198 + }, + { + "Function Name": "proposalEta", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 201, + "End Line": 203 + }, + { + "Function Name": "proposalNeedsQueuing", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 206, + "End Line": 208 + }, + { + "Function Name": "_encodeStateBitmap", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 721, + "End Line": 723 + }, + { + "Function Name": "_countVote", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 246, + "End Line": 252 + }, + { + "Function Name": "receive", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 83, + "End Line": 87 + }, + { + "Function Name": "relay", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 657, + "End Line": 660 + }, + { + "Function Name": "name", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 99, + "End Line": 101 + }, + { + "Function Name": "version", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 104, + "End Line": 106 + }, + { + "Function Name": "proposalThreshold", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 181, + "End Line": 183 + }, + { + "Function Name": "_defaultParams", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 267, + "End Line": 269 + }, + { + "Function Name": "_executor", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 666, + "End Line": 668 + }, + { + "Function Name": "_getVotes", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 239, + "End Line": 239 + }, + { + "Function Name": "_unsafeReadBytesOffset", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 814, + "End Line": 819 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 76, + "End Line": 78 + }, + { + "Function Name": "_quorumReached", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 229, + "End Line": 229 + }, + { + "Function Name": "_voteSucceeded", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 234, + "End Line": 234 + }, + { + "Function Name": "_tallyUpdated", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 259, + "End Line": 259 + }, + { + "Function Name": "quorum", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 806, + "End Line": 806 + }, + { + "Function Name": "onlyGovernance", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 68, + "End Line": 71 + }, + { + "Function Name": "clock", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 793, + "End Line": 793 + }, + { + "Function Name": "CLOCK_MODE", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 797, + "End Line": 797 + }, + { + "Function Name": "votingDelay", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 800, + "End Line": 800 + }, + { + "Function Name": "votingPeriod", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 803, + "End Line": 803 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 85, + "Sequential Logic Declarations": 275, + "Function Parameters": 56, + "Function/Method Declarations": 56, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 16, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 35, + "State Mutations / Variable Reassignments": 120, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 88, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 10, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 12, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 3, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 6, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 67, + "Manual Memory Allocation": 1, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 22, + "Fatal Aborts & Exceptions": 15, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 7, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 32, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 25, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 467, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 8, + "Feature Flags": 0, + "Serialization Parsing": 3, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 36, + "Design Camel Case": 17, + "Design Snake Case": 16, + "Design Pascal Case": 0, + "Design Upper Case": 3, + "Design Short Vars": 2, + "Design Long Vars": 1, + "Duplicate Logic": 0, + "Orphaned Logic": 16, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 12, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "../token/ERC1155/IERC1155Receiver.sol", + "../token/ERC721/IERC721Receiver.sol", + "../utils/Address.sol", + "../utils/Context.sol", + "../utils/Nonces.sol", + "../utils/Strings.sol", + "../utils/cryptography/EIP712.sol", + "../utils/cryptography/SignatureChecker.sol", + "../utils/introspection/ERC165.sol", + "../utils/math/SafeCast.sol", + "../utils/structs/DoubleEndedQueue.sol", + "./IGovernor.sol" + ] + }, + "solidity/openzeppelin/Proxy.sol": { + "1. Artifact Identity": { + "Filename": "Proxy.sol", + "Path": "solidity/openzeppelin/Proxy.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" + }, + "2. Topological Coordinates": { + "X": -1706.47, + "Y": -276.55, + "Z": -7690.93 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 70, + "Coding LOC": 24, + "Documentation LOC": 37, + "Structural Magnitude": 10.78, + "Control Flow Ratio": "20.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.432 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "46.94%", + "Error & Exception Exposure": "81.96%", + "Tech Debt Exposure": "99.9%", + "Testing Exposure": "2.5%", + "API Exposure": "0.81%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "59.87%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "12.84%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "_delegate", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 22, + "End Line": 45 + }, + { + "Function Name": "_implementation", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 51 + }, + { + "Function Name": "_fallback", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 58, + "End Line": 60 + }, + { + "Function Name": "fallback", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 66, + "End Line": 68 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 4, + "Function Parameters": 4, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 2, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 10, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 3, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 1, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 1, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 3, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 21, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 1, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "solidity/openzeppelin/ReentrancyGuard.sol": { + "1. Artifact Identity": { + "Filename": "ReentrancyGuard.sol", + "Path": "solidity/openzeppelin/ReentrancyGuard.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" + }, + "2. Topological Coordinates": { + "X": -1132.36, + "Y": -115.73, + "Z": -8506.82 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 120, + "Coding LOC": 40, + "Documentation LOC": 63, + "Structural Magnitude": 21.3, + "Control Flow Ratio": "30.8%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.625 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "18.88%", + "Error & Exception Exposure": "67.66%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.48%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "94.78%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "80.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "_nonReentrantBeforeView", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 88, + "End Line": 92 + }, + { + "Function Name": "_reentrancyGuardEntered", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 112, + "End Line": 114 + }, + { + "Function Name": "_reentrancyGuardStorageSlot", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 116, + "End Line": 118 + }, + { + "Function Name": "_nonReentrantBefore", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 94, + "End Line": 100 + }, + { + "Function Name": "nonReentrant", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 73 + }, + { + "Function Name": "nonReentrantView", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 83, + "End Line": 86 + }, + { + "Function Name": "_nonReentrantAfter", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 102, + "End Line": 106 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 58, + "End Line": 60 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 4, + "Sequential Logic Declarations": 9, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 4, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 8, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 11, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 2, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 1, + "Thread Synchronization Locks": 1, + "Immutable Data Declarations": 6, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 8, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 36, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 3, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 3, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 3, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "./StorageSlot.sol" + ] + }, + "solidity/openzeppelin/StorageSlot.sol": { + "1. Artifact Identity": { + "Filename": "StorageSlot.sol", + "Path": "solidity/openzeppelin/StorageSlot.sol", + "Language": "Solidity", + "Architect": "// SPDX-License-Identifier:", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "solidity", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sol)" + }, + "2. Topological Coordinates": { + "X": -2036.7, + "Y": -170.9, + "Z": -8298.76 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 144, + "Coding LOC": 69, + "Documentation LOC": 57, + "Structural Magnitude": 30.68, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "89.7%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.45%", + "API Exposure": "2.57%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "62.45%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "90.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "21.77%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "getAddressSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 66, + "End Line": 70 + }, + { + "Function Name": "getBooleanSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 79 + }, + { + "Function Name": "getBytes32Slot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 88 + }, + { + "Function Name": "getUint256Slot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 93, + "End Line": 97 + }, + { + "Function Name": "getInt256Slot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 102, + "End Line": 106 + }, + { + "Function Name": "getStringSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 111, + "End Line": 115 + }, + { + "Function Name": "getStringSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 120, + "End Line": 124 + }, + { + "Function Name": "getBytesSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 129, + "End Line": 133 + }, + { + "Function Name": "getBytesSlot", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 138, + "End Line": 142 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 25, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 9, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 5, + "State Mutations / Variable Reassignments": 9, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 20, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 9, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 1, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 20, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 1, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 9, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 9, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 66, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 1, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + } + } + }, + "lua/redis": { + "Directory Group Magnitude": 715.96, + "File Count": 21, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "90.5%", + "Static: Literature & Documentation": "9.5%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "37.06%", + "Error & Exception Exposure": "75.74%", + "Tech Debt Exposure": "4.69%", + "Testing Exposure": "5.52%", + "API Exposure": "1.24%", + "Concurrency Exposure": "4.76%", + "State Flux Exposure": "80.95%", + "Commented Logic Exposure": "2.68%", + "Specification Exposure": "61.9%", + "Instability Exposure": "45.24%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "47.11%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "lua/redis/README": { + "1. Artifact Identity": { + "Filename": "README", + "Path": "lua/redis/README", + "Language": "Markdown", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (README)" + }, + "2. Topological Coordinates": { + "X": 1244.35, + "Y": -63.99, + "Z": 6114.13 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 38, + "Coding LOC": 0, + "Documentation LOC": 29, + "Structural Magnitude": 1.0, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "lua/redis/COPYRIGHT": { + "1. Artifact Identity": { + "Filename": "COPYRIGHT", + "Path": "lua/redis/COPYRIGHT", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYRIGHT)" + }, + "2. Topological Coordinates": { + "X": 695.29, + "Y": -348.66, + "Z": 4585.92 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 35, + "Coding LOC": 0, + "Documentation LOC": 25, + "Structural Magnitude": 1.0, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "lua/redis/bisect.lua": { + "1. Artifact Identity": { + "Filename": "bisect.lua", + "Path": "lua/redis/bisect.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": 1508.8, + "Y": -154.65, + "Z": 5779.39 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 28, + "Coding LOC": 18, + "Documentation LOC": 4, + "Structural Magnitude": 52.66, + "Control Flow Ratio": "36.8%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.948 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "99.18%", + "Error & Exception Exposure": "97.89%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "3.44%", + "API Exposure": "4.12%", + "Concurrency Exposure": "0.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": "97.29%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "bisect", + "Structural Impact": 20.0, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 7, + "Input Parameters": 5, + "Control Flow Ratio": "46.7%", + "Start Line": 5, + "End Line": 12 + }, + { + "Function Name": "solve", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 15, + "End Line": 19 + }, + { + "Function Name": "f", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 22, + "End Line": 24 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 27 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 7, + "Sequential Logic Declarations": 12, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 24, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 1, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 2, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 3, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 7, + "Design Camel Case": 0, + "Design Snake Case": 7, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 6, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -699072,9 +701283,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 1832.47, - "Y": -121.6, - "Z": 5911.03 + "X": 471.82, + "Y": -255.97, + "Z": 5462.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -699086,7 +701297,7 @@ "Total LOC": 8, "Coding LOC": 3, "Documentation LOC": 2, - "Structural Magnitude": 5.16, + "Structural Magnitude": 4.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -699099,14 +701310,14 @@ "Error & Exception Exposure": "94.95%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.57%", - "API Exposure": "2.89%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.61%", + "Documentation Exposure": "17.96%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -699132,7 +701343,7 @@ "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -699265,7 +701476,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "86.03%", "Error & Exception Exposure": "91.35%", - "Tech Debt Exposure": "99.96%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.78%", "API Exposure": "1.31%", "Concurrency Exposure": "0.0%", @@ -699404,7 +701615,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -699473,7 +701684,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "81.76%", "Error & Exception Exposure": "96.4%", - "Tech Debt Exposure": "98.93%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.69%", "API Exposure": "4.79%", "Concurrency Exposure": "0.0%", @@ -699602,7 +701813,7 @@ "Design Short Vars": 10, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -699671,7 +701882,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "91.68%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.99%", "API Exposure": "2.56%", "Concurrency Exposure": "100.0%", @@ -699780,7 +701991,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700017,7 +702228,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.21%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -700116,7 +702327,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700185,7 +702396,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "84.83%", "Error & Exception Exposure": "99.38%", - "Tech Debt Exposure": "99.56%", + "Tech Debt Exposure": "98.44%", "Testing Exposure": "80.0%", "API Exposure": "3.09%", "Concurrency Exposure": "0.0%", @@ -700354,7 +702565,7 @@ "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700423,7 +702634,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "54.67%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.73%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -700522,7 +702733,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700566,9 +702777,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 455.44, - "Y": -248.96, - "Z": 5192.57 + "X": 1817.06, + "Y": -114.62, + "Z": 5640.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -700591,7 +702802,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.81%", "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", @@ -700700,7 +702911,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700769,7 +702980,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "98.06%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -700868,7 +703079,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -700912,9 +703123,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 1038.18, - "Y": -232.21, - "Z": 5530.45 + "X": 1038.25, + "Y": -232.22, + "Z": 5530.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -700926,7 +703137,7 @@ "Total LOC": 67, "Coding LOC": 54, "Documentation LOC": 6, - "Structural Magnitude": 113.88, + "Structural Magnitude": 112.88, "Control Flow Ratio": "40.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -700939,14 +703150,14 @@ "Error & Exception Exposure": "98.68%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.97%", - "API Exposure": "3.54%", + "API Exposure": "2.77%", "Concurrency Exposure": "0.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": "86.92%", + "Documentation Exposure": "79.46%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -701012,7 +703223,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 61, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -701120,9 +703331,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 1311.69, - "Y": -298.49, - "Z": 5058.6 + "X": 1311.67, + "Y": -298.47, + "Z": 5058.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -701134,7 +703345,7 @@ "Total LOC": 42, "Coding LOC": 27, "Documentation LOC": 7, - "Structural Magnitude": 62.04, + "Structural Magnitude": 61.04, "Control Flow Ratio": "51.7%", "Popularity Rank": 19, "Raw Churn Frequency": 0.0, @@ -701147,14 +703358,14 @@ "Error & Exception Exposure": "99.53%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.27%", - "API Exposure": "0.61%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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": "66.46%", + "Documentation Exposure": "45.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -701220,7 +703431,7 @@ "Type/Safety Bypasses": 9, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 27, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -701328,9 +703539,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 1409.58, - "Y": -142.12, - "Z": 6033.99 + "X": 1409.44, + "Y": -142.2, + "Z": 6033.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -701342,7 +703553,7 @@ "Total LOC": 13, "Coding LOC": 9, "Documentation LOC": 2, - "Structural Magnitude": 19.68, + "Structural Magnitude": 18.68, "Control Flow Ratio": "53.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -701355,14 +703566,14 @@ "Error & Exception Exposure": "95.02%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.88%", - "API Exposure": "1.31%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.19%", + "Documentation Exposure": "47.27%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -701398,7 +703609,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 9, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -701531,7 +703742,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.1%", "Error & Exception Exposure": "98.04%", - "Tech Debt Exposure": "99.79%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.21%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -701640,7 +703851,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -701709,7 +703920,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.27%", "Error & Exception Exposure": "97.85%", - "Tech Debt Exposure": "99.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -701838,2156 +704049,7 @@ "Design Short Vars": 8, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "lua/redis/xd.lua": { - "1. Artifact Identity": { - "Filename": "xd.lua", - "Path": "lua/redis/xd.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": 672.54, - "Y": -282.71, - "Z": 5109.79 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 15, - "Coding LOC": 11, - "Documentation LOC": 2, - "Structural Magnitude": 18.52, - "Control Flow Ratio": "40.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.455 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.18%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.22%", - "API Exposure": "1.67%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.17%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "44.4%", - "Start Line": 5, - "End Line": 14 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 10 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 14 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 6, - "Function Parameters": 1, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 7, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 4, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 2, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 2, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 3, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "solidity/openzeppelin": { - "Directory Group Magnitude": 719.82, - "File Count": 7, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "23.26%", - "Error & Exception Exposure": "74.78%", - "Tech Debt Exposure": "84.77%", - "Testing Exposure": "13.63%", - "API Exposure": "2.52%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "86.27%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.61%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.72%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "solidity/openzeppelin/AccessControl.sol": { - "1. Artifact Identity": { - "Filename": "AccessControl.sol", - "Path": "solidity/openzeppelin/AccessControl.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1575.62, - "Y": -141.56, - "Z": -8611.41 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 208, - "Coding LOC": 68, - "Documentation LOC": 121, - "Structural Magnitude": 63.66, - "Control Flow Ratio": "24.5%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.588 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.18%", - "Error & Exception Exposure": "65.11%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.76%", - "API Exposure": "4.19%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "93.12%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_grantRole", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 181, - "End Line": 189 - }, - { - "Function Name": "_revokeRole", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 198, - "End Line": 206 - }, - { - "Function Name": "renounceRole", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 155, - "End Line": 161 - }, - { - "Function Name": "_checkRole", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 92, - "End Line": 96 - }, - { - "Function Name": "hasRole", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 76, - "End Line": 78 - }, - { - "Function Name": "supportsInterface", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 69, - "End Line": 71 - }, - { - "Function Name": "getRoleAdmin", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 104, - "End Line": 106 - }, - { - "Function Name": "_setRoleAdmin", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 172 - }, - { - "Function Name": "grantRole", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 122 - }, - { - "Function Name": "revokeRole", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 137 - }, - { - "Function Name": "onlyRole", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 63, - "End Line": 66 - }, - { - "Function Name": "_checkRole", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 86 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 13, - "Sequential Logic Declarations": 40, - "Function Parameters": 12, - "Function/Method Declarations": 12, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 3, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 7, - "State Mutations / Variable Reassignments": 11, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 25, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 3, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 6, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 6, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 62, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 3, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, - "Design Camel Case": 1, - "Design Snake Case": 2, - "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../utils/Context.sol", - "../utils/introspection/ERC165.sol", - "./IAccessControl.sol" - ] - }, - "solidity/openzeppelin/CrosschainRemoteExecutor.sol": { - "1. Artifact Identity": { - "Filename": "CrosschainRemoteExecutor.sol", - "Path": "solidity/openzeppelin/CrosschainRemoteExecutor.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1287.75, - "Y": -203.92, - "Z": -7929.34 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 99, - "Coding LOC": 54, - "Documentation LOC": 27, - "Structural Magnitude": 42.68, - "Control Flow Ratio": "26.8%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.593 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.38%", - "Error & Exception Exposure": "66.94%", - "Tech Debt Exposure": "99.93%", - "Testing Exposure": "2.7%", - "API Exposure": "2.26%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "93.79%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.6%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_processMessage", - "Structural Impact": 16.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 6, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 80, - "End Line": 97 - }, - { - "Function Name": "_isAuthorizedGateway", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 72, - "End Line": 77 - }, - { - "Function Name": "_setup", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 60, - "End Line": 69 - }, - { - "Function Name": "gateway", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 38, - "End Line": 40 - }, - { - "Function Name": "controller", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 46, - "End Line": 48 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 35 - }, - { - "Function Name": "reconfigure", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 54, - "End Line": 57 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 11, - "Sequential Logic Declarations": 30, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 8, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 20, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 2, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 2, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 8, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 3, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 5, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 47, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 1, - "Design Snake Case": 2, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../account/utils/draft-ERC7579Utils.sol", - "../interfaces/draft-IERC7786.sol", - "../utils/Bytes.sol", - "./ERC7786Recipient.sol" - ] - }, - "solidity/openzeppelin/ERC2771Forwarder.sol": { - "1. Artifact Identity": { - "Filename": "ERC2771Forwarder.sol", - "Path": "solidity/openzeppelin/ERC2771Forwarder.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1880.5, - "Y": -280.56, - "Z": -7970.29 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 380, - "Coding LOC": 144, - "Documentation LOC": 196, - "Structural Magnitude": 107.88, - "Control Flow Ratio": "18.9%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.056 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "38.62%", - "Error & Exception Exposure": "81.76%", - "Tech Debt Exposure": "97.04%", - "Testing Exposure": "2.52%", - "API Exposure": "1.56%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "56.25%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_execute", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "27.8%", - "Start Line": 262, - "End Line": 305 - }, - { - "Function Name": "executeBatch", - "Structural Impact": 12.1, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "41.7%", - "Start Line": 168, - "End Line": 201 - }, - { - "Function Name": "_checkForwardedGas", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 348, - "End Line": 378 - }, - { - "Function Name": "execute", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 132, - "End Line": 143 - }, - { - "Function Name": "_recoverForwardRequestSigner", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 226, - "End Line": 245 - }, - { - "Function Name": "_isTrustedByTarget", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "12.5%", - "Start Line": 316, - "End Line": 334 - }, - { - "Function Name": "_validate", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "14.3%", - "Start Line": 207, - "End Line": 218 - }, - { - "Function Name": "verify", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 117, - "End Line": 120 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 106, - "End Line": 106 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 18, - "Sequential Logic Declarations": 77, - "Function Parameters": 15, - "Function/Method Declarations": 15, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 7, - "Type/Safety Bypasses": 3, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 52, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 32, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 5, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 3, - "Metaprogramming & Reflection": 5, - "Module Dependencies (Imports)": 6, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 7, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 2, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 13, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, - "Fatal Aborts & Exceptions": 7, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 6, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 6, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 135, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 2, - "Feature Flags": 0, - "Serialization Parsing": 2, - "Regex Execution": 0, - "Time Date Logic": 1, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, - "Design Camel Case": 3, - "Design Snake Case": 5, - "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 1, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 6, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../utils/Address.sol", - "../utils/Errors.sol", - "../utils/Nonces.sol", - "../utils/cryptography/ECDSA.sol", - "../utils/cryptography/EIP712.sol", - "./ERC2771Context.sol" - ] - }, - "solidity/openzeppelin/Governor.sol": { - "1. Artifact Identity": { - "Filename": "Governor.sol", - "Path": "solidity/openzeppelin/Governor.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1551.74, - "Y": -165.03, - "Z": -8428.28 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 821, - "Coding LOC": 482, - "Documentation LOC": 234, - "Structural Magnitude": 442.84, - "Control Flow Ratio": "23.6%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.726 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "23.81%", - "Error & Exception Exposure": "70.34%", - "Tech Debt Exposure": "96.56%", - "Testing Exposure": "80.0%", - "API Exposure": "6.23%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.85%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.04%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "state", - "Structural Impact": 27.4, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "73.9%", - "Start Line": 141, - "End Line": 178 - }, - { - "Function Name": "execute", - "Structural Impact": 17.5, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 6, - "Input Parameters": 4, - "Control Flow Ratio": "35.3%", - "Start Line": 390, - "End Line": 426 - }, - { - "Function Name": "propose", - "Structural Impact": 12.4, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 4, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 274, - "End Line": 297 - }, - { - "Function Name": "_isValidDescriptionForProposer", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "31.2%", - "Start Line": 757, - "End Line": 781 - }, - { - "Function Name": "_castVote", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 3, - "Input Parameters": 5, - "Control Flow Ratio": "27.3%", - "Start Line": 628, - "End Line": 649 - }, - { - "Function Name": "queue", - "Structural Impact": 10.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "30.0%", - "Start Line": 344, - "End Line": 364 - }, - { - "Function Name": "_propose", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 2, - "Input Parameters": 5, - "Control Flow Ratio": "15.4%", - "Start Line": 304, - "End Line": 341 - }, - { - "Function Name": "castVoteWithReasonAndParamsBySig", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 6, - "Control Flow Ratio": "22.2%", - "Start Line": 549, - "End Line": 561 - }, - { - "Function Name": "onERC1155BatchReceived", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 5, - "Control Flow Ratio": "22.2%", - "Start Line": 696, - "End Line": 707 - }, - { - "Function Name": "onERC1155Received", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 5, - "Control Flow Ratio": "22.2%", - "Start Line": 685, - "End Line": 690 - }, - { - "Function Name": "cancel", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "22.2%", - "Start Line": 449, - "End Line": 464 - }, - { - "Function Name": "castVoteBySig", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "28.6%", - "Start Line": 536, - "End Line": 546 - }, - { - "Function Name": "onERC721Received", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "25.0%", - "Start Line": 674, - "End Line": 679 - }, - { - "Function Name": "_validateExtendedVoteSig", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 1, - "Input Parameters": 6, - "Control Flow Ratio": "11.1%", - "Start Line": 579, - "End Line": 605 - }, - { - "Function Name": "_executeOperations", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "11.1%", - "Start Line": 435, - "End Line": 446 - }, - { - "Function Name": "_cancel", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "14.3%", - "Start Line": 472, - "End Line": 492 - }, - { - "Function Name": "_validateStateBitmap", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 731, - "End Line": 737 - }, - { - "Function Name": "_queueOperations", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "14.3%", - "Start Line": 379, - "End Line": 387 - }, - { - "Function Name": "_validateVoteSig", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "16.7%", - "Start Line": 564, - "End Line": 576 - }, - { - "Function Name": "hashProposal", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "14.3%", - "Start Line": 121, - "End Line": 128 - }, - { - "Function Name": "getProposalId", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "16.7%", - "Start Line": 131, - "End Line": 138 - }, - { - "Function Name": "castVoteWithReasonAndParams", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "14.3%", - "Start Line": 525, - "End Line": 533 - }, - { - "Function Name": "_castVote", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "16.7%", - "Start Line": 613, - "End Line": 620 - }, - { - "Function Name": "_checkGovernance", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 215, - "End Line": 224 - }, - { - "Function Name": "castVoteWithReason", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "16.7%", - "Start Line": 515, - "End Line": 522 - }, - { - "Function Name": "getVotesWithParams", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "20.0%", - "Start Line": 500, - "End Line": 506 - }, - { - "Function Name": "castVote", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 509, - "End Line": 512 - }, - { - "Function Name": "getVotes", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 495, - "End Line": 497 - }, - { - "Function Name": "_validateCancel", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 788, - "End Line": 790 - }, - { - "Function Name": "supportsInterface", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "16.7%", - "Start Line": 90, - "End Line": 96 - }, - { - "Function Name": "proposalSnapshot", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 186, - "End Line": 188 - }, - { - "Function Name": "proposalDeadline", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 191, - "End Line": 193 - }, - { - "Function Name": "proposalProposer", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 196, - "End Line": 198 - }, - { - "Function Name": "proposalEta", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 201, - "End Line": 203 - }, - { - "Function Name": "proposalNeedsQueuing", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 206, - "End Line": 208 - }, - { - "Function Name": "_encodeStateBitmap", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 721, - "End Line": 723 - }, - { - "Function Name": "_countVote", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 246, - "End Line": 252 - }, - { - "Function Name": "receive", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 83, - "End Line": 87 - }, - { - "Function Name": "relay", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 657, - "End Line": 660 - }, - { - "Function Name": "name", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 99, - "End Line": 101 - }, - { - "Function Name": "version", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 104, - "End Line": 106 - }, - { - "Function Name": "proposalThreshold", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 181, - "End Line": 183 - }, - { - "Function Name": "_defaultParams", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 267, - "End Line": 269 - }, - { - "Function Name": "_executor", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 666, - "End Line": 668 - }, - { - "Function Name": "_getVotes", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 239, - "End Line": 239 - }, - { - "Function Name": "_unsafeReadBytesOffset", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 814, - "End Line": 819 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 76, - "End Line": 78 - }, - { - "Function Name": "_quorumReached", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 229, - "End Line": 229 - }, - { - "Function Name": "_voteSucceeded", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 234, - "End Line": 234 - }, - { - "Function Name": "_tallyUpdated", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 259, - "End Line": 259 - }, - { - "Function Name": "quorum", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 806, - "End Line": 806 - }, - { - "Function Name": "onlyGovernance", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 68, - "End Line": 71 - }, - { - "Function Name": "clock", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 793, - "End Line": 793 - }, - { - "Function Name": "CLOCK_MODE", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 797, - "End Line": 797 - }, - { - "Function Name": "votingDelay", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 800, - "End Line": 800 - }, - { - "Function Name": "votingPeriod", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 803, - "End Line": 803 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 85, - "Sequential Logic Declarations": 275, - "Function Parameters": 56, - "Function/Method Declarations": 56, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 16, - "Type/Safety Bypasses": 2, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 35, - "State Mutations / Variable Reassignments": 120, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 88, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 10, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 12, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 3, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 6, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 67, - "Manual Memory Allocation": 1, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 22, - "Fatal Aborts & Exceptions": 15, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 7, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 32, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 25, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 467, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 8, - "Feature Flags": 0, - "Serialization Parsing": 3, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 36, - "Design Camel Case": 17, - "Design Snake Case": 16, - "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 2, - "Design Long Vars": 1, - "Duplicate Logic": 0, - "Orphaned Logic": 16, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 12, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../token/ERC1155/IERC1155Receiver.sol", - "../token/ERC721/IERC721Receiver.sol", - "../utils/Address.sol", - "../utils/Context.sol", - "../utils/Nonces.sol", - "../utils/Strings.sol", - "../utils/cryptography/EIP712.sol", - "../utils/cryptography/SignatureChecker.sol", - "../utils/introspection/ERC165.sol", - "../utils/math/SafeCast.sol", - "../utils/structs/DoubleEndedQueue.sol", - "./IGovernor.sol" - ] - }, - "solidity/openzeppelin/Proxy.sol": { - "1. Artifact Identity": { - "Filename": "Proxy.sol", - "Path": "solidity/openzeppelin/Proxy.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1706.47, - "Y": -276.55, - "Z": -7690.93 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 70, - "Coding LOC": 24, - "Documentation LOC": 37, - "Structural Magnitude": 10.78, - "Control Flow Ratio": "20.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.432 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "46.94%", - "Error & Exception Exposure": "81.96%", - "Tech Debt Exposure": "99.9%", - "Testing Exposure": "2.5%", - "API Exposure": "0.81%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "59.87%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.84%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_delegate", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 22, - "End Line": 45 - }, - { - "Function Name": "_implementation", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 51 - }, - { - "Function Name": "_fallback", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 58, - "End Line": 60 - }, - { - "Function Name": "fallback", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 68 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 4, - "Function Parameters": 4, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 2, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 2, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 10, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 1, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 21, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "solidity/openzeppelin/ReentrancyGuard.sol": { - "1. Artifact Identity": { - "Filename": "ReentrancyGuard.sol", - "Path": "solidity/openzeppelin/ReentrancyGuard.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" - }, - "2. Topological Coordinates": { - "X": -1132.36, - "Y": -115.73, - "Z": -8506.82 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 120, - "Coding LOC": 40, - "Documentation LOC": 63, - "Structural Magnitude": 21.3, - "Control Flow Ratio": "30.8%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.88%", - "Error & Exception Exposure": "67.66%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.48%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "94.78%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_nonReentrantBeforeView", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 88, - "End Line": 92 - }, - { - "Function Name": "_reentrancyGuardEntered", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 112, - "End Line": 114 - }, - { - "Function Name": "_reentrancyGuardStorageSlot", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 116, - "End Line": 118 - }, - { - "Function Name": "_nonReentrantBefore", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 94, - "End Line": 100 - }, - { - "Function Name": "nonReentrant", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 73 - }, - { - "Function Name": "nonReentrantView", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 83, - "End Line": 86 - }, - { - "Function Name": "_nonReentrantAfter", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 102, - "End Line": 106 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 58, - "End Line": 60 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 9, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 4, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 8, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 11, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 2, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 1, - "Immutable Data Declarations": 6, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 8, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 36, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -704011,31 +704073,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "./StorageSlot.sol" - ] + "9. Extracted Dependencies": [] }, - "solidity/openzeppelin/StorageSlot.sol": { + "lua/redis/xd.lua": { "1. Artifact Identity": { - "Filename": "StorageSlot.sol", - "Path": "solidity/openzeppelin/StorageSlot.sol", - "Language": "Solidity", - "Architect": "// SPDX-License-Identifier:", - "Indentation Style": "Spaces", + "Filename": "xd.lua", + "Path": "lua/redis/xd.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "solidity", + "Folder Dominant Lang": "lua", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sol)" + "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2036.7, - "Y": -170.9, - "Z": -8298.76 + "X": 672.54, + "Y": -282.71, + "Z": 5109.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -704044,182 +704104,122 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 144, - "Coding LOC": 69, - "Documentation LOC": 57, - "Structural Magnitude": 30.68, - "Control Flow Ratio": "0.0%", + "Total LOC": 15, + "Coding LOC": 11, + "Documentation LOC": 2, + "Structural Magnitude": 18.52, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.455 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "89.7%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.18%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.45%", - "API Exposure": "2.57%", + "Testing Exposure": "2.22%", + "API Exposure": "1.67%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "62.45%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "90.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.77%", + "Documentation Exposure": "67.17%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "getAddressSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 70 - }, - { - "Function Name": "getBooleanSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 79 - }, - { - "Function Name": "getBytes32Slot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 88 - }, - { - "Function Name": "getUint256Slot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 93, - "End Line": 97 - }, - { - "Function Name": "getInt256Slot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 102, - "End Line": 106 - }, - { - "Function Name": "getStringSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 111, - "End Line": 115 - }, - { - "Function Name": "getStringSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, + "Function Name": "Anonymous_Block", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 124 + "Control Flow Ratio": "44.4%", + "Start Line": 5, + "End Line": 14 }, { - "Function Name": "getBytesSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 129, - "End Line": 133 + "Start Line": 10, + "End Line": 10 }, { - "Function Name": "getBytesSlot", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "__global_context__", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 138, - "End Line": 142 + "Start Line": 1, + "End Line": 14 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 25, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 1, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 6, + "Function Parameters": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 9, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, - "State Mutations / Variable Reassignments": 9, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 7, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 20, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, + "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 1, + "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 20, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 4, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 9, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 9, + "Private / Encapsulated Scopes": 2, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 66, + "Structural Tab Indentations": 1, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 2, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -704229,12 +704229,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 3, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -704245,7 +704245,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -712073,7 +712073,7 @@ } }, "shell/serenity": { - "Directory Group Magnitude": 637.94, + "Directory Group Magnitude": 635.94, "File Count": 23, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -712081,16 +712081,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "70.92%", "Error & Exception Exposure": "86.99%", - "Tech Debt Exposure": "90.92%", + "Tech Debt Exposure": "49.89%", "Testing Exposure": "5.65%", - "API Exposure": "1.15%", + "API Exposure": "1.03%", "Concurrency Exposure": "6.55%", "State Flux Exposure": "99.95%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "92.17%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.86%", + "Documentation Exposure": "55.25%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -712107,9 +712107,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2242.79, - "Y": 121.83, - "Z": 6198.88 + "X": 2242.82, + "Y": 121.82, + "Z": 6198.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712132,7 +712132,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.7%", "Error & Exception Exposure": "87.47%", - "Tech Debt Exposure": "98.14%", + "Tech Debt Exposure": "65.95%", "Testing Exposure": "80.0%", "API Exposure": "2.54%", "Concurrency Exposure": "0.0%", @@ -712271,7 +712271,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -712315,9 +712315,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1915.75, + "X": 1915.8, "Y": 134.51, - "Z": 6123.42 + "Z": 6123.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712340,7 +712340,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.33%", "Error & Exception Exposure": "87.91%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.9%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -712449,7 +712449,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -712493,9 +712493,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2717.77, - "Y": 191.83, - "Z": 6503.62 + "X": 2717.71, + "Y": 191.82, + "Z": 6503.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712518,7 +712518,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.45%", "Error & Exception Exposure": "74.34%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.9%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "50.82%", @@ -712647,7 +712647,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -712693,7 +712693,7 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2414.51, + "X": 2414.49, "Y": 36.01, "Z": 5275.81 }, @@ -712718,7 +712718,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.7%", "Error & Exception Exposure": "91.49%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -712817,7 +712817,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -712861,9 +712861,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2056.8, + "X": 2056.85, "Y": 98.28, - "Z": 5926.07 + "Z": 5926.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712886,7 +712886,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "95.45%", - "Tech Debt Exposure": "98.62%", + "Tech Debt Exposure": "89.91%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -713015,7 +713015,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713059,9 +713059,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1980.99, - "Y": 19.17, - "Z": 5473.84 + "X": 1981.01, + "Y": 19.18, + "Z": 5473.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713203,7 +713203,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713247,9 +713247,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2211.53, - "Y": 53.3, - "Z": 5373.44 + "X": 2333.74, + "Y": 154.25, + "Z": 6391.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713272,7 +713272,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "90.47%", "Error & Exception Exposure": "88.86%", - "Tech Debt Exposure": "99.95%", + "Tech Debt Exposure": "98.93%", "Testing Exposure": "2.38%", "API Exposure": "1.27%", "Concurrency Exposure": "0.0%", @@ -713381,7 +713381,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713425,9 +713425,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3328.57, + "X": 3328.46, "Y": 94.59, - "Z": 5964.97 + "Z": 5964.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713450,7 +713450,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "91.76%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.29%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -713549,7 +713549,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713593,9 +713593,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2091.67, - "Y": 141.49, - "Z": 6506.73 + "X": 2091.68, + "Y": 141.48, + "Z": 6506.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713618,7 +713618,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.99%", "Error & Exception Exposure": "76.41%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "99.48%", "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -713747,7 +713747,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713791,9 +713791,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3081.75, - "Y": 7.85, - "Z": 5414.94 + "X": 3081.66, + "Y": 7.86, + "Z": 5414.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713816,7 +713816,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "92.76%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -713915,7 +713915,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -713959,9 +713959,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3101.7, + "X": 3101.6, "Y": 126.35, - "Z": 6593.24 + "Z": 6593.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713984,7 +713984,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "93.66%", "Error & Exception Exposure": "81.56%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.79%", "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -714103,7 +714103,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -714147,8 +714147,8 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2808.2, - "Y": 76.51, + "X": 2808.13, + "Y": 76.52, "Z": 5463.42 }, "3. Architectural Profile": { @@ -714172,7 +714172,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.83%", "Error & Exception Exposure": "79.27%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.97%", "Testing Exposure": "2.4%", "API Exposure": "1.29%", "Concurrency Exposure": "0.0%", @@ -714301,7 +714301,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -714345,9 +714345,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2458.3, - "Y": 168.36, - "Z": 6972.63 + "X": 2458.27, + "Y": 168.35, + "Z": 6972.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714370,7 +714370,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "89.86%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -714469,7 +714469,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -714513,9 +714513,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3188.06, + "X": 3187.95, "Y": 116.39, - "Z": 5756.88 + "Z": 5756.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714657,7 +714657,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -714701,9 +714701,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1747.74, + "X": 1747.79, "Y": 81.45, - "Z": 6042.27 + "Z": 6042.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714726,7 +714726,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.54%", "Error & Exception Exposure": "86.6%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -714835,7 +714835,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -714879,9 +714879,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3099.48, - "Y": 92.49, - "Z": 6263.87 + "X": 3099.37, + "Y": 92.48, + "Z": 6263.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714904,7 +714904,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.44%", "Error & Exception Exposure": "85.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.99%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -715023,7 +715023,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -715067,9 +715067,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1904.1, + "X": 1904.14, "Y": 66.93, - "Z": 5494.53 + "Z": 5494.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715092,7 +715092,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.07%", "API Exposure": "3.8%", "Concurrency Exposure": "0.0%", @@ -715191,7 +715191,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -715235,9 +715235,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2751.92, - "Y": 121.85, - "Z": 6400.34 + "X": 2751.84, + "Y": 121.84, + "Z": 6400.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715260,7 +715260,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "77.3%", "Error & Exception Exposure": "98.11%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "93.64%", "Testing Exposure": "2.72%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -715389,7 +715389,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -715433,9 +715433,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2474.55, + "X": 2474.51, "Y": 118.94, - "Z": 6009.67 + "Z": 6009.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715447,7 +715447,7 @@ "Total LOC": 97, "Coding LOC": 91, "Documentation LOC": 0, - "Structural Magnitude": 129.42, + "Structural Magnitude": 128.42, "Control Flow Ratio": "75.0%", "Popularity Rank": 12, "Raw Churn Frequency": 0.0, @@ -715460,14 +715460,14 @@ "Error & Exception Exposure": "99.69%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", - "API Exposure": "7.02%", + "API Exposure": "6.05%", "Concurrency Exposure": "99.87%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.48%", + "Documentation Exposure": "49.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -715533,7 +715533,7 @@ "Type/Safety Bypasses": 20, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 16, - "Exposed API / Public Exports": 4, + "Exposed API / Public Exports": 3, "State Mutations / Variable Reassignments": 79, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -715641,9 +715641,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1830.04, - "Y": 147.18, - "Z": 6569.37 + "X": 1830.07, + "Y": 147.17, + "Z": 6569.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715666,7 +715666,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "85.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.98%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -715765,7 +715765,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -715809,9 +715809,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2542.47, - "Y": 28.86, - "Z": 5656.42 + "X": 2542.43, + "Y": 28.87, + "Z": 5656.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715834,7 +715834,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "72.27%", - "Tech Debt Exposure": "94.57%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.13%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -715993,7 +715993,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -716039,9 +716039,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2367.13, - "Y": 149.64, - "Z": 6428.68 + "X": 2245.05, + "Y": 48.63, + "Z": 5410.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716053,7 +716053,7 @@ "Total LOC": 24, "Coding LOC": 21, "Documentation LOC": 0, - "Structural Magnitude": 17.52, + "Structural Magnitude": 16.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -716066,14 +716066,14 @@ "Error & Exception Exposure": "85.27%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", - "API Exposure": "6.46%", + "API Exposure": "4.55%", "Concurrency Exposure": "0.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": "96.66%", + "Documentation Exposure": "91.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -716119,7 +716119,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 10, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -716227,9 +716227,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2923.69, - "Y": 95.7, - "Z": 5558.3 + "X": 2923.59, + "Y": 95.71, + "Z": 5558.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716252,7 +716252,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "68.97%", "Error & Exception Exposure": "92.89%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.92%", "API Exposure": "4.16%", "Concurrency Exposure": "0.0%", @@ -716381,7 +716381,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -716415,7 +716415,7 @@ } }, "shell/ansible": { - "Directory Group Magnitude": 625.28, + "Directory Group Magnitude": 624.28, "File Count": 14, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "92.9%", @@ -716424,16 +716424,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "35.61%", "Error & Exception Exposure": "37.33%", - "Tech Debt Exposure": "79.86%", + "Tech Debt Exposure": "14.96%", "Testing Exposure": "12.63%", - "API Exposure": "2.31%", + "API Exposure": "2.18%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "54.16%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "59.52%", "Instability Exposure": "46.43%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "38.44%", + "Documentation Exposure": "37.03%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -716450,9 +716450,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -6412.08, + "X": -6412.03, "Y": -297.08, - "Z": -4506.9 + "Z": -4506.87 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -716607,9 +716607,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6039.28, + "X": -6039.24, "Y": -179.18, - "Z": -4041.44 + "Z": -4041.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716632,7 +716632,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "87.87%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.82%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -716741,7 +716741,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -716785,9 +716785,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -6538.34, + "X": -6538.3, "Y": -379.97, - "Z": -4656.68 + "Z": -4656.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716810,7 +716810,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.21%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -716909,7 +716909,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -716953,9 +716953,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6158.09, + "X": -6158.04, "Y": -292.28, - "Z": -5140.64 + "Z": -5140.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717087,7 +717087,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -717131,9 +717131,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5918.32, + "X": -5918.28, "Y": -240.29, - "Z": -4442.1 + "Z": -4442.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717156,7 +717156,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.99%", "Error & Exception Exposure": "88.67%", - "Tech Debt Exposure": "94.43%", + "Tech Debt Exposure": "63.73%", "Testing Exposure": "80.0%", "API Exposure": "2.42%", "Concurrency Exposure": "0.0%", @@ -717285,7 +717285,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -717334,9 +717334,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6154.53, + "X": -6154.48, "Y": -269.3, - "Z": -4143.81 + "Z": -4143.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717359,7 +717359,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "26.81%", - "Tech Debt Exposure": "80.87%", + "Tech Debt Exposure": "45.69%", "Testing Exposure": "80.0%", "API Exposure": "0.14%", "Concurrency Exposure": "0.0%", @@ -717498,7 +717498,7 @@ "Design Short Vars": 2, "Design Long Vars": 8, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -717544,9 +717544,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5649.72, + "X": -5649.68, "Y": -264.86, - "Z": -4908.08 + "Z": -4908.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717569,7 +717569,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.17%", "API Exposure": "5.4%", "Concurrency Exposure": "0.0%", @@ -717668,7 +717668,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -717714,9 +717714,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5536.6, + "X": -5536.56, "Y": -181.38, - "Z": -4826.03 + "Z": -4825.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717739,7 +717739,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "95.72%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "9.79%", "Concurrency Exposure": "0.0%", @@ -717848,7 +717848,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -717892,9 +717892,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5922.6, + "X": -5922.55, "Y": -244.29, - "Z": -5059.29 + "Z": -5059.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717917,7 +717917,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "7.79%", - "Tech Debt Exposure": "42.7%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", "API Exposure": "6.46%", "Concurrency Exposure": "0.0%", @@ -718066,7 +718066,7 @@ "Design Short Vars": 1, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -718110,9 +718110,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5746.42, + "X": -5746.37, "Y": -138.58, - "Z": -3837.83 + "Z": -3837.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718135,7 +718135,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -718234,7 +718234,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -718278,9 +718278,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6445.66, + "X": -6445.61, "Y": -276.61, - "Z": -4192.52 + "Z": -4192.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718303,7 +718303,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "63.33%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -718402,7 +718402,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -718446,9 +718446,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5398.42, + "X": -5398.38, "Y": -50.64, - "Z": -4128.27 + "Z": -4128.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718471,7 +718471,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "98.52%", "Error & Exception Exposure": "83.12%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", "API Exposure": "6.34%", "Concurrency Exposure": "0.0%", @@ -718570,7 +718570,7 @@ "Design Short Vars": 0, "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -718614,9 +718614,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5209.09, + "X": -5209.05, "Y": -112.55, - "Z": -4507.5 + "Z": -4507.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718639,7 +718639,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.21%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -718738,7 +718738,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -718782,9 +718782,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5622.36, - "Y": -116.08, - "Z": -4283.66 + "X": -5622.46, + "Y": -116.13, + "Z": -4283.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718796,7 +718796,7 @@ "Total LOC": 47, "Coding LOC": 30, "Documentation LOC": 4, - "Structural Magnitude": 38.6, + "Structural Magnitude": 37.6, "Control Flow Ratio": "87.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -718809,14 +718809,14 @@ "Error & Exception Exposure": "69.36%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.92%", - "API Exposure": "1.79%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.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.91%", + "Documentation Exposure": "40.17%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -718852,7 +718852,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 15, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 11, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 2, @@ -718959,7 +718959,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "60.82%", "Error & Exception Exposure": "62.55%", - "Tech Debt Exposure": "84.74%", + "Tech Debt Exposure": "12.76%", "Testing Exposure": "7.13%", "API Exposure": "0.0%", "Concurrency Exposure": "5.57%", @@ -718985,9 +718985,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -4157.08, + "X": -4157.07, "Y": 43.06, - "Z": 9888.7 + "Z": 9888.69 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -719142,9 +719142,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -3769.18, + "X": -3769.17, "Y": -15.96, - "Z": 9379.4 + "Z": 9379.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719167,7 +719167,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.34%", "Error & Exception Exposure": "98.47%", - "Tech Debt Exposure": "99.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.8%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -719286,7 +719286,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -719330,9 +719330,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4449.91, + "X": -4449.9, "Y": -19.59, - "Z": 9884.87 + "Z": 9884.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719355,7 +719355,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "55.28%", "Error & Exception Exposure": "94.89%", - "Tech Debt Exposure": "98.69%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.03%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -719494,7 +719494,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -719542,7 +719542,7 @@ "2. Topological Coordinates": { "X": -4572.09, "Y": -120.97, - "Z": 8511.43 + "Z": 8511.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719565,7 +719565,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.99%", "Error & Exception Exposure": "82.85%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.06%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -719684,7 +719684,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -719730,9 +719730,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4947.96, + "X": -4947.95, "Y": -26.65, - "Z": 9396.29 + "Z": 9396.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719898,9 +719898,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4021.16, + "X": -4021.15, "Y": 23.53, - "Z": 9636.03 + "Z": 9636.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719923,7 +719923,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "96.08%", - "Tech Debt Exposure": "99.99%", + "Tech Debt Exposure": "91.38%", "Testing Exposure": "2.76%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720062,7 +720062,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -720110,7 +720110,7 @@ "2. Topological Coordinates": { "X": -4284.74, "Y": -157.64, - "Z": 8652.24 + "Z": 8652.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -720133,7 +720133,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.17%", "Error & Exception Exposure": "99.3%", - "Tech Debt Exposure": "89.01%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720282,7 +720282,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -720326,9 +720326,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4015.26, + "X": -4015.25, "Y": -149.73, - "Z": 8681.94 + "Z": 8681.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -720351,7 +720351,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "97.12%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720480,7 +720480,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -720524,9 +720524,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4847.56, + "X": -4847.55, "Y": -107.56, - "Z": 9288.29 + "Z": 9288.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -720549,7 +720549,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "76.74%", "Error & Exception Exposure": "85.81%", - "Tech Debt Exposure": "99.15%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.5%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720658,7 +720658,7 @@ "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -720702,9 +720702,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4951.0, + "X": -4950.99, "Y": -92.36, - "Z": 8696.66 + "Z": 8696.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -720727,7 +720727,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720826,7 +720826,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -720870,9 +720870,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3634.71, + "X": -3634.7, "Y": -136.49, - "Z": 8927.55 + "Z": 8927.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -720895,7 +720895,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -720994,7 +720994,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -721038,9 +721038,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4767.92, + "X": -4767.91, "Y": 29.23, - "Z": 9795.76 + "Z": 9795.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -721063,7 +721063,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -721162,7 +721162,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -721206,9 +721206,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4603.99, + "X": -4603.98, "Y": 7.26, - "Z": 9311.25 + "Z": 9311.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -721231,7 +721231,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "91.04%", "Error & Exception Exposure": "99.63%", - "Tech Debt Exposure": "51.42%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -721370,7 +721370,7 @@ "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -721418,7 +721418,7 @@ "2. Topological Coordinates": { "X": -3933.18, "Y": -113.3, - "Z": 8963.59 + "Z": 8963.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -721441,7 +721441,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "99.67%", "Error & Exception Exposure": "99.24%", - "Tech Debt Exposure": "99.61%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -721570,7 +721570,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -721614,9 +721614,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4294.25, + "X": -4294.24, "Y": -103.58, - "Z": 9095.52 + "Z": 9095.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -721639,7 +721639,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "79.0%", "Error & Exception Exposure": "99.59%", - "Tech Debt Exposure": "33.5%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "83.5%", @@ -721828,7 +721828,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -725610,9 +725610,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3075.65, + "X": 3075.59, "Y": -338.21, - "Z": 7200.99 + "Z": 7200.82 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -725767,9 +725767,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3106.81, + "X": 3106.75, "Y": -406.69, - "Z": 7706.57 + "Z": 7706.4 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -725924,9 +725924,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 2077.97, + "X": 2077.91, "Y": -192.07, - "Z": 7795.7 + "Z": 7795.52 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -726081,9 +726081,9 @@ "Identity Proof": "Metadata Anchor (NOTICE)" }, "2. Topological Coordinates": { - "X": 2915.07, + "X": 2915.0, "Y": -252.8, - "Z": 7050.15 + "Z": 7049.97 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -726238,9 +726238,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2463.87, + "X": 2463.81, "Y": -272.98, - "Z": 7965.4 + "Z": 7965.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -726428,9 +726428,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2134.16, + "X": 2134.09, "Y": -157.85, - "Z": 7523.62 + "Z": 7523.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -726776,9 +726776,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2684.85, + "X": 2684.79, "Y": -180.49, - "Z": 7024.7 + "Z": 7024.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -727168,9 +727168,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2834.21, + "X": 2834.15, "Y": -329.2, - "Z": 7886.01 + "Z": 7885.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -727537,9 +727537,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2365.55, + "X": 2365.48, "Y": -216.96, - "Z": 7618.62 + "Z": 7618.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728030,9 +728030,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2569.74, + "X": 2569.68, "Y": -230.5, - "Z": 7584.11 + "Z": 7583.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729801,9 +729801,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2364.46, + "X": 2364.4, "Y": -153.12, - "Z": 6836.7 + "Z": 6836.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -757667,7 +757667,7 @@ } }, "shell/sqlite": { - "Directory Group Magnitude": 459.2, + "Directory Group Magnitude": 458.2, "File Count": 13, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "92.3%", @@ -757676,9 +757676,9 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "35.49%", "Error & Exception Exposure": "66.87%", - "Tech Debt Exposure": "75.36%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "8.21%", - "API Exposure": "0.29%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "46.15%", "Commented Logic Exposure": "2.64%", @@ -757884,7 +757884,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.68%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.93%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -757993,7 +757993,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -758062,7 +758062,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "98.62%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -758171,7 +758171,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -758240,7 +758240,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "81.23%", "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "66.13%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -758369,7 +758369,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -758438,7 +758438,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "96.76%", "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "85.14%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -758547,7 +758547,7 @@ "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -758620,7 +758620,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "94.23%", "Error & Exception Exposure": "99.77%", - "Tech Debt Exposure": "28.59%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -758829,7 +758829,7 @@ "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -758898,7 +758898,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "34.05%", "Error & Exception Exposure": "91.62%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.94%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -759076,8 +759076,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 7, - "Orphaned Logic": 1, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -759148,7 +759148,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "3.22%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -759267,7 +759267,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -759311,9 +759311,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 6634.12, - "Y": 20.91, - "Z": -4501.41 + "X": 5799.89, + "Y": 40.56, + "Z": -3692.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -759336,7 +759336,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "11.51%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.85%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -759435,7 +759435,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -759479,9 +759479,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5836.81, - "Y": 9.6, - "Z": -3544.71 + "X": 6670.55, + "Y": -10.03, + "Z": -4352.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -759493,7 +759493,7 @@ "Total LOC": 37, "Coding LOC": 28, "Documentation LOC": 4, - "Structural Magnitude": 4.36, + "Structural Magnitude": 3.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -759506,7 +759506,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.37%", - "API Exposure": "3.81%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -759539,7 +759539,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 15, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -759672,7 +759672,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "89.26%", "Error & Exception Exposure": "99.23%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.69%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -759781,7 +759781,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -759852,7 +759852,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "25.06%", "Error & Exception Exposure": "80.64%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.71%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -759961,7 +759961,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -760032,7 +760032,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -760131,7 +760131,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -774818,7 +774818,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "21.02%", "Error & Exception Exposure": "11.84%", - "Tech Debt Exposure": "94.4%", + "Tech Debt Exposure": "9.09%", "Testing Exposure": "2.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -774869,7 +774869,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "15.45%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.54%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -775028,7 +775028,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -775097,7 +775097,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "17.39%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.6%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -775345,8 +775345,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 7, - "Orphaned Logic": 5, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -775415,7 +775415,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "46.84%", "Error & Exception Exposure": "61.42%", - "Tech Debt Exposure": "66.13%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.69%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -775554,7 +775554,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -775623,7 +775623,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "12.07%", "Error & Exception Exposure": "40.42%", - "Tech Debt Exposure": "73.82%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -775951,8 +775951,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 2, - "Orphaned Logic": 1, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -776021,7 +776021,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "10.94%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.48%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -776170,7 +776170,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -776239,7 +776239,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "14.4%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "99.99%", "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -776348,7 +776348,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -776417,7 +776417,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "13.88%", "Error & Exception Exposure": "28.42%", - "Tech Debt Exposure": "99.76%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -776925,8 +776925,8 @@ "Design Upper Case": 0, "Design Short Vars": 5, "Design Long Vars": 0, - "Duplicate Logic": 4, - "Orphaned Logic": 13, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -776995,7 +776995,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "9.23%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.61%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -777124,7 +777124,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -777193,7 +777193,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "12.71%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.56%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -777342,7 +777342,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -777411,7 +777411,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "51.47%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -777510,7 +777510,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -777579,7 +777579,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.61%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -777678,7 +777678,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797578,7 +797578,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "5.49%", "Error & Exception Exposure": "33.6%", - "Tech Debt Exposure": "90.91%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.62%", "API Exposure": "0.42%", "Concurrency Exposure": "0.0%", @@ -797786,7 +797786,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.84%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -797975,7 +797975,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798044,7 +798044,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.82%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -798153,7 +798153,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798222,7 +798222,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -798331,7 +798331,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798400,7 +798400,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.36%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -798599,7 +798599,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798668,7 +798668,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -798767,7 +798767,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798836,7 +798836,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "13.14%", "Error & Exception Exposure": "84.62%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -798975,7 +798975,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799044,7 +799044,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -799173,7 +799173,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799242,7 +799242,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "94.1%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.14%", "API Exposure": "4.63%", "Concurrency Exposure": "0.0%", @@ -799361,7 +799361,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799430,7 +799430,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "98.81%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -799599,7 +799599,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799668,7 +799668,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -801737,7 +801737,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 198, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -801806,9 +801806,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -4576.34, + "X": -4576.33, "Y": 99.18, - "Z": 10610.36 + "Z": 10610.35 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -801965,7 +801965,7 @@ "2. Topological Coordinates": { "X": -4313.79, "Y": 191.44, - "Z": 10129.75 + "Z": 10129.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802120,9 +802120,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4069.66, + "X": -4069.65, "Y": 187.76, - "Z": 10761.84 + "Z": 10761.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802290,9 +802290,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4807.34, + "X": -4807.33, "Y": 107.58, - "Z": 10237.09 + "Z": 10237.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802458,9 +802458,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4390.23, + "X": -4390.22, "Y": 179.55, - "Z": 10396.93 + "Z": 10396.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802701,9 +802701,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -3977.43, + "X": -3977.42, "Y": 253.19, - "Z": 10025.73 + "Z": 10025.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -831251,7 +831251,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "6.15%", "Error & Exception Exposure": "75.28%", - "Tech Debt Exposure": "85.71%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "12.8%", "API Exposure": "0.34%", "Concurrency Exposure": "0.0%", @@ -831459,7 +831459,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "90.79%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -831568,7 +831568,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -831637,7 +831637,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "13.29%", "Error & Exception Exposure": "89.97%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -831786,7 +831786,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -831855,7 +831855,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "88.11%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.03%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -831984,7 +831984,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -832053,7 +832053,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "14.74%", "Error & Exception Exposure": "82.37%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -832242,7 +832242,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -832311,7 +832311,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "90.79%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -832420,7 +832420,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -832489,7 +832489,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "84.95%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "2.35%", "Concurrency Exposure": "0.0%", @@ -833878,7 +833878,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 130, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -834286,9 +834286,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4181.48, + "X": 4181.39, "Y": 97.47, - "Z": 8635.49 + "Z": 8635.32 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -834443,9 +834443,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4384.22, + "X": 4384.13, "Y": 141.84, - "Z": 8428.52 + "Z": 8428.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -839998,9 +839998,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5998.65, + "X": -5998.64, "Y": 189.55, - "Z": 10257.44 + "Z": 10257.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844148,7 +844148,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "5.51%", "Error & Exception Exposure": "70.41%", - "Tech Debt Exposure": "94.74%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -844176,7 +844176,7 @@ "2. Topological Coordinates": { "X": -2153.4, "Y": -100.23, - "Z": 9108.0 + "Z": 9107.98 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -844333,7 +844333,7 @@ "2. Topological Coordinates": { "X": -2910.7, "Y": -75.07, - "Z": 9127.37 + "Z": 9127.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844356,7 +844356,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "68.53%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -844525,7 +844525,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -844569,9 +844569,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2288.03, + "X": -2288.02, "Y": -103.55, - "Z": 9294.53 + "Z": 9294.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844594,7 +844594,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "71.35%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -844773,7 +844773,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -844817,9 +844817,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -3292.89, + "X": -3292.88, "Y": -72.06, - "Z": 9363.91 + "Z": 9363.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844842,7 +844842,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.5%", "Error & Exception Exposure": "74.31%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -845001,7 +845001,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -845047,7 +845047,7 @@ "2. Topological Coordinates": { "X": -2771.56, "Y": 64.38, - "Z": 9917.7 + "Z": 9917.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845070,7 +845070,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "71.35%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -845249,7 +845249,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -845295,7 +845295,7 @@ "2. Topological Coordinates": { "X": -2448.47, "Y": 75.02, - "Z": 10049.34 + "Z": 10049.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845318,7 +845318,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.21%", "Error & Exception Exposure": "73.05%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -845487,7 +845487,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -845533,7 +845533,7 @@ "2. Topological Coordinates": { "X": -3206.13, "Y": -31.21, - "Z": 9938.33 + "Z": 9938.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845556,7 +845556,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.98%", "Error & Exception Exposure": "68.38%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -845735,7 +845735,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -845779,9 +845779,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2043.31, + "X": -2043.3, "Y": -95.66, - "Z": 9297.81 + "Z": 9297.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845804,7 +845804,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.68%", "Error & Exception Exposure": "74.99%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -845963,7 +845963,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -846007,9 +846007,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -3094.95, + "X": -3094.94, "Y": 54.97, - "Z": 10187.52 + "Z": 10187.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846032,7 +846032,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "9.46%", "Error & Exception Exposure": "79.88%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -846191,7 +846191,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -846237,7 +846237,7 @@ "2. Topological Coordinates": { "X": -2403.14, "Y": 55.78, - "Z": 9979.67 + "Z": 9979.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846260,7 +846260,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.68%", "Error & Exception Exposure": "74.99%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -846459,7 +846459,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -846503,9 +846503,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -3137.36, + "X": -3137.35, "Y": -37.4, - "Z": 9376.76 + "Z": 9376.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846528,7 +846528,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.36%", "Error & Exception Exposure": "77.25%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.57%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -846727,7 +846727,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -846771,9 +846771,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2703.78, + "X": -2703.77, "Y": -82.96, - "Z": 9651.63 + "Z": 9651.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846796,7 +846796,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "65.23%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -846985,7 +846985,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -847029,9 +847029,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2609.89, + "X": -2609.88, "Y": -60.61, - "Z": 9181.41 + "Z": 9181.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -847054,7 +847054,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "68.58%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -847243,7 +847243,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -847287,9 +847287,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2418.23, + "X": -2418.22, "Y": -169.19, - "Z": 9106.58 + "Z": 9106.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -847312,7 +847312,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.51%", "Error & Exception Exposure": "77.66%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -847491,7 +847491,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -847537,7 +847537,7 @@ "2. Topological Coordinates": { "X": -2120.14, "Y": -34.54, - "Z": 9641.96 + "Z": 9641.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -847560,7 +847560,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "7.98%", "Error & Exception Exposure": "76.08%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.5%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -847739,7 +847739,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -847783,9 +847783,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2119.78, + "X": -2119.77, "Y": 15.2, - "Z": 10073.88 + "Z": 10073.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -847808,7 +847808,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "11.43%", "Error & Exception Exposure": "82.93%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -847957,7 +847957,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -848001,9 +848001,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -3457.47, + "X": -3457.46, "Y": -40.18, - "Z": 9789.64 + "Z": 9789.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -848026,7 +848026,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "11.43%", "Error & Exception Exposure": "82.93%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -848175,7 +848175,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -848221,7 +848221,7 @@ "2. Topological Coordinates": { "X": -2913.98, "Y": -20.81, - "Z": 9744.45 + "Z": 9744.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -848244,7 +848244,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "70.42%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -848433,7 +848433,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -848477,9 +848477,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2729.08, + "X": -2729.07, "Y": -121.0, - "Z": 8930.86 + "Z": 8930.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -848502,7 +848502,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "9.46%", "Error & Exception Exposure": "79.88%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -848661,7 +848661,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -848729,9 +848729,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3804.82, + "X": 3804.73, "Y": 220.88, - "Z": 7727.95 + "Z": 7727.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -848919,9 +848919,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3485.67, + "X": 3485.59, "Y": 80.83, - "Z": 8010.28 + "Z": 8010.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -849276,9 +849276,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3730.32, + "X": 3730.24, "Y": 88.82, - "Z": 7926.52 + "Z": 7926.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -849938,9 +849938,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3321.45, + "X": 3321.37, "Y": 55.02, - "Z": 7969.55 + "Z": 7969.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850150,9 +850150,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3514.8, + "X": 3514.71, "Y": 189.49, - "Z": 7484.65 + "Z": 7484.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850320,9 +850320,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4032.57, + "X": 4032.48, "Y": 96.85, - "Z": 8180.83 + "Z": 8180.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850531,9 +850531,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3570.94, + "X": 3570.86, "Y": 43.58, - "Z": 8444.24 + "Z": 8444.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850732,9 +850732,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4112.72, + "X": 4112.64, "Y": 249.89, - "Z": 7768.96 + "Z": 7768.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -865355,9 +865355,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3767.17, + "X": 3767.06, "Y": 16.76, - "Z": 6698.29 + "Z": 6698.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -865512,9 +865512,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3479.48, + "X": 3479.38, "Y": 49.47, - "Z": 6949.73 + "Z": 6949.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -865669,9 +865669,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3763.27, + "X": 3763.17, "Y": -76.57, - "Z": 6479.85 + "Z": 6479.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -865826,9 +865826,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4004.4, + "X": 4004.3, "Y": 6.25, - "Z": 7023.56 + "Z": 7023.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -865983,9 +865983,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3276.31, + "X": 3276.21, "Y": 10.01, - "Z": 6634.51 + "Z": 6634.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866140,9 +866140,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4102.1, + "X": 4102.0, "Y": 1.61, - "Z": 6688.85 + "Z": 6688.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866297,9 +866297,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3613.42, + "X": 3613.32, "Y": 51.98, - "Z": 7189.61 + "Z": 7189.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866454,9 +866454,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3445.38, + "X": 3445.28, "Y": -98.14, - "Z": 6172.23 + "Z": 6172.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866611,9 +866611,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4219.12, + "X": 4219.02, "Y": 55.71, - "Z": 6993.58 + "Z": 6993.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866768,9 +866768,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3167.03, + "X": 3166.92, "Y": 24.54, - "Z": 6908.7 + "Z": 6908.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -866925,9 +866925,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3988.6, + "X": 3988.5, "Y": -131.27, - "Z": 6255.06 + "Z": 6254.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -867082,9 +867082,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3932.31, + "X": 3932.21, "Y": 70.76, - "Z": 7338.03 + "Z": 7337.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -867239,9 +867239,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3128.32, + "X": 3128.22, "Y": -31.6, - "Z": 6323.82 + "Z": 6323.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -867396,9 +867396,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4384.15, + "X": 4384.05, "Y": 3.17, - "Z": 6462.99 + "Z": 6462.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869212,9 +869212,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6218.37, + "X": -6218.26, "Y": 109.85, - "Z": -8045.89 + "Z": -8045.75 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -869369,9 +869369,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5691.97, + "X": -5691.87, "Y": 139.12, - "Z": -8425.14 + "Z": -8425.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869526,9 +869526,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5709.72, + "X": -5709.61, "Y": 91.46, - "Z": -7751.32 + "Z": -7751.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869714,9 +869714,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5523.81, + "X": -5523.71, "Y": 67.31, - "Z": -7419.62 + "Z": -7419.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869882,9 +869882,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5940.32, + "X": -5940.22, "Y": 100.04, - "Z": -7579.96 + "Z": -7579.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875888,9 +875888,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4606.39, + "X": -4606.33, "Y": -77.64, - "Z": -8470.37 + "Z": -8470.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876186,9 +876186,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4320.34, + "X": -4320.28, "Y": -42.95, - "Z": -9147.48 + "Z": -9147.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876354,9 +876354,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4847.42, + "X": -4847.36, "Y": -172.45, - "Z": -9026.09 + "Z": -9025.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876522,9 +876522,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4109.48, + "X": -4109.42, "Y": 23.44, - "Z": -8520.0 + "Z": -8519.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876700,9 +876700,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4378.01, + "X": -4377.96, "Y": -92.58, - "Z": -8812.05 + "Z": -8811.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877856,7 +877856,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "5.38%", "Error & Exception Exposure": "47.52%", - "Tech Debt Exposure": "79.98%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.94%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -878064,7 +878064,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "40.44%", - "Tech Debt Exposure": "99.94%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -878233,7 +878233,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -878302,7 +878302,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "45.92%", - "Tech Debt Exposure": "99.97%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -878471,7 +878471,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -878540,7 +878540,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "71.85%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -878778,8 +878778,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 4, - "Orphaned Logic": 9, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -878848,7 +878848,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "79.41%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -879017,7 +879017,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -880788,9 +880788,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 11185.32, + "X": 11185.29, "Y": -212.79, - "Z": 4019.93 + "Z": 4019.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881006,9 +881006,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 11403.3, + "X": 11403.28, "Y": -136.24, - "Z": 4373.27 + "Z": 4373.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881174,9 +881174,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 10949.92, + "X": 10949.89, "Y": -137.15, - "Z": 4252.76 + "Z": 4252.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881372,9 +881372,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 11570.19, + "X": 11570.16, "Y": -152.78, - "Z": 3742.04 + "Z": 3742.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881550,9 +881550,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 10778.2, + "X": 10778.18, "Y": -169.6, - "Z": 3952.46 + "Z": 3952.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881718,9 +881718,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 11260.64, + "X": 11260.62, "Y": -211.67, - "Z": 3916.68 + "Z": 3916.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -881896,9 +881896,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 11023.33, + "X": 11023.31, "Y": -190.42, - "Z": 4486.95 + "Z": 4486.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882062,7 +882062,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "31.92%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.87%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.67%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -882113,7 +882113,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "51.47%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.76%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -882212,7 +882212,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -882281,7 +882281,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.61%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -882380,7 +882380,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -882449,7 +882449,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "17.39%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.6%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -882697,8 +882697,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 7, - "Orphaned Logic": 5, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884068,7 +884068,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884119,7 +884119,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884218,7 +884218,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884287,7 +884287,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884386,7 +884386,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884455,7 +884455,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884554,7 +884554,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884623,7 +884623,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884722,7 +884722,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884791,7 +884791,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -884890,7 +884890,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -884959,7 +884959,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885058,7 +885058,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885127,7 +885127,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885226,7 +885226,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885295,7 +885295,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885394,7 +885394,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885463,7 +885463,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885562,7 +885562,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885631,7 +885631,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885730,7 +885730,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885799,7 +885799,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -885898,7 +885898,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -885967,7 +885967,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -886066,7 +886066,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -886135,7 +886135,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -886234,7 +886234,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -886303,7 +886303,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -886402,7 +886402,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -886471,7 +886471,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -886570,7 +886570,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -886639,7 +886639,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -886738,7 +886738,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -886806,9 +886806,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7573.2, + "X": -7573.16, "Y": -160.84, - "Z": -5505.89 + "Z": -5505.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -886963,9 +886963,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7350.38, + "X": -7350.34, "Y": -103.73, - "Z": -6239.43 + "Z": -6239.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887106,204 +887106,23 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "proto/tensorflow/framework/tensor.proto": { - "1. Artifact Identity": { - "Filename": "tensor.proto", - "Path": "proto/tensorflow/framework/tensor.proto", - "Language": "Proto", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "proto", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .proto)" - }, - "2. Topological Coordinates": { - "X": -7371.5, - "Y": -123.93, - "Z": -5973.03 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 102, - "Coding LOC": 35, - "Documentation LOC": 42, - "Structural Magnitude": 15.7, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.143 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.1%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "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.53%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 21, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 27, - "Design Camel Case": 0, - "Design Snake Case": 27, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "sql/postgresql/mediawiki": { - "Directory Group Magnitude": 46.04, - "File Count": 1, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "46.88%", - "Error & Exception Exposure": "78.55%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.1%", - "API Exposure": "11.23%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.68%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "sql/postgresql/mediawiki/tables.sql": { + }, + "proto/tensorflow/framework/tensor.proto": { "1. Artifact Identity": { - "Filename": "tables.sql", - "Path": "sql/postgresql/mediawiki/tables.sql", - "Language": "Sqlite", + "Filename": "tensor.proto", + "Path": "proto/tensorflow/framework/tensor.proto", + "Language": "Proto", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "proto", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -9597.21, - "Y": -241.05, - "Z": -6125.11 + "X": -7371.46, + "Y": -123.93, + "Z": -5972.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887312,247 +887131,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 49, - "Coding LOC": 32, - "Documentation LOC": 9, - "Structural Magnitude": 46.04, - "Control Flow Ratio": "80.0%", + "Total LOC": 102, + "Coding LOC": 35, + "Documentation LOC": 42, + "Structural Magnitude": 15.7, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.719 + "Raw Cognitive Density": 0.143 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "46.88%", - "Error & Exception Exposure": "78.55%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.1%", - "API Exposure": "11.23%", + "Cognitive Load Exposure": "8.1%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.68%", + "Documentation Exposure": "15.53%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CREATE_Statement", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 15, - "End Line": 19 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 32, - "End Line": 36 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 20, - "End Line": 21 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 37, - "End Line": 38 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 22, - "End Line": 22 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 24, - "End Line": 24 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 39, - "End Line": 39 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 41, - "End Line": 41 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 25 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 42 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 9 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 10 - }, - { - "Function Name": "ALTER_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 14 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 23 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 28 - }, - { - "Function Name": "ALTER_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 31 - }, - { - "Function Name": "Declarative_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 40 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 45 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 47, - "End Line": 47 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 48 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, - "Sequential Logic Declarations": 2, - "Function Parameters": 4, - "Function/Method Declarations": 4, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 8, - "State Mutations / Variable Reassignments": 5, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -887567,11 +887185,11 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, + "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 4, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -887587,10 +887205,10 @@ "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 2, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 21, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -887607,14 +887225,14 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 27, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 27, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 8, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -887684,9 +887302,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": 2735.23, + "X": 2735.17, "Y": 13.48, - "Z": 9280.2 + "Z": 9280.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887850,9 +887468,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": 2944.92, + "X": 2944.86, "Y": -7.95, - "Z": 9276.69 + "Z": 9276.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888708,23 +888326,204 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "td/tensorflow/compiler/mlir/tfrt/tf_mlrt_tpu_ops.td": { + }, + "td/tensorflow/compiler/mlir/tfrt/tf_mlrt_tpu_ops.td": { + "1. Artifact Identity": { + "Filename": "tf_mlrt_tpu_ops.td", + "Path": "td/tensorflow/compiler/mlir/tfrt/tf_mlrt_tpu_ops.td", + "Language": "Td", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "td", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .td)" + }, + "2. Topological Coordinates": { + "X": -9321.1, + "Y": -168.7, + "Z": 2826.21 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 83, + "Coding LOC": 54, + "Documentation LOC": 11, + "Structural Magnitude": 16.08, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "28.03%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 39, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 12, + "Design Camel Case": 3, + "Design Snake Case": 9, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + } + } + }, + "sql/postgresql/mediawiki": { + "Directory Group Magnitude": 38.04, + "File Count": 1, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "46.88%", + "Error & Exception Exposure": "78.55%", + "Tech Debt Exposure": "95.11%", + "Testing Exposure": "3.1%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "39.66%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "sql/postgresql/mediawiki/tables.sql": { "1. Artifact Identity": { - "Filename": "tf_mlrt_tpu_ops.td", - "Path": "td/tensorflow/compiler/mlir/tfrt/tf_mlrt_tpu_ops.td", - "Language": "Td", + "Filename": "tables.sql", + "Path": "sql/postgresql/mediawiki/tables.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "td", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .td)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -9321.1, - "Y": -168.7, - "Z": 2826.21 + "X": -9595.67, + "Y": -241.05, + "Z": -6124.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888733,22 +888532,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 83, - "Coding LOC": 54, - "Documentation LOC": 11, - "Structural Magnitude": 16.08, - "Control Flow Ratio": "0.0%", + "Total LOC": 49, + "Coding LOC": 32, + "Documentation LOC": 9, + "Structural Magnitude": 38.04, + "Control Flow Ratio": "80.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.719 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "46.88%", + "Error & Exception Exposure": "78.55%", + "Tech Debt Exposure": "95.11%", + "Testing Exposure": "3.1%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -888756,23 +888555,224 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.03%", + "Documentation Exposure": "39.66%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CREATE_Statement", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 15, + "End Line": 19 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 32, + "End Line": 36 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 20, + "End Line": 21 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 37, + "End Line": 38 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 22, + "End Line": 22 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 24, + "End Line": 24 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 39, + "End Line": 39 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 41, + "End Line": 41 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 25 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 42, + "End Line": 42 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 9 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 10 + }, + { + "Function Name": "ALTER_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 14 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 23, + "End Line": 23 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 28 + }, + { + "Function Name": "ALTER_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 31, + "End Line": 31 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 40, + "End Line": 40 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 45 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 47, + "End Line": 47 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 48, + "End Line": 48 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Control Flow Branches": 8, + "Sequential Logic Declarations": 2, + "Function Parameters": 4, + "Function/Method Declarations": 4, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -888787,11 +888787,11 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 4, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -888807,10 +888807,10 @@ "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Event Listeners & Subscribers": 2, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 39, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -888827,11 +888827,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 12, - "Design Camel Case": 3, - "Design Snake Case": 9, + "Core Var Decl": 3, + "Design Camel Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -889736,9 +889736,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6649.63, + "X": -6649.49, "Y": -147.44, - "Z": -7316.7 + "Z": -7316.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889893,9 +889893,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6922.71, + "X": -6922.56, "Y": -198.73, - "Z": -7386.24 + "Z": -7386.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890050,9 +890050,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6681.47, + "X": -6681.32, "Y": -172.08, - "Z": -7752.02 + "Z": -7751.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894061,9 +894061,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3437.69, + "X": 3437.63, "Y": 10.06, - "Z": 8593.03 + "Z": 8592.88 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -894218,9 +894218,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3283.34, + "X": 3283.28, "Y": -22.31, - "Z": 9015.18 + "Z": 9015.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894379,9 +894379,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3457.47, + "X": 3457.4, "Y": 78.84, - "Z": 8300.27 + "Z": 8300.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894538,9 +894538,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3700.4, + "X": 3700.34, "Y": 46.7, - "Z": 8967.09 + "Z": 8966.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894698,9 +894698,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3024.18, + "X": 3024.11, "Y": 6.34, - "Z": 8590.42 + "Z": 8590.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897380,9 +897380,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7244.93, + "X": -7244.9, "Y": 164.39, - "Z": -6712.59 + "Z": -6712.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -898599,9 +898599,9 @@ "Identity Proof": "Single Indicator (Ext: .csv)" }, "2. Topological Coordinates": { - "X": -6375.86, + "X": -6375.76, "Y": 155.1, - "Z": -8020.75 + "Z": -8020.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -898927,7 +898927,7 @@ } }, "sqlite/flask_tutorial_sqlite": { - "Directory Group Magnitude": 12.54, + "Directory Group Magnitude": 10.54, "File Count": 3, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "66.7%", @@ -898936,16 +898936,16 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "6.96%", "Error & Exception Exposure": "29.38%", - "Tech Debt Exposure": "33.33%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.23%", - "API Exposure": "3.05%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "7.72%", "Specification Exposure": "48.89%", "Instability Exposure": "33.33%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "38.01%", + "Documentation Exposure": "35.76%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -898962,9 +898962,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5414.94, - "Y": -204.61, - "Z": 6744.23 + "X": 5413.56, + "Y": -204.31, + "Z": 6744.6 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -899119,9 +899119,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5459.41, - "Y": -174.26, - "Z": 7214.24 + "X": 5252.02, + "Y": -169.51, + "Z": 7400.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899133,7 +899133,7 @@ "Total LOC": 9, "Coding LOC": 7, "Documentation LOC": 0, - "Structural Magnitude": 6.44, + "Structural Magnitude": 4.44, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -899146,14 +899146,14 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.29%", - "API Exposure": "9.16%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.23%", + "Documentation Exposure": "39.48%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -899189,7 +899189,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -899297,9 +899297,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5205.3, - "Y": -147.84, - "Z": 7245.36 + "X": 5412.62, + "Y": -152.64, + "Z": 7053.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899322,7 +899322,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "15.89%", "Error & Exception Exposure": "88.14%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -899451,7 +899451,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -900834,7 +900834,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "2.5%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "50.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -901042,7 +901042,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.77%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -901141,7 +901141,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -901465,346 +901465,7 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "html/wordpress_blocks": { - "Directory Group Magnitude": 7.73, - "File Count": 4, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "75.0%", - "Static: Literature & Documentation": "25.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "3.75%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.54%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "23.33%", - "Instability Exposure": "37.5%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.32%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "html/wordpress_blocks/LICENSE.txt": { - "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "html/wordpress_blocks/LICENSE.txt", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "html", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" - }, - "2. Topological Coordinates": { - "X": 11874.36, - "Y": 179.76, - "Z": 2991.77 - }, - "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "N/A", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 385, - "Coding LOC": 0, - "Documentation LOC": 309, - "Structural Magnitude": 7.7, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "html/wordpress_blocks/index.html": { - "1. Artifact Identity": { - "Filename": "index.html", - "Path": "html/wordpress_blocks/index.html", - "Language": "Html", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "html", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (index.html)" - }, - "2. Topological Coordinates": { - "X": 11731.53, - "Y": 259.77, - "Z": 3133.04 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 28, - "Coding LOC": 5, - "Documentation LOC": 18, - "Structural Magnitude": 0.01, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.2 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.77%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "33.33%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.33%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 1, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 3, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 5, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 3, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -901822,9 +901483,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 3, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -901857,65 +901518,90 @@ "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "html/wordpress_blocks/page.html": { + } + } + }, + "html/wordpress_blocks": { + "Directory Group Magnitude": 7.73, + "File Count": 4, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "75.0%", + "Static: Literature & Documentation": "25.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "3.75%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.54%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "23.33%", + "Instability Exposure": "37.5%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "15.32%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "html/wordpress_blocks/LICENSE.txt": { "1. Artifact Identity": { - "Filename": "page.html", - "Path": "html/wordpress_blocks/page.html", - "Language": "Html", + "Filename": "LICENSE.txt", + "Path": "html/wordpress_blocks/LICENSE.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "html", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .html)" + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 11986.08, - "Y": 114.06, - "Z": 2749.43 + "X": 11874.36, + "Y": 179.76, + "Z": 2991.77 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 4, - "Documentation LOC": 10, - "Structural Magnitude": 0.01, + "Total LOC": 385, + "Coding LOC": 0, + "Documentation LOC": 309, + "Structural Magnitude": 7.7, "Control Flow Ratio": "0.0%", - "Popularity Rank": 3, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.5 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.61%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "26.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.14%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -901929,14 +901615,14 @@ "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 2, + "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 3, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -901961,7 +901647,7 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 2, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -901979,9 +901665,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -902012,28 +901698,28 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] }, - "html/wordpress_blocks/search.html": { + "html/wordpress_blocks/index.html": { "1. Artifact Identity": { - "Filename": "search.html", - "Path": "html/wordpress_blocks/search.html", + "Filename": "index.html", + "Path": "html/wordpress_blocks/index.html", "Language": "Html", "Architect": "Unknown Architect", "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "html", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .html)" + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (index.html)" }, "2. Topological Coordinates": { - "X": 12111.81, - "Y": 242.79, - "Z": 3479.24 + "X": 11731.53, + "Y": 259.77, + "Z": 3133.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902042,16 +901728,16 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 34, + "Total LOC": 28, "Coding LOC": 5, - "Documentation LOC": 22, + "Documentation LOC": 18, "Structural Magnitude": 0.01, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.4 + "Raw Cognitive Density": 1.2 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", @@ -902065,7 +901751,7 @@ "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.8%", + "Documentation Exposure": "21.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -902089,11 +901775,11 @@ "UI / View Layer Components": 3, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 6, + "Decorators and Annotations": 5, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -902171,89 +901857,65 @@ "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [] - } - } - }, - "css/wordpress": { - "Directory Group Magnitude": 7.7, - "File Count": 1, - "Ecosystem Fingerprint (Archetypes)": { - "Static: Literature & Documentation": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "0.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "css/wordpress/LICENSE.txt": { + }, + "html/wordpress_blocks/page.html": { "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "css/wordpress/LICENSE.txt", - "Language": "Plaintext", + "Filename": "page.html", + "Path": "html/wordpress_blocks/page.html", + "Language": "Html", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" + "Folder Dominant Lang": "html", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -5019.65, - "Y": 12.49, - "Z": -9127.1 + "X": 11986.08, + "Y": 114.06, + "Z": 2749.43 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 385, - "Coding LOC": 0, - "Documentation LOC": 309, - "Structural Magnitude": 7.7, + "Total LOC": 18, + "Coding LOC": 4, + "Documentation LOC": 10, + "Structural Magnitude": 0.01, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 3, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.61%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "26.67%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "21.14%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 2, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -902267,14 +901929,14 @@ "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, + "UI / View Layer Components": 2, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 3, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -902299,7 +901961,7 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 2, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -902317,9 +901979,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -902350,52 +902012,28 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 3, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "sqlite/dancer2_sqlite": { - "Directory Group Magnitude": 7.68, - "File Count": 2, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.13%", - "API Exposure": "7.47%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.52%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "sqlite/dancer2_sqlite/entries.sql": { + }, + "html/wordpress_blocks/search.html": { "1. Artifact Identity": { - "Filename": "entries.sql", - "Path": "sqlite/dancer2_sqlite/entries.sql", - "Language": "Sqlite", + "Filename": "search.html", + "Path": "html/wordpress_blocks/search.html", + "Language": "Html", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "html", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 2663.5, - "Y": 288.93, - "Z": -9993.19 + "X": 12111.81, + "Y": 242.79, + "Z": 3479.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902404,69 +902042,58 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.54, + "Total LOC": 34, + "Coding LOC": 5, + "Documentation LOC": 22, + "Structural Magnitude": 0.01, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.4 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.11%", - "API Exposure": "5.78%", + "Testing Exposure": "0.77%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "18.8%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 7 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 1, "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, + "UI / View Layer Components": 3, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 6, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -902491,8 +902118,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 5, + "Structural Tab Indentations": 3, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -902500,7 +902127,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 1, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -902509,9 +902136,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 3, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -902542,96 +902169,99 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "sqlite/dancer2_sqlite/users.sql": { + } + } + }, + "css/wordpress": { + "Directory Group Magnitude": 7.7, + "File Count": 1, + "Ecosystem Fingerprint (Archetypes)": { + "Static: Literature & Documentation": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", + "Instability Exposure": "0.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "css/wordpress/LICENSE.txt": { "1. Artifact Identity": { - "Filename": "users.sql", - "Path": "sqlite/dancer2_sqlite/users.sql", - "Language": "Sqlite", + "Filename": "LICENSE.txt", + "Path": "css/wordpress/LICENSE.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 2890.16, - "Y": 208.99, - "Z": -10255.92 + "X": -5019.59, + "Y": 12.49, + "Z": -9126.99 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 5.14, + "Total LOC": 385, + "Coding LOC": 0, + "Documentation LOC": 309, + "Structural Magnitude": 7.7, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.16%", - "API Exposure": "9.16%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.23%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "INSERT_Statement", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 5 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 2, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -902670,7 +902300,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -902711,7 +902341,7 @@ "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, - "Sec Entropy": 1, + "Sec Entropy": 0, "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, @@ -902720,7 +902350,7 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, @@ -902766,7 +902396,7 @@ "2. Topological Coordinates": { "X": -3455.45, "Y": 213.48, - "Z": 11249.4 + "Z": 11249.38 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -902923,7 +902553,7 @@ "2. Topological Coordinates": { "X": -3587.36, "Y": 193.72, - "Z": 11534.15 + "Z": 11534.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903080,7 +902710,7 @@ "2. Topological Coordinates": { "X": -3231.51, "Y": 333.18, - "Z": 11464.26 + "Z": 11464.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903254,7 +902884,7 @@ "2. Topological Coordinates": { "X": -3420.39, "Y": 186.08, - "Z": 11106.57 + "Z": 11106.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903437,9 +903067,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -2234.18, + "X": -2234.17, "Y": -96.74, - "Z": 11441.41 + "Z": 11441.39 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -903594,9 +903224,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -2366.72, + "X": -2366.71, "Y": -88.78, - "Z": 11651.42 + "Z": 11651.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903731,56 +903361,268 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "https://unpkg.com/xterm@4.18.0/css/xterm.css", + "src.mjs" + ] + } + } + }, + "sql/postgresql/sqlmap": { + "Directory Group Magnitude": 5.08, + "File Count": 1, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "89.26%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "93.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "67.14%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "sql/postgresql/sqlmap/dns_request.sql": { + "1. Artifact Identity": { + "Filename": "dns_request.sql", + "Path": "sql/postgresql/sqlmap/dns_request.sql", + "Language": "Sqlite", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "sqlite", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sql)" + }, + "2. Topological Coordinates": { + "X": 8622.44, + "Y": 104.77, + "Z": -4340.93 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 14, + "Coding LOC": 14, + "Documentation LOC": 0, + "Structural Magnitude": 5.08, + "Control Flow Ratio": "16.7%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.429 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "89.26%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "93.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "67.14%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "DROP_Statement", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 1, + "End Line": 12 + }, + { + "Function Name": "Declarative_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 13 + }, + { + "Function Name": "SELECT_Statement_[Unterminated]", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 14 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 3, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 1, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "https://unpkg.com/xterm@4.18.0/css/xterm.css", - "src.mjs" - ] + "9. Extracted Dependencies": [] } } }, - "sql/postgresql/sqlmap": { - "Directory Group Magnitude": 5.08, - "File Count": 1, + "sqlite/dancer2_sqlite": { + "Directory Group Magnitude": 4.68, + "File Count": 2, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "89.26%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.37%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.13%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.14%", + "Documentation Exposure": "39.48%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "sql/postgresql/sqlmap/dns_request.sql": { + "sqlite/dancer2_sqlite/entries.sql": { "1. Artifact Identity": { - "Filename": "dns_request.sql", - "Path": "sql/postgresql/sqlmap/dns_request.sql", + "Filename": "entries.sql", + "Path": "sqlite/dancer2_sqlite/entries.sql", "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "sqlite", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8622.44, - "Y": 104.77, - "Z": -4340.93 + "X": 2666.91, + "Y": 287.86, + "Z": -9993.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903789,75 +903631,233 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 14, + "Total LOC": 9, + "Coding LOC": 7, "Documentation LOC": 0, - "Structural Magnitude": 5.08, - "Control Flow Ratio": "16.7%", - "Popularity Rank": 0, + "Structural Magnitude": 1.54, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.429 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "89.26%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.37%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.11%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.14%", + "Documentation Exposure": "39.48%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "DROP_Statement", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "20.0%", + "Control Flow Ratio": "0.0%", "Start Line": 1, - "End Line": 12 - }, + "End Line": 7 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 5, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 1, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [] + }, + "sqlite/dancer2_sqlite/users.sql": { + "1. Artifact Identity": { + "Filename": "users.sql", + "Path": "sqlite/dancer2_sqlite/users.sql", + "Language": "Sqlite", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "sqlite", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .sql)" + }, + "2. Topological Coordinates": { + "X": 2889.07, + "Y": 208.99, + "Z": -10251.99 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 7, + "Documentation LOC": 0, + "Structural Magnitude": 3.14, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.714 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.16%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "46.67%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "39.48%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "Declarative_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "INSERT_Statement", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 13 + "Start Line": 7, + "End Line": 8 }, { - "Function Name": "SELECT_Statement_[Unterminated]", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 14 + "Start Line": 1, + "End Line": 5 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 1, "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -903892,12 +903892,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -903922,7 +903922,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -903938,7 +903938,7 @@ "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, - "Sec Entropy": 0, + "Sec Entropy": 1, "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, @@ -903947,7 +903947,7 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, @@ -903990,9 +903990,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3992.4, + "X": 3992.34, "Y": 161.35, - "Z": 9108.36 + "Z": 9108.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -904688,7 +904688,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "13.9%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -904714,9 +904714,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2509.31, + "X": 2509.28, "Y": -179.88, - "Z": 9667.95 + "Z": 9667.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -904739,7 +904739,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "13.9%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -904848,7 +904848,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -905645,9 +905645,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5412.04, + "X": -5411.91, "Y": -155.19, - "Z": -9041.42 + "Z": -9041.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -905813,9 +905813,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5621.79, + "X": -5621.66, "Y": -246.07, - "Z": -8432.96 + "Z": -8432.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -905970,9 +905970,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5408.12, + "X": -5407.99, "Y": -270.45, - "Z": -8570.93 + "Z": -8570.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -909815,7 +909815,7 @@ "2. Topological Coordinates": { "X": -4378.26, "Y": 152.01, - "Z": 11478.1 + "Z": 11478.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -909991,9 +909991,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -4180.9, + "X": -4180.89, "Y": 110.36, - "Z": 11255.24 + "Z": 11255.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911742,9 +911742,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -2945.6, + "X": -2945.59, "Y": 185.26, - "Z": 11558.71 + "Z": 11558.69 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -912285,9 +912285,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 11750.34, + "X": 11750.31, "Y": -139.01, - "Z": 4724.84 + "Z": 4724.83 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -912466,9 +912466,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -4862.8, + "X": -4862.79, "Y": 90.84, - "Z": 11003.08 + "Z": 11003.06 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913371,9 +913371,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7494.04, + "X": -7494.0, "Y": -57.56, - "Z": -5373.25 + "Z": -5373.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914095,9 +914095,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6938.04, + "X": -6938.01, "Y": 266.93, - "Z": -7014.35 + "Z": -7014.32 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914457,9 +914457,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5858.34, + "X": 5629.11, "Y": 209.11, - "Z": 7151.45 + "Z": 6874.36 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914819,9 +914819,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -5940.61, + "X": -5940.51, "Y": -69.95, - "Z": -8478.22 + "Z": -8478.07 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915543,9 +915543,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -4476.36, + "X": -4476.3, "Y": 175.43, - "Z": -9445.76 + "Z": -9445.64 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915905,9 +915905,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3501.35, + "X": 3501.29, "Y": -26.04, - "Z": 9480.01 + "Z": 9479.86 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916629,9 +916629,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 1897.03, + "X": 1897.0, "Y": 215.25, - "Z": 10001.52 + "Z": 10001.39 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -918803,7 +918803,7 @@ "2. Topological Coordinates": { "X": -3817.97, "Y": 110.97, - "Z": 11834.24 + "Z": 11834.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -919344,9 +919344,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 11807.25, + "X": 11807.22, "Y": 255.88, - "Z": 5628.38 + "Z": 5628.37 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -919525,9 +919525,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -5748.93, + "X": -5748.92, "Y": -33.48, - "Z": 11076.67 + "Z": 11076.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920430,9 +920430,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7628.65, + "X": -7628.61, "Y": -9.01, - "Z": -6239.81 + "Z": -6239.77 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920973,9 +920973,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": -6857.46, + "X": -6857.32, "Y": 220.39, - "Z": -7800.29 + "Z": -7800.12 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921309,7 +921309,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "33.56%", - "Tech Debt Exposure": "50.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.79%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -921335,9 +921335,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5286.18, + "X": -5286.17, "Y": 60.21, - "Z": 10643.91 + "Z": 10643.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -921492,9 +921492,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5481.56, + "X": -5481.55, "Y": 17.77, - "Z": 10923.66 + "Z": 10923.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -921517,7 +921517,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "67.12%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -921626,7 +921626,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -921670,9 +921670,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5299.53, + "X": -5299.52, "Y": 26.93, - "Z": 10443.25 + "Z": 10443.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -921695,7 +921695,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "67.12%", - "Tech Debt Exposure": "100.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -921804,7 +921804,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -921848,9 +921848,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5035.15, + "X": -5035.14, "Y": 1.84, - "Z": 10859.3 + "Z": 10859.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -925700,9 +925700,9 @@ "Identity Proof": "Single Indicator (Ext: .bat)" }, "2. Topological Coordinates": { - "X": 11794.51, + "X": 11794.48, "Y": -200.63, - "Z": 3948.79 + "Z": 3948.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -925857,7 +925857,7 @@ "Identity Proof": "Single Indicator (Ext: .bat)" }, "2. Topological Coordinates": { - "X": 11654.27, + "X": 11654.25, "Y": -263.49, "Z": 3846.88 }, @@ -926376,9 +926376,9 @@ "Identity Proof": "Single Indicator (Ext: .bat)" }, "2. Topological Coordinates": { - "X": 5612.93, + "X": 5610.26, "Y": -64.84, - "Z": 7787.13 + "Z": 7783.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified",