PHP 8.0.30
Preview: class-wp-image-editor.php Size: 17.01 KB
/home/certprox/zang.certproxywizard.com/wp/wp-includes/class-wp-image-editor.php

<?php
/**
 * Base WordPress Image Editor
 *
 * @package WordPress
 * @subpackage Image_Editor
 */

/**
 * Base image editor class from which implementations extend
 *
 * @since 3.5.0
 */
#[AllowDynamicProperties]
abstract class WP_Image_Editor {
	protected $file              = null;
	protected $size              = null;
	protected $mime_type         = null;
	protected $output_mime_type  = null;
	protected $default_mime_type = 'image/jpeg';
	protected $quality           = false;

	// Deprecated since 5.8.1. See get_default_quality() below.
	protected $default_quality = 82;

	/**
	 * Each instance handles a single file.
	 *
	 * @param string $file Path to the file to load.
	 */
	public function __construct( $file ) {
		$this->file = $file;
	}

	/**
	 * Checks to see if current environment supports the editor chosen.
	 * Must be overridden in a subclass.
	 *
	 * @since 3.5.0
	 *
	 * @abstract
	 *
	 * @param array $args
	 * @return bool
	 */
	public static function test( $args = array() ) {
		return false;
	}

	/**
	 * Checks to see if editor supports the mime-type specified.
	 * Must be overridden in a subclass.
	 *
	 * @since 3.5.0
	 *
	 * @abstract
	 *
	 * @param string $mime_type
	 * @return bool
	 */
	public static function supports_mime_type( $mime_type ) {
		return false;
	}

	/**
	 * Loads image from $this->file into editor.
	 *
	 * @since 3.5.0
	 *
	 * @return true|WP_Error True if loaded; WP_Error on failure.
	 */
	abstract public function load();

	/**
	 * Saves current image to file.
	 *
	 * @since 3.5.0
	 * @since 6.0.0 The `$filesize` value was added to the returned array.
	 *
	 * @param string $destfilename Optional. Destination filename. Default null.
	 * @param string $mime_type    Optional. The mime-type. Default null.
	 * @return array|WP_Error {
	 *     Array on success or WP_Error if the file failed to save.
	 *
	 *     @type string $path      Path to the image file.
	 *     @type string $file      Name of the image file.
	 *     @type int    $width     Image width.
	 *     @type int    $height    Image height.
	 *     @type string $mime-type The mime type of the image.
	 *     @type int    $filesize  File size of the image.
	 * }
	 */
	abstract public function save( $destfilename = null, $mime_type = null );

	/**
	 * Resizes current image.
	 *
	 * At minimum, either a height or width must be provided.
	 * If one of the two is set to null, the resize will
	 * maintain aspect ratio according to the provided dimension.
	 *
	 * @since 3.5.0
	 *
	 * @param int|null   $max_w Image width.
	 * @param int|null   $max_h Image height.
	 * @param bool|array $crop  {
	 *     Optional. Image cropping behavior. If false, the image will be scaled (default).
	 *     If true, image will be cropped to the specified dimensions using center positions.
	 *     If an array, the image will be cropped using the array to specify the crop location:
	 *
	 *     @type string $0 The x crop position. Accepts 'left', 'center', or 'right'.
	 *     @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'.
	 * }
	 * @return true|WP_Error
	 */
	abstract public function resize( $max_w, $max_h, $crop = false );

	/**
	 * Resize multiple images from a single source.
	 *
	 * @since 3.5.0
	 *
	 * @param array $sizes {
	 *     An array of image size arrays. Default sizes are 'small', 'medium', 'large'.
	 *
	 *     @type array ...$0 {
	 *         @type int        $width  Image width.
	 *         @type int        $height Image height.
	 *         @type bool|array $crop   Optional. Whether to crop the image. Default false.
	 *     }
	 * }
	 * @return array An array of resized images metadata by size.
	 */
	abstract public function multi_resize( $sizes );

