2012-04-19 18:32:41 -04:00
|
|
|
{
|
2013-12-15 13:56:51 -05:00
|
|
|
"name": "bootstrap",
|
2014-03-03 17:18:03 -05:00
|
|
|
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
|
2019-02-13 11:01:40 -05:00
|
|
|
"version": "4.3.1",
|
2019-02-11 14:15:34 -05:00
|
|
|
"version_short": "4.3",
|
2013-12-17 07:39:36 -05:00
|
|
|
"keywords": [
|
2014-03-03 17:20:37 -05:00
|
|
|
"css",
|
2015-01-15 16:20:40 -05:00
|
|
|
"sass",
|
2014-03-03 17:20:37 -05:00
|
|
|
"mobile-first",
|
|
|
|
"responsive",
|
|
|
|
"front-end",
|
|
|
|
"framework",
|
|
|
|
"web"
|
2013-12-17 07:39:36 -05:00
|
|
|
],
|
2018-04-02 07:55:58 -04:00
|
|
|
"homepage": "https://getbootstrap.com/",
|
2016-05-20 12:04:31 -04:00
|
|
|
"author": "The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)",
|
2016-06-20 19:18:21 -04:00
|
|
|
"contributors": [
|
|
|
|
"Twitter, Inc."
|
|
|
|
],
|
2013-12-17 07:39:36 -05:00
|
|
|
"scripts": {
|
2018-07-12 01:29:23 -04:00
|
|
|
"start": "npm-run-all --parallel watch docs-serve",
|
2019-02-19 04:36:34 -05:00
|
|
|
"linkinator": "linkinator _gh_pages --recurse --skip \"^(?!http://localhost)\"",
|
2017-09-27 09:20:46 -04:00
|
|
|
"bundlesize": "bundlesize",
|
2018-10-21 05:32:07 -04:00
|
|
|
"css": "npm-run-all css-compile css-prefix css-minify css-copy",
|
2019-01-08 11:33:28 -05:00
|
|
|
"css-copy": "cross-env-shell shx mkdir -p site/static/docs/$npm_package_version_short/dist/ && cross-env-shell shx cp -r dist/css/ site/static/docs/$npm_package_version_short/dist/",
|
2018-10-21 05:32:07 -04:00
|
|
|
"css-main": "npm-run-all css-lint css-compile-main css-prefix-main css-minify-main css-copy",
|
2019-01-08 11:33:28 -05:00
|
|
|
"css-docs": "npm-run-all css-compile-docs css-prefix-docs css-prefix-examples css-minify-docs",
|
2018-10-21 05:32:07 -04:00
|
|
|
"css-compile": "npm-run-all --parallel css-compile-*",
|
|
|
|
"css-compile-main": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap.scss dist/css/bootstrap.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap-grid.scss dist/css/bootstrap-grid.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap-reboot.scss dist/css/bootstrap-reboot.css && npm run css-copy",
|
2019-01-08 11:33:28 -05:00
|
|
|
"css-compile-docs": "cross-env-shell node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 site/static/docs/$npm_package_version_short/assets/scss/docs.scss site/static/docs/$npm_package_version_short/assets/css/docs.min.css",
|
2018-10-21 05:32:07 -04:00
|
|
|
"css-lint": "npm-run-all --parallel css-lint-*",
|
2019-01-06 04:07:10 -05:00
|
|
|
"css-lint-main": "stylelint \"scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
|
2019-01-08 11:33:28 -05:00
|
|
|
"css-lint-docs": "stylelint \"site/static/**/assets/scss/*.scss\" \"site/content/**/*.css\" --cache --cache-location .cache/.stylelintcache",
|
|
|
|
"css-lint-vars": "fusv scss/ site/static/",
|
2018-10-21 05:32:07 -04:00
|
|
|
"css-minify": "npm-run-all --parallel css-minify-*",
|
|
|
|
"css-minify-main": "cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css",
|
2019-01-08 11:33:28 -05:00
|
|
|
"css-minify-docs": "cross-env-shell cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output site/static/docs/$npm_package_version_short/assets/css/docs.min.css site/static/docs/$npm_package_version_short/assets/css/docs.min.css",
|
2018-10-21 05:32:07 -04:00
|
|
|
"css-prefix": "npm-run-all --parallel css-prefix-*",
|
|
|
|
"css-prefix-main": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
|
2019-01-08 11:33:28 -05:00
|
|
|
"css-prefix-docs": "postcss --config build/postcss.config.js --replace \"site/static/**/*.css\" \"site/static/**/*.css\"",
|
|
|
|
"css-prefix-examples": "postcss --config build/postcss.config.js --replace \"site/content/**/*.css\" \"site/content/**/*.css\"",
|
2018-10-17 15:25:30 -04:00
|
|
|
"js": "npm-run-all js-compile js-minify js-copy",
|
2019-01-08 11:33:28 -05:00
|
|
|
"js-copy": "cross-env-shell shx mkdir -p site/static/docs/$npm_package_version_short/dist/ && cross-env-shell shx cp -r dist/js/ site/static/docs/$npm_package_version_short/dist/",
|
2019-01-15 10:30:21 -05:00
|
|
|
"js-main": "npm-run-all js-lint js-compile js-minify-main",
|
2017-04-19 07:59:12 -04:00
|
|
|
"js-docs": "npm-run-all js-lint-docs js-minify-docs",
|
2018-07-03 04:12:38 -04:00
|
|
|
"js-compile": "npm-run-all --parallel js-compile-* --sequential js-copy",
|
2017-11-05 13:03:33 -05:00
|
|
|
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
|
2019-03-01 11:40:39 -05:00
|
|
|
"js-compile-standalone-esm": "rollup --environment ESM:true,BUNDLE:false --config build/rollup.config.js --sourcemap",
|
2017-11-05 13:03:33 -05:00
|
|
|
"js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
|
2018-06-27 05:33:07 -04:00
|
|
|
"js-compile-plugins": "node build/build-plugins.js",
|
|
|
|
"js-compile-plugins-coverage": "cross-env NODE_ENV=test node build/build-plugins.js",
|
2019-02-21 23:35:43 -05:00
|
|
|
"js-lint": "npm-run-all --continue-on-error --parallel js-lint-*",
|
2019-01-06 03:58:43 -05:00
|
|
|
"js-lint-main": "eslint --cache --cache-location .cache/.eslintcache js/src js/tests build/",
|
|
|
|
"js-lint-docs": "eslint --cache --cache-location .cache/.eslintcache site/",
|
2018-10-21 05:32:07 -04:00
|
|
|
"js-minify": "npm-run-all --parallel js-minify-main js-minify-docs",
|
2019-03-01 11:40:39 -05:00
|
|
|
"js-minify-main": "npm-run-all js-minify-standalone* js-minify-bundle",
|
2019-02-15 16:04:36 -05:00
|
|
|
"js-minify-standalone": "terser --compress --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.js.map,includeSources,url=bootstrap.min.js.map\" --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
|
2019-03-01 04:11:41 -05:00
|
|
|
"js-minify-standalone-esm": "terser --compress --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.esm.js.map,includeSources,url=bootstrap.esm.min.js.map\" --output dist/js/bootstrap.esm.min.js dist/js/bootstrap.esm.js",
|
2019-02-15 16:04:36 -05:00
|
|
|
"js-minify-bundle": "terser --compress --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.bundle.js.map,includeSources,url=bootstrap.bundle.min.js.map\" --output dist/js/bootstrap.bundle.min.js dist/js/bootstrap.bundle.js",
|
2019-01-08 11:33:28 -05:00
|
|
|
"js-minify-docs": "cross-env-shell terser --mangle --comments \\\"/^!/\\\" --output site/static/docs/$npm_package_version_short/assets/js/docs.min.js site/static/docs/$npm_package_version_short/assets/js/vendor/anchor.min.js site/static/docs/$npm_package_version_short/assets/js/vendor/clipboard.min.js site/static/docs/$npm_package_version_short/assets/js/vendor/bs-custom-file-input.min.js \"site/static/docs/$npm_package_version_short/assets/js/src/*.js\"",
|
2018-12-13 04:54:54 -05:00
|
|
|
"js-test": "npm-run-all js-test-karma* js-test-integration",
|
2019-02-22 17:37:55 -05:00
|
|
|
"js-debug": "cross-env DEBUG=true karma start js/tests/karma.conf.js",
|
2017-11-17 11:38:34 -05:00
|
|
|
"js-test-karma": "karma start js/tests/karma.conf.js",
|
2018-09-13 03:42:15 -04:00
|
|
|
"js-test-karma-bundle": "cross-env BUNDLE=true npm run js-test-karma",
|
2018-12-13 04:54:54 -05:00
|
|
|
"js-test-integration": "rollup --config js/tests/integration/rollup.bundle.js",
|
2018-09-13 03:42:15 -04:00
|
|
|
"js-test-cloud": "cross-env BROWSER=true npm run js-test-karma",
|
2019-01-05 11:43:46 -05:00
|
|
|
"lint": "npm-run-all --parallel js-lint css-lint",
|
2018-03-23 10:26:09 -04:00
|
|
|
"coveralls": "shx cat js/coverage/lcov.info | coveralls",
|
2018-10-21 05:32:07 -04:00
|
|
|
"docs": "npm-run-all css-docs js-docs docs-compile docs-lint",
|
2019-01-08 11:33:28 -05:00
|
|
|
"docs-compile": "hugo --cleanDestinationDir",
|
|
|
|
"docs-production": "cross-env HUGO_ENV=production npm run docs-compile",
|
2018-11-05 11:42:05 -05:00
|
|
|
"docs-lint": "node build/vnu-jar.js",
|
2019-01-08 11:33:28 -05:00
|
|
|
"docs-serve": "hugo server --port 9001 --disableFastRender --renderToDisk",
|
|
|
|
"docs-serve-only": "http-server _gh_pages -p 9001 -a localhost",
|
|
|
|
"update-deps": "ncu -a -x jquery -x bundlesize && npm update && cross-env-shell echo Manually update \\\"site/static/docs/$npm_package_version_short/assets/js/vendor/\\\"",
|
2019-02-19 07:35:19 -05:00
|
|
|
"release": "npm-run-all dist release-sri release-zip docs-production",
|
2017-11-23 03:22:54 -05:00
|
|
|
"release-sri": "node build/generate-sri.js",
|
2017-04-19 07:59:12 -04:00
|
|
|
"release-version": "node build/change-version.js",
|
2018-10-17 15:09:28 -04:00
|
|
|
"release-zip": "cross-env-shell \"shx rm -rf bootstrap-$npm_package_version-dist && shx cp -r dist/ bootstrap-$npm_package_version-dist && zip -r9 bootstrap-$npm_package_version-dist.zip bootstrap-$npm_package_version-dist && shx rm -rf bootstrap-$npm_package_version-dist\"",
|
2018-08-02 04:30:03 -04:00
|
|
|
"dist": "npm-run-all --parallel css js",
|
2018-10-17 15:25:30 -04:00
|
|
|
"test": "npm-run-all lint dist js-test docs-compile docs-lint bundlesize",
|
2018-07-12 01:29:23 -04:00
|
|
|
"watch": "npm-run-all --parallel watch-*",
|
2018-07-03 04:12:38 -04:00
|
|
|
"watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm run css-main\"",
|
2019-01-08 11:33:28 -05:00
|
|
|
"watch-css-docs": "nodemon --watch \"site/static/**/assets/scss/\" --ext scss --exec \"npm run css-docs\"",
|
2018-07-03 04:12:38 -04:00
|
|
|
"watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm run js-compile\"",
|
2019-01-08 11:33:28 -05:00
|
|
|
"watch-js-docs": "nodemon --watch \"site/static/**/assets/js/src/\" --ext js --exec \"npm run js-docs\""
|
2013-12-17 07:39:36 -05:00
|
|
|
},
|
2014-03-07 17:07:38 -05:00
|
|
|
"style": "dist/css/bootstrap.css",
|
2015-01-18 17:53:06 -05:00
|
|
|
"sass": "scss/bootstrap.scss",
|
2019-03-01 04:11:41 -05:00
|
|
|
"main": "dist/js/bootstrap.js",
|
|
|
|
"module": "dist/js/bootstrap.esm.js",
|
2013-12-15 13:56:51 -05:00
|
|
|
"repository": {
|
2013-12-20 14:09:51 -05:00
|
|
|
"type": "git",
|
2017-10-09 07:34:32 -04:00
|
|
|
"url": "git+https://github.com/twbs/bootstrap.git"
|
2013-12-15 13:56:51 -05:00
|
|
|
},
|
|
|
|
"bugs": {
|
2013-12-20 14:09:51 -05:00
|
|
|
"url": "https://github.com/twbs/bootstrap/issues"
|
2013-12-15 13:56:51 -05:00
|
|
|
},
|
2015-07-25 14:28:00 -04:00
|
|
|
"license": "MIT",
|
2017-08-09 22:41:05 -04:00
|
|
|
"dependencies": {},
|
2017-08-08 00:37:01 -04:00
|
|
|
"peerDependencies": {
|
2019-02-08 02:39:03 -05:00
|
|
|
"popper.js": "^1.14.7"
|
2016-03-07 04:23:55 -05:00
|
|
|
},
|
2013-12-15 13:56:51 -05:00
|
|
|
"devDependencies": {
|
2019-01-04 04:54:16 -05:00
|
|
|
"@babel/cli": "^7.2.3",
|
2019-02-28 01:46:24 -05:00
|
|
|
"@babel/core": "^7.3.4",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
|
|
|
|
"@babel/preset-env": "^7.3.4",
|
|
|
|
"autoprefixer": "^9.4.9",
|
2018-10-06 04:49:39 -04:00
|
|
|
"babel-eslint": "^10.0.1",
|
2019-02-18 03:50:09 -05:00
|
|
|
"babel-plugin-istanbul": "^5.1.1",
|
2019-01-04 04:54:16 -05:00
|
|
|
"bundlesize": "0.15.3",
|
2018-08-12 10:40:02 -04:00
|
|
|
"clean-css-cli": "^4.2.1",
|
2019-02-28 01:46:24 -05:00
|
|
|
"coveralls": "^3.0.3",
|
2018-06-20 01:50:02 -04:00
|
|
|
"cross-env": "^5.2.0",
|
2019-02-28 01:46:24 -05:00
|
|
|
"eslint": "^5.14.1",
|
2019-02-21 08:55:16 -05:00
|
|
|
"eslint-config-xo": "^0.26.0",
|
|
|
|
"eslint-plugin-import": "^2.16.0",
|
|
|
|
"eslint-plugin-unicorn": "^7.1.0",
|
2019-01-07 11:57:52 -05:00
|
|
|
"find-unused-sass-variables": "^0.3.2",
|
2018-08-28 08:13:26 -04:00
|
|
|
"glob": "^7.1.3",
|
2018-03-03 16:04:11 -05:00
|
|
|
"hammer-simulator": "0.0.1",
|
2019-01-08 11:33:28 -05:00
|
|
|
"http-server": "^0.11.1",
|
|
|
|
"hugo-bin": "^0.42.0",
|
2018-08-01 04:11:10 -04:00
|
|
|
"ip": "^1.1.5",
|
2018-12-13 04:54:54 -05:00
|
|
|
"jquery": "^3.3.1",
|
2019-03-01 11:12:54 -05:00
|
|
|
"karma": "^4.0.1",
|
2019-01-07 11:57:52 -05:00
|
|
|
"karma-browserstack-launcher": "^1.4.0",
|
2017-11-10 05:25:47 -05:00
|
|
|
"karma-chrome-launcher": "^2.2.0",
|
2019-02-18 03:50:09 -05:00
|
|
|
"karma-coverage-istanbul-reporter": "^2.0.5",
|
2018-10-06 04:49:39 -04:00
|
|
|
"karma-detect-browsers": "^2.3.3",
|
2017-12-22 03:37:59 -05:00
|
|
|
"karma-firefox-launcher": "^1.1.0",
|
2019-03-01 11:12:54 -05:00
|
|
|
"karma-qunit": "^3.0.0",
|
2018-03-09 17:17:57 -05:00
|
|
|
"karma-sinon": "^1.0.5",
|
2019-02-19 04:36:34 -05:00
|
|
|
"linkinator": "^1.1.6",
|
2018-12-10 03:34:30 -05:00
|
|
|
"node-sass": "^4.11.0",
|
2019-02-15 08:38:24 -05:00
|
|
|
"nodemon": "^1.18.10",
|
2018-11-24 11:14:31 -05:00
|
|
|
"npm-run-all": "^4.1.5",
|
2019-02-08 02:39:03 -05:00
|
|
|
"popper.js": "^1.14.7",
|
2019-02-28 01:46:24 -05:00
|
|
|
"postcss-cli": "^6.1.2",
|
|
|
|
"qunit": "^2.9.2",
|
2019-03-01 11:12:54 -05:00
|
|
|
"rollup": "^1.4.0",
|
2019-01-24 14:25:49 -05:00
|
|
|
"rollup-plugin-babel": "^4.3.2",
|
2019-02-28 01:46:24 -05:00
|
|
|
"rollup-plugin-node-resolve": "^4.0.1",
|
2018-11-16 01:50:04 -05:00
|
|
|
"shelljs": "^0.8.3",
|
2018-07-28 14:47:14 -04:00
|
|
|
"shx": "^0.3.2",
|
2019-02-28 01:46:24 -05:00
|
|
|
"sinon": "^7.2.5",
|
2019-01-24 14:25:49 -05:00
|
|
|
"stylelint": "^9.10.1",
|
|
|
|
"stylelint-config-twbs-bootstrap": "^0.3.0",
|
2019-02-19 08:51:50 -05:00
|
|
|
"terser": "^3.16.1",
|
2018-11-16 01:50:04 -05:00
|
|
|
"vnu-jar": "18.11.5"
|
2013-12-15 13:56:51 -05:00
|
|
|
},
|
2014-03-07 01:42:48 -05:00
|
|
|
"engines": {
|
2019-02-19 04:57:26 -05:00
|
|
|
"node": ">=8"
|
2014-03-07 01:42:48 -05:00
|
|
|
},
|
2015-02-14 07:36:50 -05:00
|
|
|
"files": [
|
2018-08-02 02:25:40 -04:00
|
|
|
"dist/{css,js}/*.{css,js,map}",
|
2019-02-13 08:21:04 -05:00
|
|
|
"js/{src,dist}/**/*.{js,map}",
|
2018-08-02 02:25:40 -04:00
|
|
|
"scss/**/*.scss"
|
2015-02-14 07:36:50 -05:00
|
|
|
],
|
2017-09-27 09:20:46 -04:00
|
|
|
"bundlesize": [
|
|
|
|
{
|
2017-10-02 15:03:12 -04:00
|
|
|
"path": "./dist/css/bootstrap-grid.css",
|
2018-08-12 17:39:45 -04:00
|
|
|
"maxSize": "7 kB"
|
2017-10-02 15:03:12 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap-grid.min.css",
|
2018-07-29 00:34:27 -04:00
|
|
|
"maxSize": "6 kB"
|
2017-10-02 15:03:12 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap-reboot.css",
|
2019-01-10 02:03:16 -05:00
|
|
|
"maxSize": "2 kB"
|
2017-10-02 15:03:12 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap-reboot.min.css",
|
2019-01-10 02:03:16 -05:00
|
|
|
"maxSize": "2 kB"
|
2017-10-02 15:03:12 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap.css",
|
2019-01-10 02:03:16 -05:00
|
|
|
"maxSize": "25 kB"
|
2017-09-27 09:20:46 -04:00
|
|
|
},
|
2017-10-02 15:03:12 -04:00
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap.min.css",
|
2019-01-10 02:03:16 -05:00
|
|
|
"maxSize": "23 kB"
|
2017-10-02 15:03:12 -04:00
|
|
|
},
|
2017-09-27 09:20:46 -04:00
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.bundle.js",
|
2017-11-16 11:04:15 -05:00
|
|
|
"maxSize": "51 kB"
|
2017-09-27 09:20:46 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.bundle.min.js",
|
2017-11-16 11:04:15 -05:00
|
|
|
"maxSize": "24 kB"
|
2017-09-27 09:20:46 -04:00
|
|
|
},
|
2019-03-01 11:40:59 -05:00
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.esm.js",
|
|
|
|
"maxSize": "27 kB"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.esm.min.js",
|
|
|
|
"maxSize": "18 kB"
|
|
|
|
},
|
2017-09-27 09:20:46 -04:00
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.js",
|
2017-11-16 11:04:15 -05:00
|
|
|
"maxSize": "29 kB"
|
2017-09-27 09:20:46 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.min.js",
|
2017-11-16 11:04:15 -05:00
|
|
|
"maxSize": "17.5 kB"
|
2017-09-27 09:20:46 -04:00
|
|
|
}
|
|
|
|
],
|
2013-12-15 13:56:51 -05:00
|
|
|
"jspm": {
|
2017-09-05 14:49:29 -04:00
|
|
|
"registry": "npm",
|
2013-12-15 13:56:51 -05:00
|
|
|
"main": "js/bootstrap",
|
2015-08-24 07:44:30 -04:00
|
|
|
"directories": {
|
|
|
|
"lib": "dist"
|
|
|
|
},
|
2013-12-15 13:56:51 -05:00
|
|
|
"shim": {
|
|
|
|
"js/bootstrap": {
|
2015-10-13 17:49:05 -04:00
|
|
|
"deps": [
|
2017-08-15 07:48:38 -04:00
|
|
|
"popper.js"
|
2018-06-17 16:59:48 -04:00
|
|
|
]
|
2013-12-15 13:56:51 -05:00
|
|
|
}
|
|
|
|
},
|
2017-08-15 07:48:38 -04:00
|
|
|
"dependencies": {},
|
|
|
|
"peerDependencies": {
|
2019-02-08 02:39:03 -05:00
|
|
|
"popper.js": "^1.14.7"
|
2015-08-24 07:44:30 -04:00
|
|
|
}
|
2013-11-26 05:10:06 -05:00
|
|
|
}
|
2012-12-20 02:52:38 -05:00
|
|
|
}
|