Counted string format
$$
\begin{array}{l|c|l}
\text{name} & \text{length in bytes} & \text{description} \\
\hline
\text{count} & 1 & \text{count of bytes that follow, range 0-255} \\
\text{string} & 0..255 & \text{string may or may not have NUL terminator} \\
\end{array}
$$
Block format
$$
\begin{array}{l|c|l}
\text{name} & \text{length in bytes} & \text{description} \\
\hline
\text{signature} & 4 & \text{fixed 0xfecaadbe} \\
\text{data} & 248 & \text{the data} \\
\text{checksum} & 4 & \text{checksum of block as 32-bit unsigned value} \\
& & \text{with same endian-ness as signature} \\
\hline
\text{Block} & 256 & \text{total block size} \\
\end{array}
$$