Sistema de blocos para criar outras funções
Block system for creating other functions
Codificação, criptografia aplicada e distribuição conservativa de valor — a partir de regras mínimas sobre estruturas finitas.
Encoding, applied cryptography and conservative value distribution — from minimal rules over finite structures.
Toda função do Blockz10 nasce do mesmo gesto: blocos discretos, uma estrutura fixa e uma regra local. A regra aplicada à estrutura gera a função — compressão, decriptação-prêmio ou redistribuição de valor.
Every Blockz10 function is born from the same gesture: discrete blocks, a fixed structure and a local rule. The rule applied to the structure yields the function — compression, prize decryption or value redistribution.
Cada bloco carrega um valor e um endereço — um caractere e/1, ou uma célula de valor 10 apontando para um nível.
Each block carries a value and an address — an e/1 character, or a value-10 cell pointing to a level.
Uma string de 64 símbolos ou uma pirâmide de 15 blocos em 5 níveis. Nunca aberto, nunca infinito — o fechamento é o que permite conservação.
A 64-symbol string or a pyramid of 15 blocks in 5 levels. Never open, never infinite — closure is what enables conservation.
Contar repetições, dividir totais, redistribuir cotas. Regras simples o bastante para caber num contrato — e serem auditáveis.
Count repetitions, divide totals, redistribute quotas. Rules simple enough to fit in a contract — and be auditable.
Compressão sem perda, loterias verificáveis, splits determinísticos de pagamento, tokenomics de sistema fechado.
Lossless compression, verifiable lotteries, deterministic payment splits, closed-system tokenomics.
Sequências de e viram um dígito de contagem; 1 permanece literal: eee11 → 311. Como e e 1 são dígitos hexadecimais válidos, uma string {e,1} de 64 caracteres é simultaneamente uma chave privada Ethereum sintaticamente válida e uma mensagem comprimível.
Runs of e become a counting digit; 1 stays literal: eee11 → 311. Since e and 1 are valid hex digits, a 64-char {e,1} string is simultaneously a syntactically valid Ethereum private key and a compressible message.
15 blocos de valor 10 em 5 níveis, mais o bloco de origem (nível 0, valor 0). Total: 150. Cada nível divide seu total entre níveis receptores. Diferente da pirâmide financeira clássica, o sistema é fechado e conservativo: o topo vale zero, o valor flui para a base e a soma sempre retorna — a menos da poeira de arredondamento, que é rastreada, não perdida.
15 value-10 blocks in 5 levels, plus the origin block (level 0, value 0). Total: 150. Each level divides its total among receptor levels. Unlike the classic financial pyramid, the system is closed and conservative: the top holds zero, value flows to the base and the sum always returns — up to rounding dust, which is tracked, not lost.
60 segundos: o conceito, a codificação, a pirâmide e as aplicações.
60 seconds: the concept, the encoding, the pyramid and the applications.
# Python >>> from blockz10 import encode, decode, Block155 >>> encode("eee11") '311' >>> r = Block155().distribute() >>> r.total_in, r.conserved (150.0, True)
Implementações de referência em Python e JavaScript, com 12 testes cobrindo round-trip da codificação e conservação de valor. Especificação formal completa em SPECIFICATION.md.
Reference implementations in Python and JavaScript, with 12 tests covering encoding round-trips and value conservation. Full formal specification in SPECIFICATION.md.