Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
Game source /
assets /
admin /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
vendor
[ DIR ]
drwxr-xr-x
2025-07-09 10:28
app.js
6.35
KB
-rw-r--r--
2025-05-05 09:35
charts.js
6.87
KB
-rw-r--r--
2024-05-09 05:39
codemirror.min.js
167.43
KB
-rw-r--r--
2024-05-09 05:39
css.min.js
26.53
KB
-rw-r--r--
2024-05-09 05:39
daterangepicker.min.js
35.35
KB
-rw-r--r--
2024-05-09 05:39
fontawesome-iconpicker.js
344.7
KB
-rw-r--r--
2024-09-25 09:14
highlighter22.js
1.17
KB
-rw-r--r--
2024-05-09 05:39
jquery-sortable.js
27.16
KB
-rw-r--r--
2025-06-22 09:11
jquery-ui.min.js
249.11
KB
-rw-r--r--
2024-05-09 05:39
jquery.ui.touch-punch.min.js
1.43
KB
-rw-r--r--
2025-05-05 09:36
moment.min.js
59.63
KB
-rw-r--r--
2024-05-09 05:39
search.js
5.45
KB
-rw-r--r--
2024-09-25 09:05
spectrum.js
81.18
KB
-rw-r--r--
2024-05-09 05:39
sublime.min.js
15.06
KB
-rw-r--r--
2024-05-09 05:39
xml.js
13.85
KB
-rw-r--r--
2024-05-09 05:39
Save
Rename
// doughnut function piChart(element, labels, data) { new Chart(element, { type: 'doughnut', data: { labels: labels, datasets: [{ data: data, backgroundColor: [ '#ff7675', '#6c5ce7', '#ffa62b', '#ffeaa7', '#D980FA', '#fccbcb', '#45aaf2', '#05dfd7', '#FF00F6', '#1e90ff', '#2ed573', '#eccc68', '#ff5200', '#cd84f1', '#7efff5', '#7158e2', '#fff200', '#ff9ff3', '#08ffc8', '#3742fa', '#1089ff', '#70FF61', '#bf9fee', '#574b90' ], borderColor: [ 'rgba(231, 80, 90, 0.75)' ], borderWidth: 0, }] }, options: { aspectRatio: 1, responsive: true, maintainAspectRatio: true, elements: { line: { tension: 0 // disables bezier curves } }, scales: { xAxes: [{ display: false }], yAxes: [{ display: false }] }, legend: { display: false, } } }); } function barChart(element, currency, series, categories, height = 380) { let colors = ['#00e396', '#d92027']; let options = { series: series, chart: { type: 'bar', height: height, toolbar: { show: true, offsetX: 0, offsetY: 0, tools: { download: true, selection: true, zoom: true, zoomin: true, zoomout: true, pan: true, reset: true, customIcons: [] }, export: { csv: { filename: undefined, columnDelimiter: ',', headerCategory: 'category', headerValue: 'value', dateFormatter(timestamp) { return new Date(timestamp).toDateString() } }, svg: { filename: undefined, }, png: { filename: undefined, } }, autoSelected: 'zoom' }, }, plotOptions: { bar: { horizontal: false, columnWidth: '50%', endingShape: 'rounded' }, }, dataLabels: { enabled: false }, stroke: { show: true, width: 2, colors: ['transparent'] }, xaxis: { categories: categories, }, yaxis: { title: { text: currency, style: { color: '#7c97bb' } } }, grid: { xaxis: { lines: { show: false } }, yaxis: { lines: { show: false } }, }, fill: { opacity: 1, colors: colors }, tooltip: { y: { formatter: function (val) { return currency + " " + val + " " }, }, marker: { fillColors: colors }, }, legend: { show: true, markers: { fillColors: colors }, labels: { colors: colors } } }; let chart = new ApexCharts(element, options); chart.render(); return chart } function lineChart(element, series, categories, height = 380) { let colors = ['#00e396', '#d92027']; var options = { chart: { height: height, type: "area", toolbar: { show: true, offsetX: 0, offsetY: 0, tools: { download: true, selection: true, zoom: true, zoomin: true, zoomout: true, pan: true, reset: true, customIcons: [] }, autoSelected: 'zoom' }, dropShadow: { enabled: true, enabledSeries: [0], top: -2, left: 0, blur: 10, opacity: 0.08 }, animations: { enabled: true, easing: 'linear', dynamicAnimation: { speed: 1000 } }, }, colors: colors, dataLabels: { enabled: false }, series: series, fill: { type: "gradient", gradient: { shadeIntensity: 1, opacityFrom: 0.7, opacityTo: 0.9, stops: [0, 90, 100] } }, xaxis: { categories: categories }, grid: { padding: { left: 5, right: 5 }, xaxis: { lines: { show: false } }, yaxis: { lines: { show: false } }, }, }; var chart = new ApexCharts(element, options); chart.render(); return chart }