CoolFace
Datasetpublic

introspector/retro-sync

Retro-Sync: Hurrian Hymn h.6 — 71-Shard NFT Collection The world's oldest surviving notated music (~1400 BC, Ugarit) encoded as a multi-layered NFT collection with ZK proofs and steganographic embedding. Collection 71 DA51 CBOR shards — one for each integer 1..71 (the crown prime). 20 generator shards (primes ≤ 71) carry the SSP interval structure. 51 derived shards (composites) carry content determined by prime factorization. Layer Content Format… See the full description on the dataset page: https://huggingface.co/datasets/introspector/retro-sync.

sourceHugging Faceagpl-3.0updated 6mo agoView on Hugging Face
0likes324downloads
Dataset Card

Retro-Sync: Hurrian Hymn h.6 — 71-Shard NFT Collection

The world's oldest surviving notated music (~1400 BC, Ugarit) encoded as a multi-layered NFT collection with ZK proofs and steganographic embedding.

Collection

71 DA51 CBOR shards — one for each integer 1..71 (the crown prime). 20 generator shards (primes ≤ 71) carry the SSP interval structure. 51 derived shards (composites) carry content determined by prime factorization.

LayerContentFormat
SourceBabylonian notation, interval mappingtext
NotationLilyPond score (West 1994).ly
ArtifactsMIDI, PDF score, WAV audiobase64 in CBOR
WitnessesCompilation chain (5 steps)JSON
EigenspaceEarth/Spoke/Hub decompositionnumeric
MetadataTablet, scribe, tuning, deitystructured
ReferencesWikipedia, scholarly, LilyPond docsURLs
YouTubePrivate audio comparison sourcesURLs
PipelineSOP, erdfa CFT, boustrophedon, Cl(15)text
ZK ProofGroth16/BN254, MiMC Merkle treeJSON

Structure

shards/           # 595 erdfa CFT-decomposed shards
nft71/            # 71 DA51 CBOR shards (real data, 11.2 MB)
  ├── 01.cbor     # reserved
  ├── 02.cbor     # ★ nīš tuḫrim (p2)
  ├── ...
  ├── 10.cbor     # WAV audio (8.4 MB base64)
  ├── ...
  ├── 71.cbor     # ★ colophon/crown (p71)
  └── manifest.json
proof/
  └── nft71_proof.json  # Groth16 proof
witnesses/
  └── hurrian_h6_witness.json

Decoding

Each shard is a DA51-tagged CBOR envelope:

  • Bytes 0-1: 0xDA 0x51 (magic)
  • Bytes 2-9: SHA-256 prefix (CID stub)
  • Bytes 10+: CBOR payload
python
import cbor2, json
with open("nft71/02.cbor", "rb") as f:
    raw = f.read()
    magic = raw[:2]  # b'\xda\x51'
    cid = raw[2:10].hex()
    payload = cbor2.loads(raw[10:])
    print(json.dumps(payload, indent=2))

ZK Verification

The Groth16 proof verifies:

  1. 1.Prover knows all 71 shard hashes
  2. 2.All form a valid MiMC Merkle tree
  3. 3.Eigenspace commitment matches (100% Earth)
  4. 4.Crown shard (p71) is unique

License

AGPL-3.0-or-later. The underlying Hurrian composition is public domain (~3400 years old).

Links