-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanual.html
More file actions
4233 lines (3678 loc) · 266 KB
/
manual.html
File metadata and controls
4233 lines (3678 loc) · 266 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>c-ECO | TFP Manual</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&family=Libre+Baskerville:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
/* --- CORES --- */
--sidebar-width: 320px;
--legal-blue: #1a2b3c;
--legal-blue-dark: #0f1a25;
--gold-accent: #c5a059;
--bg-body: #f8f9fa;
--text-main: #222;
--text-muted: #555;
--border-color: #e0e0e0;
/* --- TIPOGRAFIA (ESCALA) --- */
--font-serif: 'Libre Baskerville', serif;
--font-sans: 'Inter', sans-serif;
/* Tamanhos Padronizados */
--size-h1: 26px; /* Títulos de Artigos/Anexos */
--size-h2: 18px; /* Subtítulos (1.1, 1.2) */
--size-h3: 15px; /* Sub-subtítulos (A., B.) */
--size-body: 16px; /* Texto corrido padrão */
--size-ui: 14px; /* Elementos de UI/Diagramas */
--size-small: 13px; /* Notas de rodapé/Sidebar */
}
* { box-sizing: border-box; }
body {
margin: 0;
background: var(--bg-body);
font-family: var(--font-sans);
color: var(--text-main);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
/* =========================================
SIDEBAR (Navegação)
========================================= */
.sidebar {
width: var(--sidebar-width);
position: fixed;
top: 0;
left: 0;
height: 100vh;
background: #fff;
border-right: 1px solid var(--border-color);
padding: 20px 22px 80px;
overflow-y: auto;
z-index: 1000;
transition: transform .3s ease;
}
.sidebar::-webkit-scrollbar { width: 5px; }
.sidebar::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
.sidebar-top {
display: flex;
align-items: center;
gap: 12px;
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 2px solid var(--gold-accent);
position: sticky;
top: 0;
background: #fff;
z-index: 10;
}
.logo-box {
display: inline-flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
border: 1px solid var(--border-color);
background: #fff;
color: var(--legal-blue);
font-weight: 900;
font-size: 1.4rem;
text-decoration: none;
}
.sidebar-title {
font-weight: 800;
font-size: 12px;
letter-spacing: 1px;
color: var(--legal-blue);
text-transform: uppercase;
line-height: 1.2;
}
.nav-list { list-style: none; padding: 0; margin: 0; }
.nav-section-title {
font-size: 11px;
font-weight: 800;
color: var(--gold-accent);
margin-top: 25px;
margin-bottom: 8px;
text-transform: uppercase;
border-top: 1px solid #eee;
padding-top: 15px;
letter-spacing: 1px;
}
/* Nível 1: Capítulos */
.nav-item-chapter a {
font-weight: 700;
color: var(--legal-blue);
font-size: 13px;
display: block;
padding: 8px 0 4px 0;
text-decoration: none;
border-bottom: 1px solid #f5f5f5;
}
/* Nível 2: Subitens */
.nav-sub-item a {
font-size: 12.5px;
color: #666;
display: block;
padding: 4px 0 4px 12px;
text-decoration: none;
border-left: 2px solid #eee;
margin-left: 2px;
transition: all 0.2s;
}
.nav-sub-item a:hover {
border-left-color: var(--gold-accent);
color: var(--legal-blue);
background: linear-gradient(90deg, rgba(197,160,89,0.05), transparent);
}
/* =========================================
MAIN CONTENT (Área de Texto)
========================================= */
.main-content {
margin-left: var(--sidebar-width);
padding: 60px 50px;
display: flex;
justify-content: center;
min-height: 100vh;
}
.document-page {
background: #fff;
width: 100%;
max-width: 950px; /* Levemente mais largo para o diagrama */
padding: 80px;
box-shadow: 0 4px 30px rgba(0,0,0,0.03);
border: 1px solid #eef0f2;
}
/* --- HIERARQUIA DE TEXTO PADRONIZADA --- */
/* 1. Títulos de Seção/Artigo (Ex: 4. Manual...) */
.article-title {
font-family: var(--font-serif);
font-weight: 700;
font-size: var(--size-h1);
color: var(--legal-blue);
margin-bottom: 25px;
line-height: 1.3;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
}
/* 2. Subtítulos (Ex: 4.1 Scope...) */
.doc-subtitle {
font-family: var(--font-sans);
font-weight: 700;
font-size: var(--size-h2);
color: var(--legal-blue);
margin-top: 40px;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 0.5px;
border-left: 4px solid var(--gold-accent);
padding-left: 15px;
}
/* 3. Sub-Subtítulos (Ex: A. Instrumented Sensing) */
.doc-sub-subtitle {
font-family: var(--font-sans);
font-weight: 700;
font-size: var(--size-h3);
color: var(--text-muted);
margin-top: 25px;
margin-bottom: 10px;
text-transform: uppercase;
padding-left: 0; /* Alinhado à esquerda para limpeza */
}
/* 4. Corpo do Texto (Caput, Parágrafo, Inciso) */
.caput {
font-family: var(--font-serif);
font-size: 18px; /* Destaque leve */
line-height: 1.8;
color: #111;
margin-bottom: 20px;
text-align: justify;
}
.paragraph {
font-family: var(--font-sans);
font-size: var(--size-body);
line-height: 1.7;
color: #333;
margin-bottom: 15px;
text-align: justify;
}
.inciso {
font-family: var(--font-sans);
font-size: var(--size-body);
line-height: 1.6;
color: #444;
margin-left: 30px;
margin-bottom: 10px;
padding-left: 15px;
border-left: 2px solid #f0f0f0;
text-align: justify;
}
/* Listas Padronizadas */
.bullet-list {
margin-left: 20px;
margin-bottom: 20px;
}
.bullet-list li {
font-size: var(--size-body);
color: #444;
margin-bottom: 8px;
line-height: 1.6;
}
/* Separador de Seções */
.article-box {
margin-bottom: 60px;
scroll-margin-top: 40px;
}
/* Título de Capítulo (Divisor Grande) */
.chapter-title {
font-family: var(--font-sans);
font-weight: 800;
font-size: 14px;
color: var(--gold-accent);
text-transform: uppercase;
letter-spacing: 2px;
text-align: center;
margin: 80px 0 40px 0;
padding-bottom: 15px;
border-bottom: 2px solid var(--legal-blue);
}
/* =========================================
DIAGRAMA LAYER 2 (PADRONIZADO)
========================================= */
.layer2-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin: 40px 0;
}
.layer2-core {
grid-column: 2;
grid-row: 1 / span 2;
background: radial-gradient(circle, var(--legal-blue) 0%, var(--legal-blue-dark) 100%);
color: #fff;
border: 4px solid var(--gold-accent);
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 30px;
box-shadow: 0 15px 35px rgba(26, 43, 60, 0.3);
aspect-ratio: 1 / 1;
}
.layer2-core-title {
font-family: var(--font-serif);
font-size: 20px; /* Aumentado */
font-weight: 700;
line-height: 1.2;
}
.layer2-node {
background: #fff;
border: 1px solid #e0e0e0;
border-left: 4px solid var(--legal-blue);
padding: 25px; /* Mais respiro */
box-shadow: 0 5px 20px rgba(0,0,0,0.03);
transition: transform 0.2s ease;
}
.layer2-node:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.node-title {
color: var(--legal-blue);
font-weight: 800;
font-size: 14px; /* Aumentado para corresponder à hierarquia */
text-transform: uppercase;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #f0f0f0;
}
.node-list li {
font-size: var(--size-ui); /* 14px - Leitura confortável */
color: #444;
margin-bottom: 8px;
padding-left: 15px;
position: relative;
}
.node-list li::before {
content: "•";
color: var(--gold-accent);
position: absolute;
left: 0;
font-weight: bold;
}
.layer2-footer {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
margin-top: 30px;
border-top: 2px dashed #e0e0e0;
padding-top: 30px;
}
/* =========================================
TABELAS E FÓRMULAS
========================================= */
.legal-table {
width: 100%;
border-collapse: collapse;
margin: 30px 0;
font-size: var(--size-ui);
}
.legal-table th {
background-color: var(--legal-blue);
color: #fff;
font-weight: 700;
text-align: left;
padding: 12px 15px;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 1px;
}
.legal-table td {
border: 1px solid #e0e0e0;
padding: 12px 15px;
color: #333;
vertical-align: top;
}
.legal-table tr:nth-child(even) { background-color: #fcfcfc; }
.math-box {
background: #f0f4f8;
border-left: 4px solid var(--gold-accent);
padding: 20px;
margin: 30px 0;
font-family: 'Courier New', monospace;
font-weight: 700;
color: var(--legal-blue);
text-align: center;
font-size: 18px; /* Aumentado */
border-radius: 4px;
}
/* =========================================
MOBILE & RESPONSIVO
========================================= */
.mobile-btn { display: none; }
@media (max-width: 1024px) {
.sidebar { transform: translateX(-100%); width: 280px; }
.sidebar.open { transform: translateX(0); box-shadow: 10px 0 50px rgba(0,0,0,0.3); }
.main-content { margin-left: 0; padding: 20px; }
.document-page { padding: 40px 20px; }
.mobile-btn {
display: block;
position: fixed;
bottom: 20px;
right: 20px;
background: var(--legal-blue);
color: #fff;
border: none;
padding: 15px 20px;
font-weight: 800;
z-index: 2000;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
/* Ajuste do Diagrama no Mobile */
.layer2-container, .layer2-footer { grid-template-columns: 1fr; }
.layer2-core { grid-column: 1; grid-row: auto; border-radius: 12px; aspect-ratio: auto; min-height: 200px; }
}
/* =========================================
TRAVA DE ROLAGEM LATERAL (SOMENTE MOBILE)
========================================= */
@media (max-width: 1024px) {
/* 1. Trava a raiz do site SÓ no celular */
html, body {
width: 100%;
max-width: 100vw;
overflow-x: hidden; /* Corta excesso lateral */
position: relative;
overscroll-behavior-x: none; /* Impede o 'samba' do dedo no iOS */
}
/* 2. Reseta as margens que empurram o conteúdo */
.main-content {
margin-left: 0 !important;
padding-left: 20px !important; /* Mantém um respiro interno */
padding-right: 20px !important;
width: 100%;
max-width: 100vw;
overflow-x: hidden;
}
/* 3. Garante que o bloco de texto não vaze */
.document-page {
width: 100%;
max-width: 100%;
margin: 0;
border: none;
box-shadow: none;
}
/* 4. Força tabelas e códigos a terem rolagem interna */
.legal-table, pre, code {
display: block;
width: 100%;
overflow-x: auto;
}
}
/* ============================================================
KIT DE CORREÇÃO MOBILE (Adicione no final do seu CSS)
Isso não afeta o Desktop, só arruma o Celular.
============================================================ */
@media (max-width: 1024px) {
/* 1. TRAVA DE TELA (Adeus "Samba") */
html, body {
width: 100%;
max-width: 100vw; /* Limite absoluto */
overflow-x: hidden; /* Corta excesso lateral */
position: relative; /* Estabiliza */
}
.main-content {
margin-left: 0 !important;
padding: 0 !important;
width: 100%;
overflow-x: hidden;
}
.document-page {
width: 100%;
max-width: 100%;
margin: 0;
padding: 30px 20px; /* Margem interna confortável para celular */
border: none; /* Remove bordas que ocupam espaço */
box-shadow: none;
}
/* 2. PADRONIZAÇÃO DE FONTES (SÓ NO MOBILE)
Aqui forçamos tamanhos legíveis sem serem gigantes */
/* Títulos */
.article-title {
font-size: 22px !important;
line-height: 1.3;
word-wrap: break-word; /* Quebra palavras longas */
}
.doc-subtitle {
font-size: 18px !important;
margin-top: 30px;
}
.doc-sub-subtitle {
font-size: 15px !important;
}
/* Corpo do Texto - Tamanho 16px é o ideal para leitura mobile */
.caput {
font-size: 16px !important;
line-height: 1.6;
text-align: left; /* Justificado no mobile cria buracos no texto */
}
.paragraph, .inciso, .bullet-list li {
font-size: 15px !important;
line-height: 1.6;
text-align: left;
}
.inciso {
margin-left: 15px !important; /* Reduz recuo para ganhar espaço */
padding-left: 10px !important;
}
/* 3. DIAGRAMA LAYER 2 (Transforma em Coluna Única) */
.layer2-container, .layer2-footer {
display: flex !important;
flex-direction: column !important;
gap: 15px !important;
}
.layer2-core {
aspect-ratio: auto !important;
min-height: 180px !important;
border-radius: 12px !important;
margin: 10px 0;
}
/* 4. TABELAS (Cria rolagem interna para não empurrar a tela) */
.legal-table {
display: block;
width: 100%;
overflow-x: auto;
white-space: nowrap;
font-size: 13px !important; /* Reduz um pouco a fonte da tabela */
}
/* ===== SEARCH BOX ===== */
.search-container {
margin-bottom: 20px;
position: sticky;
top: 0;
background: #fff;
z-index: 10;
padding-bottom: 10px;
}
#sidebarSearch {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--border-color);
border-radius: 4px; /* Leve arredondado para parecer moderno */
font-family: 'Inter', sans-serif;
font-size: 14px;
outline: none;
transition: border-color 0.2s;
}
#sidebarSearch:focus {
border-color: var(--gold-accent);
box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}
/* Esconder itens que não batem com a busca */
.nav-item.hidden, .nav-section-title.hidden, .nav-sub-title.hidden {
display: none;
}
}
</style>
</head>
<body>
<!-- Mobile: toggle sidebar -->
<button class="mobile-btn" onclick="document.getElementById('sidebar').classList.toggle('open')">
INDEX
</button>
<!-- Sidebar -->
<aside class="sidebar" id="sidebar">
<div class="sidebar-top">
<a href="index.html" class="logo-box" aria-label="Home">Σ</a>
<div class="sidebar-title">INTEGRATED OPERATIONAL<br>MANUAL (c-ECO)</div>
</div>
</div>
<div class="search-container">
<input type="text" id="sidebarSearch" placeholder="Search Article or Title..." aria-label="Search Index">
</div>
<nav>
<ul class="nav-list">
<li class="nav-section-title">PART I — FOUNDATIONS & ARCHITECTURE</li>
<li class="nav-item nav-item-chapter"><a href="#MO-1">1. General Introduction and Scope</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-1-1">1.1 Objectives of the Operational Manual</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-1-2">1.2 Legal Nature and Prudential Function</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-1-3">1.3 Relationship with c-ECO Statute and TFP Blueprint</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-2">2. Structuring Principles</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-2-1">2.1 Material Primacy of the Earth System</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-2-2">2.2 Pre-Threshold Governance</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-2-3">2.3 Prudential Asymmetry of Uncertainty (σ)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-2-4">2.4 Restoration First</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-3">3. General Architecture of the TFP</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-3-1">3.1 TFP Overview</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-3-2">3.2 Fundamental Variables (P, ΔV, Lr, σ)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-3-3">3.3 Operational Scores (SPS, TRS, RLS)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-3-4">3.4 The Trigger Catalogue</a></li>
<li class="nav-section-title">PART II — DATA, VERIFICATION & CERTIFICATION (DVB)</li>
<li class="nav-item nav-item-chapter"><a href="#MO-4">4. Manual for Data Custodians — Position (P)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-4-1">4.1 Scope and Purpose</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-4-2">4.2 Legal Definition of Position (P)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-4-3">4.3 Data Sources and Required Evidence</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-4-4">4.4 Data Collection Procedures</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-4-5">4.5 QA/QC and Treatment of Uncertainty</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-5">5. Certification Procedures</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-5-1">5.1 Purpose of Certification</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-5-2">5.2 Eligibility and Qualification Criteria</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-5-3">5.3 Initial Certification Process</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-5-4">5.4 Maintenance, Monitoring, and Revocation</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-6">6. Mandatory Training</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-6-1">6.1 Training Objectives</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-6-2">6.2 Module Structure</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-6-3">6.3 Assessment and Approval</a></li>
<li class="nav-section-title">PART III — TEMPORAL DYNAMICS & TRAJECTORY</li>
<li class="nav-item nav-item-chapter"><a href="#MO-7">7. Procedures for the Collection and Calculation of Velocity (ΔV)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-7-1">7.1 Normative Function of Velocity within the TFP</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-7-2">7.2 Definition of the Reference Period (T_ref)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-7-3">7.3 Collection of Historical Position Data (P_initial and P_final)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-7-4">7.4 Calculation of Absolute Positional Change (ΔP)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-7-5">7.5 Calculation of Velocity (ΔV)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-7-6">7.6 Treatment of Uncertainty in Velocity Calculations (σ_ΔV)</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-8">8. Trajectory Risk and Temporal Escalation</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-8-1">8.1 Concept of Trajectory in Earth System Governance</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-8-2">8.2 From Velocity to Trajectory Risk Score (TRS)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-8-3">8.3 Temporal Asymmetry and Irreversibility Bias</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-8-4">8.4 Escalation Logic Based on Trajectory</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-8-5">8.5 Auditability and Traceability of Temporal Calculations</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-8-6">8.6 Scientific and Prudential Rationale </a></li>
<li class="nav-section-title">PART IV — REVERSIBILITY, LIQUIDITY & GUARANTEES</li>
<li class="nav-item nav-item-chapter"><a href="#MO-9"> 9. Procedures for the Calculation and Application of Reversibility Liquidity (Lr)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-9-1">9.1 Normative Function of Reversibility Liquidity (Lr)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-9-2">9.2 Conceptual Structure of Lr</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-9-3">9.3 Identification of Resources Mobilizable Immediately (Rmi)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-9-4">9.4 Estimation of the Projected Technical Cost of Containment or Reversal (Ct)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-9-5">9.5 Prudential Treatment of Uncertainty in Lr Calculations (σ_Lr)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-9-6">9.6 Threshold Effects and Prudential Interpretation</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-9-7">9.7 Auditability, Traceability, and Legal Effect</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-9-8">9.8 Scientific and Prudential Rationale</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-10">10. Financial Instruments, Capital Safeguards, and Legal Finality (Level 4)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-10-1">10.1 Restoration Fund</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-10-2">10.2 Types of Contractual Guarantees</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-10-3">10.3 Prudential Margin Call Mechanism</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-10-4">10.4 Automatic Asset Conversion</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-10-5">10.5 General Principles of Level 4 Financial Finality</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-10-6">10.6 Backstop Mechanisms (Reinsurance and Sovereignty)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-10-7">10.7 Emergency Technical Arbitration Protocol (ETAP)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-10-8">10.8 Dynamic Indexation of Restoration Capital</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-10-9">10.9 Orphan Asset Management and Operational Immunity</a></li>
<li class="nav-section-title">PART V — AUDIT & DUE PROCESS</li>
<li class="nav-item nav-item-chapter"><a href="#MO-11">11. Continuous QA/QC</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-12">12. External Audits</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-13">13. Transparency & Ledger</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-14">14. Qualified Contestation</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-15">15. Execution During Review</a></li>
<li class="nav-section-title">PART VI — GOVERNANCE</li>
<li class="nav-item nav-item-chapter"><a href="#MO-16-GOV">16. Distributed Intelligence</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-17-CAL">17. Calibration Council</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-18-ARB">18. Specialized Arbitration</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-19">19. Execution Continuity</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-20">20. Scientific Validation</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-21">21. Legal Insulation</a></li>
<li class="nav-section-title">PART VII — PRUDENTIAL LEVELS</li>
<li class="nav-item nav-item-chapter"><a href="#MO-22">22. Trigger Architecture</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-23">23. Level 1 (Watch)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-24">24. Level 2 (Amber)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-25">25. Level 3 (Safe Mode)</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-26">26. Level 4 (Restoration First)</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-27">27. Re-entry & Stabilization</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-28">28. Traceability</a></li>
<li class="nav-section-title">PART VIII — RESTORATION PROVIDERS</li>
<li class="nav-item nav-item-chapter"><a href="#MO-29">29. Certification & Supervision</a></li>
<li class="nav-section-title">PART IX — REPORTING</li>
<li class="nav-item nav-item-chapter"><a href="#MO-30">30. Reporting (IFRS S2 / TNFD)</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-31">31. Global Alignment</a></li>
<li class="nav-section-title">PART X — COMMUNICATION</li>
<li class="nav-item nav-item-chapter"><a href="#MO-32">32. Stakeholder Engagement</a></li>
<li class="nav-item nav-item-chapter"><a href="#MO-33">33. Lobbying & Influence</a></li>
<li class="nav-section-title">TECHNICAL ANNEXES</li>
<li class="nav-item nav-sub-item"><a href="#MO-ANEXO-A">Annex A — TFP Governance Blueprint</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-ANEXO-B">Annex B — TFP Risk Scoring & Trigger Catalogue</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-ANEXO-C">Annex C — Level 4 Legal & Financial Safeguards</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-ANEXO-D">Annex D — Glossary</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-ANEXO-E">Annex E — Scientific and Normative References/a></li>
<li class="nav-item nav-sub-item"><a href="#MO-ANEXO-F">Annex F — Prudential Checklists</a></li>
<li class="nav-item nav-sub-item"><a href="#MO-ANEXO-G">Annex G — Model Clauses</a></li>
<li style="height: 100px;"></li>
</ul>
</nav>
</aside>
<main class="main-content">
<article class="document-page">
<section id="CECO-IOM-001" class="article-box">
<span class="ai-id">[CECO-IOM-001]</span>
<div class="chapter-title">PART I — NORMATIVE FOUNDATIONS AND SYSTEM ARCHITECTURE</div>
<section id="MO-1" class="article-box">
<h2 class="article-title">1. General Introduction and Scope of the Manual</h2>
<div class="caput">
This Operational Manual constitutes an integral component of the c-ECO Systemic Governance framework. Its purpose is to translate the normative architecture established by the c-ECO Statute and the Threshold Function Protocol (TFP) into concrete, auditable, and operational procedures capable of governing economic activity under conditions of systemic, non-linear, and potentially irreversible risk.
</div>
<div class="paragraph">
The Manual does not create new legal obligations, nor does it substitute statutory or contractual instruments. Rather, it performs a prudential function: it specifies how legally binding pre-threshold governance duties are operationalized in practice, through standardized procedures for data collection, certification, monitoring, audit, intervention, and restoration. In this sense, the Manual operates as technical-normative infrastructure, incorporated by reference into contracts, licenses, and institutional adherence regimes, and binding to the extent expressly recognized by the c-ECO Statute and the TFP.
</div>
<div class="paragraph">
The scope of this Manual is intentionally systemic. It applies across sectors, jurisdictions, and legal forms wherever the c-ECO framework is incorporated, whether through private contracts, institutional governance structures, financial arrangements, or hybrid public-private instruments. Its provisions are designed to ensure consistency, predictability, and integrity in the application of the TFP, while preserving adaptability to scientific evolution and sector-specific conditions through Technical Annexes.
</div>
<h3 id="MO-1-1" class="doc-subtitle">1.1 Objectives of the Operational Manual</h3>
<div class="paragraph">
The primary objective of this Manual is to ensure that the operation of the TFP remains faithful to its prudential rationale: the prevention of irreversible harm through ex ante detection, measurement, and intervention. To that end, the Manual establishes standardized procedures that reduce discretion, mitigate strategic behavior, and preserve the epistemic integrity of the data and methodologies upon which prudential classifications and automatic effects depend.
</div>
<div class="paragraph">
A secondary, but equally important, objective is institutional legitimacy. By codifying procedures for certification, audit, transparency, and contestation, the Manual provides the due process layer necessary for the c-ECO framework to function credibly within financial markets, regulatory environments, and arbitration fora. The Manual thus serves as the connective tissue between scientific signals, legal effects, and institutional accountability.
</div>
<h3 id="MO-1-2" class="doc-subtitle">1.2 Legal Nature and Prudential Function</h3>
<div class="paragraph">
The legal nature of this Manual is neither purely regulatory nor merely informational. It occupies an intermediate category characteristic of contemporary prudential governance: a binding technical instrument whose authority derives from explicit incorporation by higher-order legal acts, rather than from autonomous normative power.
</div>
<div class="paragraph">
Within the c-ECO framework, the Manual functions as a prudential implementation instrument. Its provisions govern the “how” of compliance, not the “whether” of obligation. Compliance with the Manual is therefore a condition of prudential validity for the operation of the TFP, the maintenance of the c-ECO Seal, and the legitimacy of automated classifications, triggers, and interventions. Failure to comply with its procedures constitutes a procedural breach with prudential consequences, irrespective of the absence of material harm or economic loss.
</div>
<div class="paragraph">
Importantly, the Manual is not static. Its technical content is subject to revision, calibration, and update through the governance mechanisms defined in the Statute and the TFP, ensuring that operational practices remain aligned with advances in Earth system science, risk modeling, and auditing methodologies, without requiring legislative amendment.
</div>
<h3 id="MO-1-3" class="doc-subtitle">1.3 Relationship with the c-ECO Statute and the TFP Blueprint</h3>
<div class="paragraph">
This Manual must be read in conjunction with the c-ECO Systemic Governance Statute and the Threshold Function Protocol (TFP), to which it is hierarchically subordinate and functionally complementary. The Statute establishes the legal authority, principles, and institutional architecture of the c-ECO regime. The TFP defines the mathematical, temporal, and prudential logic through which systemic risk is identified and acted upon. The Manual, in turn, operationalizes that logic.
</div>
<div class="paragraph">
The TFP Blueprint provides the conceptual and functional design of the protocol, including its variables, scores, trigger mechanisms, and prudential bands. This Manual gives that blueprint operational reality. It specifies how variables are measured, how uncertainty is treated, how reversibility is assessed, how audits are conducted, and how interventions are executed. In doing so, it ensures that the translation from scientific signal to legal effect is neither opaque nor discretionary, but traceable, auditable, and contestable within defined limits.
</div>
</section>
<section id="MO-2" class="article-box">
<h2 class="article-title">2. Structuring Principles of the c-ECO Framework</h2>
<h3 id="MO-2-1" class="doc-subtitle">2.1 Material Primacy of the Earth System</h3>
<div class="caput">
At the core of the c-ECO framework lies the principle of material primacy of the Earth system. This principle recognizes that legal, economic, and institutional arrangements are ultimately constrained by biophysical realities that are non-negotiable and, in certain conditions, irreversible. Legal validity and contractual performance cannot be meaningfully assessed in abstraction from these material limits.
</div>
<div class="paragraph">
Within the c-ECO regime, this principle operates as a foundational constraint. It does not dictate outcomes, nor does it prescribe specific environmental standards. Instead, it establishes that proximity to biophysical thresholds and trajectories toward irreversibility are legally relevant facts that condition the permissibility of continued execution. The Manual reflects this primacy by requiring that all operational procedures be oriented toward detecting and responding to material risk before irreversible thresholds are crossed.
</div>
<h3 id="MO-2-2" class="doc-subtitle">2.2 Pre-Threshold Governance</h3>
<div class="paragraph">
Traditional legal frameworks rely predominantly on ex post mechanisms: liability, remediation, and compensation after harm has occurred. The c-ECO framework is premised on the recognition that such mechanisms are structurally inadequate in the face of systemic risks characterized by non-linearity, time lag, and irreversibility.
</div>
<div class="paragraph">
Pre-threshold governance addresses this deficiency by shifting the locus of legal relevance upstream, to the zone where intervention remains possible and effective. The Manual operationalizes this shift by embedding continuous monitoring, early warning signals, and automatic prudential responses into routine governance processes. Decisions are thus conditioned not on realized damage, but on certified trajectories toward unacceptable systemic states.
</div>
<h3 id="MO-2-3" class="doc-subtitle">2.3 Prudential Asymmetry of Uncertainty (σ)</h3>
<div class="paragraph">
Uncertainty is an inherent feature of complex systems. The c-ECO framework does not seek to eliminate uncertainty, but to govern it prudentially. The principle of asymmetrical uncertainty holds that uncertainty must never be used to justify inaction where the potential consequences include irreversible harm.
</div>
<div class="paragraph">
Operationally, this principle requires that uncertainty be treated conservatively. Margins of error contract operational space rather than expand it; confidence intervals are applied in the direction of risk; and worst-case plausible scenarios are privileged over optimistic projections. The Manual embeds this principle across all procedures involving data collection, modeling, and score calculation, ensuring that uncertainty functions as a trigger for precaution, not as a shield against responsibility.
</div>
<h3 id="MO-2-4" class="doc-subtitle">2.4 Restoration First</h3>
<div class="paragraph">
The principle of “Restoration First” represents a departure from conventional enforcement logics that prioritize economic recovery or contractual enforcement over material repair. Under the c-ECO framework, when a certified risk of irreversibility emerges, the preservation of systemic reversibility takes precedence over financial performance, contractual expectations, or creditor hierarchy.
</div>
<div class="paragraph">
This principle is operationalized most explicitly at the highest prudential level, but it informs the entire architecture of the Manual. Procedures for liquidity, guarantees, intervention, and execution are designed to ensure that resources are available, mobilizable, and legally protected for restoration when needed. The Manual thus embeds restoration not as a remedial afterthought, but as a central organizing objective of systemic governance.
</div>
</section>
<section id="MO-3" class="article-box">
<h2 class="article-title">3. General Architecture of the Threshold Function Protocol (TFP)</h2>
<h3 id="MO-3-1" class="doc-subtitle">3.1 Overview of the TFP</h3>
<div class="caput">
The Threshold Function Protocol (TFP) is the core prudential mechanism of the c-ECO framework. It functions as a dynamic interface between Earth system science, risk assessment, and legal enforceability. Rather than relying on static thresholds or binary compliance determinations, the TFP evaluates continuous trajectories across multiple dimensions of risk and reversibility.
</div>
<div class="paragraph">
The TFP operates ex ante. It produces classifications and effects automatically, based on certified data and predefined functions, without discretionary intervention by managers, regulators, or auditors. The Manual ensures that this automation remains technically sound, legally defensible, and institutionally accountable.
</div>
<h3 id="MO-3-2" class="doc-subtitle">3.2 Fundamental Variables (P, ΔV, Lr, σ)</h3>
<div class="paragraph">
The TFP is structured around a set of core variables that capture different dimensions of systemic risk. <strong>Position (P)</strong> measures proximity to relevant biophysical or systemic limits. <strong>Velocity (ΔV)</strong> captures the temporal dimension of change, indicating whether the system is moving toward or away from those limits, and at what rate. <strong>Reversibility Liquidity (Lr)</strong> assesses the availability and mobilizability of resources required to reverse or contain harmful trajectories. <strong>Uncertainty (σ)</strong> modulates all other variables, ensuring prudential conservatism.
</div>
<div class="paragraph">
The Manual defines standardized procedures for measuring, certifying, and combining these variables, ensuring consistency across sectors and applications.
</div>
<h3 id="MO-3-3" class="doc-subtitle">3.3 Operational Scores (SPS, TRS, RLS)</h3>
<div class="paragraph">
From these variables, the TFP derives operational scores that enable classification, comparison, and trigger activation. The <strong>Safe Operating Space Proximity Score (SPS)</strong>, <strong>Trajectory Risk Score (TRS)</strong>, and <strong>Reversibility Liquidity Score (RLS)</strong> function as composite indicators that translate complex system dynamics into legally actionable signals.
</div>
<div class="paragraph">
The Manual specifies how these scores are calculated, audited, disclosed, and used, ensuring that they remain intelligible to technical experts while legally robust for contractual and institutional use.
</div>
<h3 id="MO-3-4" class="doc-subtitle">3.4 The Trigger Catalogue</h3>
<div class="paragraph">
The Trigger Catalogue defines the conditions under which prudential bands are activated and automatic effects occur. It embodies the logic of graduated, proportional, and non-discretionary response that characterizes the c-ECO framework. The Manual ensures that trigger activation is procedurally sound, transparently recorded, and resistant to manipulation or delay.
</div>
</section>
<div class="chapter-title">PART II — DATA, VERIFICATION & CERTIFICATION (DVB)</div>
<section id="MO-4" class="article-box">
<h2 class="article-title">4. Manual for Data Custodians — Position (P)</h2>
<h3 id="MO-4-1" class="doc-subtitle">4.1 Scope and Purpose</h3>
<div class="caput">
This Manual specifies the mandatory operational standard for the capture, preservation, certification, and submission of raw inputs feeding the Position variable (P) within the Threshold Function Protocol (TFP). It is drafted as epistemic infrastructure: it defines how observations become legally admissible technical facts without collapsing into discretion, narrative reporting, or ex post rationalization.
</div>
<div class="paragraph">
The Custodian’s task is not “data administration” in the ordinary sense; it is the maintenance of a time-consistent, tamper-evident, reconstructible signal capable of supporting prudential classification and automated contractual effects.
</div>
<div class="paragraph">
Accordingly, this Manual imposes:
</div>
<div class="inciso">I — continuous measurement requirements (as opposed to episodic sampling);</div>
<div class="inciso">II — chain-of-custody constraints (sensor → extraction → attestation → hashing → ledger);</div>
<div class="inciso">III — minimum metadata completeness sufficient to reproduce P and its uncertainty envelope; and</div>
<div class="inciso">IV — procedural triggers that convert any integrity deficit into an escalation event (reinforced audit, incident logging, or data invalidation), as defined in the applicable Technical Annex.</div>
<div class="paragraph">
The overriding purpose is to ensure that the DVB layer produces a dataset that is scientifically interpretable and legally enforceable under conditions of systemic stress.
</div>
<h3 id="MO-4-2" class="doc-subtitle">4.2 Legal Definition of Position (P)</h3>
<div class="caput">
(P) is the TFP’s legally operative representation of a system’s measurable state relative to a sector-specified Safe Operating Space (SOS) boundary. It is not a generic environmental indicator, nor a compliance proxy; it is a boundary-referenced, context-locked metric whose meaning is defined by a sectoral SPS specification and its calibration parameters (including units, spatial domain, temporal resolution, and admissible methodologies).
</div>
<div class="paragraph">
<strong>Legal function.</strong> P exists to impose a non-negotiable material constraint upon contractual execution: it is the primary axis by which the TFP translates biophysical proximity into prudential relevance. The closer P is to the boundary, the stronger the regime’s prudential sensitivity and the narrower the latitude for interpretive ambiguity. In doctrinal terms, P operationalizes the principle that contractual validity cannot outrun material reversibility: increasing proximity increases legal salience, thereby tightening audit frequency, uncertainty treatment, and escalation thresholds.
</div>
<div class="paragraph">
<strong>Non-discretionary construction.</strong> P must be calculated from certified inputs under the procedures below. Any post hoc modification of datasets, sensor settings, filters, model versions, or boundary specifications—unless recorded, versioned, and independently verifiable—constitutes an integrity incident. In this Manual, “measurement” is inseparable from “admissibility”: what cannot be reconstructed cannot be used.
</div>
<h3 id="MO-4-3" class="doc-subtitle">4.3 Data Sources and Required Evidence</h3>
<div class="caput">(Position Variable — P)</div>
<h4 class="doc-sub-subtitle">4.3.1 Normative Framing of Position (P) and Role of the Calibration Council</h4>
<div class="paragraph">
The variable Position (P) expresses the measured distance of a system, asset, or operation from the applicable Safe Operating Space (SOS) boundary, as formally defined, calibrated, and periodically reviewed by the Calibration Council.
</div>
<div class="paragraph">
P is not a generic environmental indicator, performance metric, or sustainability proxy. It is a context-specific, boundary-referenced prudential signal, whose meaning is inseparable from:
</div>
<div class="inciso">I — the sectoral and territorial SOS definition;</div>
<div class="inciso">II — the scientific calibration parameters approved by the Calibration Council; and</div>
<div class="inciso">III — the authorized measurement methodologies specified in the applicable Technical Annex.</div>
<div class="paragraph">
Accordingly, no data source is admissible for the calculation of P unless it is explicitly compatible with the SOS definition and calibration parameters validated by the Calibration Council. This ensures that P reflects material proximity to systemic limits, rather than abstract environmental performance or discretionary corporate reporting.
</div>
<div class="paragraph">
The Calibration Council performs three non-substitutable functions with respect to P:
</div>
<ul class="bullet-list">
<li><strong>1. Definition and validation:</strong> of SOS boundaries, including thresholds, units, spatial scope, and temporal resolution;</li>
<li><strong>2. Authorization:</strong> of admissible data classes and methodological pathways (direct sensing, model-mediated inference, or document-based evidence);</li>
<li><strong>3. Oversight:</strong> of methodological coherence over time, preventing silent metric drift, opportunistic re-framing, or boundary substitution.</li>
</ul>
<div class="paragraph">
Data Custodians operate strictly downstream of these determinations and possess no authority to redefine, reinterpret, or substitute SOS boundaries or methodological assumptions.
</div>
<h4 class="doc-sub-subtitle">4.3.2 General Admissibility Requirements</h4>
<div class="paragraph">
To be admissible for the calculation of P, any data source must cumulatively satisfy the following requirements:
</div>
<ul class="bullet-list">
<li><strong>1. Scientific Compatibility:</strong> The data must be capable of measuring or inferring the specific biophysical variable(s) associated with the SOS boundary defined by the Calibration Council.</li>
<li><strong>2. Traceability and Lineage:</strong> The origin, transformation, and custody of the data must be fully traceable, enabling reconstruction of the measurement pathway from raw signal to final P value.</li>
<li><strong>3. Temporal and Spatial Integrity:</strong> The data must correspond to the correct spatial domain (site, basin, region) and temporal resolution defined in the SPS specification.</li>
<li><strong>4. Auditability and Reproducibility:</strong> A technically competent third party must be able to reproduce the dataset, the applied transformations, and the resulting P value within the defined uncertainty bounds.</li>
</ul>
<div class="paragraph">
Failure to satisfy any of these conditions renders the data inadmissible, triggering substitution rules, conservative adjustments, or escalation as defined in the Technical Annex.
</div>
<h4 class="doc-sub-subtitle">4.3.3 Classes of Data Sources and Required Evidence</h4>
<div class="paragraph"><strong>A. IoT Sensors and Remote Sensing Systems (Primary and Preferred Evidence Pathway)</strong></div>
<div class="paragraph">
Instrumented sensing constitutes the primary evidentiary pathway for determining P wherever technically feasible.
</div>
<div class="inciso">
<strong>Required Evidence (Cumulative):</strong>
<ul class="bullet-list">
<li>Raw data logs (unaltered), including timestamps, sampling frequency, geolocation or bounded spatial reference, and sensor identifiers;</li>
<li>Calibration logs, including: calibration certificates (accredited), calibration date, interval, and stated uncertainty (σ_sensor);</li>
<li>Maintenance logs, documenting: physical inspections, repairs/replacements, firmware/configuration changes, power interruptions;</li>
<li>Sensor integrity records, including anomaly detection outputs, drift analysis, and reference checks.</li>
</ul>
</div>
<div class="inciso">
<strong>Additional Requirements:</strong> Sensor configuration parameters must be versioned and hashed. Any interruption must be logged as a signal integrity event. Sensors lacking current calibration or complete logs cannot be used to compute P.
</div>
<div class="paragraph"><strong>B. Scientific Models (Secondary Pathway, Subject to Authorization)</strong></div>
<div class="paragraph">
Scientific models may be used to infer P only when direct measurement is impracticable and only if explicitly authorized by the Calibration Council.
</div>
<div class="inciso">
<strong>Required Evidence (Cumulative):</strong>
<ul class="bullet-list">
<li>Model documentation: methodology, assumptions, domain of validity, limitations;</li>
<li>Peer-reviewed validation or equivalent scientific endorsement recognized by the Council;</li>
<li>Model version control: version identifier, parameter sets, calibration datasets;</li>
<li>Input datasets (documented and traceable) and Output datasets (calculated P values, uncertainty ranges/σ_model).</li>
</ul>
</div>
<div class="inciso">
<strong>Prudential Constraints:</strong> The upper-bound (worst-case) estimate must be used. Retroactive updates are prohibited without audit documentation. Silent model drift constitutes a material integrity breach.
</div>
<div class="paragraph"><strong>C. Corporate and Institutional Documents (Tertiary and Constrained Pathway)</strong></div>
<div class="paragraph">
Corporate documents may be used only as supporting or fallback evidence, never as a substitute for direct sensing or validated models where feasible. Eligible documents include IFRS S2 disclosures, TNFD-aligned reports, and primary resource-use records.
</div>
<div class="inciso">
<strong>Required Evidence (Cumulative):</strong> Clear linkage to site-level primary records; Documentation of methods; Audit signatures; Explicit mapping to the SOS boundary variable.
</div>
<div class="inciso">
<strong>Limitations:</strong> Narrative disclosures, aggregated averages, or aspirational targets are inadmissible. Corporate documents do not define P; they only inform it under strict constraints.
</div>
<h4 class="doc-sub-subtitle">4.3.4 Hierarchy of Evidence and Conflict Resolution</h4>
<div class="paragraph">
Where multiple data sources exist, the following hierarchy applies:
</div>
<ul class="bullet-list">
<li>1. Certified IoT and remote sensing data;</li>
<li>2. Calibration Council–authorized scientific models;</li>
<li>3. Verified site-level corporate records.</li>
</ul>
<div class="paragraph">
In the event of conflict, the source indicating <strong>greater proximity to the SOS boundary prevails</strong>, consistent with the principle of prudential asymmetry.
</div>
<h4 class="doc-sub-subtitle">4.3.5 Admissibility, Escalation, and Record Preservation</h4>
<div class="paragraph">
All data sources, evidence packages, and admissibility determinations must be logged, hashed, time-stamped, and preserved for full historical reconstruction. Any failure in integrity triggers conservative adjustment of P, reinforced audit requirements, or procedural escalation.
</div>
<h3 id="MO-4-4" class="doc-subtitle">4.4 Data Collection Procedures</h3>
<div class="caput">(Operationalization of Position (P) within the DVB Layer)</div>
<h4 class="doc-sub-subtitle">4.4.1 Normative Nature of Data Collection under the TFP</h4>
<div class="paragraph">
Under the c-ECO framework, data collection is not a neutral technical activity. It is a juridically consequential act, as raw empirical signals constitute the first link in the causal chain that may trigger automatic prudential effects under the Threshold Function Protocol (TFP).
</div>
<div class="paragraph">
Accordingly, data collection procedures are governed by the principles of:
</div>