Constitutional Institution · Sovereign Grade
← Institution
The Covenant

The Oath of Perpetual Fidelity

I do solemnly swear — by the honour of my name, the integrity of my house, and the trust of those who came before — to serve the Enterprise with unwavering fidelity, to uphold its Charter as the supreme law of this institution, to preserve its capital across generations, and to place the perpetuity of the whole above the interest of any one.

This oath is binding across all generations of governance

Origins of the Covenant

The Oath of Perpetual Fidelity was first administered at the founding of EATG Global Capital, drawing from the traditions of sovereign fiduciary duty that stretch back to the great institutional houses of Europe and Asia. Its language echoes the covenants of medieval guilds, the charters of early banking dynasties, and the ethical codes of the first joint-stock companies.

The Oath was codified in its current form at the Constitutional Convention of MMXXIV, where it was inscribed as the foundational covenant of the Charter.

MMXXIII · Founding
First Oath Administered
The founding governors swore the original covenant in a closed ceremony
MMXXIV · Constitutional Convention
Charter Ratification
The Oath was codified as Article I of the Charter
MMXXV · Institutional Expansion
Extended to All Fiduciaries
Oath requirement extended to every officer and governor
MMXXVI — Present · Perpetual Enforcement
Continuous Administration
All incoming governors, officers, and fiduciaries swear upon appointment

Articles of the Covenant

Art. I
Fidelity to the Charter

The Oath-Bearer shall hold the Charter as the supreme authority and shall defend its provisions against all challenges, internal or external.

Art. II
Preservation of Capital

The Oath-Bearer shall act always to preserve and enhance the capital of the Enterprise for future generations.

Art. III
Discretion and Silence

The Oath-Bearer shall maintain absolute discretion regarding the affairs of the Enterprise, speaking only as the Charter permits.

Art. IV
Avoidance of Conflict

The Oath-Bearer shall place the interests of the Enterprise above personal gain and shall disclose every potential conflict.

Art. V
Accountability

The Oath-Bearer accepts personal liability for breaches of fiduciary duty, subject to the constitutional enforcement mechanisms.

Art. VI
Perpetual Succession

The Oath binds not only the Oath-Bearer but their appointed successors, creating an unbroken chain of fiduciary responsibility.

Who Has Sworn

Board of Governors
Chairman of the Board
Governor · Sovereign Council
Sworn MMXXIII
Chief Executive Officer
Governor · Executive Council
Sworn MMXXIII
Chief Fiduciary Officer
Governor · Oversight Council
Sworn MMXXIV
Chief Governance Officer
Governor · Constitutional Council
Sworn MMXXIV
Officers & Fiduciaries
Chief Compliance Officer
Independent Officer
Sworn MMXXIV
Chief Risk Officer
Executive Officer
Sworn MMXXIV
Treasurer of the Enterprise
Fiduciary Officer
Sworn MMXXV
Clerk of the Charter
Constitutional Officer
Sworn MMXXV
12 Oath-Bearers · 100% Compliance · Unbroken Chain of Fidelity

Enforcement & Remedies

Constitutional Oversight

The Constitutional Council monitors compliance with the Oath and investigates any alleged breach through confidential proceedings.

Breach Consequences

Removal from office, forfeiture of benefits, and potential personal liability for damages arising from the breach.

Perpetual Bind

The Oath survives the termination of office. Former Oath-Bearers remain bound by confidentiality and non-disparagement obligations.

