📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.38 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: genfun.js
'use strict' const Method = require('./method') const Role = require('./role') const util = require('./util') const kCache = Symbol('cache') const kDefaultMethod = Symbol('defaultMethod') const kMethods = Symbol('methods') const kNoNext = Symbol('noNext') module.exports = function genfun (opts) { function gf () { if (!gf[kMethods].length && gf[kDefaultMethod]) { return gf[kDefaultMethod].func.apply(this, arguments) } else { return gf.applyGenfun(this, arguments) } } Object.setPrototypeOf(gf, Genfun.prototype) gf[kMethods] = [] gf[kCache] = {key: [], methods: [], state: STATES.UNINITIALIZED} if (opts && typeof opts === 'function') { gf.add(opts) } else if (opts && opts.default) { gf.add(opts.default) } if (opts && opts.name) { Object.defineProperty(gf, 'name', { value: opts.name }) } if (opts && opts.noNextMethod) { gf[kNoNext] = true } return gf } class Genfun extends Function {} Genfun.prototype.isGenfun = true const STATES = { UNINITIALIZED: 0, MONOMORPHIC: 1, POLYMORPHIC: 2, MEGAMORPHIC: 3 } const MAX_CACHE_SIZE = 32 /** * Defines a method on a generic function. * * @function * @param {Array-like} selector - Selector array for dispatching the method. * @param {Function} methodFunction - Function to execute when the method * successfully dispatches. */ Genfun.prototype.add = function addMethod (selector, func) { if (!func && typeof selector === 'function') { func = selector selector = [] } selector = [].slice.call(selector) for (var i = 0; i < selector.length; i++) { if (!selector.hasOwnProperty(i)) { selector[i] = Object.prototype } } this[kCache] = {key: [], methods: [], state: STATES.UNINITIALIZED} let method = new Method(this, selector, func) if (selector.length) { this[kMethods].push(method) } else { this[kDefaultMethod] = method } return this } /** * Removes a previously-defined method on `genfun` that matches * `selector` exactly. * * @function * @param {Genfun} genfun - Genfun to remove a method from. * @param {Array-like} selector - Objects to match on when finding a * method to remove. */ Genfun.prototype.rm = function removeMethod () { throw new Error('not yet implemented') } /** * Returns true if there are methods that apply to the given arguments on * `genfun`. Additionally, makes sure the cache is warmed up for the given * arguments. * */ Genfun.prototype.hasMethod = function hasMethod () { const methods = this.getApplicableMethods(arguments) return !!(methods && methods.length) } /** * This generic function is called when `genfun` has been called and no * applicable method was found. The default method throws an `Error`. * * @function * @param {Genfun} genfun - Generic function instance that was called. * @param {*} newthis - value of `this` the genfun was called with. * @param {Array} callArgs - Arguments the genfun was called with. */ module.exports.noApplicableMethod = module.exports() module.exports.noApplicableMethod.add([], (gf, thisArg, args) => { let msg = 'No applicable method found when called with arguments of types: (' + [].map.call(args, (arg) => { return (/\[object ([a-zA-Z0-9]+)\]/) .exec(({}).toString.call(arg))[1] }).join(', ') + ')' let err = new Error(msg) err.genfun = gf err.thisArg = thisArg err.args = args throw err }) /* * Internal */ Genfun.prototype.applyGenfun = function applyGenfun (newThis, args) { let applicableMethods = this.getApplicableMethods(args) if (applicableMethods.length === 1 || this[kNoNext]) { return applicableMethods[0].func.apply(newThis, args) } else if (applicableMethods.length > 1) { let idx = 0 const nextMethod = function nextMethod () { if (arguments.length) { // Replace args if passed in explicitly args = arguments Array.prototype.push.call(args, nextMethod) } const next = applicableMethods[idx++] if (idx >= applicableMethods.length) { Array.prototype.pop.call(args) } return next.func.apply(newThis, args) } Array.prototype.push.call(args, nextMethod) return nextMethod() } else { return module.exports.noApplicableMethod(this, newThis, args) } } Genfun.prototype.getApplicableMethods = function getApplicableMethods (args) { if (!args.length || !this[kMethods].length) { return this[kDefaultMethod] ? [this[kDefaultMethod]] : [] } let applicableMethods let maybeMethods = cachedMethods(this, args) if (maybeMethods) { applicableMethods = maybeMethods } else { applicableMethods = computeApplicableMethods(this, args) cacheArgs(this, args, applicableMethods) } return applicableMethods } function cacheArgs (genfun, args, methods) { if (genfun[kCache].state === STATES.MEGAMORPHIC) { return } var key = [] var proto for (var i = 0; i < args.length; i++) { proto = cacheableProto(genfun, args[i]) if (proto) { key[i] = proto } else { return null } } genfun[kCache].key.unshift(key) genfun[kCache].methods.unshift(methods) if (genfun[kCache].key.length === 1) { genfun[kCache].state = STATES.MONOMORPHIC } else if (genfun[kCache].key.length < MAX_CACHE_SIZE) { genfun[kCache].state = STATES.POLYMORPHIC } else { genfun[kCache].state = STATES.MEGAMORPHIC } } function cacheableProto (genfun, arg) { var dispatchable = util.dispatchableObject(arg) if (Object.hasOwnProperty.call(dispatchable, Role.roleKeyName)) { for (var j = 0; j < dispatchable[Role.roleKeyName].length; j++) { var role = dispatchable[Role.roleKeyName][j] if (role.method.genfun === genfun) { return null } } } return Object.getPrototypeOf(dispatchable) } function cachedMethods (genfun, args) { if (genfun[kCache].state === STATES.UNINITIALIZED || genfun[kCache].state === STATES.MEGAMORPHIC) { return null } var protos = [] var proto for (var i = 0; i < args.length; i++) { proto = cacheableProto(genfun, args[i]) if (proto) { protos[i] = proto } else { return } } for (i = 0; i < genfun[kCache].key.length; i++) { if (matchCachedMethods(genfun[kCache].key[i], protos)) { return genfun[kCache].methods[i] } } } function matchCachedMethods (key, protos) { if (key.length !== protos.length) { return false } for (var i = 0; i < key.length; i++) { if (key[i] !== protos[i]) { return false } } return true } function computeApplicableMethods (genfun, args) { args = [].slice.call(args) let discoveredMethods = [] function findAndRankRoles (object, hierarchyPosition, index) { var roles = Object.hasOwnProperty.call(object, Role.roleKeyName) ? object[Role.roleKeyName] : [] roles.forEach(role => { if (role.method.genfun === genfun && index === role.position) { if (discoveredMethods.indexOf(role.method) < 0) { Method.clearRank(role.method) discoveredMethods.push(role.method) } Method.setRankHierarchyPosition(role.method, index, hierarchyPosition) } }) // When a discovered method would receive more arguments than // were specialized, we pretend all extra arguments have a role // on Object.prototype. if (util.isObjectProto(object)) { discoveredMethods.forEach(method => { if (method.minimalSelector <= index) { Method.setRankHierarchyPosition(method, index, hierarchyPosition) } }) } } args.forEach((arg, index) => { getPrecedenceList(util.dispatchableObject(arg)) .forEach((obj, hierarchyPosition) => { findAndRankRoles(obj, hierarchyPosition, index) }) }) let applicableMethods = discoveredMethods.filter(method => { return (args.length === method._rank.length && Method.isFullySpecified(method)) }) applicableMethods.sort((a, b) => Method.score(a) - Method.score(b)) if (genfun[kDefaultMethod]) { applicableMethods.push(genfun[kDefaultMethod]) } return applicableMethods } /* * Helper function for getting an array representing the entire * inheritance/precedence chain for an object by navigating its * prototype pointers. */ function getPrecedenceList (obj) { var precedenceList = [] var nextObj = obj while (nextObj) { precedenceList.push(nextObj) nextObj = Object.getPrototypeOf(nextObj) } return precedenceList }
Save