	/**
	 * Crops Image.
	 *
	 * @since 3.5.0
	 *
	 * @param int  $src_x   The start x position to crop from.
	 * @param int  $src_y   The start y position to crop from.
	 * @param int  $src_w   The width to crop.
	 * @param int  $src_h   The height to crop.
	 * @param int  $dst_w   Optional. The destination width.
	 * @param int  $dst_h   Optional. The destination height.
	 * @param bool $src_abs Optional. If the source crop points are absolute.
	 * @return true|WP_Error
	 */
	abstract public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false );

	/**
	 * Rotates current image counter-clockwise by $angle.
	 *
	 * @since 3.5.0
	 *
	 * @param float $angle
	 * @return true|WP_Error
	 */
	abstract public function rotate( $angle );

	/**
	 * Flips current image.
	 *
	 * @since 3.5.0
	 *
	 * @param bool $horz Flip along Horizontal Axis
	 * @param bool $vert Flip along Vertical Axis
	 * @return true|WP_Error
	 */
	abstract public function flip( $horz, $vert );

	/**
	 * Streams current image to browser.
	 *
	 * @since 3.5.0
	 *
	 * @param string $mime_type The mime type of the image.
	 * @return true|WP_Error True on success, WP_Error object on failure.
	 */
	abstract public function stream( $mime_type = null );

	/**
	 * Gets dimensions of image.
	 *
	 * @since 3.5.0
	 *
	 * @return int[] {
	 *     Dimensions of the image.
	 *
	 *     @type int $width  The image width.
	 *     @type int $height The image height.
	 * }
	 */
	public function get_size() {
		return $this->size;
	}

	/**
	 * Sets current image size.
	 *
	 * @since 3.5.0
	 *
	 * @param int $width
	 * @param int $height
	 * @return true
	 */
	protected function update_size( $width = null, $height = null ) {
		$this->size = array(
			'width'  => (int) $width,
			'height' => (int) $height,
		);
		return true;
	}

	/**
	 * Gets the Image Compression quality on a 1-100% scale.
	 *
	 * @since 4.0.0
	 *
	 * @return int Compression Quality. Range: [1,100]
	 */
	public function get_quality() {
		if ( ! $this->quality ) {
			$this->set_quality();
		}

		return $this->quality;
	}

	/**
	 * Sets Image Compression quality on a 1-100% scale.
	 *
	 * @since 3.5.0
	 * @since 6.8.0 The `$dims` parameter was added.
	 *
	 * @param int   $quality Compression Quality. Range: [1,100]
	 * @param array $dims    Optional. Image dimensions array with 'width' and 'height' keys.
	 * @return true|WP_Error True if set successfully; WP_Error on failure.

	 */
	public function set_quality( $quality = null, $dims = array() ) {
		// Use the output mime type if present. If not, fall back to the input/initial mime type.
		$mime_type = ! empty( $this->output_mime_type ) ? $this->output_mime_type : $this->mime_type;
		// Get the default quality setting for the mime type.
		$default_quality = $this->get_default_quality( $mime_type );

		if ( null === $quality ) {
			/**
			 * Filters the default image compression quality setting.
			 *
			 * Applies only during initial editor instantiation, or when set_quality() is run
			 * manually without the `$quality` argument.
			 *
			 * The WP_Image_Editor::set_quality() method has priority over the filter.
			 *
			 * @since 3.5.0
			 * @since 6.8.0 Added the `$size` parameter.
			 *
			 * @param int    $quality   Quality level between 1 (low) and 100 (high).
			 * @param string $mime_type Image mime type.
			 * @param array $size {
			 *     Dimensions of the image.
			 *
			 *     @type int $width  The image width.
			 *     @type int $height The image height.
			 * }
			 */
			$quality = apply_filters( 'wp_editor_set_quality', $default_quality, $mime_type, $dims ? $dims : $this->size );

			if ( 'image/jpeg' === $mime_type ) {
				/**
				 * Filters the JPEG compression quality for backward-compatibility.
				 *
				 * Applies only during initial editor instantiation, or when set_quality() is run
				 * manually without the `$quality` argument.
				 *
				 * The WP_Image_Editor::set_quality() method has priority over the filter.
				 *
				 * The filter is evaluated under two contexts: 'image_resize', and 'edit_image',
				 * (when a JPEG image is saved to file).
				 *
				 * @since 2.5.0
				 *
				 * @param int    $quality Quality level between 0 (low) and 100 (high) of the JPEG.
				 * @param string $context Context of the filter.
				 */
				$quality = apply_filters( 'jpeg_quality', $quality, 'image_resize' );
			}

			if ( $quality < 0 || $quality > 100 ) {
				$quality = $default_quality;
			}
		}

		// Allow 0, but squash to 1 due to identical images in GD, and for backward compatibility.
		if ( 0 === $quality ) {
			$quality = 1;
		}

		if ( ( $quality >= 1 ) && ( $quality <= 100 ) ) {
			$this->quality = $quality;
			return true;
		} else {
			return new WP_Error( 'invalid_image_quality', __( 'Attempted to set image quality outside of the range [1,100].' ) );
		}
	}

	/**
	 * Returns the default compression quality setting for the mime type.
	 *
	 * @since 5.8.1
	 *
	 * @param string $mime_type
	 * @return int The default quality setting for the mime type.
	 */
	protected function get_default_quality( $mime_type ) {
		switch ( $mime_type ) {
			case 'image/webp':
				$quality = 86;
				break;
			case 'image/jpeg':
			default:
				$quality = $this->default_quality;
		}

		return $quality;
	}

	/**
	 * Returns preferred mime-type and extension based on provided
	 * file's extension and mime, or current file's extension and mime.
	 *
	 * Will default to $this->default_mime_type if requested is not supported.
	 *
	 * Provides corrected filename only if filename is provided.
	 *
	 * @since 3.5.0
	 *
	 * @param string $filename
	 * @param string $mime_type
	 * @return array { filename|null, extension, mime-type }
	 */
	protected function get_output_format( $filename = null, $mime_type = null ) {
		$new_ext = null;

		// By default, assume specified type takes priority.
		if ( $mime_type ) {
			$new_ext = $this->get_extension( $mime_type );
		}

		if ( $filename ) {
			$file_ext  = strtolower( pathinfo( $filename, PATHINFO_EXTENSION ) );
			$file_mime = $this->get_mime_type( $file_ext );
		} else {
			// If no file specified, grab editor's current extension and mime-type.
			$file_ext  = strtolower( pathinfo( $this->file, PATHINFO_EXTENSION ) );
			$file_mime = $this->mime_type;
		}

		/*
		 * Check to see if specified mime-type is the same as type implied by
		 * file extension. If so, prefer extension from file.
		 */
		if ( ! $mime_type || ( $file_mime === $mime_type ) ) {
			$mime_type = $file_mime;
			$new_ext   = $file_ext;
		}

		$output_format = wp_get_image_editor_output_format( $filename, $mime_type );

		if ( isset( $output_format[ $mime_type ] )
			&& $this->supports_mime_type( $output_format[ $mime_type ] )
		) {
			$mime_type = $output_format[ $mime_type ];
			$new_ext   = $this->get_extension( $mime_type );
		}

		/*
		 * Double-check that the mime-type selected is supported by the editor.
		 * If not, choose a default instead.
		 */
		if ( ! $this->supports_mime_type( $mime_type ) ) {
			/**
			 * Filters default mime type prior to getting the file extension.
			 *
			 * @see wp_get_mime_types()
			 *
			 * @since 3.5.0
			 *
			 * @param string $mime_type Mime type string.
			 */
			$mime_type = apply_filters( 'image_editor_default_mime_type', $this->default_mime_type );
			$new_ext   = $this->get_extension( $mime_type );
		}

		/*
		 * Ensure both $filename and $new_ext are not empty.
		 * $this->get_extension() returns false on error which would effectively remove the extension
		 * from $filename. That shouldn't happen, files without extensions are not supported.
		 */
		if ( $filename && $new_ext ) {
			$dir = pathinfo( $filename, PATHINFO_DIRNAME );
			$ext = pathinfo( $filename, PATHINFO_EXTENSION );

			$filename = trailingslashit( $dir ) . wp_basename( $filename, ".$ext" ) . ".{$new_ext}";
		}

		if ( $mime_type && ( $mime_type !== $this->mime_type ) ) {
			// The image will be converted when saving. Set the quality for the new mime-type if not already set.
			if ( $mime_type !== $this->output_mime_type ) {
				$this->output_mime_type = $mime_type;
			}
			$this->set_quality();
		} elseif ( ! empty( $this->output_mime_type ) ) {
			// Reset output_mime_type and quality.
			$this->output_mime_type = null;
			$this->set_quality();
		}

		return array( $filename, $new_ext, $mime_type );
	}

	/**
	 * Builds an output filename based on current file, and adding proper suffix
	 *
	 * @since 3.5.0
	 * @since 6.8.0 Passing an empty string as $suffix will now omit the suffix from the generated filename.
	 *
	 * @param string $suffix
	 * @param string $dest_path
	 * @param string $extension
	 * @return string filename
	 */
	public function generate_filename( $suffix = null, $dest_path = null, $extension = null ) {
		// If not empty the $suffix will be appended to the destination filename, just before the extension.
		if ( $suffix ) {
			$suffix = '-' . $suffix;
		} elseif ( '' !== $suffix ) {
			$suffix = '-' . $this->get_suffix();
		}

		$dir = pathinfo( $this->file, PATHINFO_DIRNAME );
		$ext = pathinfo( $this->file, PATHINFO_EXTENSION );

		$name    = wp_basename( $this->file, ".$ext" );
		$new_ext = strtolower( $extension ? $extension : $ext );

		if ( ! is_null( $dest_path ) ) {
			if ( ! wp_is_stream( $dest_path ) ) {
				$_dest_path = realpath( $dest_path );
				if ( $_dest_path ) {
					$dir = $_dest_path;
				}
			} else {
				$dir = $dest_path;
			}
		}

		return trailingslashit( $dir ) . "{$name}{$suffix}.{$new_ext}";
	}

	/**
	 * Builds and returns proper suffix for file based on height and width.
	 *
	 * @since 3.5.0
	 *
	 * @return string|false suffix
	 */
	public function get_suffix() {
		if ( ! $this->get_size() ) {
			return false;
		}

		return "{$this->size['width']}x{$this->size['height']}";
	}

	/**
	 * Check if a JPEG image has EXIF Orientation tag and rotate it if needed.
	 *
	 * @since 5.3.0
	 *
	 * @return bool|WP_Error True if the image was rotated. False if not rotated (no EXIF data or the image doesn't need to be rotated).
	 *                       WP_Error if error while rotating.
	 */
	public function maybe_exif_rotate() {
		$orientation = null;

		if ( is_callable( 'exif_read_data' ) && 'image/jpeg' === $this->mime_type ) {
			$exif_data = @exif_read_data( $this->file );

			if ( ! empty( $exif_data['Orientation'] ) ) {
				$orientation = (int) $exif_data['Orientation'];
			}
		}

		/**
		 * Filters the `$orientation` value to correct it before rotating or to prevent rotating the image.
		 *
		 * @since 5.3.0
		 *
		 * @param int    $orientation EXIF Orientation value as retrieved from the image file.
		 * @param string $file        Path to the image file.
		 */
		$orientation = apply_filters( 'wp_image_maybe_exif_rotate', $orientation, $this->file );

		if ( ! $orientation || 1 === $orientation ) {
			return false;
		}

		switch ( $orientation ) {
			case 2:
				// Flip horizontally.
				$result = $this->flip( false, true );
				break;
			case 3:
				/*
				 * Rotate 180 degrees or flip horizontally and vertically.
				 * Flipping seems faster and uses less resources.
				 */
				$result = $this->flip( true, true );
				break;
			case 4:
				// Flip vertically.
				$result = $this->flip( true, false );
				break;
			case 5:
				// Rotate 90 degrees counter-clockwise and flip vertically.
				$result = $this->rotate( 90 );

				if ( ! is_wp_error( $result ) ) {
					$result = $this->flip( true, false );
				}

				break;
			case 6:
				// Rotate 90 degrees clockwise (270 counter-clockwise).
				$result = $this->rotate( 270 );
				break;
			case 7:
				// Rotate 90 degrees counter-clockwise and flip horizontally.
				$result = $this->rotate( 90 );

				if ( ! is_wp_error( $result ) ) {
					$result = $this->flip( false, true );
				}

				break;
			case 8:
				// Rotate 90 degrees counter-clockwise.
				$result = $this->rotate( 90 );
				break;
		}

		return $result;
	}

	/**
	 * Either calls editor's save function or handles file as a stream.
	 *
	 * @since 3.5.0
	 *
	 * @param string   $filename
	 * @param callable $callback
	 * @param array    $arguments
	 * @return bool
	 */
	protected function make_image( $filename, $callback, $arguments ) {
		$stream = wp_is_stream( $filename );
		if ( $stream ) {
			ob_start();
		} else {
			// The directory containing the original file may no longer exist when using a replication plugin.
			wp_mkdir_p( dirname( $filename ) );
		}

		$result = call_user_func_array( $callback, $arguments );

		if ( $result && $stream ) {
			$contents = ob_get_contents();

			$fp = fopen( $filename, 'w' );

			if ( ! $fp ) {
				ob_end_clean();
				return false;
			}

			fwrite( $fp, $contents );
			fclose( $fp );
		}

		if ( $stream ) {
			ob_end_clean();
		}

		return $result;
	}

	/**
	 * Returns first matched mime-type from extension,
	 * as mapped from wp_get_mime_types()
	 *
	 * @since 3.5.0
	 *
	 * @param string $extension
	 * @return string|false
	 */
	protected static function get_mime_type( $extension = null ) {
		if ( ! $extension ) {
			return false;
		}

		$mime_types = wp_get_mime_types();
		$extensions = array_keys( $mime_types );

		foreach ( $extensions as $_extension ) {
			if ( preg_match( "/{$extension}/i", $_extension ) ) {
				return $mime_types[ $_extension ];
			}
		}

		return false;
	}

	/**
	 * Returns first matched extension from Mime-type,
	 * as mapped from wp_get_mime_types()
	 *
	 * @since 3.5.0
	 *
	 * @param string $mime_type
	 * @return string|false
	 */
	protected static function get_extension( $mime_type = null ) {
		if ( empty( $mime_type ) ) {
			return false;
		}

		return wp_get_default_extension_for_mime_type( $mime_type );
	}
}

