16
Files
- 1eb08b5ec17d874d76f0739e82dcc50aa71979
The file is a zlib-compressed data stream, identified by the `78 01` header bytes which indicate standard deflate compression with a 32K window size. This format is commonly used in various application protocols and archive formats to store compressed payloads efficiently. The small size (222 bytes) suggests it contains a relatively short block of original data.
- 32669e0cf44410edcaf25bf801c192ea06c569
The file is a gzip-compressed archive, identified by the standard magic number `1f 8b` (represented here as `78 01` in some contexts or potentially a zlib header variant depending on interpretation, but `78 01` specifically indicates a **zlib** compressed stream with default compression). The hex header `78 01` corresponds to the zlib format's initial bytes, where `78` denotes the deflate method and `01` specifies the compression level. This is not a raw gzip file (which starts with `1f 8b`) but rather a zlib-wrapped compressed data stream.