3 * Resource loader module based on local JavaScript/CSS files.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @author Trevor Parscal
22 * @author Roan Kattouw
26 * ResourceLoader module based on local JavaScript/CSS files.
28 class ResourceLoaderFileModule
extends ResourceLoaderModule
{
29 /* Protected Members */
31 /** @var string Local base path, see __construct() */
32 protected $localBasePath = '';
34 /** @var string Remote base path, see __construct() */
35 protected $remoteBasePath = '';
37 /** @var array Saves a list of the templates named by the modules. */
38 protected $templates = array();
41 * @var array List of paths to JavaScript files to always include
44 * array( [file-path], [file-path], ... )
47 protected $scripts = array();
50 * @var array List of JavaScript files to include when using a specific language
53 * array( [language-code] => array( [file-path], [file-path], ... ), ... )
56 protected $languageScripts = array();
59 * @var array List of JavaScript files to include when using a specific skin
62 * array( [skin-name] => array( [file-path], [file-path], ... ), ... )
65 protected $skinScripts = array();
68 * @var array List of paths to JavaScript files to include in debug mode
71 * array( [skin-name] => array( [file-path], [file-path], ... ), ... )
74 protected $debugScripts = array();
77 * @var array List of paths to JavaScript files to include in the startup module
80 * array( [file-path], [file-path], ... )
83 protected $loaderScripts = array();
86 * @var array List of paths to CSS files to always include
89 * array( [file-path], [file-path], ... )
92 protected $styles = array();
95 * @var array List of paths to CSS files to include when using specific skins
98 * array( [file-path], [file-path], ... )
101 protected $skinStyles = array();
104 * @var array List of modules this module depends on
107 * array( [file-path], [file-path], ... )
110 protected $dependencies = array();
113 * @var string File name containing the body of the skip function
115 protected $skipFunction = null;
118 * @var array List of message keys used by this module
121 * array( [message-key], [message-key], ... )
124 protected $messages = array();
126 /** @var string Name of group to load this module in */
129 /** @var string Position on the page to load this module at */
130 protected $position = 'bottom';
132 /** @var bool Link to raw files in debug mode */
133 protected $debugRaw = true;
135 /** @var bool Whether mw.loader.state() call should be omitted */
136 protected $raw = false;
138 protected $targets = array( 'desktop' );
141 * @var bool Whether getStyleURLsForDebug should return raw file paths,
142 * or return load.php urls
144 protected $hasGeneratedStyles = false;
147 * @var array Cache for mtime
150 * array( [hash] => [mtime], [hash] => [mtime], ... )
153 protected $modifiedTime = array();
156 * @var array Place where readStyleFile() tracks file dependencies
159 * array( [file-path], [file-path], ... )
162 protected $localFileRefs = array();
167 * Constructs a new module from an options array.
169 * @param array $options List of options; if not given or empty, an empty module will be
171 * @param string $localBasePath Base path to prepend to all local paths in $options. Defaults
173 * @param string $remoteBasePath Base path to prepend to all remote paths in $options. Defaults
174 * to $wgResourceBasePath
176 * Below is a description for the $options array:
177 * @throws MWException
178 * @par Construction options:
181 * // Base path to prepend to all local paths in $options. Defaults to $IP
182 * 'localBasePath' => [base path],
183 * // Base path to prepend to all remote paths in $options. Defaults to $wgResourceBasePath
184 * 'remoteBasePath' => [base path],
185 * // Equivalent of remoteBasePath, but relative to $wgExtensionAssetsPath
186 * 'remoteExtPath' => [base path],
187 * // Equivalent of remoteBasePath, but relative to $wgStylePath
188 * 'remoteSkinPath' => [base path],
189 * // Scripts to always include
190 * 'scripts' => [file path string or array of file path strings],
191 * // Scripts to include in specific language contexts
192 * 'languageScripts' => array(
193 * [language code] => [file path string or array of file path strings],
195 * // Scripts to include in specific skin contexts
196 * 'skinScripts' => array(
197 * [skin name] => [file path string or array of file path strings],
199 * // Scripts to include in debug contexts
200 * 'debugScripts' => [file path string or array of file path strings],
201 * // Scripts to include in the startup module
202 * 'loaderScripts' => [file path string or array of file path strings],
203 * // Modules which must be loaded before this module
204 * 'dependencies' => [module name string or array of module name strings],
205 * 'templates' => array(
206 * [template alias with file.ext] => [file path to a template file],
208 * // Styles to always load
209 * 'styles' => [file path string or array of file path strings],
210 * // Styles to include in specific skin contexts
211 * 'skinStyles' => array(
212 * [skin name] => [file path string or array of file path strings],
214 * // Messages to always load
215 * 'messages' => [array of message key strings],
216 * // Group which this module should be loaded together with
217 * 'group' => [group name string],
218 * // Position on the page to load this module at
219 * 'position' => ['bottom' (default) or 'top']
220 * // Function that, if it returns true, makes the loader skip this module.
221 * // The file must contain valid JavaScript for execution in a private function.
222 * // The file must not contain the "function () {" and "}" wrapper though.
223 * 'skipFunction' => [file path]
227 public function __construct(
229 $localBasePath = null,
230 $remoteBasePath = null
232 // Flag to decide whether to automagically add the mediawiki.template module
233 $hasTemplates = false;
234 // localBasePath and remoteBasePath both have unbelievably long fallback chains
235 // and need to be handled separately.
236 list( $this->localBasePath
, $this->remoteBasePath
) =
237 self
::extractBasePaths( $options, $localBasePath, $remoteBasePath );
239 // Extract, validate and normalise remaining options
240 foreach ( $options as $member => $option ) {
242 // Lists of file paths
245 case 'loaderScripts':
247 $this->{$member} = (array)$option;
250 $hasTemplates = true;
251 $this->{$member} = (array)$option;
253 // Collated lists of file paths
254 case 'languageScripts':
257 if ( !is_array( $option ) ) {
258 throw new MWException(
259 "Invalid collated file path list error. " .
260 "'$option' given, array expected."
263 foreach ( $option as $key => $value ) {
264 if ( !is_string( $key ) ) {
265 throw new MWException(
266 "Invalid collated file path list key error. " .
267 "'$key' given, string expected."
270 $this->{$member}[$key] = (array)$value;
278 $option = array_values( array_unique( (array)$option ) );
281 $this->{$member} = $option;
287 $this->{$member} = (string)$option;
292 $this->{$member} = (bool)$option;
296 if ( $hasTemplates ) {
297 $this->dependencies
[] = 'mediawiki.template';
302 * Extract a pair of local and remote base paths from module definition information.
303 * Implementation note: the amount of global state used in this function is staggering.
305 * @param array $options Module definition
306 * @param string $localBasePath Path to use if not provided in module definition. Defaults
308 * @param string $remoteBasePath Path to use if not provided in module definition. Defaults
309 * to $wgResourceBasePath
310 * @return array Array( localBasePath, remoteBasePath )
312 public static function extractBasePaths(
314 $localBasePath = null,
315 $remoteBasePath = null
317 global $IP, $wgResourceBasePath;
319 // The different ways these checks are done, and their ordering, look very silly,
320 // but were preserved for backwards-compatibility just in case. Tread lightly.
322 if ( $localBasePath === null ) {
323 $localBasePath = $IP;
325 if ( $remoteBasePath === null ) {
326 $remoteBasePath = $wgResourceBasePath;
329 if ( isset( $options['remoteExtPath'] ) ) {
330 global $wgExtensionAssetsPath;
331 $remoteBasePath = $wgExtensionAssetsPath . '/' . $options['remoteExtPath'];
334 if ( isset( $options['remoteSkinPath'] ) ) {
336 $remoteBasePath = $wgStylePath . '/' . $options['remoteSkinPath'];
339 if ( array_key_exists( 'localBasePath', $options ) ) {
340 $localBasePath = (string)$options['localBasePath'];
343 if ( array_key_exists( 'remoteBasePath', $options ) ) {
344 $remoteBasePath = (string)$options['remoteBasePath'];
347 // Make sure the remote base path is a complete valid URL,
348 // but possibly protocol-relative to avoid cache pollution
349 $remoteBasePath = wfExpandUrl( $remoteBasePath, PROTO_RELATIVE
);
351 return array( $localBasePath, $remoteBasePath );
355 * Gets all scripts for a given context concatenated together.
357 * @param ResourceLoaderContext $context Context in which to generate script
358 * @return string JavaScript code for $context
360 public function getScript( ResourceLoaderContext
$context ) {
361 $files = $this->getScriptFiles( $context );
362 return $this->readScriptFiles( $files );
366 * @param ResourceLoaderContext $context
369 public function getScriptURLsForDebug( ResourceLoaderContext
$context ) {
371 foreach ( $this->getScriptFiles( $context ) as $file ) {
372 $urls[] = $this->getRemotePath( $file );
380 public function supportsURLLoading() {
381 return $this->debugRaw
;
387 * @return string|bool JavaScript code to be added to startup module
389 public function getLoaderScript() {
390 if ( count( $this->loaderScripts
) === 0 ) {
393 return $this->readScriptFiles( $this->loaderScripts
);
397 * Get all styles for a given context.
399 * @param ResourceLoaderContext $context
400 * @return array CSS code for $context as an associative array mapping media type to CSS text.
402 public function getStyles( ResourceLoaderContext
$context ) {
403 $styles = $this->readStyleFiles(
404 $this->getStyleFiles( $context ),
405 $this->getFlip( $context ),
408 // Collect referenced files
409 $this->localFileRefs
= array_unique( $this->localFileRefs
);
410 // If the list has been modified since last time we cached it, update the cache
412 if ( $this->localFileRefs
!== $this->getFileDependencies( $context->getSkin() ) ) {
413 $dbw = wfGetDB( DB_MASTER
);
414 $dbw->replace( 'module_deps',
415 array( array( 'md_module', 'md_skin' ) ), array(
416 'md_module' => $this->getName(),
417 'md_skin' => $context->getSkin(),
418 'md_deps' => FormatJson
::encode( $this->localFileRefs
),
422 } catch ( Exception
$e ) {
423 wfDebugLog( 'resourceloader', __METHOD__
. ": failed to update DB: $e" );
429 * @param ResourceLoaderContext $context
432 public function getStyleURLsForDebug( ResourceLoaderContext
$context ) {
433 if ( $this->hasGeneratedStyles
) {
434 // Do the default behaviour of returning a url back to load.php
435 // but with only=styles.
436 return parent
::getStyleURLsForDebug( $context );
438 // Our module consists entirely of real css files,
439 // in debug mode we can load those directly.
441 foreach ( $this->getStyleFiles( $context ) as $mediaType => $list ) {
442 $urls[$mediaType] = array();
443 foreach ( $list as $file ) {
444 $urls[$mediaType][] = $this->getRemotePath( $file );
451 * Gets list of message keys used by this module.
453 * @return array List of message keys
455 public function getMessages() {
456 return $this->messages
;
460 * Gets the name of the group this module should be loaded in.
462 * @return string Group name
464 public function getGroup() {
471 public function getPosition() {
472 return $this->position
;
476 * Gets list of names of modules this module depends on.
478 * @return array List of module names
480 public function getDependencies() {
481 return $this->dependencies
;
485 * Get the skip function.
486 * @return null|string
487 * @throws MWException
489 public function getSkipFunction() {
490 if ( !$this->skipFunction
) {
494 $localPath = $this->getLocalPath( $this->skipFunction
);
495 if ( !file_exists( $localPath ) ) {
496 throw new MWException( __METHOD__
. ": skip function file not found: \"$localPath\"" );
498 $contents = file_get_contents( $localPath );
499 if ( $this->getConfig()->get( 'ResourceLoaderValidateStaticJS' ) ) {
500 $contents = $this->validateScriptFile( $localPath, $contents );
508 public function isRaw() {
513 * Get the last modified timestamp of this module.
515 * Last modified timestamps are calculated from the highest last modified
516 * timestamp of this module's constituent files as well as the files it
517 * depends on. This function is context-sensitive, only performing
518 * calculations on files relevant to the given language, skin and debug
521 * @param ResourceLoaderContext $context Context in which to calculate
523 * @return int UNIX timestamp
524 * @see ResourceLoaderModule::getFileDependencies
526 public function getModifiedTime( ResourceLoaderContext
$context ) {
527 if ( isset( $this->modifiedTime
[$context->getHash()] ) ) {
528 return $this->modifiedTime
[$context->getHash()];
533 // Flatten style files into $files
534 $styles = self
::collateFilePathListByOption( $this->styles
, 'media', 'all' );
535 foreach ( $styles as $styleFiles ) {
536 $files = array_merge( $files, $styleFiles );
539 $skinFiles = self
::collateFilePathListByOption(
540 self
::tryForKey( $this->skinStyles
, $context->getSkin(), 'default' ),
544 foreach ( $skinFiles as $styleFiles ) {
545 $files = array_merge( $files, $styleFiles );
548 // Final merge, this should result in a master list of dependent files
549 $files = array_merge(
553 $context->getDebug() ?
$this->debugScripts
: array(),
554 $this->getLanguageScripts( $context->getLanguage() ),
555 self
::tryForKey( $this->skinScripts
, $context->getSkin(), 'default' ),
558 if ( $this->skipFunction
) {
559 $files[] = $this->skipFunction
;
561 $files = array_map( array( $this, 'getLocalPath' ), $files );
562 // File deps need to be treated separately because they're already prefixed
563 $files = array_merge( $files, $this->getFileDependencies( $context->getSkin() ) );
565 // If a module is nothing but a list of dependencies, we need to avoid
566 // giving max() an empty array
567 if ( count( $files ) === 0 ) {
568 $this->modifiedTime
[$context->getHash()] = 1;
569 return $this->modifiedTime
[$context->getHash()];
572 $filesMtime = max( array_map( array( __CLASS__
, 'safeFilemtime' ), $files ) );
574 $this->modifiedTime
[$context->getHash()] = max(
576 $this->getMsgBlobMtime( $context->getLanguage() ),
577 $this->getDefinitionMtime( $context )
580 return $this->modifiedTime
[$context->getHash()];
584 * Get the definition summary for this module.
586 * @param ResourceLoaderContext $context
589 public function getDefinitionSummary( ResourceLoaderContext
$context ) {
591 'class' => get_class( $this ),
613 $summary[$member] = $this->{$member};
618 /* Protected Methods */
621 * @param string|ResourceLoaderFilePath $path
624 protected function getLocalPath( $path ) {
625 if ( $path instanceof ResourceLoaderFilePath
) {
626 return $path->getLocalPath();
629 return "{$this->localBasePath}/$path";
633 * @param string|ResourceLoaderFilePath $path
636 protected function getRemotePath( $path ) {
637 if ( $path instanceof ResourceLoaderFilePath
) {
638 return $path->getRemotePath();
641 return "{$this->remoteBasePath}/$path";
645 * Infer the stylesheet language from a stylesheet file path.
648 * @param string $path
649 * @return string The stylesheet language name
651 public function getStyleSheetLang( $path ) {
652 return preg_match( '/\.less$/i', $path ) ?
'less' : 'css';
656 * Collates file paths by option (where provided).
658 * @param array $list List of file paths in any combination of index/path
659 * or path/options pairs
660 * @param string $option Option name
661 * @param mixed $default Default value if the option isn't set
662 * @return array List of file paths, collated by $option
664 protected static function collateFilePathListByOption( array $list, $option, $default ) {
665 $collatedFiles = array();
666 foreach ( (array)$list as $key => $value ) {
667 if ( is_int( $key ) ) {
668 // File name as the value
669 if ( !isset( $collatedFiles[$default] ) ) {
670 $collatedFiles[$default] = array();
672 $collatedFiles[$default][] = $value;
673 } elseif ( is_array( $value ) ) {
674 // File name as the key, options array as the value
675 $optionValue = isset( $value[$option] ) ?
$value[$option] : $default;
676 if ( !isset( $collatedFiles[$optionValue] ) ) {
677 $collatedFiles[$optionValue] = array();
679 $collatedFiles[$optionValue][] = $key;
682 return $collatedFiles;
686 * Get a list of element that match a key, optionally using a fallback key.
688 * @param array $list List of lists to select from
689 * @param string $key Key to look for in $map
690 * @param string $fallback Key to look for in $list if $key doesn't exist
691 * @return array List of elements from $map which matched $key or $fallback,
692 * or an empty list in case of no match
694 protected static function tryForKey( array $list, $key, $fallback = null ) {
695 if ( isset( $list[$key] ) && is_array( $list[$key] ) ) {
697 } elseif ( is_string( $fallback )
698 && isset( $list[$fallback] )
699 && is_array( $list[$fallback] )
701 return $list[$fallback];
707 * Get a list of file paths for all scripts in this module, in order of proper execution.
709 * @param ResourceLoaderContext $context
710 * @return array List of file paths
712 protected function getScriptFiles( ResourceLoaderContext
$context ) {
713 $files = array_merge(
715 $this->getLanguageScripts( $context->getLanguage() ),
716 self
::tryForKey( $this->skinScripts
, $context->getSkin(), 'default' )
718 if ( $context->getDebug() ) {
719 $files = array_merge( $files, $this->debugScripts
);
722 return array_unique( $files, SORT_REGULAR
);
726 * Get the set of language scripts for the given language,
727 * possibly using a fallback language.
729 * @param string $lang
732 private function getLanguageScripts( $lang ) {
733 $scripts = self
::tryForKey( $this->languageScripts
, $lang );
737 $fallbacks = Language
::getFallbacksFor( $lang );
738 foreach ( $fallbacks as $lang ) {
739 $scripts = self
::tryForKey( $this->languageScripts
, $lang );
749 * Get a list of file paths for all styles in this module, in order of proper inclusion.
751 * @param ResourceLoaderContext $context
752 * @return array List of file paths
754 public function getStyleFiles( ResourceLoaderContext
$context ) {
755 return array_merge_recursive(
756 self
::collateFilePathListByOption( $this->styles
, 'media', 'all' ),
757 self
::collateFilePathListByOption(
758 self
::tryForKey( $this->skinStyles
, $context->getSkin(), 'default' ),
766 * Gets a list of file paths for all skin styles in the module used by
769 * @param string $skinName The name of the skin
770 * @return array A list of file paths collated by media type
772 protected function getSkinStyleFiles( $skinName ) {
773 return self
::collateFilePathListByOption(
774 self
::tryForKey( $this->skinStyles
, $skinName ),
781 * Gets a list of file paths for all skin style files in the module,
782 * for all available skins.
784 * @return array A list of file paths collated by media type
786 protected function getAllSkinStyleFiles() {
787 $styleFiles = array();
788 $internalSkinNames = array_keys( Skin
::getSkinNames() );
789 $internalSkinNames[] = 'default';
791 foreach ( $internalSkinNames as $internalSkinName ) {
792 $styleFiles = array_merge_recursive(
794 $this->getSkinStyleFiles( $internalSkinName )
802 * Returns all style files and all skin style files used by this module.
806 public function getAllStyleFiles() {
807 $collatedStyleFiles = array_merge_recursive(
808 self
::collateFilePathListByOption( $this->styles
, 'media', 'all' ),
809 $this->getAllSkinStyleFiles()
814 foreach ( $collatedStyleFiles as $media => $styleFiles ) {
815 foreach ( $styleFiles as $styleFile ) {
816 $result[] = $this->getLocalPath( $styleFile );
824 * Gets the contents of a list of JavaScript files.
826 * @param array $scripts List of file paths to scripts to read, remap and concetenate
827 * @throws MWException
828 * @return string Concatenated and remapped JavaScript data from $scripts
830 protected function readScriptFiles( array $scripts ) {
831 if ( empty( $scripts ) ) {
835 foreach ( array_unique( $scripts, SORT_REGULAR
) as $fileName ) {
836 $localPath = $this->getLocalPath( $fileName );
837 if ( !file_exists( $localPath ) ) {
838 throw new MWException( __METHOD__
. ": script file not found: \"$localPath\"" );
840 $contents = file_get_contents( $localPath );
841 if ( $this->getConfig()->get( 'ResourceLoaderValidateStaticJS' ) ) {
842 // Static files don't really need to be checked as often; unlike
843 // on-wiki module they shouldn't change unexpectedly without
844 // admin interference.
845 $contents = $this->validateScriptFile( $fileName, $contents );
847 $js .= $contents . "\n";
853 * Gets the contents of a list of CSS files.
855 * @param array $styles List of media type/list of file paths pairs, to read, remap and
858 * @param ResourceLoaderContext $context (optional)
860 * @throws MWException
861 * @return array List of concatenated and remapped CSS data from $styles,
862 * keyed by media type
864 public function readStyleFiles( array $styles, $flip, $context = null ) {
865 if ( empty( $styles ) ) {
868 foreach ( $styles as $media => $files ) {
869 $uniqueFiles = array_unique( $files, SORT_REGULAR
);
870 $styleFiles = array();
871 foreach ( $uniqueFiles as $file ) {
872 $styleFiles[] = $this->readStyleFile( $file, $flip, $context );
874 $styles[$media] = implode( "\n", $styleFiles );
880 * Reads a style file.
882 * This method can be used as a callback for array_map()
884 * @param string $path File path of style file to read
886 * @param ResourceLoaderContext $context (optional)
888 * @return string CSS data in script file
889 * @throws MWException If the file doesn't exist
891 protected function readStyleFile( $path, $flip, $context = null ) {
892 $localPath = $this->getLocalPath( $path );
893 $remotePath = $this->getRemotePath( $path );
894 if ( !file_exists( $localPath ) ) {
895 $msg = __METHOD__
. ": style file not found: \"$localPath\"";
896 wfDebugLog( 'resourceloader', $msg );
897 throw new MWException( $msg );
900 if ( $this->getStyleSheetLang( $localPath ) === 'less' ) {
901 $compiler = $this->getLessCompiler( $context );
902 $style = $this->compileLessFile( $localPath, $compiler );
903 $this->hasGeneratedStyles
= true;
905 $style = file_get_contents( $localPath );
909 $style = CSSJanus
::transform( $style, true, false );
911 $localDir = dirname( $localPath );
912 $remoteDir = dirname( $remotePath );
913 // Get and register local file references
914 $this->localFileRefs
= array_merge(
915 $this->localFileRefs
,
916 CSSMin
::getLocalFileReferences( $style, $localDir )
918 return CSSMin
::remap(
919 $style, $localDir, $remoteDir, true
924 * Get whether CSS for this module should be flipped
925 * @param ResourceLoaderContext $context
928 public function getFlip( $context ) {
929 return $context->getDirection() === 'rtl';
933 * Get target(s) for the module, eg ['desktop'] or ['desktop', 'mobile']
935 * @return array Array of strings
937 public function getTargets() {
938 return $this->targets
;
942 * Compile a LESS file into CSS.
944 * Keeps track of all used files and adds them to localFileRefs.
947 * @throws Exception If lessc encounters a parse error
948 * @param string $fileName File path of LESS source
949 * @param lessc $compiler Compiler to use, if not default
950 * @return string CSS source
952 protected function compileLessFile( $fileName, $compiler = null ) {
954 $compiler = $this->getLessCompiler();
956 $result = $compiler->compileFile( $fileName );
957 $this->localFileRefs +
= array_keys( $compiler->allParsedFiles() );
962 * Get a LESS compiler instance for this module in given context.
964 * Just calls ResourceLoader::getLessCompiler() by default to get a global compiler.
966 * @param ResourceLoaderContext $context
967 * @throws MWException
971 protected function getLessCompiler( ResourceLoaderContext
$context = null ) {
972 return ResourceLoader
::getLessCompiler( $this->getConfig() );
976 * Takes named templates by the module and returns an array mapping.
977 * @return array of templates mapping template alias to content
978 * @throws MWException
980 public function getTemplates() {
981 $templates = array();
983 foreach ( $this->templates
as $alias => $templatePath ) {
985 if ( is_int( $alias ) ) {
986 $alias = $templatePath;
988 $localPath = $this->getLocalPath( $templatePath );
989 if ( file_exists( $localPath ) ) {
990 $content = file_get_contents( $localPath );
991 $templates[$alias] = $content;
993 $msg = __METHOD__
. ": template file not found: \"$localPath\"";
994 wfDebugLog( 'resourceloader', $msg );
995 throw new MWException( $msg );