Directory Contents

Dirs: 32 × Files: 254

Name Size Perms Modified Actions
- drwxr-xr-x 2026-03-30 10:07:43
Edit Download
ai-client DIR
- drwxr-xr-x 2026-05-21 18:01:50
Edit Download
assets DIR
- drwxr-xr-x 2026-05-21 18:02:34
Edit Download
- drwxr-xr-x 2026-03-30 10:07:43
Edit Download
- drwxr-xr-x 2026-05-21 18:01:57
Edit Download
- drwxr-xr-x 2026-05-21 18:02:30
Edit Download
blocks DIR
- drwxr-xr-x 2026-05-21 18:02:33
Edit Download
build DIR
- drwxr-xr-x 2026-05-21 18:01:51
Edit Download
- drwxr-xr-x 2026-03-30 10:07:43
Edit Download
css DIR
- drwxr-xr-x 2026-05-21 18:01:53
Edit Download
customize DIR
- drwxr-xr-x 2026-03-30 10:07:43
Edit Download
fonts DIR
- drwxr-xr-x 2026-03-30 10:07:43
Edit Download
html-api DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
ID3 DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
images DIR
- drwxr-xr-x 2026-05-21 18:01:46
Edit Download
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
IXR DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
js DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
l10n DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
- drwxr-xr-x 2026-05-21 18:01:46
Edit Download
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
pomo DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
Requests DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
rest-api DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
SimplePie DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
sitemaps DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
Text DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
widgets DIR
- drwxr-xr-x 2026-03-30 10:07:44
Edit Download
23.80 KB lrw-r--r-- 2025-11-04 14:34:38
Edit Download
7.82 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
38.39 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
2.49 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
11.90 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
19.38 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
7.35 KB lrw-r--r-- 2025-10-20 05:52:24
Edit Download
28.05 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
316 B lrw-r--r-- 2021-08-11 06:08:02
Edit Download
15.24 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
61.33 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
17.83 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
116.64 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
12.47 KB lrw-r--r-- 2025-03-19 21:15:36
Edit Download
15.07 KB lrw-r--r-- 2024-03-23 12:20:12
Edit Download
10.76 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
13.17 KB lrw-r--r-- 2025-04-29 19:44:38
Edit Download
33.83 KB lrw-r--r-- 2025-11-04 16:31:30
Edit Download
42.61 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
55.65 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
12.53 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
29.30 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
539 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
367 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
2.55 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
42.65 KB lrw-r--r-- 2025-08-25 10:10:30
Edit Download
401 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
6.61 KB lrw-r--r-- 2024-09-17 18:08:16
Edit Download
664 B lrw-r--r-- 2020-07-21 09:58:02
Edit Download
20.63 KB lrw-r--r-- 2024-10-25 17:26:20
Edit Download
2.18 KB lrw-r--r-- 2023-04-05 10:12:26
Edit Download
453 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
457 B lrw-r--r-- 2021-01-26 11:45:58
Edit Download
36.83 KB lrw-r--r-- 2023-02-03 11:35:20
Edit Download
2.41 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
8.28 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
13.89 KB lrw-r--r-- 2024-03-18 13:46:14
Edit Download
11.76 KB lrw-r--r-- 2025-01-21 19:26:24
Edit Download
2.65 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
7.43 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
17.58 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
5.14 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
16.70 KB lrw-r--r-- 2025-04-03 10:53:28
Edit Download
8.07 KB lrw-r--r-- 2026-05-21 18:01:50
Edit Download
2.92 KB lrw-r--r-- 2025-09-28 18:56:28
Edit Download
1.32 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
4.60 KB lrw-r--r-- 2025-08-07 11:47:34
Edit Download
11.57 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
2.50 KB lrw-r--r-- 2025-10-21 04:14:02
Edit Download
1.95 KB lrw-r--r-- 2026-05-21 18:01:50
Edit Download
11.25 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
4.28 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
10.07 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
68.32 KB lrw-r--r-- 2026-01-26 14:30:32
Edit Download
6.27 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
6.40 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
1.99 KB lrw-r--r-- 2024-09-19 23:07:12
Edit Download
6.91 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
4.91 KB lrw-r--r-- 2025-09-29 13:29:36
Edit Download
16.83 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
24.14 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
3.93 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
47.49 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
9.15 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
14.07 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
25.51 KB lrw-r--r-- 2025-09-06 23:47:36
Edit Download
198.13 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
56.61 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
10.46 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
10.95 KB lrw-r--r-- 2024-10-13 16:09:12
Edit Download
29.26 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
70.89 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
35.13 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
16.69 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
2.59 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
39.95 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
70.54 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
15.54 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
7.33 KB lrw-r--r-- 2023-02-21 14:39:20
Edit Download
253 B lrw-r--r-- 2024-09-27 16:28:14
Edit Download
7.96 KB lrw-r--r-- 2024-10-22 07:16:16
Edit Download
3.23 KB lrw-r--r-- 2025-07-30 20:03:30
Edit Download
969 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
16.25 KB lrw-r--r-- 2026-05-21 18:01:46
Edit Download
7.10 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
12.95 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
6.53 KB lrw-r--r-- 2023-06-22 11:57:24
Edit Download
3.43 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
5.84 KB lrw-r--r-- 2023-06-22 11:36:26
Edit Download
1.97 KB lrw-r--r-- 2022-12-15 19:32:18
Edit Download
4.14 KB lrw-r--r-- 2026-05-21 18:02:00
Edit Download
2.91 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
16.37 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
40.67 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
7.67 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
20.22 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
36.11 KB lrw-r--r-- 2025-08-26 18:05:30
Edit Download
17.01 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
7.27 KB lrw-r--r-- 2024-02-27 20:38:16
Edit Download
6.62 KB lrw-r--r-- 2025-05-11 14:16:30
Edit Download
16.45 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
1.79 KB lrw-r--r-- 2024-02-05 23:25:14
Edit Download
29.79 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
6.67 KB lrw-r--r-- 2025-10-21 12:59:34
Edit Download
8.98 KB lrw-r--r-- 2025-06-18 17:39:52
Edit Download
19.25 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
12.01 KB lrw-r--r-- 2024-09-13 19:12:16
Edit Download
17.11 KB lrw-r--r-- 2025-04-04 19:00:28
Edit Download
6.74 KB lrw-r--r-- 2024-03-06 03:05:12
Edit Download
30.86 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
4.95 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
4.25 KB lrw-r--r-- 2025-10-01 10:23:28
Edit Download
24.59 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
29.95 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
6.33 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
159.60 KB lrw-r--r-- 2026-07-17 20:31:15
Edit Download
6.72 KB lrw-r--r-- 2022-10-04 00:59:14
Edit Download
10.90 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
4.80 KB lrw-r--r-- 2026-05-21 18:01:45
Edit Download
3.44 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
11.18 KB lrw-r--r-- 2025-02-23 09:11:22
Edit Download
62.20 KB lrw-r--r-- 2026-05-21 18:01:45
Edit Download
2.46 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
9.10 KB lrw-r--r-- 2026-05-21 18:01:50
Edit Download
39.65 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
35.93 KB lrw-r--r-- 2026-05-21 18:01:59
Edit Download
7.15 KB lrw-r--r-- 2025-02-11 09:14:22
Edit Download
3.47 KB lrw-r--r-- 2025-09-16 19:47:32
Edit Download
1.87 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
30.74 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
7.28 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
7.38 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
13.04 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
19.12 KB lrw-r--r-- 2025-06-16 14:08:32
Edit Download
18.12 KB lrw-r--r-- 2025-03-26 19:42:28
Edit Download
39.80 KB lrw-r--r-- 2026-05-21 18:01:50
Edit Download
5.14 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
979 B lrw-r--r-- 2024-02-14 17:27:10
Edit Download
18.49 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
10.24 KB lrw-r--r-- 2024-11-20 00:50:24
Edit Download
1.77 KB lrw-r--r-- 2024-06-04 08:55:14
Edit Download
34.86 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
7.19 KB lrw-r--r-- 2024-06-06 05:02:16
Edit Download
169.57 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
64.22 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
27.95 KB lrw-r--r-- 2024-07-19 20:44:16
Edit Download
4.69 KB lrw-r--r-- 2025-02-18 20:32:22
Edit Download
2.88 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
43.07 KB lrw-r--r-- 2026-05-21 18:01:50
Edit Download
2.25 KB lrw-r--r-- 2025-02-17 09:24:22
Edit Download
22.48 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
13.01 KB lrw-r--r-- 2024-07-26 04:56:14
Edit Download
3.27 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
17.99 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
209.98 KB lrw-r--r-- 2026-05-21 18:01:47
Edit Download
25.75 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
115.86 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
373 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
343 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
338 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
100.79 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
130.94 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
19.10 KB lrw-r--r-- 2025-10-21 11:03:28
Edit Download
15.69 KB lrw-r--r-- 2026-05-21 18:01:45
Edit Download
23.52 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
43.94 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
400 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
11.10 KB lrw-r--r-- 2024-09-30 20:58:16
Edit Download
36.54 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
2.24 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
189.43 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
338 B lrw-r--r-- 2022-06-17 08:20:14
Edit Download
37.90 KB lrw-r--r-- 2026-07-10 03:58:33
Edit Download
4.00 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
5.38 KB lrw-r--r-- 2024-03-04 10:41:10
Edit Download
3.05 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
2.61 KB lrw-r--r-- 2020-01-28 22:45:18
Edit Download
1.16 KB lrw-r--r-- 2020-01-28 22:45:18
Edit Download
4.04 KB lrw-r--r-- 2024-03-04 10:41:10
Edit Download
3.71 KB lrw-r--r-- 2020-01-28 22:45:18
Edit Download
24.60 KB lrw-r--r-- 2026-01-28 23:07:36
Edit Download
9.56 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
346.60 KB lrw-r--r-- 2026-07-10 03:58:32
Edit Download
283.52 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
20.01 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
8.45 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
170.83 KB lrw-r--r-- 2026-05-21 18:02:33
Edit Download
20.29 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
26.62 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
5.72 KB lrw-r--r-- 2025-02-24 11:43:24
Edit Download
4.63 KB lrw-r--r-- 2023-07-10 19:38:26
Edit Download
81.03 KB lrw-r--r-- 2026-07-10 03:58:47
Edit Download
69.74 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
156.39 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
55.15 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
162 B lrw-r--r-- 2019-10-08 14:19:04
Edit Download
61.79 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
219.66 KB lrw-r--r-- 2026-07-10 03:58:32
Edit Download
65.17 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
25.71 KB lrw-r--r-- 2026-05-21 18:01:52
Edit Download
4.81 KB lrw-r--r-- 2024-06-13 17:50:14
Edit Download
6.48 KB lrw-r--r-- 2023-02-23 23:23:20
Edit Download
21.24 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
2.79 KB lrw-r--r-- 2025-10-17 14:14:32
Edit Download
89.69 KB lrw-r--r-- 2025-10-27 14:35:36
Edit Download
19.57 KB lrw-r--r-- 2026-05-21 18:01:52
Edit Download
3.69 KB lrw-r--r-- 2023-05-02 08:26:24
Edit Download
4.11 KB lrw-r--r-- 2025-08-27 10:42:30
Edit Download
40.75 KB lrw-r--r-- 2026-05-21 18:02:00
Edit Download
25.38 KB lrw-r--r-- 2025-01-22 17:48:26
Edit Download
43.23 KB lrw-r--r-- 2026-05-21 18:02:00
Edit Download
102.62 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
6.18 KB lrw-r--r-- 2025-02-03 17:52:24
Edit Download
124.57 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
35.65 KB lrw-r--r-- 2025-11-03 21:47:34
Edit Download
6.90 KB lrw-r--r-- 2026-05-21 18:01:57
Edit Download
67.01 KB lrw-r--r-- 2026-05-21 18:01:45
Edit Download
10.62 KB lrw-r--r-- 2024-12-20 21:35:24
Edit Download
289.58 KB lrw-r--r-- 2026-05-21 18:01:45
Edit Download
36.23 KB lrw-r--r-- 2025-08-31 18:43:30
Edit Download
200 B lrw-r--r-- 2020-11-12 09:17:08
Edit Download
200 B lrw-r--r-- 2020-11-12 09:17:08
Edit Download
98.84 KB lrw-r--r-- 2026-07-17 20:31:15
Edit Download
29.99 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
19.00 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
5.06 KB lrw-r--r-- 2022-04-06 12:33:04
Edit Download
255 B lrw-r--r-- 2020-11-16 20:52:06
Edit Download
22.66 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
159.30 KB lrw-r--r-- 2026-05-21 18:01:51
Edit Download
11.66 KB lrw-r--r-- 2026-05-21 18:01:48
Edit Download
258 B lrw-r--r-- 2020-02-06 04:33:12
Edit Download
23.47 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
3.16 KB lrw-r--r-- 2021-05-15 14:38:06
Edit Download
8.40 KB lrw-r--r-- 2025-08-27 07:34:28
Edit Download
441 B lrw-r--r-- 2020-11-12 09:17:08
Edit Download
7.39 KB lrw-r--r-- 2024-05-03 01:47:12
Edit Download
172.99 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
544 B lrw-r--r-- 2023-09-30 21:22:28
Edit Download
4.17 KB lrw-r--r-- 2026-03-10 19:20:36
Edit Download
35.96 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
1.85 KB lrw-r--r-- 2026-05-21 18:02:00
Edit Download
2.82 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
3.96 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
8.83 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
131.48 KB lrw-r--r-- 2026-05-21 18:02:29
Edit Download
37.38 KB lrw-r--r-- 2026-05-21 18:02:30
Edit Download
174.63 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
7.09 KB lrw-r--r-- 2025-10-20 23:35:32
Edit Download
6.45 KB lrw-r--r-- 2026-05-21 18:01:58
Edit Download
1.08 KB lrw-r--r-- 2026-07-17 20:31:16
Edit Download
602 B lrw-r--r-- 2026-05-21 18:02:34
Edit Download
69.17 KB lrw-r--r-- 2026-05-21 18:01:49
Edit Download
445 B lrw-r--r-- 2022-07-21 19:45:12
Edit Download
799 B lrw-r--r-- 2025-01-22 17:48:26
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).