§
    1;ji²  ã                   ó–   — d Z ddlZej        xZZej        Zej        Zej        Zej        Zej        Zedddfd„Z	ej
        Z
ej        ZdS )zCFunctions to compress and decompress data using the Brotli library.é    Né   é   c                 ó|   — t          ||||¬¦  «        }|                     | ¦  «        |                     ¦   «         z   S )aÉ  Compress a byte string.

    Args:
      string (bytes): The input data.
      mode (int, optional): The compression mode; value 0 should be used for
        generic input (MODE_GENERIC); value 1 might be beneficial for UTF-8 text
        input (MODE_TEXT); value 2 tunes encoder for WOFF 2.0 data (MODE_FONT).
        Defaults to 0.
      quality (int, optional): Controls the compression-speed vs compression-
        density tradeoff. The higher the quality, the slower the compression.
        Range is 0 to 11. Defaults to 11.
      lgwin (int, optional): Base 2 logarithm of the sliding window size. Range
        is 10 to 24. Defaults to 22.
      lgblock (int, optional): Base 2 logarithm of the maximum input block size.
        Range is 16 to 24. If set to 0, the value will be set based on the
        quality. Defaults to 0.

    Returns:
      The compressed byte string.

    Raises:
      brotli.error: If arguments are invalid, or compressor fails.
    )ÚmodeÚqualityÚlgwinÚlgblock)Ú
CompressorÚprocessÚfinish)Ústringr   r   r   r	   Ú
compressors         ú@/root/voice-cloning/.venv/lib/python3.11/site-packages/brotli.pyÚcompressr      sF   € õ0  ¨w¸eØ$+ð-ñ -ô -€Jà×Ò˜fÑ%Ô%¨
×(9Ò(9Ñ(;Ô(;Ñ;Ð;ó    )Ú__doc__Ú_brotliÚ__version__ÚversionÚMODE_GENERICÚ	MODE_TEXTÚ	MODE_FONTr
   ÚDecompressorr   Ú
decompressÚerror© r   r   ú<module>r      sŠ   ðð JÐ Ià €€€ð  Ô+Ð +€ˆ+ð Ô#€ØÔ€	ØÔ€	ð Ô€
ð Ô#€ð '°¸"Àað <ð <ð <ð <ð: Ô€
ð 	Œ€€€r   