PHP 8.1.33
Preview: class-wp-locale.php Size: 15.73 KB
/home/jambtst2015/public_html/aef.ng/wp-includes/class-wp-locale.php

<?php
/**
 * Locale API: WP_Locale class
 *
 * @package WordPress
 * @subpackage i18n
 * @since 4.6.0
 */

/**
 * Core class used to store translated data for a locale.
 *
 * @since 2.1.0
 * @since 4.6.0 Moved to its own file from wp-includes/locale.php.
 */
#[AllowDynamicProperties]
class WP_Locale {
	/**
	 * Stores the translated strings for the full weekday names.
	 *
	 * @since 2.1.0
	 * @since 6.2.0 Initialized to an empty array.
	 * @var string[]
	 */
	public $weekday = array();

	/**
	 * Stores the translated strings for the one character weekday names.
	 *
	 * There is a hack to make sure that Tuesday and Thursday, as well
	 * as Sunday and Saturday, don't conflict. See init() method for more.
	 *
	 * @see WP_Locale::init() for how to handle the hack.
	 *
	 * @since 2.1.0
	 * @since 6.2.0 Initialized to an empty array.
	 * @var string[]
	 */
	public $weekday_initial = array();

	/**
	 * Stores the translated strings for the abbreviated weekday names.
	 *
	 * @since 2.1.0
	 * @since 6.2.0 Initialized to an empty array.
	 * @var string[]
	 */
	public $weekday_abbrev = array();

	/**
	 * Stores the translated strings for the full month names.
	 *
	 * @since 2.1.0
	 * @since 6.2.0 Initialized to an empty array.
	 * @var string[]
	 */
	public $month = array();

	/**
	 * Stores the translated strings for the month names in genitive case, if the locale specifies.
	 *
	 * @since 4.4.0
	 * @since 6.2.0 Initialized to an empty array.
	 * @var string[]
	 */
	public $month_genitive = array();

	/**
	 * Stores the translated strings for the abbreviated month names.
	 *
	 * @since 2.1.0
	 * @since 6.2.0 Initialized to an empty array.
	 * @var string[]
	 */
	public $month_abbrev = array();

	/**
	 * Stores the translated strings for 'am' and 'pm'.
	 *
	 * Also the capitalized versions.
	 *
	 * @since 2.1.0
	 * @since 6.2.0 Initialized to an empty array.
	 * @var string[]
	 */
	public $meridiem = array();

	/**
	 * The text direction of the locale language.
	 *
	 * Default is left to right 'ltr'.
	 *
	 * @since 2.1.0
	 * @var string
	 */
	public $text_direction = 'ltr';

	/**
	 * The thousands separator and decimal point values used for localizing numbers.
	 *
	 * @since 2.3.0
	 * @since 6.2.0 Initialized to an empty array.
	 * @var array
	 */
	public $number_format = array();

	/**
	 * The separator string used for localizing list item separator.
	 *
	 * @since 6.0.0
	 * @var string
	 */
	public $list_item_separator;

	/**
	 * The word count type of the locale language.
	 *
	 * Default is 'words'.
	 *
	 * @since 6.2.0
	 * @var string
	 */
	public $word_count_type;

	/**
	 * Constructor which calls helper methods to set up object variables.
	 *
	 * @since 2.1.0
	 */
	public function __construct() {
		$this->init();
		$this->register_globals();
	}