═══════ const railData = [ { sym: 'COMPLIANCE', status: 'ACTIVE' }, { sym: 'AML/CFT', status: 'OPERATIONAL' }, { sym: 'SANCTIONS', status: 'MONITORED' }, { sym: 'REGULATORY', status: 'COMPLIANT' }, { sym: 'TESTING', status: '100%' }, { sym: 'TRAINING', status: '100%' }, { sym: 'SARS', status: '142' }, { sym: 'ALERTS', status: '2,847' }, { sym: 'INTEGRITY', status: '99.99%' }, { sym: 'CCO', status: 'INDEPENDENT' }, ]; function buildRail() { const track = document.getElementById('railTrack'); if (!track) return; const render = () => railData.map(r => `
${r.sym}${r.status}
` ).join(''); track.innerHTML = render() + render(); } buildRail(); // ═══════════ LIVE DATA SIMULATION ═══════════ function updateDataValue(id, value) { const el = document.getElementById(id); if (!el) return; const old = el.textContent; if (old !== value) { el.textContent = value; el.classList.remove('flash-up', 'flash-down'); void el.offsetWidth; el.classList.add(Math.random() > 0.5 ? 'flash-up' : 'flash-down'); } } setInterval(() => { const alerts = 2840 + Math.floor(Math.random() * 20); updateDataValue('amlAlerts', alerts.toLocaleString()); const sars = 140 + Math.floor(Math.random() * 5); updateDataValue('sarsFiled', sars.toString()); const highRisk = 0; updateDataValue('highRisk', highRisk.toString()); const testing = 100; updateDataValue('testingCompletion', testing.toString() + '%'); }, 5000); // ═══════════ SMOOTH SCROLL ═══════════ document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { const target = document.querySelector(this.getAttribute('href')); if (target) { e.preventDefault(); target.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }); }); (function() { 'use strict'; const triggers = document.querySelectorAll('.sov-trigger'); const megas = document.querySelectorAll('.sov-mega'); const nav = document.getElementById('sovNav'); const mobileToggle = document.getElementById('mobileToggle'); const mobileDrawer = document.getElementById('mobileDrawer'); const mobileTriggers = document.querySelectorAll('.sov-mobile-trigger'); let activeMega = null; let closeTimeout = null; let isMobile = window.innerWidth <= 1024; function openMega(name) { if (isMobile) return; clearTimeout(closeTimeout); megas.forEach(m => m.classList.remove('is-visible')); triggers.forEach(t => t.classList.remove('is-open')); const mega = document.getElementById('mega-' + name); const trigger = document.querySelector('[data-mega="' + name + '"]'); if (mega && trigger) { mega.classList.add('is-visible'); trigger.classList.add('is-open'); trigger.querySelector('.sov-trigger-btn').setAttribute('aria-expanded', 'true'); activeMega = name; } } function closeAllMegas() { megas.forEach(m => m.classList.remove('is-visible')); triggers.forEach(t => { t.classList.remove('is-open'); t.querySelector('.sov-trigger-btn').setAttribute('aria-expanded', 'false'); }); activeMega = null; } function scheduleClose() { clearTimeout(closeTimeout); closeTimeout = setTimeout(closeAllMegas, 180); } triggers.forEach(trigger => { const name = trigger.getAttribute('data-mega'); trigger.addEventListener('mouseenter', () => { openMega(name); }); trigger.addEventListener('mouseleave', () => { scheduleClose(); }); }); megas.forEach(mega => { mega.addEventListener('mouseenter', () => { clearTimeout(closeTimeout); }); }); document.addEventListener('click', (e) => { if (!e.target.closest('.sov-trigger') && !e.target.closest('.sov-mega')) { closeAllMegas(); } }); document.addEventListener('keydown', (e) => { if (e.key === 'Escape') { closeAllMegas(); closeMobileDrawer(); } }); function openMobileDrawer() { mobileDrawer.classList.add('is-open'); mobileToggle.classList.add('is-open'); document.body.style.overflow = 'hidden'; } function closeMobileDrawer() { mobileDrawer.classList.remove('is-open'); mobileToggle.classList.remove('is-open'); document.body.style.overflow = ''; mobileTriggers.forEach(t => { t.classList.remove('is-open'); const links = t.nextElementSibling; if (links) links.classList.remove('is-open'); }); } mobileToggle.addEventListener('click', () => { if (mobileDrawer.classList.contains('is-open')) { closeMobileDrawer(); } else { openMobileDrawer(); } }); mobileTriggers.forEach(trigger => { trigger.addEventListener('click', () => { const isOpen = trigger.classList.contains('is-open'); mobileTriggers.forEach(t => { t.classList.remove('is-open'); const links = t.nextElementSibling; if (links) links.classList.remove('is-open'); }); if (!isOpen) { trigger.classList.add('is-open'); const links = trigger.nextElementSibling; if (links) links.classList.add('is-open'); } }); }); mobileDrawer.addEventListener('click', (e) => { if (e.target.classList.contains('sov-mobile-link')) { closeMobileDrawer(); } }); function checkResponsive() { const wasMobile = isMobile; isMobile = window.innerWidth <= 1024; if (wasMobile && !isMobile) { closeMobileDrawer(); } else if (!wasMobile && isMobile) { closeAllMegas(); } } let resizeTimer; window.addEventListener('resize', () => { clearTimeout(resizeTimer); resizeTimer = setTimeout(checkResponsive, 150); }); let lastScroll = 0; window.addEventListener('scroll', () => { const currentScroll = window.pageYOffset; if (currentScroll > 100) { nav.style.background = 'rgba(5, 7, 10, 0.95)'; } else { nav.style.background = 'rgba(5, 7, 10, 0.88)'; } lastScroll = currentScroll; }, { passive: true }); })();