	/**
	 * Sets up the translated strings and object properties.
	 *
	 * The method creates the translatable strings for various
	 * calendar elements. Which allows for specifying locale
	 * specific calendar names and text direction.
	 *
	 * @since 2.1.0
	 *
	 * @global string $text_direction
	 */
	public function init() {
		// The weekdays.
		$this->weekday[0] = /* translators: Weekday. */ __( 'Sunday' );
		$this->weekday[1] = /* translators: Weekday. */ __( 'Monday' );
		$this->weekday[2] = /* translators: Weekday. */ __( 'Tuesday' );
		$this->weekday[3] = /* translators: Weekday. */ __( 'Wednesday' );
		$this->weekday[4] = /* translators: Weekday. */ __( 'Thursday' );
		$this->weekday[5] = /* translators: Weekday. */ __( 'Friday' );
		$this->weekday[6] = /* translators: Weekday. */ __( 'Saturday' );

		// The first letter of each day.
		$this->weekday_initial[ $this->weekday[0] ] = /* translators: One-letter abbreviation of the weekday. */ _x( 'S', 'Sunday initial' );
		$this->weekday_initial[ $this->weekday[1] ] = /* translators: One-letter abbreviation of the weekday. */ _x( 'M', 'Monday initial' );
		$this->weekday_initial[ $this->weekday[2] ] = /* translators: One-letter abbreviation of the weekday. */ _x( 'T', 'Tuesday initial' );
		$this->weekday_initial[ $this->weekday[3] ] = /* translators: One-letter abbreviation of the weekday. */ _x( 'W', 'Wednesday initial' );
		$this->weekday_initial[ $this->weekday[4] ] = /* translators: One-letter abbreviation of the weekday. */ _x( 'T', 'Thursday initial' );
		$this->weekday_initial[ $this->weekday[5] ] = /* translators: One-letter abbreviation of the weekday. */ _x( 'F', 'Friday initial' );
		$this->weekday_initial[ $this->weekday[6] ] = /* translators: One-letter abbreviation of the weekday. */ _x( 'S', 'Saturday initial' );

		// Abbreviations for each day.
		$this->weekday_abbrev[ $this->weekday[0] ] = /* translators: Three-letter abbreviation of the weekday. */ __( 'Sun' );
		$this->weekday_abbrev[ $this->weekday[1] ] = /* translators: Three-letter abbreviation of the weekday. */ __( 'Mon' );
		$this->weekday_abbrev[ $this->weekday[2] ] = /* translators: Three-letter abbreviation of the weekday. */ __( 'Tue' );
		$this->weekday_abbrev[ $this->weekday[3] ] = /* translators: Three-letter abbreviation of the weekday. */ __( 'Wed' );
		$this->weekday_abbrev[ $this->weekday[4] ] = /* translators: Three-letter abbreviation of the weekday. */ __( 'Thu' );
		$this->weekday_abbrev[ $this->weekday[5] ] = /* translators: Three-letter abbreviation of the weekday. */ __( 'Fri' );
		$this->weekday_abbrev[ $this->weekday[6] ] = /* translators: Three-letter abbreviation of the weekday. */ __( 'Sat' );

		// The months.
		$this->month['01'] = /* translators: Month name. */ __( 'January' );
		$this->month['02'] = /* translators: Month name. */ __( 'February' );
		$this->month['03'] = /* translators: Month name. */ __( 'March' );
		$this->month['04'] = /* translators: Month name. */ __( 'April' );
		$this->month['05'] = /* translators: Month name. */ __( 'May' );
		$this->month['06'] = /* translators: Month name. */ __( 'June' );
		$this->month['07'] = /* translators: Month name. */ __( 'July' );
		$this->month['08'] = /* translators: Month name. */ __( 'August' );
		$this->month['09'] = /* translators: Month name. */ __( 'September' );
		$this->month['10'] = /* translators: Month name. */ __( 'October' );
		$this->month['11'] = /* translators: Month name. */ __( 'November' );
		$this->month['12'] = /* translators: Month name. */ __( 'December' );

		// The months, genitive.
		$this->month_genitive['01'] = /* translators: Month name, genitive. */ _x( 'January', 'genitive' );
		$this->month_genitive['02'] = /* translators: Month name, genitive. */ _x( 'February', 'genitive' );
		$this->month_genitive['03'] = /* translators: Month name, genitive. */ _x( 'March', 'genitive' );
		$this->month_genitive['04'] = /* translators: Month name, genitive. */ _x( 'April', 'genitive' );
		$this->month_genitive['05'] = /* translators: Month name, genitive. */ _x( 'May', 'genitive' );
		$this->month_genitive['06'] = /* translators: Month name, genitive. */ _x( 'June', 'genitive' );
		$this->month_genitive['07'] = /* translators: Month name, genitive. */ _x( 'July', 'genitive' );
		$this->month_genitive['08'] = /* translators: Month name, genitive. */ _x( 'August', 'genitive' );
		$this->month_genitive['09'] = /* translators: Month name, genitive. */ _x( 'September', 'genitive' );
		$this->month_genitive['10'] = /* translators: Month name, genitive. */ _x( 'October', 'genitive' );
		$this->month_genitive['11'] = /* translators: Month name, genitive. */ _x( 'November', 'genitive' );
		$this->month_genitive['12'] = /* translators: Month name, genitive. */ _x( 'December', 'genitive' );

		// Abbreviations for each month.
		$this->month_abbrev[ $this->month['01'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Jan', 'January abbreviation' );
		$this->month_abbrev[ $this->month['02'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Feb', 'February abbreviation' );
		$this->month_abbrev[ $this->month['03'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Mar', 'March abbreviation' );
		$this->month_abbrev[ $this->month['04'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Apr', 'April abbreviation' );
		$this->month_abbrev[ $this->month['05'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'May', 'May abbreviation' );
		$this->month_abbrev[ $this->month['06'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Jun', 'June abbreviation' );
		$this->month_abbrev[ $this->month['07'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Jul', 'July abbreviation' );
		$this->month_abbrev[ $this->month['08'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Aug', 'August abbreviation' );
		$this->month_abbrev[ $this->month['09'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Sep', 'September abbreviation' );
		$this->month_abbrev[ $this->month['10'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Oct', 'October abbreviation' );
		$this->month_abbrev[ $this->month['11'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Nov', 'November abbreviation' );
		$this->month_abbrev[ $this->month['12'] ] = /* translators: Three-letter abbreviation of the month. */ _x( 'Dec', 'December abbreviation' );

		// The meridiems.
		$this->meridiem['am'] = __( 'am' );
		$this->meridiem['pm'] = __( 'pm' );
		$this->meridiem['AM'] = __( 'AM' );
		$this->meridiem['PM'] = __( 'PM' );

		/*
		 * Numbers formatting.
		 * See https://www.php.net/number_format
		 */

		/* translators: $thousands_sep argument for https://www.php.net/number_format, default is ',' */
		$thousands_sep = __( 'number_format_thousands_sep' );

		// Replace space with a non-breaking space to avoid wrapping.
		$thousands_sep = str_replace( ' ', '&nbsp;', $thousands_sep );

		$this->number_format['thousands_sep'] = ( 'number_format_thousands_sep' === $thousands_sep ) ? ',' : $thousands_sep;

		/* translators: $dec_point argument for https://www.php.net/number_format, default is '.' */
		$decimal_point = __( 'number_format_decimal_point' );

		$this->number_format['decimal_point'] = ( 'number_format_decimal_point' === $decimal_point ) ? '.' : $decimal_point;

		/* translators: Used between list items, there is a space after the comma. */
		$this->list_item_separator = __( ', ' );

		// Set text direction.
		if ( isset( $GLOBALS['text_direction'] ) ) {
			$this->text_direction = $GLOBALS['text_direction'];

			/* translators: 'rtl' or 'ltr'. This sets the text direction for WordPress. */
		} elseif ( 'rtl' === _x( 'ltr', 'text direction' ) ) {
			$this->text_direction = 'rtl';
		}

		// Set the word count type.
		$this->word_count_type = $this->get_word_count_type();
	}

	/**
	 * Retrieves the full translated weekday word.
	 *
	 * Week starts on translated Sunday and can be fetched
	 * by using 0 (zero). So the week starts with 0 (zero)
	 * and ends on Saturday with is fetched by using 6 (six).
	 *
	 * @since 2.1.0
	 *
	 * @param int $weekday_number 0 for Sunday through 6 Saturday.
	 * @return string Full translated weekday.
	 */
	public function get_weekday( $weekday_number ) {
		return $this->weekday[ $weekday_number ];
	}

	/**
	 * Retrieves the translated weekday initial.
	 *
	 * The weekday initial is retrieved by the translated
	 * full weekday word. When translating the weekday initial
	 * pay attention to make sure that the starting letter does
	 * not conflict.
	 *
	 * @since 2.1.0
	 *
	 * @param string $weekday_name Full translated weekday word.
	 * @return string Translated weekday initial.
	 */
	public function get_weekday_initial( $weekday_name ) {
		return $this->weekday_initial[ $weekday_name ];
	}

	/**
	 * Retrieves the translated weekday abbreviation.
	 *
	 * The weekday abbreviation is retrieved by the translated
	 * full weekday word.
	 *
	 * @since 2.1.0
	 *
	 * @param string $weekday_name Full translated weekday word.
	 * @return string Translated weekday abbreviation.
	 */
	public function get_weekday_abbrev( $weekday_name ) {
		return $this->weekday_abbrev[ $weekday_name ];
	}

	/**
	 * Retrieves the full translated month by month number.
	 *
	 * The $month_number parameter has to be a string
	 * because it must have the '0' in front of any number
	 * that is less than 10. Starts from '01' and ends at
	 * '12'.
	 *
	 * You can use an integer instead and it will add the
	 * '0' before the numbers less than 10 for you.
	 *
	 * @since 2.1.0
	 *
	 * @param string|int $month_number '01' through '12'.
	 * @return string Translated full month name.
	 */
	public function get_month( $month_number ) {
		return $this->month[ zeroise( $month_number, 2 ) ];
	}

	/**
	 * Retrieves translated version of month abbreviation string.
	 *
	 * The $month_name parameter is expected to be the translated or
	 * translatable version of the month.
	 *
	 * @since 2.1.0
	 *
	 * @param string $month_name Translated month to get abbreviated version.
	 * @return string Translated abbreviated month.
	 */
	public function get_month_abbrev( $month_name ) {
		return $this->month_abbrev[ $month_name ];
	}

	/**
	 * Retrieves translated version of meridiem string.
	 *
	 * The $meridiem parameter is expected to not be translated.
	 *
	 * @since 2.1.0
	 *
	 * @param string $meridiem Either 'am', 'pm', 'AM', or 'PM'. Not translated version.
	 * @return string Translated version
	 */
	public function get_meridiem( $meridiem ) {
		return $this->meridiem[ $meridiem ];
	}

	/**
	 * Global variables are deprecated.
	 *
	 * For backward compatibility only.
	 *
	 * @since 2.1.0
	 * @deprecated For backward compatibility only.
	 *
	 * @global array $weekday
	 * @global array $weekday_initial
	 * @global array $weekday_abbrev
	 * @global array $month
	 * @global array $month_abbrev
	 */
	public function register_globals() {
		$GLOBALS['weekday']         = $this->weekday;
		$GLOBALS['weekday_initial'] = $this->weekday_initial;
		$GLOBALS['weekday_abbrev']  = $this->weekday_abbrev;
		$GLOBALS['month']           = $this->month;
		$GLOBALS['month_abbrev']    = $this->month_abbrev;
	}

	/**
	 * Checks if current locale is RTL.
	 *
	 * @since 3.0.0
	 * @return bool Whether locale is RTL.
	 */
	public function is_rtl() {
		return 'rtl' === $this->text_direction;
	}

	/**
	 * Registers date/time format strings for general POT.
	 *
	 * Private, unused method to add some date/time formats translated
	 * on wp-admin/options-general.php to the general POT that would
	 * otherwise be added to the admin POT.
	 *
	 * @since 3.6.0
	 */
	public function _strings_for_pot() {
		/* translators: Localized date format, see https://www.php.net/manual/datetime.format.php */
		__( 'F j, Y' );
		/* translators: Localized time format, see https://www.php.net/manual/datetime.format.php */
		__( 'g:i a' );
		/* translators: Localized date and time format, see https://www.php.net/manual/datetime.format.php */
		__( 'F j, Y g:i a' );
	}

	/**
	 * Retrieves the localized list item separator.
	 *
	 * @since 6.0.0
	 *
	 * @return string Localized list item separator.
	 */
	public function get_list_item_separator() {
		return $this->list_item_separator;
	}

	/**
	 * Retrieves the localized word count type.
	 *
	 * @since 6.2.0
	 *
	 * @return string Localized word count type. Possible values are `characters_excluding_spaces`,
	 *                `characters_including_spaces`, or `words`. Defaults to `words`.
	 */
	public function get_word_count_type() {

		/*
		 * translators: If your word count is based on single characters (e.g. East Asian characters),
		 * enter 'characters_excluding_spaces' or 'characters_including_spaces'. Otherwise, enter 'words'.
		 * Do not translate into your own language.
		 */
		$word_count_type = is_null( $this->word_count_type ) ? _x( 'words', 'Word count type. Do not translate!' ) : $this->word_count_type;

		// Check for valid types.
		if ( 'characters_excluding_spaces' !== $word_count_type && 'characters_including_spaces' !== $word_count_type ) {
			// Defaults to 'words'.
			$word_count_type = 'words';
		}

		return $word_count_type;
	}
}

Directory Contents

Dirs: 28 × Files: 240

Name Size Perms Modified Actions
assets DIR
- drwxr-xr-x 2024-11-13 20:41:33
Edit Download
- drwxr-xr-x 2024-04-02 22:06:50
Edit Download
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
- drwxr-xr-x 2024-07-16 22:10:09
Edit Download
blocks DIR
- drwxr-xr-x 2024-07-16 22:10:09
Edit Download
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
css DIR
- drwxr-xr-x 2022-11-02 11:25:21
Edit Download
customize DIR
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
fonts DIR
- drwxr-xr-x 2024-04-02 22:06:50
Edit Download
html-api DIR
- drwxr-xr-x 2024-11-13 20:41:34
Edit Download
ID3 DIR
- drwxr-xr-x 2024-04-02 22:06:51
Edit Download
images DIR
- drwxr-xr-x 2023-08-08 22:41:21
Edit Download
- drwxr-xr-x 2024-04-02 22:06:50
Edit Download
IXR DIR
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
js DIR
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
l10n DIR
- drwxr-xr-x 2024-04-02 22:06:50
Edit Download
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
PHPMailer DIR
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
pomo DIR
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
Requests DIR
- drwxr-xr-x 2023-03-30 00:07:28
Edit Download
rest-api DIR
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
SimplePie DIR
- drwxr-xr-x 2024-11-13 20:41:35
Edit Download
sitemaps DIR
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
- drwxr-xr-x 2022-11-02 11:25:19
Edit Download
Text DIR
- drwxr-xr-x 2024-11-13 20:41:33
Edit Download
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
widgets DIR
- drwxr-xr-x 2022-06-03 10:06:43
Edit Download
36.23 KB lrw-r--r-- 2024-09-10 22:17:20
Edit Download
11.79 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
18.51 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
5.46 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
27.68 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
316 B lrw-r--r-- 2021-08-11 18:38:02
Edit Download
12.81 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
58.74 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
13.81 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
102.36 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
12.64 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
15.07 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
5.83 KB lrw-r--r-- 2022-11-02 11:25:21
Edit Download
13.16 KB lrw-r--r-- 2022-11-02 11:25:21
Edit Download
33.71 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
41.72 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
55.67 KB lrw-r--r-- 2023-11-07 22:25:15
Edit Download
12.41 KB lrw-r--r-- 2023-11-07 22:25:15
Edit Download
28.92 KB lrw-r--r-- 2024-05-07 22:07:53
Edit Download
539 B lrw-r--r-- 2024-11-13 20:41:34
Edit Download
367 B lrw-r--r-- 2022-11-02 11:25:19
Edit Download
2.48 KB lrw-r--r-- 2020-02-06 17:03:12
Edit Download
42.66 KB lrw-r--r-- 2023-03-30 00:07:26
Edit Download
401 B lrw-r--r-- 2022-11-02 11:25:21
Edit Download
6.61 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
664 B lrw-r--r-- 2020-07-21 22:28:02
Edit Download
20.68 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
2.18 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
453 B lrw-r--r-- 2024-11-13 20:41:34
Edit Download
457 B lrw-r--r-- 2021-01-27 00:15:58
Edit Download
36.83 KB lrw-r--r-- 2023-03-30 00:07:25
Edit Download
2.41 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
8.28 KB lrw-r--r-- 2023-11-07 22:25:17
Edit Download
13.89 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
11.51 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
2.65 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
7.43 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
17.46 KB lrw-r--r-- 2024-07-23 22:10:57
Edit Download
5.14 KB lrw-r--r-- 2022-11-02 11:25:21
Edit Download
15.25 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
8.26 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
2.92 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
1.32 KB lrw-r--r-- 2022-11-02 11:25:20
Edit Download
4.65 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
8.16 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
2.50 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
1.97 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
11.26 KB lrw-r--r-- 2023-11-07 22:25:15
Edit Download
5.25 KB lrw-r--r-- 2022-11-02 11:25:21
Edit Download
10.53 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
6.12 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
5.48 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
1.99 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
7.06 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
4.90 KB lrw-r--r-- 2023-10-12 23:58:49
Edit Download
16.86 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
19.96 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
3.99 KB lrw-r--r-- 2023-08-29 22:27:51
Edit Download
47.26 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
9.15 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
25.13 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
197.79 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
55.84 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
10.39 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
10.95 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
29.19 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
70.47 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
34.89 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
14.78 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
2.57 KB lrw-r--r-- 2023-03-30 00:07:26
Edit Download
39.83 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
70.64 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
15.62 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
7.33 KB lrw-r--r-- 2023-03-30 00:07:25
Edit Download
253 B lrw-r--r-- 2024-11-13 20:41:34
Edit Download
7.96 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
3.10 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
969 B lrw-r--r-- 2024-11-13 20:41:34
Edit Download
15.63 KB lrw-r--r-- 2023-11-07 22:25:17
Edit Download
7.22 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
12.25 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
6.53 KB lrw-r--r-- 2023-08-08 22:41:19
Edit Download
3.42 KB lrw-r--r-- 2022-11-02 11:25:21
Edit Download
5.84 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
1.97 KB lrw-r--r-- 2023-03-30 00:07:26
Edit Download
4.30 KB lrw-r--r-- 2023-11-07 22:25:15
Edit Download
2.91 KB lrw-r--r-- 2022-11-02 11:25:21
Edit Download
16.46 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
40.53 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
19.42 KB lrw-r--r-- 2024-11-21 22:19:08
Edit Download
31.90 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
16.54 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
7.27 KB lrw-r--r-- 2023-11-07 22:25:17
Edit Download
6.47 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
15.73 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
1.79 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
29.82 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
6.67 KB lrw-r--r-- 2023-08-08 22:41:19
Edit Download
9.00 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
19.39 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
12.01 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
17.11 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
6.74 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
30.74 KB lrw-r--r-- 2024-07-16 22:10:08
Edit Download
4.99 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
24.73 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
29.63 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
6.33 KB lrw-r--r-- 2022-11-02 11:25:20
Edit Download
150.47 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
6.72 KB lrw-r--r-- 2022-11-02 11:25:19
Edit Download
10.92 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
4.50 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
3.38 KB lrw-r--r-- 2022-11-02 11:25:21
Edit Download
11.17 KB lrw-r--r-- 2023-08-08 22:41:19
Edit Download
62.20 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
2.46 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
8.38 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
18.91 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
27.68 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
7.28 KB lrw-r--r-- 2022-11-02 11:25:20
Edit Download
3.33 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
1.79 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
30.88 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
7.28 KB lrw-r--r-- 2022-11-02 11:25:19
Edit Download
10.75 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
19.10 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
18.13 KB lrw-r--r-- 2023-08-08 22:41:19
Edit Download
39.91 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
5.17 KB lrw-r--r-- 2022-11-02 11:25:20
Edit Download
979 B lrw-r--r-- 2024-04-02 22:06:50
Edit Download
18.37 KB lrw-r--r-- 2023-11-07 22:25:15
Edit Download
10.24 KB lrw-r--r-- 2024-11-21 22:19:08
Edit Download
1.77 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
34.97 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
7.19 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
157.01 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
63.88 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
27.95 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
2.92 KB lrw-r--r-- 2019-01-09 15:34:50
Edit Download
42.63 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
2.17 KB lrw-r--r-- 2022-11-02 11:25:20
Edit Download
22.29 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
13.01 KB lrw-r--r-- 2024-09-10 22:17:20
Edit Download
3.27 KB lrw-r--r-- 2022-11-02 11:25:21
Edit Download
17.99 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
209.91 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
25.51 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
115.61 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
373 B lrw-r--r-- 2022-11-02 11:25:21
Edit Download
343 B lrw-r--r-- 2022-11-02 11:25:21
Edit Download
338 B lrw-r--r-- 2022-11-02 11:25:21
Edit Download
100.36 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
127.22 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
16.58 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
40.62 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
400 B lrw-r--r-- 2022-11-02 11:25:20
Edit Download
11.10 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
34.85 KB lrw-r--r-- 2024-11-21 22:19:08
Edit Download
2.17 KB lrw-r--r-- 2021-05-25 17:57:58
Edit Download
185.67 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
338 B lrw-r--r-- 2022-11-02 11:25:21
Edit Download
37.02 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
4.02 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
5.38 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
2.98 KB lrw-r--r-- 2021-11-29 20:22:00
Edit Download
2.61 KB lrw-r--r-- 2020-01-29 11:15:18
Edit Download
1.16 KB lrw-r--r-- 2020-01-29 11:15:18
Edit Download
4.04 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
3.71 KB lrw-r--r-- 2020-01-29 11:15:18
Edit Download
22.86 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
9.52 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
327.37 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
276.53 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
14.22 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
8.38 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
165.52 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
20.71 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
24.72 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
5.53 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
4.63 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
72.66 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
66.81 KB lrw-r--r-- 2024-11-21 22:19:08
Edit Download
154.01 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
54.35 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
162 B lrw-r--r-- 2019-10-09 02:49:04
Edit Download
61.57 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
213.30 KB lrw-r--r-- 2024-11-21 22:19:08
Edit Download
62.90 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
25.17 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
4.81 KB lrw-r--r-- 2024-07-16 22:10:08
Edit Download
6.48 KB lrw-r--r-- 2023-03-30 00:07:26
Edit Download
21.25 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
2.65 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
89.11 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
19.42 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
3.69 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
4.03 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
39.54 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
25.31 KB lrw-r--r-- 2024-07-16 22:10:08
Edit Download
43.33 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
99.37 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
6.12 KB lrw-r--r-- 2020-01-12 05:02:06
Edit Download
113.25 KB lrw-r--r-- 2024-11-21 22:19:08
Edit Download
34.63 KB lrw-r--r-- 2023-08-08 22:41:20
Edit Download
6.94 KB lrw-r--r-- 2024-07-16 22:10:08
Edit Download
65.31 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
10.57 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
283.10 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
36.17 KB lrw-r--r-- 2023-11-07 22:25:15
Edit Download
200 B lrw-r--r-- 2020-11-12 21:47:08
Edit Download
200 B lrw-r--r-- 2020-11-12 21:47:08
Edit Download
97.26 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
30.17 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
19.08 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
5.06 KB lrw-r--r-- 2022-04-07 01:03:04
Edit Download
255 B lrw-r--r-- 2020-11-17 09:22:06
Edit Download
22.57 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
127.52 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
7.53 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
258 B lrw-r--r-- 2020-02-06 17:03:12
Edit Download
23.49 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
3.16 KB lrw-r--r-- 2021-05-16 03:08:06
Edit Download
441 B lrw-r--r-- 2020-11-12 21:47:08
Edit Download
7.39 KB lrw-r--r-- 2024-07-16 22:10:08
Edit Download
171.33 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
544 B lrw-r--r-- 2023-11-07 22:25:16
Edit Download
2.94 KB lrw-r--r-- 2020-05-26 19:07:10
Edit Download
23.59 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
1.26 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
2.77 KB lrw-r--r-- 2024-04-02 22:06:50
Edit Download
6.08 KB lrw-r--r-- 2023-11-07 22:25:16
Edit Download
8.50 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
130.84 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
35.93 KB lrw-r--r-- 2024-11-13 20:41:34
Edit Download
170.32 KB lrw-r--r-- 2024-11-13 20:41:33
Edit Download
6.34 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
931 B lrw-r--r-- 2024-11-21 22:19:08
Edit Download
69.03 KB lrw-r--r-- 2024-07-16 22:10:09
Edit Download
445 B lrw-r--r-- 2022-11-02 11:25:21
Edit Download
726 B lrw-r--r-- 2024-11-13 20:41:34
Edit Download

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