From 680d4962a0d24a2f744027046810c14706f3de07 Mon Sep 17 00:00:00 2001 From: awesomepandapig <34806109+awesomepandapig@users.noreply.github.com> Date: Sat, 30 Jul 2022 03:03:29 -0700 Subject: Add files via upload --- LICENSE | 21 + README.md | 19 + index.html | 700 +++ index.js | 205 + leaderboard.json | 1 + package-lock.json | 1614 +++++++ package.json | 22 + public_html/MinecraftColorCodes.min.3.7.js | 1 + public_html/android-chrome-192x192.png | Bin 0 -> 4289 bytes public_html/android-chrome-512x512.png | Bin 0 -> 16598 bytes public_html/apple-touch-icon.png | Bin 0 -> 3603 bytes public_html/favicon-16x16.png | Bin 0 -> 556 bytes public_html/favicon-32x32.png | Bin 0 -> 743 bytes public_html/favicon.ico | Bin 0 -> 34494 bytes public_html/guide.html | 370 ++ public_html/guide.json | 1 + public_html/index.html | 462 ++ public_html/leaderboard.html | 111 + public_html/robots.txt | 0 stderr.log | 6896 ++++++++++++++++++++++++++++ swagger.json | 73 + 21 files changed, 10496 insertions(+) create mode 100644 LICENSE create mode 100644 README.md create mode 100644 index.html create mode 100644 index.js create mode 100644 leaderboard.json create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 public_html/MinecraftColorCodes.min.3.7.js create mode 100644 public_html/android-chrome-192x192.png create mode 100644 public_html/android-chrome-512x512.png create mode 100644 public_html/apple-touch-icon.png create mode 100644 public_html/favicon-16x16.png create mode 100644 public_html/favicon-32x32.png create mode 100644 public_html/favicon.ico create mode 100644 public_html/guide.html create mode 100644 public_html/guide.json create mode 100644 public_html/index.html create mode 100644 public_html/leaderboard.html create mode 100644 public_html/robots.txt create mode 100644 stderr.log create mode 100644 swagger.json diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..918b3e4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 awesomepandapig + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..02eafb1 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# skyblock.bingo + +skyblock.bingo allows you to view your [Hypixel Skyblock](https://hypixel.net/categories/skyblock.194/) bingo card, share your bingo progress with others, and view guides for how to solve the current bingo challenge! + +Website: https://skyblock.bingo + +## Features + +- View your current bingo card +- View the goals you have left to complete +- View guides for how to complete the bingo goals +- View the top one-hundred bingo players +- An API for getting a player's bingo stats + +![XessDx Bingo](https://user-images.githubusercontent.com/34806109/163301430-cc68de26-3d49-4f1a-9734-a49b68571c51.png) + +## Contributing + +Open a pull request and I will look into adding the feature! diff --git a/index.html b/index.html new file mode 100644 index 0000000..c99c328 --- /dev/null +++ b/index.html @@ -0,0 +1,700 @@ + + + + + + + + + + + + + + + + skyblock.bingo + + + + +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ +
+
+
+ Playerhead Image +

+

*Bingo Rank: none

+

Points: 0

+

Completed: 0/20

+
+
+
+
+
+ +
+
+
+

Tier 1

+
+ +

Tier 2

+
+ +

Tier 3

+
+ +

Tier 4

+
+ +

Tier 5

+
+ +

Community

+
+
+
+
+ + + + + \ No newline at end of file diff --git a/index.js b/index.js new file mode 100644 index 0000000..27920e0 --- /dev/null +++ b/index.js @@ -0,0 +1,205 @@ +const dotenv = require('dotenv').config(); +const fetch = require('node-fetch'); +const express = require('express'); +const cors = require('cors'); +const bodyParser = require('body-parser'); +const fs = require('fs'); + +const app = express(); +app.set('views', './views'); +app.set('view engine', 'ejs'); +app.use(bodyParser.urlencoded({ extended: false })); +app.use(bodyParser.json()); +app.use(cors()); +const port = process.env.PORT; +const origin = process.env.ORIGIN; +const key = process.env.API_KEY; + +var corsOptions = { + origin: origin, + optionsSuccessStatus: 200 +} + +const { body, validationResult } = require('express-validator'); + +let leaderboard = JSON.parse(fs.readFileSync('leaderboard.json')); +let blacklist = JSON.parse(fs.readFileSync('blacklist.json')); +let blacklist_temp = JSON.parse(JSON.stringify(blacklist)); + +app.get('/api', (req, res) => { + res.sendFile(__dirname + '/swagger.html'); +}) + +app.get('/api/swagger.json', (req, res) => { + res.sendFile(__dirname + '/swagger.json'); +}) + +app.get('/stats/:user', (req, res) => { + res.sendFile(__dirname + '/index.html'); +}) + +app.get('/api/stats/:user', async (req, res) => { + let responded = false; + if (req.params.user.length > 16) { // If uuid + id = req.params.user; + if(id.includes('-')) { + id = id.replace(/-/g, ''); + } + } else { // If username + var id = ''; + await Promise.all([ + fetch(`https://api.mojang.com/users/profiles/minecraft/${req.params.user}`) + ]) + .then(async([res1]) => { + // Gets the user's uuid from the Mojang API + mojang_data = await res1.json(); + id = mojang_data.id; + }) + .catch(error => { + res.send({success: false, cause: 'This user does not exist'}); + responded = true; + }); + } + if(id != '') { + Promise.all([ + fetch(`https://api.hypixel.net/resources/skyblock/bingo`) + ]) + .then(async([res1]) => { + // Gets the current active bingo goals + let goal_data = await res1.json(); + Promise.all([ + fetch(`https://api.hypixel.net/player?key=${key}&uuid=${id}`), + fetch(`https://api.hypixel.net/skyblock/profiles?key=${key}&uuid=${id}`), + fetch(`https://api.hypixel.net/skyblock/bingo?key=${key}&uuid=${id}`) + ]) + .then(async([res1, res2, res3]) => { + let player_data = await res1.json(); + // Get's the user's username + let name = player_data.player.displayname; + // Gets the user's Hypixel rank + var hypixel_rank = 'NORMAL'; + if(player_data.player.rank != undefined) { + hypixel_rank = player_data.player.rank; + } else if(player_data.player.monthlyPackageRank != undefined && player_data.player.monthlyPackageRank != 'NONE') { + hypixel_rank = player_data.player.monthlyPackageRank; + } else if(player_data.player.newPackageRank != undefined) { + hypixel_rank = player_data.player.newPackageRank; + } else if(player_data.player.packageRank != undefined) { + hypixel_rank = player_data.player.packageRank; + } + + let profile_data = await res2.json(); + // If the user does not have skyblock data send an error message + if (profile_data.profiles == null && !responded) {res.send({success: false, cause: 'No skyblock data could be found'}); responded = true;} + let bingo_rank = 0; + let profile_number = 0; + for (i = 0; i < profile_data.profiles.length; i++) { + if (profile_data.profiles[i].game_mode == 'bingo') { + // Determines which profile is the user's bingo profile + profile_number = i; + // Determines the user's bingo rank (based on their active bingo pet) + if (profile_data.profiles[profile_number].members[id].pets[0] != undefined) { + if (profile_data.profiles[profile_number].members[id].pets[0].tier == 'UNCOMMON') {bingo_rank = 1;} + if (profile_data.profiles[profile_number].members[id].pets[0].tier == 'RARE') {bingo_rank = 2;} + if (profile_data.profiles[profile_number].members[id].pets[0].tier == 'EPIC') {bingo_rank = 3;} + } + break; + } + } + + let bingo_data = await res3.json(); + // If the user does not have bingo data send an empty response + if (bingo_data.success == false && !responded) {res.send({uuid: id, username: name, hypixel_rank: hypixel_rank, bingo_rank: 0, total_completions: 0, total_points: 0, points: 0, completed_goals: []}); responded = true;} + // Get's the total bingo points & total bingo completions of a user + var completions = 0; + var total_points = 0; + let add_to_blacklist = false; + for(j = 0; j < bingo_data.events.length; j++) { + // If a user has exceeded the maximum number of points (ie: they duped points) blacklist the user + if (bingo_data.events[j].points > 160) {add_to_blacklist = true;} + if(bingo_data.events[j].completed_goals.length == 20) {completions++;} + total_points+=bingo_data.events[j].points; + } + + // Checks to see if a user is blacklisted + let already_blacklisted = false; + for(i = 0; i < blacklist_temp.length; i++) { + if(blacklist_temp[i].uuid == id) {already_blacklisted = true;} + } + + // Updates the leaderboard array + // For each player on the leaderboard + for(k = 0; k < leaderboard.length; k++) { + // If the user is not blacklisted + if(!already_blacklisted) { + // If the user's points are greater than the person k on the leaderboard + if (total_points > leaderboard[k].points) { + // If the user is already on the leaderboard + if (leaderboard.find(element => element.uuid === id) != undefined) { + // If the amount of points shown is less than the current amount + if (total_points > (leaderboard.find(element => element.uuid === id).points)) { + let index = leaderboard.findIndex(element => element.uuid === id); + leaderboard.splice(index, 1); + leaderboard.splice(k, 0, {uuid: id, name: name, hypixel_rank: hypixel_rank, points: total_points}); + break; + } + // If the user is not already on the leaderboard + } else { + leaderboard.splice(k, 0, {uuid: id, name: name, hypixel_rank: hypixel_rank, points: total_points}); + leaderboard.pop(); + break; + } + } + } + } + + // Updates the blacklist.json file + if(add_to_blacklist && !already_blacklisted) {blacklist_temp.push({uuid: id});} + if(blacklist != blacklist_temp) { + fs.writeFileSync('blacklist.json', JSON.stringify(blacklist_temp)); + } + + // Updates the leaderboard.json file + fs.writeFileSync('leaderboard.json', JSON.stringify(leaderboard)); + + completed_goals = []; + points = 0; + // Gets the user's amount of points for the current bingo event + for(i = 0; i < bingo_data.events.length; i++) { + if (bingo_data.events[i].key == goal_data.id) { + points = bingo_data.events[i].points; + // Gets the # of completed goals for the current bingo event + completed_goals = bingo_data.events[i].completed_goals; + } + } + if(!responded) {res.send({uuid: id, username: name, hypixel_rank: hypixel_rank, bingo_rank: bingo_rank, total_completions: completions, total_points: total_points, points: points, completed_goals: completed_goals}); responded = true;} + }) + .catch(error => { + if(!responded) {res.send({success: false, cause: 'This user does not exist'}); responded = true;}; + }); + }) + .catch(error => { + if(!responded) {res.send({success: false, cause: 'The Hypixel API is currently unavailable.'}); responded = true;}; + }); + } +}) + +app.get('/stats/:user', (req, res) => { + res.sendFile(__dirname + '/index.html'); +}) + +app.get('/api/leaderboard', (req, res) => { + res.send({leaderboard}); +}) + +app.get('/api/*', function(req, res){ + res.redirect(`https://${origin}/api`); +}); + +app.get('*', function(req, res){ + res.redirect(`https://${origin}`); +}); + +app.listen(port, () => { + console.log(`Listening to requests on https://${origin}:${port}`); +}); \ No newline at end of file diff --git a/leaderboard.json b/leaderboard.json new file mode 100644 index 0000000..82e971a --- /dev/null +++ b/leaderboard.json @@ -0,0 +1 @@ +[{"uuid":"2382416a89c646ee8ddc39aafbf801ba","name":"MinimiOW","hypixel_rank":"MVP_PLUS","points":1222},{"uuid":"93679901c82e468199fc54b53bb11c84","name":"Dredlig","hypixel_rank":"SUPERSTAR","points":1217},{"uuid":"1fb3717815694d02bca354cd1efaf25f","name":"zLegitH4cker","hypixel_rank":"MVP_PLUS","points":1211},{"uuid":"e6ae8489ca504c72a48133b3bcb262d2","name":"indigo_polecat","hypixel_rank":"SUPERSTAR","points":1145},{"uuid":"2bd36a91223743a49895b0f7fcdf6ce1","name":"sheetoflight","hypixel_rank":"MVP_PLUS","points":1141},{"uuid":"3bd74c4d69e04d76965f256b814b9a44","name":"CowKou","hypixel_rank":"MVP_PLUS","points":1117},{"uuid":"403ed07460254eb59cc5a27a5b45c78d","name":"Prestige0","hypixel_rank":"MVP_PLUS","points":1116},{"uuid":"6a2b0a0a92734cc4b2bb684f17213651","name":"Iridescentwolfz","hypixel_rank":"VIP","points":1093},{"uuid":"f144204d72de440799d4a1fbed50437b","name":"ZwergiX","hypixel_rank":"MVP_PLUS","points":1085},{"uuid":"c1127c0f10cd489c9d0f27c2df3d76f1","name":"godwyyn","hypixel_rank":"VIP_PLUS","points":1067},{"uuid":"0a0cd465fcaa43a6984aedbaf59ec862","name":"Hinoshii","hypixel_rank":"MVP_PLUS","points":1064},{"uuid":"d41427d70a8c42b98c8ea5b824e07b3b","name":"GoofyGoober","hypixel_rank":"MVP_PLUS","points":1046},{"uuid":"3abe728373774dd293bf6d843ce2618d","name":"_Progress","hypixel_rank":"VIP_PLUS","points":1042},{"uuid":"9bcb911d12f84d1e81af9c1f25fe19c2","name":"Bgbros","hypixel_rank":"MVP_PLUS","points":1040},{"uuid":"29c9e69228a44de8a0aeb8efd3c2872a","name":"AngeryMeowFloof","hypixel_rank":"SUPERSTAR","points":1038},{"uuid":"01dddf98b1be4498aadc8c3d84cbc69d","name":"lucky_man_cz14","hypixel_rank":"VIP","points":1035},{"uuid":"a99a4853fbe148eb8b9f0cf9efeb6912","name":"R4PlD","hypixel_rank":"MVP_PLUS","points":1034},{"uuid":"6df58a0ed5e54ec785c95d9e38f35350","name":"masanosuk","hypixel_rank":"MVP_PLUS","points":1025},{"uuid":"a8c55e3a665741c4a5762c6c97cbb428","name":"leo7668","hypixel_rank":"MVP_PLUS","points":1022},{"uuid":"952230439e3344c8a27e6b5096f719dc","name":"ArohaTheDino","hypixel_rank":"SUPERSTAR","points":1021},{"uuid":"e4f317cef6ea4bbd95842d62a4756c3f","name":"Ratzou2","hypixel_rank":"MVP_PLUS","points":1019},{"uuid":"7ab8e30281ce4844a8d10e88640a9248","name":"bcfc_simon","hypixel_rank":"SUPERSTAR","points":1005},{"uuid":"784b78edfe7d497289c617b4ab445361","name":"Blowody","hypixel_rank":"SUPERSTAR","points":1004},{"uuid":"fd9717eaedcf40b99b253af7f5e47e7b","name":"zyzzvays","hypixel_rank":"MVP_PLUS","points":999},{"uuid":"446dcccfa0e24822aca95d7ffafa9ca9","name":"ThePowerCoffee","hypixel_rank":"MVP_PLUS","points":986},{"uuid":"aeb0f531d3404bc8aca4e82b3234bc9c","name":"nightlibra","hypixel_rank":"SUPERSTAR","points":984},{"uuid":"e1ed1823b443477d96b4281b194e17ab","name":"Sir_Cow","hypixel_rank":"NORMAL","points":981},{"uuid":"803d0a34147e40a282050d2392c69ee8","name":"Jakeering","hypixel_rank":"MVP_PLUS","points":979},{"uuid":"40529a844ff246ab8956c47d05053631","name":"987654321kaboom","hypixel_rank":"MVP_PLUS","points":978},{"uuid":"7efecc4706d1407786eb0eefea32198b","name":"Iancido","hypixel_rank":"VIP_PLUS","points":972},{"uuid":"3b2f489e37f14629a18b94541e369b35","name":"Malmedare","hypixel_rank":"VIP_PLUS","points":970},{"uuid":"eb68c0983784414fbb6aaff40224d746","name":"yuuyuurunnta","hypixel_rank":"VIP","points":965},{"uuid":"ded40d76ce514e968fc2b366ff6a4d1d","name":"TheXandergoose","hypixel_rank":"MVP_PLUS","points":963},{"uuid":"931e12d3f1ef4fd98997ba28aab0997a","name":"GotKiller_","hypixel_rank":"MVP_PLUS","points":961},{"uuid":"75c03d723128405db2cdfe2b580cc8c2","name":"Hogalolz","hypixel_rank":"MVP_PLUS","points":958},{"uuid":"7617029983bf44ad9b03c65ab0c1cd10","name":"Growing_Potato","hypixel_rank":"VIP","points":956},{"uuid":"b28316a0102949ea97f0ee23cf079c3d","name":"JH159753","hypixel_rank":"MVP_PLUS","points":956},{"uuid":"5c5e1c4024d541deba7981c4b17de37a","name":"JackGB","hypixel_rank":"MVP_PLUS","points":952},{"uuid":"c58fa47723bf4894b185b9b7a619326b","name":"oWoPanda","hypixel_rank":"MVP_PLUS","points":951},{"uuid":"3fded1427bb64f53938e59010ddb098c","name":"Guermas","hypixel_rank":"MVP_PLUS","points":941},{"uuid":"7c6196f5a3ba44c8b2b4f46e337d4759","name":"valkeea","hypixel_rank":"SUPERSTAR","points":939},{"uuid":"4798a17b228f406c900516c3c472bb72","name":"THE_TY","hypixel_rank":"MVP_PLUS","points":933},{"uuid":"e5b7b611cd094b6daaba8590f944e26c","name":"isacang","hypixel_rank":"VIP_PLUS","points":933},{"uuid":"fe3bf05f803741f0b6cced25f03ea0c7","name":"WildPandas","hypixel_rank":"MVP_PLUS","points":930},{"uuid":"1cab746bfd854709bd3d9d079dc415f7","name":"Touwlix","hypixel_rank":"MVP_PLUS","points":921},{"uuid":"6c6dcfa62e8547b08b0733fd436127ab","name":"2Apex","hypixel_rank":"MVP_PLUS","points":920},{"uuid":"7c5acafbda154f4ababe885552c5aad1","name":"Arune_","hypixel_rank":"VIP","points":919},{"uuid":"508f7b37d1994fd89917cefcdfe32050","name":"Shiroyama95","hypixel_rank":"MVP_PLUS","points":917},{"uuid":"201842aaf9f34c1d82e388f6abaeaea3","name":"figthgocz","hypixel_rank":"MVP_PLUS","points":911},{"uuid":"76ebe550621b4954867575757ee3c281","name":"Luffy5000","hypixel_rank":"MVP_PLUS","points":909},{"uuid":"dffe9e8f094c42d79a0b2b74d445337c","name":"IAlcheMistI","hypixel_rank":"SUPERSTAR","points":908},{"uuid":"0d9eabc9e68844049b24249687e9a6a7","name":"tipok95","hypixel_rank":"YOUTUBER","points":902},{"uuid":"bbcc421b687849ae9bc20b8110bc2695","name":"Shmylblock","hypixel_rank":"MVP_PLUS","points":897},{"uuid":"280b962b7936464286ac1896969e5a82","name":"Midgemidge1014","hypixel_rank":"VIP","points":896},{"uuid":"29135e50c229404ba0b2a147abc374fc","name":"Knattekalle","hypixel_rank":"MVP_PLUS","points":888},{"uuid":"d6ec5310e2a14ef4a4e17bebf9e7b4dd","name":"Crxmsxn","hypixel_rank":"SUPERSTAR","points":888},{"uuid":"909960049b944a4da602b4f982b1bf39","name":"F8_DarQ","hypixel_rank":"SUPERSTAR","points":887},{"uuid":"1edd0fe43a004bdfa3c84770bb383680","name":"mcfiletmc","hypixel_rank":"MVP_PLUS","points":886},{"uuid":"77e3ef9ca4f647a5a5b1d0b2b9169165","name":"waterman6","hypixel_rank":"MVP_PLUS","points":885},{"uuid":"8deb1157188649f8bedc50c3adab88ef","name":"OPtea","hypixel_rank":"MVP_PLUS","points":883},{"uuid":"6410fef765f44204946201c45b2d01f9","name":"KatAura","hypixel_rank":"MVP_PLUS","points":882},{"uuid":"3c41a7323c0e426eb7708c7b49056be9","name":"ChangJenChieh","hypixel_rank":"MVP_PLUS","points":881},{"uuid":"94077c25c81147c493c239b66f76e55e","name":"Cybacat","hypixel_rank":"MVP_PLUS","points":879},{"uuid":"fb2188cc1abf4ae2b550b3c0d0a6b484","name":"Master_dragon7","hypixel_rank":"MVP_PLUS","points":878},{"uuid":"7b788f9e8a144629b3857f953f0d7fba","name":"Bluwudy","hypixel_rank":"SUPERSTAR","points":876},{"uuid":"27985f4edbcd49078057b9a9e180df83","name":"Bananyawn","hypixel_rank":"MVP_PLUS","points":874},{"uuid":"7eccd63ba67442aebe73246fc6ee326e","name":"qwerio","hypixel_rank":"VIP","points":873},{"uuid":"2295c365d1a14e5d84954c315b6053f7","name":"godmlg","hypixel_rank":"SUPERSTAR","points":870},{"uuid":"2d400a4ac7cb469db6f538681bca5400","name":"lgutich","hypixel_rank":"SUPERSTAR","points":869},{"uuid":"3f433486950c4ac493c9e45fe9408e3a","name":"iHqck0d","hypixel_rank":"MVP_PLUS","points":868},{"uuid":"866f23271d704d4c9af7374b49bac318","name":"The_HoboMC","hypixel_rank":"MVP_PLUS","points":867},{"uuid":"d45a0bdf0f544d7eb7eb388b9a479b33","name":"CombiGamerHD","hypixel_rank":"SUPERSTAR","points":863},{"uuid":"5602860f0158482aa46a830918a697db","name":"uwuMina","hypixel_rank":"VIP","points":858},{"uuid":"97d810bcc26e452aab0e9f6b1fa980d9","name":"TomekoYT","hypixel_rank":"MVP_PLUS","points":858},{"uuid":"42ff7beb96ea40f98feb8552e9fe6b3f","name":"ELIE101","hypixel_rank":"SUPERSTAR","points":853},{"uuid":"b9b21ef97dd84f2b842c21e46ade959a","name":"Ermanex","hypixel_rank":"MVP_PLUS","points":848},{"uuid":"c932b869d4794471a36d4ec6c1ef1fa2","name":"IQONIQ_","hypixel_rank":"SUPERSTAR","points":847},{"uuid":"578ce7fac6c44ca2ba1badad8dbbe884","name":"Im_Krazy","hypixel_rank":"SUPERSTAR","points":842},{"uuid":"eee62e0c4f2a4be79a513d002b7c1703","name":"VoidGloomSeraphV","hypixel_rank":"SUPERSTAR","points":842},{"uuid":"f315e6f2314944a29383571b015d8c99","name":"DoomTurtles_","hypixel_rank":"MVP","points":841},{"uuid":"1cd32de3866a4f6096c58c4578580ad9","name":"aurora6get","hypixel_rank":"VIP_PLUS","points":841},{"uuid":"76030a9f604d47d2983b9a71fdb5c687","name":"Axlifax","hypixel_rank":"VIP","points":840},{"uuid":"b883b8b3551c4ea28e446b7a7385712f","name":"LvckyTimeJr","hypixel_rank":"MVP_PLUS","points":836},{"uuid":"51a4220763bf4c50bcdcab7a8d84857b","name":"TheChubbyWalrus","hypixel_rank":"VIP","points":828},{"uuid":"0756300c365a4b8e832b04c5a374d728","name":"LeqitAndre","hypixel_rank":"MVP_PLUS","points":824},{"uuid":"27612d9e9da74fd690128c4bcde0299f","name":"Overvest","hypixel_rank":"NORMAL","points":818},{"uuid":"9163a0b254dc4fd6ac7dadcc86ec3465","name":"Erkonyx","hypixel_rank":"MVP_PLUS","points":816},{"uuid":"75fd93dd8e48469881a297dae2ec5b5f","name":"Pugzy","hypixel_rank":"MVP_PLUS","points":811},{"uuid":"df5e1701809c48be9b0def50b83b009e","name":"GoldenDusk","hypixel_rank":"SUPERSTAR","points":810},{"uuid":"858ee9a1ba6f4ef9a512fd0eb63d0663","name":"arithemonkey","hypixel_rank":"SUPERSTAR","points":809},{"uuid":"c860277ce6b346369d322499b2a14904","name":"IchBinJoxi","hypixel_rank":"MVP_PLUS","points":808},{"uuid":"820473a067cc4acaa1d8c31b4ef0c0a2","name":"Zlarium_","hypixel_rank":"MVP_PLUS","points":808},{"uuid":"a5c1a16ed64e498c8ccd0c1ce9bd37d8","name":"GleoLP","hypixel_rank":"MVP_PLUS","points":807},{"uuid":"33eba728d67b479e8fa1f37307174ea4","name":"Kneshio","hypixel_rank":"MVP_PLUS","points":806},{"uuid":"25dfaa496f2348279fadc88d4279c059","name":"SkeppyBisector","hypixel_rank":"MVP_PLUS","points":804},{"uuid":"3bb7b89511bf4ff7880318018c60a5ac","name":"Fireday","hypixel_rank":"VIP_PLUS","points":802},{"uuid":"74fcc716bf45488d82bf94d986625756","name":"Nackoy","hypixel_rank":"MVP_PLUS","points":801},{"uuid":"4d16bc6b2ff340c7910ce7472d12e6cd","name":"derNiklaas","hypixel_rank":"SUPERSTAR","points":800},{"uuid":"73153a9474cf4503ace8300044967889","name":"Portal_Room","hypixel_rank":"MVP_PLUS","points":800},{"uuid":"13913fb5aa3d4cd0bb5291b282e9be86","name":"uwususc","hypixel_rank":"MVP_PLUS","points":792}] \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..31c69ae --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1614 @@ +{ + "name": "bingo-api", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "object-inspect": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==" + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + } + } + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "requires": { + "object-assign": "^4", + "vary": "^1" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + } + } + }, + "dotenv": { + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz", + "integrity": "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==" + }, + "ejs": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.6.tgz", + "integrity": "sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==", + "requires": { + "jake": "^10.6.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "filelist": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.2.tgz", + "integrity": "sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==", + "requires": { + "minimatch": "^3.0.4" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jake": { + "version": "10.8.4", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.4.tgz", + "integrity": "sha512-MtWeTkl1qGsWUtbl/Jsca/8xSoK3x0UmS82sNbjqxxG/de/M/3b1DntdjHgPMC50enlTNwXOCRqPXLLt5cCfZA==", + "requires": { + "async": "0.9.x", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "express": { + "version": "4.17.3", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.3.tgz", + "integrity": "sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.19.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.4.2", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.9.7", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.17.2", + "serve-static": "1.14.2", + "setprototypeof": "1.2.0", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.9.7", + "raw-body": "2.4.3", + "type-is": "~1.6.18" + } + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.3.tgz", + "integrity": "sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==", + "requires": { + "bytes": "3.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "send": { + "version": "0.17.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "1.8.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "serve-static": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz", + "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.2" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + } + } + }, + "express-validator": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/express-validator/-/express-validator-6.14.0.tgz", + "integrity": "sha512-ZWHJfnRgePp3FKRSKMtnZVnD1s8ZchWD+jSl7UMseGIqhweCo1Z9916/xXBbJAa6PrA3pUZfkOvIsHZG4ZtIMw==", + "requires": { + "lodash": "^4.17.21", + "validator": "^13.7.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "validator": { + "version": "13.7.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.7.0.tgz", + "integrity": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" + } + } + }, + "node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "requires": { + "whatwg-url": "^5.0.0" + }, + "dependencies": { + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, + "nodemon": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.15.tgz", + "integrity": "sha512-gdHMNx47Gw7b3kWxJV64NI+Q5nfl0y5DgDbiVtShiwa7Z0IZ07Ll4RLFo6AjrhzMtoEZn5PDE3/c2AbVsiCkpA==", + "requires": { + "chokidar": "^3.5.2", + "debug": "^3.2.7", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.0.4", + "pstree.remy": "^1.1.8", + "semver": "^5.7.1", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5", + "update-notifier": "^5.1.0" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "requires": { + "string-width": "^4.1.0" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + }, + "boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "requires": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + } + }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + }, + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "requires": { + "is-obj": "^2.0.0" + } + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==" + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^3.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-dirs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz", + "integrity": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==", + "requires": { + "ini": "2.0.0" + } + }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==" + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + }, + "ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=" + }, + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + }, + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "requires": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + } + }, + "is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" + }, + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "requires": { + "json-buffer": "3.0.0" + } + }, + "latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "requires": { + "package-json": "^6.3.0" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + }, + "lru-cache": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.8.0.tgz", + "integrity": "sha512-AmXqneQZL3KZMIgBpaPTeI6pfwh+xQ2vutMsyqOu1TBdEXFZgpG/80wuJ531w2ZN7TI0/oc8CPxzh/DKQudZqg==" + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "nopt": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", + "requires": { + "abbrev": "1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + }, + "package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "requires": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" + }, + "pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==" + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "requires": { + "escape-goat": "^2.0.0" + } + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "requires": { + "picomatch": "^2.2.1" + } + }, + "registry-auth-token": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", + "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", + "requires": { + "rc": "^1.2.8" + } + }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "requires": { + "rc": "^1.2.8" + } + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "requires": { + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "touch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", + "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "requires": { + "nopt": "~1.0.10" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "undefsafe": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", + "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", + "requires": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "semver": { + "version": "7.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.6.tgz", + "integrity": "sha512-HZWqcgwLsjaX1HBD31msI/rXktuIhS+lWvdE4kN9z+8IVT4Itc7vqU2WvYsyD6/sjYCt4dEKH/m1M3dwI9CC5w==", + "requires": { + "lru-cache": "^7.4.0" + } + } + } + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "requires": { + "prepend-http": "^2.0.0" + } + }, + "widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "requires": { + "string-width": "^4.0.0" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" + } + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..94f0150 --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "bingo-api", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "start": "nodemon ./index.js" + }, + "keywords": [], + "author": "awesomepandapig", + "license": "GPL-3.0", + "dependencies": { + "body-parser": "^1.20.0", + "cors": "^2.8.5", + "dotenv": "^16.0.0", + "ejs": "^3.1.6", + "express": "^4.17.3", + "express-validator": "^6.14.0", + "node-fetch": "^2.6.7", + "nodemon": "^2.0.15" + } +} diff --git a/public_html/MinecraftColorCodes.min.3.7.js b/public_html/MinecraftColorCodes.min.3.7.js new file mode 100644 index 0000000..aeb23d2 --- /dev/null +++ b/public_html/MinecraftColorCodes.min.3.7.js @@ -0,0 +1 @@ +function obfuscate(e,o){function t(e,o){var t=0,n=o||e.innerHTML,a=n.length;obfuscators.push(window.setInterval(function(){t>=a&&(t=0),n=r(n,t),e.innerHTML=n,t++},0))}function n(e,o){return Math.floor(Math.random()*(o-e+1))+e}function r(e,o){var t=String.fromCharCode(n(64,90));return e.substr(0,o)+t+e.substr(o+1,e.length)}var a,c,f=o.childNodes.length;if(e.indexOf("
")>-1){o.innerHTML=e;for(var i=0;f>i;i++)c=o.childNodes[i],3===c.nodeType&&(a=document.createElement("span"),a.innerHTML=c.nodeValue,o.replaceChild(a,c),t(a))}else t(o,e)}function applyCode(e,o){for(var t=o.length,n=document.createElement("span"),r=!1,a=0;t>a;a++)n.style.cssText+=styleMap[o[a]]+";","§k"===o[a]&&(obfuscate(e,n),r=!0);return r||(n.innerHTML=e),n}function parseStyle(e){for(var o,t,n=e.match(/§.{1}/g)||[],r=[],a=[],c=document.createDocumentFragment(),f=n.length,e=e.replace(/\n|\\n/g,"
"),i=0;f>i;i++)r.push(e.indexOf(n[i])),e=e.replace(n[i],"\x00\x00");0!==r[0]&&c.appendChild(applyCode(e.substring(0,r[0]),[]));for(var i=0;f>i;i++){if(t=r[i+1]-r[i],2===t){for(;2===t;)a.push(n[i]),i++,t=r[i+1]-r[i];a.push(n[i])}else a.push(n[i]);a.lastIndexOf("§r")>-1&&(a=a.slice(a.lastIndexOf("§r")+1)),o=e.substring(r[i],r[i+1]),c.appendChild(applyCode(o,a))}return c}function clearObfuscators(){for(var e=obfuscators.length;e--;)clearInterval(obfuscators[e]);obfuscators=[]}function cutString(e,o,t){return e.substr(0,o)+e.substr(t+1)}var obfuscators=[],styleMap={"§4":"font-weight:normal;text-decoration:none;color:#be0000","§c":"font-weight:normal;text-decoration:none;color:#fe3f3f","§6":"font-weight:normal;text-decoration:none;color:#d9a334","§e":"font-weight:normal;text-decoration:none;color:#fefe3f","§2":"font-weight:normal;text-decoration:none;color:#00be00","§a":"font-weight:normal;text-decoration:none;color:#3ffe3f","§b":"font-weight:normal;text-decoration:none;color:#3ffefe","§3":"font-weight:normal;text-decoration:none;color:#00bebe","§1":"font-weight:normal;text-decoration:none;color:#0000be","§9":"font-weight:normal;text-decoration:none;color:#3f3ffe","§d":"font-weight:normal;text-decoration:none;color:#fe3ffe","§5":"font-weight:normal;text-decoration:none;color:#be00be","§f":"font-weight:normal;text-decoration:none;color:#ffffff","§7":"font-weight:normal;text-decoration:none;color:#bebebe","§8":"font-weight:normal;text-decoration:none;color:#3f3f3f","§0":"font-weight:normal;text-decoration:none;color:#000000","§l":"font-weight:bold","§n":"text-decoration:underline;text-decoration-skip:spaces","§o":"font-style:italic","§m":"text-decoration:line-through;text-decoration-skip:spaces"};String.prototype.replaceColorCodes=function(){clearObfuscators();var e=parseStyle(String(this));return e}; \ No newline at end of file diff --git a/public_html/android-chrome-192x192.png b/public_html/android-chrome-192x192.png new file mode 100644 index 0000000..a54c53f Binary files /dev/null and b/public_html/android-chrome-192x192.png differ diff --git a/public_html/android-chrome-512x512.png b/public_html/android-chrome-512x512.png new file mode 100644 index 0000000..6aa5cca Binary files /dev/null and b/public_html/android-chrome-512x512.png differ diff --git a/public_html/apple-touch-icon.png b/public_html/apple-touch-icon.png new file mode 100644 index 0000000..24b01df Binary files /dev/null and b/public_html/apple-touch-icon.png differ diff --git a/public_html/favicon-16x16.png b/public_html/favicon-16x16.png new file mode 100644 index 0000000..ad50bbc Binary files /dev/null and b/public_html/favicon-16x16.png differ diff --git a/public_html/favicon-32x32.png b/public_html/favicon-32x32.png new file mode 100644 index 0000000..7c02efd Binary files /dev/null and b/public_html/favicon-32x32.png differ diff --git a/public_html/favicon.ico b/public_html/favicon.ico new file mode 100644 index 0000000..12bf8b9 Binary files /dev/null and b/public_html/favicon.ico differ diff --git a/public_html/guide.html b/public_html/guide.html new file mode 100644 index 0000000..7c3d56a --- /dev/null +++ b/public_html/guide.html @@ -0,0 +1,370 @@ + + + + + + + + + + + + + + + + Guide | skyblock.bingo + + + + +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ + + + + + + +
NameLoreMethodNotes
+
+
+ + + \ No newline at end of file diff --git a/public_html/guide.json b/public_html/guide.json new file mode 100644 index 0000000..5534306 --- /dev/null +++ b/public_html/guide.json @@ -0,0 +1 @@ +[{"name":"Cave Commodity","lore":"Gain 5M Heart of the Mountain Experience.","method":"Remember to do daily commissions.","notes":"None"},{"name":"Nether Quartz Collector","lore":"Reach 5,000 Nether Quartz Collection.","method":"Mine Nether Quartz from campfires in the Goblin Burrows or grind combat 24 and mine it in the nether.","notes":"images of spots that spawn quartz"},{"name":"Slayer","lore":"Reach Level 4 for any Slayer Boss.","method":"Tarantula Slayer is recommended.","notes":"Grinding t2 it will require 450k coins."},{"name":"Healthy","lore":"Reach 250 Health.","method":"Growth 5 Mushroom Armor, Fairy Souls.","notes":"None"},{"name":"Hard Worker","lore":"Obtain Any Tier 12 Minion.","method":"A t12 Wheat Minion is recommended.","notes":"You need 120 Enchanted Hay Bales for this. With hub wheat this will take approximately 3-4 hours."},{"name":"Brewer","lore":"Obtain level 10 in the Alchemy Skill.","method":"Grind 10 Enchanted Sugar and brew.","notes":"None"},{"name":"Lucky Looter","lore":"Loot 250k drops with a chance of 1% or lower.","method":"Enchanted Ender Pearls count for this.","notes":"None"},{"name":"Dark Oak Wood Collector","lore":"Reach 20,000 Dark Oak Wood Collection.","method":"Use an Efficiency 5 Golden Axe with Haste 3.","notes":"Get Haste 4 from Bingo Brewers"},{"name":"Strongman","lore":"Reach 140 Strength.","method":"Get a splash from Bingo Brewers and hold a Raider Axe with either high wood collection or reforged armor. ","notes":"None"},{"name":"Topaz Crystal","lore":"Obtain a Topaz Crystal in the Crystal Hollows.","method":"Kill a Bal or wait for someone else to kill a Bal.","notes":"Remember to do daily commissions to unlock CH."},{"name":"Fashionable","lore":"Wear 15 unique Armor Sets.","method":"Leather Armor (1), Gold Armor (2), Iron Armor (3), Diamond Armor (4), Chainmail Armor (5), Farm Suit (6), Cactus Armor (7), Pumpkin Armor (8), Mushroom Armor (9), Leaflet Armor (10), Rosetta's Armor (11), Celeste Armor (12), Squire Armor (13), Lapis Armor (14), Glacite/Goblin Armor (15).","notes":"None"},{"name":"Meiser","lore":"Store 250,000 Coins in your Bank.","method":"25 Relics from Spider's Den.","notes":"Do this BEFORE buying a Raider Axe."},{"name":"Clown Collab","lore":"Defeat Bonzo 5,000 times.","method":"If you don't have someone to carry you join party finder parties and hope for the best.","notes":"None"},{"name":"Pumpkin Collector","lore":"Reach 50,000 Pumpkin Collection","method":"Grind wheat contests to buy: InfiniDirt™ Wand, Prismapump, Basket of Seeds, Pumpkin Dicer.","notes":"None"},{"name":"Ferocious","lore":"Reach 3 Ferocity.","method":"2 from cakes, get the rest from Dirty Bottle.","notes":"None"},{"name":"Diversity","lore":"Unlock 40 unique Collections.","method":"17/17 Farming Collections, 6/6 Foraging Collections, 6/10 Combat Collections, 11/22 Mining Collections","notes":"None"},{"name":"Powder Collector","lore":"Collect 50,000 Mithril Powder.","method":"Daily Commissions, Fletchur, Puzzler, Crystal Hollows chests.","notes":"Grinding during 2x powder events is recommended. (remember it effects Fletchur, Puzzler, and CH chests)"},{"name":"Skill Average","lore":"Reach a non-cosmetic Skill Average of 10.","method":"Self-Explanatory.","notes":"None"},{"name":"Tarantula Broodfather","lore":"Kill 2,000 Tarantula Broodfather of tier II or higher","method":"If you ground Slayer on Tarantulas you will have a headstart.","notes":"None"},{"name":"Slaughterer","lore":"Kill any tier II Slayer Boss within 80 seconds.","method":"In order to unlock Tarantula Slayer you will need to kill a t2 Revenant","notes":"None"},{"name":"Sightseer","lore":"Visit 7 different public islands.","method":"Hub, Dungeon Hub, Barn, Mushroom Desert, Park, Gold Mine, Deep Caverns, Spider's Den.","notes":"Bingo players have all warps unlocked so you don't need to walk to each island.g"},{"name":"Ender Menace","lore":"Kill 10 Endermen in 8 seconds.","method":"Hit 10 enderman (without killing) then kill all at once.","notes":"None"},{"name":"Minion Machine","lore":"Obtain 15 unique Minions.","method":"When you grind your minion slots you will achieve this.","notes":"8 free from Dark Oak Minion."},{"name":"Carry-On","lore":"Craft a Large Backpack.","method":"Get cow minions early to progress towards this. 25,000 Leather Collection is required.","notes":"Mooshrooms drop both mushrooms and leather. 9,808 leather to craft large backpack."},{"name":"Skilled","lore":"Gain 150m Taming experience.","method":"Remember to equip Bingo Pet.","notes":"Remember to apply pet items."}] \ No newline at end of file diff --git a/public_html/index.html b/public_html/index.html new file mode 100644 index 0000000..b4546aa --- /dev/null +++ b/public_html/index.html @@ -0,0 +1,462 @@ + + + + + + + + + + + + + + + + + + + + skyblock.bingo + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+

Show Bingo Stats For:

+ + +
+
+
+
+ +
+
+
+

Tier 1

+
+ +

Tier 2

+
+ +

Tier 3

+
+ +

Tier 4

+
+ +

Tier 5

+
+ +

Community

+
+
+
+
+ + + + + \ No newline at end of file diff --git a/public_html/leaderboard.html b/public_html/leaderboard.html new file mode 100644 index 0000000..71fe0c7 --- /dev/null +++ b/public_html/leaderboard.html @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + Leaderboard | skyblock.bingo + + + + + + + + + +
RankingPlayerPoints
+ + + \ No newline at end of file diff --git a/public_html/robots.txt b/public_html/robots.txt new file mode 100644 index 0000000..e69de29 diff --git a/stderr.log b/stderr.log new file mode 100644 index 0000000..c9c9f18 --- /dev/null +++ b/stderr.log @@ -0,0 +1,6896 @@ +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'node-fetch' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/api/index.js:11:15) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'node-fetch' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/api/index.js:11:15) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'node-fetch' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/api/index.js:11:15) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'node-fetch' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/api/index.js:11:15) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'node-fetch' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/api/index.js:11:15) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'node-fetch' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/api/index.js:11:15) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +{ [Error: ENOENT: no such file or directory, open '/home/opc/bingo-api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: '/home/opc/bingo-api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open '/home/opc/bingo-api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: '/home/opc/bingo-api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open '/home/opc/bingo-api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: '/home/opc/bingo-api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open '/home/opc/bingo-api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: '/home/opc/bingo-api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open '/home/opc/bingo-api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: '/home/opc/bingo-api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open '/home/opc/bingo-api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: '/home/opc/bingo-api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open '/home/opc/bingo-api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: '/home/opc/bingo-api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open '/home/opc/bingo-api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: '/home/opc/bingo-api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open '/home/opc/bingo-api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: '/home/opc/bingo-api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open '/home/opc/bingo-api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: '/home/opc/bingo-api/goals.txt' } +/home/skybjaue/api/index.js:20 +app.use(favicon(path.join(__dirname, 'public', 'favicon.ico'))) + ^ + +ReferenceError: path is not defined + at Object. (/home/skybjaue/api/index.js:20:17) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) +/home/skybjaue/api/index.js:20 +app.use(favicon(path.join(__dirname, 'public', 'favicon.ico'))) + ^ + +ReferenceError: path is not defined + at Object. (/home/skybjaue/api/index.js:20:17) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) +/home/skybjaue/api/index.js:20 +app.use(favicon(path.join(__dirname, 'public', 'favicon.ico'))) + ^ + +ReferenceError: path is not defined + at Object. (/home/skybjaue/api/index.js:20:17) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) +/home/skybjaue/api/index.js:20 +app.use(favicon(path.join(__dirname, 'public', 'favicon.ico'))) + ^ + +ReferenceError: path is not defined + at Object. (/home/skybjaue/api/index.js:20:17) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) +(node:3691943) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3691943) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3691943) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3691943) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3691943) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3691943) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3691943) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3694693) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:3694693) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:107:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3694693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +TypeError: path must be absolute or specify root to res.sendFile + at ServerResponse.sendFile (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:430:11) + at app.get (/home/skybjaue/api/index.js:36:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:281:22 + at Function.process_params (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:341:12) + at next (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:275:10) + at cors (/home/skybjaue/nodevenv/api/10/lib/node_modules/cors/lib/index.js:188:7) +TypeError: path must be absolute or specify root to res.sendFile + at ServerResponse.sendFile (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:430:11) + at app.get (/home/skybjaue/api/index.js:36:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:281:22 + at Function.process_params (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:341:12) + at next (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:275:10) + at cors (/home/skybjaue/nodevenv/api/10/lib/node_modules/cors/lib/index.js:188:7) +TypeError: path must be absolute or specify root to res.sendFile + at ServerResponse.sendFile (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/response.js:430:11) + at app.get (/home/skybjaue/api/index.js:36:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:281:22 + at Function.process_params (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:341:12) + at next (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:275:10) + at cors (/home/skybjaue/nodevenv/api/10/lib/node_modules/cors/lib/index.js:188:7) +{ [Error: ENOENT: no such file or directory, open './api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: './api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open './api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: './api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open './api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: './api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open './api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: './api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open './api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: './api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open './api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: './api/goals.txt' } +{ [Error: ENOENT: no such file or directory, open './api/goals.txt'] + errno: -2, + code: 'ENOENT', + syscall: 'open', + path: './api/goals.txt' } +(node:3995369) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:80:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3995369) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3995369) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +ReferenceError: goals is not defined + at app.get (/home/skybjaue/api/index.js:147:21) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:281:22 + at Function.process_params (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:341:12) + at next (/home/skybjaue/nodevenv/api/10/lib/node_modules/express/lib/router/index.js:275:10) + at cors (/home/skybjaue/nodevenv/api/10/lib/node_modules/cors/lib/index.js:188:7) + at /home/skybjaue/nodevenv/api/10/lib/node_modules/cors/lib/index.js:224:17 +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:34) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:150 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:150:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:150 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:150:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:150 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:150:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:150 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:150:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:156 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:156:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:156 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:156:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:156 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:156:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:157 + if ((o == 2) || (i == 10) || (o == 16)) {tier_four_goals.push(goals[o]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:157:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:156 + if ((p == 2) || (i == 10) || (p == 16)) {tier_four_goals.push(goals[p]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:156:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:156 + if ((p == 2) || (i == 10) || (p == 16)) {tier_four_goals.push(goals[p]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:156:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:156 + if ((p == 2) || (i == 10) || (p == 16)) {tier_four_goals.push(goals[p]);} + ^ + +ReferenceError: i is not defined + at fs.readFile (/home/skybjaue/api/index.js:156:30) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:154 + if ((o == 5) || (o == 8) || (o == 11) || (o == 15) || (o == 17) || (o == 19)) {tier_two_goals.push(goals[o]);} + ^ + +ReferenceError: o is not defined + at fs.readFile (/home/skybjaue/api/index.js:154:13) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:154 + if ((o == 5) || (o == 8) || (o == 11) || (o == 15) || (o == 17) || (o == 19)) {tier_two_goals.push(goals[o]);} + ^ + +ReferenceError: o is not defined + at fs.readFile (/home/skybjaue/api/index.js:154:13) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:160 + res.send({tier_one: tier_one_goals, tier_two: tier_two_goals, tier_three: tier_three_goals, tier_four: tier_four_goals, tier_five: tier_five_goals, community, community_goals}); + ^ + +ReferenceError: community is not defined + at fs.readFile (/home/skybjaue/api/index.js:160:157) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:160 + res.send({tier_one: tier_one_goals, tier_two: tier_two_goals, tier_three: tier_three_goals, tier_four: tier_four_goals, tier_five: tier_five_goals, community, community_goals}); + ^ + +ReferenceError: community is not defined + at fs.readFile (/home/skybjaue/api/index.js:160:157) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:160 + res.send({tier_one: tier_one_goals, tier_two: tier_two_goals, tier_three: tier_three_goals, tier_four: tier_four_goals, tier_five: tier_five_goals, community, community_goals}); + ^ + +ReferenceError: community is not defined + at fs.readFile (/home/skybjaue/api/index.js:160:157) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:160 + res.send({tier_one: tier_one_goals, tier_two: tier_two_goals, tier_three: tier_three_goals, tier_four: tier_four_goals, tier_five: tier_five_goals, community, community_goals}); + ^ + +ReferenceError: community is not defined + at fs.readFile (/home/skybjaue/api/index.js:160:157) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:160 + res.send({tier_one: tier_one_goals, tier_two: tier_two_goals, tier_three: tier_three_goals, tier_four: tier_four_goals, tier_five: tier_five_goals, community, community_goals}); + ^ + +ReferenceError: community is not defined + at fs.readFile (/home/skybjaue/api/index.js:160:157) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +/home/skybjaue/api/index.js:160 + res.send({tier_one: tier_one_goals, tier_two: tier_two_goals, tier_three: tier_three_goals, tier_four: tier_four_goals, tier_five: tier_five_goals, community, community_goals}); + ^ + +ReferenceError: community is not defined + at fs.readFile (/home/skybjaue/api/index.js:160:157) + at FSReqWrap.readFileAfterClose [as oncomplete] (internal/fs/read_file_context.js:53:3) +(node:3028929) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:80:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3028929) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3028929) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3028929) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:80:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3028929) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3028929) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:80:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3028929) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3163839) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:80:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3163839) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3163839) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3165767) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3165767) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3165767) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3165767) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3165767) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3166931) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3166931) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3166931) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3177893) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3177893) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3177893) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3194937) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:80:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3194937) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3194937) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3195983) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:80:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3195983) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3195983) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3197346) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3197346) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3197346) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3197346) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3197346) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3197346) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3197346) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3199415) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3199415) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3199415) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3201980) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3201980) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3201980) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3201980) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3201980) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3208066) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3208066) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3208066) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3208066) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3208066) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3208066) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3208066) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3244862) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3244862) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3244862) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3246179) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:80:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3246179) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3246179) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3246179) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:80:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3246179) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3246179) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:80:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3246179) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:190285) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:190285) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:190285) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:190285) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:190285) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:190285) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/api/index.js:63:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:190285) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:190285) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/api/index.js:81:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:190285) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1491314) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:66:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1491314) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1491314) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1516406) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:76:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1516406) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1516406) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1524600) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:76:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1524600) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1524600) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1526261) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:76:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1526261) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1526261) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1534985) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:77:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1534985) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1534985) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1534985) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:77:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1534985) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1534985) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:77:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1534985) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1535845) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:76:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1535845) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1535845) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1536820) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:77:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1536820) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1536820) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1536820) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:77:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1536820) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1536820) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:77:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1536820) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1538042) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:77:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1538042) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1538042) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'dotenv' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:11:16) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +internal/modules/cjs/loader.js:638 + throw err; + ^ + +Error: Cannot find module 'node-fetch' + at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) + at Function.Module._load (internal/modules/cjs/loader.js:562:25) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/skyblock.bingo/index.js:12:15) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) +(node:1806643) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:89:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1806643) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1806643) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1806643) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:89:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1806643) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1806643) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:89:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1806643) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1806643) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:89:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1806643) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1806643) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:89:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1806643) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:1871871) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:89:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1871871) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1871871) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1874071) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:89:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1874071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1874071) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:93:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2190262) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:93:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:72:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:72:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:72:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:72:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:72:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:72:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:72:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:72:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:2190262) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:72:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2190262) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:2457482) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:93:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2457482) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2457482) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2457482) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:93:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2457482) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:2513149) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:94:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2513149) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2513149) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2546223) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:96:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2546223) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2546223) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2546223) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:96:29) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2546223) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2618626) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:86:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2618626) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2618626) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2618626) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:107:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2618626) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2623326) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:107:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2623326) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2623326) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2623326) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:107:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2623326) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2623326) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:86:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2623326) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:2623326) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:107:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2623326) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:2623326) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2623326) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:2623326) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:107:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2623326) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:2652154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:107:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2652154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2652154) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2652154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:107:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2652154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2652154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2652154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2652154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:86:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2652154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2652154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2652154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:2652154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2652154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:2652154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2652154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:2652154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2652154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:2712554) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:93:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2712554) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2712554) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2712554) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:93:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2712554) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2716460) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2716460) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2716460) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2716460) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2716460) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2718968) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2718968) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2718968) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2718968) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2718968) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2718968) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2718968) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2718968) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2718968) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2718968) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2718968) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:2718968) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2718968) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:2718968) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2718968) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:2718968) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2718968) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:2720421) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2720421) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2720421) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2720937) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2720937) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2720937) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2721650) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:90:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2721650) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2721650) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2727807) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2727807) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2727807) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2728627) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2728627) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2728627) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2731660) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:90:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2731660) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2731660) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2732497) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:90:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2732497) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2732497) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2734691) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:90:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2734691) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2734691) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2735903) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:87) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2735903) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2735903) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2739774) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:91) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2739774) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2739774) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2741137) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:91) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2741137) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2741137) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2741137) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:91) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2741137) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2742185) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:91) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2742185) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2742185) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2742185) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:91) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2742185) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2744498) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:86:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2744498) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2744498) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2744975) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:92:91) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2744975) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2744975) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2746146) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:99:21) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2746146) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2746146) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2747327) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tier' of undefined + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:91:91) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2747327) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2747327) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2748454) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:99:21) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2748454) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2748454) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2748454) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:99:21) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2748454) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2749812) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:108:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2749812) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2749812) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2749812) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:108:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2749812) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2843269) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:108:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2843269) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2843269) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2843269) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:108:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2843269) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2843269) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:108:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2843269) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2843269) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:108:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2843269) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2843269) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:85:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2843269) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:2843269) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:85:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2843269) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:2938958) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2938958) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2938958) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2938958) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2938958) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2938958) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2938958) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2938958) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2938958) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2938958) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2938958) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:2938958) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2938958) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:2938958) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2938958) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:2938958) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2938958) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:2938958) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2938958) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +/home/skybjaue/skyblock.bingo/index.js:34 +app.error(function(err, req, res, next){ + ^ + +TypeError: app.error is not a function + at Object. (/home/skybjaue/skyblock.bingo/index.js:34:5) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) +/home/skybjaue/skyblock.bingo/index.js:34 +app.error(function(err, req, res, next){ + ^ + +TypeError: app.error is not a function + at Object. (/home/skybjaue/skyblock.bingo/index.js:34:5) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) +/home/skybjaue/skyblock.bingo/index.js:34 +app.error(function(err, req, res, next){ + ^ + +TypeError: app.error is not a function + at Object. (/home/skybjaue/skyblock.bingo/index.js:34:5) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) +/home/skybjaue/skyblock.bingo/index.js:34 +app.error(function(err, req, res, next){ + ^ + +TypeError: app.error is not a function + at Object. (/home/skybjaue/skyblock.bingo/index.js:34:5) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) +Sun, 10 Apr 2022 22:44:26 GMT express deprecated res.send(body, status): Use res.status(status).send(body) instead at index.js:170:9 +(node:2877101) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2877101) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2877101) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2882542) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:2882542) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2882542) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +TypeError: path must be absolute or specify root to res.sendFile + at ServerResponse.sendFile (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:430:11) + at app.get (/home/skybjaue/skyblock.bingo/index.js:170:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) +TypeError: res.sendDate is not a function + at /home/skybjaue/skyblock.bingo/index.js:178:9 + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3543136) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 14) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 16) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 17) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 18) +(node:3543136) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3543136) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 19) +(node:3644701) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3644701) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3644701) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3644701) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3644701) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3644701) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3644701) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +Error: Failed to lookup view "./views/index" in views directory "/home/skybjaue/skyblock.bingo/views" + at Function.render (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/application.js:580:17) + at ServerResponse.render (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:1017:7) + at app.get (/home/skybjaue/skyblock.bingo/index.js:172:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) +Error: Failed to lookup view "./views/card" in views directory "/home/skybjaue/skyblock.bingo/views" + at Function.render (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/application.js:580:17) + at ServerResponse.render (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:1017:7) + at app.get (/home/skybjaue/skyblock.bingo/index.js:172:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) +Error: Failed to lookup view "./views/card.ejs" in views directory "/home/skybjaue/skyblock.bingo/views" + at Function.render (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/application.js:580:17) + at ServerResponse.render (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:1017:7) + at app.get (/home/skybjaue/skyblock.bingo/index.js:172:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) +Error: Failed to lookup view "./views/card.ejs" in views directory "./views" + at Function.render (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/application.js:580:17) + at ServerResponse.render (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:1017:7) + at app.get (/home/skybjaue/skyblock.bingo/index.js:173:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) +Error: Failed to lookup view "./views/card" in views directory "./views" + at Function.render (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/application.js:580:17) + at ServerResponse.render (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:1017:7) + at app.get (/home/skybjaue/skyblock.bingo/index.js:173:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) +(node:759216) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:759216) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:759216) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:759216) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:759216) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:759216) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:759216) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:759216) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:759216) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:759216) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:759216) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:764892) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:764892) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:764892) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:764892) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:764892) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:764892) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:764892) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:764892) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:764892) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:764892) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:764892) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:764892) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:764892) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/card.html' +TypeError: path must be absolute or specify root to res.sendFile + at ServerResponse.sendFile (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:430:11) + at /home/skybjaue/skyblock.bingo/index.js:183:9 + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) +(node:899720) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:899720) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:899720) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:899720) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:899720) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:899720) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:899720) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:901970) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:901970) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:901970) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:901970) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:901970) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +ReferenceError: window is not defined + at app.get (/home/skybjaue/skyblock.bingo/index.js:172:16) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) +Error: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.18' not found (required by /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/canvas/build/Release/canvas.node) + at Object.Module._extensions..node (internal/modules/cjs/loader.js:807:18) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/canvas/lib/bindings.js:3:18) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) +Error: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.18' not found (required by /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/canvas/build/Release/canvas.node) + at Object.Module._extensions..node (internal/modules/cjs/loader.js:807:18) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at Object. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/canvas/lib/bindings.js:3:18) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) +(node:1007052) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1007052) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1007052) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1125847) UnhandledPromiseRejectionWarning: ReferenceError: goal is not defined + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:201:27) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1125847) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1125847) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1248768) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'goals' of undefined + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:176:24) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1248768) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1248768) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1248768) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'goals' of undefined + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:176:24) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1248768) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1248768) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'goals' of undefined + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:176:24) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1248768) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1255351) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'goals' of undefined + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:176:24) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1255351) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1255351) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1255554) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'goals' of undefined + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:176:24) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1255554) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1255554) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1255554) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'goals' of undefined + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:176:24) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1255554) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1277559) UnhandledPromiseRejectionWarning: TypeError: data.goals[i].lore.replaceAll is not a function + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:177:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1277559) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1277559) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1278478) UnhandledPromiseRejectionWarning: TypeError: data.goals[i].lore.replaceAll is not a function + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:178:57) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1278478) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1278478) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1345115) UnhandledPromiseRejectionWarning: TypeError: data.goals[5].lore.replaceAll is not a function + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:175:43) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1345115) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1345115) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1356885) UnhandledPromiseRejectionWarning: TypeError: data.goals[5].lore.replaceAll is not a function + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:175:43) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1356885) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1356885) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1358209) UnhandledPromiseRejectionWarning: TypeError: data.goals[5].lore.replaceAll is not a function + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:175:43) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1358209) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1358209) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1361772) UnhandledPromiseRejectionWarning: TypeError: data.goals[5].lore.replaceAll is not a function + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:175:43) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1361772) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1361772) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1365814) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'replace' of undefined + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:175:46) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1365814) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1365814) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1390710) UnhandledPromiseRejectionWarning: TypeError: data.goals[5].lore.replaceAll is not a function + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:175:43) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1390710) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1390710) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1400199) UnhandledPromiseRejectionWarning: TypeError: p.replaceAll is not a function + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:179:27) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1400199) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1400199) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1400199) UnhandledPromiseRejectionWarning: TypeError: p.replaceAll is not a function + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:179:27) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1400199) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1400199) UnhandledPromiseRejectionWarning: TypeError: p.replaceAll is not a function + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:179:27) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1400199) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1460172) UnhandledPromiseRejectionWarning: TypeError: Cannot set property 'instructions' of undefined + at fetch.then.then.data (/home/skybjaue/skyblock.bingo/index.js:203:33) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1460172) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1460172) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +Error: ENOENT: no such file or directory, stat '/index.html' +TypeError: path must be absolute or specify root to res.sendFile + at ServerResponse.sendFile (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:430:11) + at app.get (/home/skybjaue/skyblock.bingo/index.js:44:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) +TypeError: path must be absolute or specify root to res.sendFile + at ServerResponse.sendFile (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:430:11) + at app.get (/home/skybjaue/skyblock.bingo/index.js:36:9) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:341:12) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) + at cors (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/cors/lib/index.js:188:7) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of null + at fetch.then.then.playerData (/home/skybjaue/skyblock.bingo/index.js:63:38) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1864952) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 14) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 16) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 17) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 18) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 20) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 22) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 24) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 25) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 26) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 27) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 28) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 29) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 30) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 32) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 33) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 34) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 35) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 36) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 41) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 42) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 43) +(node:1864952) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1864952) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 44) +(node:4036648) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:105:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:4036648) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:4036648) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:4036648) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of null + at fetch.then.then.playerData (/home/skybjaue/skyblock.bingo/index.js:65:38) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:4036648) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:4036648) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:4036648) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:4036648) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:4036648) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:4036648) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:4036648) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:650288) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:650288) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:650288) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:656283) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:656283) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:656283) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:656283) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:656283) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:656283) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:656283) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:672318) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:672318) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:672318) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:672318) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:672318) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:672318) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:672318) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:672318) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:672318) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:672318) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:672318) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:672318) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:672318) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:672318) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:672318) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:672318) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:672318) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:672318) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:672318) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:681259) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:83:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:681259) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:681259) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:681259) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:681259) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:684809) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:684809) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:684809) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:684809) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:684809) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:690730) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of null + at fetch.then.then.playerData (/home/skybjaue/skyblock.bingo/index.js:63:38) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of null + at fetch.then.then.playerData (/home/skybjaue/skyblock.bingo/index.js:63:38) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 14) +(node:690730) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:690730) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:878610) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:878610) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:878610) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:878610) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:878610) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:878610) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:878610) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:878610) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of null + at fetch.then.then.playerData (/home/skybjaue/skyblock.bingo/index.js:63:38) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:878610) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:878610) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:878610) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:883154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:883154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:883154) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:883154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:883154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:883154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:883154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:883154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:883154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:883154) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:883154) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:902882) UnhandledPromiseRejectionWarning: TypeError: user.isAlphanumeric is not a function + at fetch.then.then.goalData (/home/skybjaue/skyblock.bingo/index.js:52:14) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:902882) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:902882) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:902882) UnhandledPromiseRejectionWarning: TypeError: user.isAlphanumeric is not a function + at fetch.then.then.goalData (/home/skybjaue/skyblock.bingo/index.js:52:14) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:902882) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:902882) UnhandledPromiseRejectionWarning: TypeError: user.isAlphanumeric is not a function + at fetch.then.then.goalData (/home/skybjaue/skyblock.bingo/index.js:52:14) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:902882) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:916320) UnhandledPromiseRejectionWarning: TypeError: user.isAlphanumeric is not a function + at fetch.then.then.goalData (/home/skybjaue/skyblock.bingo/index.js:52:21) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:916320) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:916320) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:917933) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:917933) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:917933) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:917933) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:917933) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:917933) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:81:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:917933) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:917933) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:103:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:917933) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1156299) UnhandledPromiseRejectionWarning: SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:125:38) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1156299) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1156299) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +undefined:1 +[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[o + +SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at Object. (/home/skybjaue/skyblock.bingo/index.js:33:24) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) +undefined:1 +[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[o + +SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at Object. (/home/skybjaue/skyblock.bingo/index.js:33:24) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) +undefined:1 +[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[o + +SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at Object. (/home/skybjaue/skyblock.bingo/index.js:33:24) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) +undefined:1 +[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[o + +SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at Object. (/home/skybjaue/skyblock.bingo/index.js:33:24) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) +undefined:1 +[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[o + +SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at Object. (/home/skybjaue/skyblock.bingo/index.js:33:24) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) +undefined:1 +[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[o + +SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at Object. (/home/skybjaue/skyblock.bingo/index.js:33:24) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) +undefined:1 +[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[o + +SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at Object. (/home/skybjaue/skyblock.bingo/index.js:34:24) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) +undefined:1 +[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[o + +SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at Object. (/home/skybjaue/skyblock.bingo/index.js:34:24) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) +undefined:1 +[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[o + +SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at Object. (/home/skybjaue/skyblock.bingo/index.js:33:24) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) +undefined:1 +[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[o + +SyntaxError: Unexpected token o in JSON at position 1 + at JSON.parse () + at Object. (/home/skybjaue/skyblock.bingo/index.js:33:24) + at Module._compile (internal/modules/cjs/loader.js:778:30) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1259693) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 14) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:1259693) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:106:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1259693) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 16) +(node:1381158) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1381158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1381158) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1381158) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1381158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1381158) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1381158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1381158) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1381158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1381158) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1381158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:1381158) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1381158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:1381158) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1381158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:1381158) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1381158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:1381158) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1381158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:1381158) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1381158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:1382108) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1382108) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1382108) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1382108) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1382108) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1382108) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1382108) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1384428) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1384428) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1384428) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1384428) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:155:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1384428) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1389765) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1389765) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1389765) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1389765) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1389765) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1389765) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1389765) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1389765) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1389765) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1389765) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1389765) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:1389765) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1389765) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:1389765) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1389765) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:1389765) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1389765) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1397641) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:101:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:101:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:101:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:1397641) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1397641) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:1406782) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1406782) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1406782) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1406782) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1406782) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1406782) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1406782) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1406782) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1406782) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1406782) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1406782) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1412071) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:101:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:101:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:80:56) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:101:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:101:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:101:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:101:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:80:56) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:1412071) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:154:25) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1412071) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1447742) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 14) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 16) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 17) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 18) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 19) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 20) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 22) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of null + at fetch.then.then.playerData (/home/skybjaue/skyblock.bingo/index.js:64:38) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 23) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 24) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 26) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 28) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 29) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 31) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 33) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of null + at fetch.then.then.playerData (/home/skybjaue/skyblock.bingo/index.js:64:38) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 34) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 35) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 36) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 37) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 38) +(node:1447742) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1447742) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 39) +(node:1988002) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of undefined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:72:35) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1988002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:1988002) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1988002) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of undefined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:72:35) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1988002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1988002) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of undefined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:72:35) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1988002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:1988002) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of undefined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:72:35) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1988002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1988002) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of undefined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:72:35) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1988002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:1988002) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of undefined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:72:35) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1988002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:1988002) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of undefined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:72:35) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1988002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:1988002) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'rank' of undefined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:72:35) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1988002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:2004643) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of null + at fetch.then.then.profileData (/home/skybjaue/skyblock.bingo/index.js:82:58) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2004643) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2004643) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2004643) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'length' of undefined + at fetch.then.then.bingoData (/home/skybjaue/skyblock.bingo/index.js:104:53) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2004643) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2007151) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at /home/skybjaue/skyblock.bingo/index.js:141:17 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2007151) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2007151) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2512747) UnhandledPromiseRejectionWarning: TypeError: body used already for: https://api.mojang.com/users/profiles/minecraft/XessDx + at Response.consumeBody (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:344:30) + at Response.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:269:22) + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:170:31) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2512747) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2512747) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2514113) UnhandledPromiseRejectionWarning: TypeError: body used already for: https://api.mojang.com/users/profiles/minecraft/XessDx + at Response.consumeBody (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:344:30) + at Response.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:269:22) + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:170:31) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2514113) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2514113) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2514113) UnhandledPromiseRejectionWarning: TypeError: body used already for: https://api.mojang.com/users/profiles/minecraft/XessDx + at Response.consumeBody (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:344:30) + at Response.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:269:22) + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:170:31) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2514113) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2514113) UnhandledPromiseRejectionWarning: TypeError: body used already for: https://api.mojang.com/users/profiles/minecraft/XessDx + at Response.consumeBody (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:344:30) + at Response.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:269:22) + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:170:31) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2514113) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:2514469) UnhandledPromiseRejectionWarning: TypeError: body used already for: https://api.mojang.com/users/profiles/minecraft/XessDx + at Response.consumeBody (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:344:30) + at Response.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:269:22) + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:170:31) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2514469) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2514469) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2584820) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:262:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2584820) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2584820) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2584820) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:262:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2584820) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2587062) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:261:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2587062) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2587062) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2592934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:261:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2592934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2592934) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2594274) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:261:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2594274) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2594274) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2613104) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:261:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2613104) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2613104) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2615280) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:263:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2615280) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2615280) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2621069) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:258:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2621069) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2621069) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2672623) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2672623) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2672623) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2672623) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2672623) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2672623) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2672623) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2672623) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2672623) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2672623) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2672623) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:2672623) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2672623) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:2672623) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2672623) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:2672623) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2672623) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:2961795) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2961795) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2961795) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2961795) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:240:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2961795) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2966745) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2966745) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2966745) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +Sat, 16 Apr 2022 04:55:46 GMT express deprecated res.send(status): Use res.sendStatus(status) instead at index.js:227:17 +(node:2968148) UnhandledPromiseRejectionWarning: RangeError [ERR_HTTP_INVALID_STATUS_CODE]: Invalid status code: 5 + at ServerResponse.writeHead (_http_server.js:211:11) + at ServerResponse._implicitHeader (_http_server.js:202:8) + at write_ (_http_outgoing.js:585:9) + at ServerResponse.end (_http_outgoing.js:702:5) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:221:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2968148) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2968148) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2969988) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2969988) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2969988) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +Sat, 16 Apr 2022 04:57:14 GMT express deprecated res.send(status): Use res.sendStatus(status) instead at index.js:227:17 +(node:2972775) UnhandledPromiseRejectionWarning: RangeError [ERR_HTTP_INVALID_STATUS_CODE]: Invalid status code: 5 + at ServerResponse.writeHead (_http_server.js:211:11) + at ServerResponse._implicitHeader (_http_server.js:202:8) + at write_ (_http_outgoing.js:585:9) + at ServerResponse.end (_http_outgoing.js:702:5) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:221:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2972775) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2972775) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +Sat, 16 Apr 2022 04:57:23 GMT express deprecated res.send(status): Use res.sendStatus(status) instead at index.js:227:17 +(node:2978018) UnhandledPromiseRejectionWarning: RangeError [ERR_HTTP_INVALID_STATUS_CODE]: Invalid status code: 5 + at ServerResponse.writeHead (_http_server.js:211:11) + at ServerResponse._implicitHeader (_http_server.js:202:8) + at write_ (_http_outgoing.js:585:9) + at ServerResponse.end (_http_outgoing.js:702:5) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:221:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2978018) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2978018) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +Sat, 16 Apr 2022 04:58:28 GMT express deprecated res.send(status): Use res.sendStatus(status) instead at index.js:227:17 +(node:2980734) UnhandledPromiseRejectionWarning: RangeError [ERR_HTTP_INVALID_STATUS_CODE]: Invalid status code: 5 + at ServerResponse.writeHead (_http_server.js:211:11) + at ServerResponse._implicitHeader (_http_server.js:202:8) + at write_ (_http_outgoing.js:585:9) + at ServerResponse.end (_http_outgoing.js:702:5) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:221:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2980734) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2980734) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2981756) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2981756) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2981756) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2986944) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2986944) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2986944) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2986944) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2986944) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2986944) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2986944) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2986944) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2986944) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2986944) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2986944) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:2987813) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2987813) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2987813) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2987813) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2987813) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2999885) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2999885) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2999885) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2999885) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2999885) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2999885) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2999885) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3015165) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:241:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3015165) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3015165) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +/home/skybjaue/skyblock.bingo/index.js:155 + let goal_data = goal_data; + ^ + +SyntaxError: Identifier 'goal_data' has already been declared + at Module._compile (internal/modules/cjs/loader.js:723:23) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) + at Module._compile (internal/modules/cjs/loader.js:778:30) +/home/skybjaue/skyblock.bingo/index.js:155 + let goal_data = goal_data; + ^ + +SyntaxError: Identifier 'goal_data' has already been declared + at Module._compile (internal/modules/cjs/loader.js:723:23) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) + at Module._compile (internal/modules/cjs/loader.js:778:30) +(node:3016856) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3016856) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3016856) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3018353) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:3018353) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3018353) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:3019258) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3019258) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3019258) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3019258) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3019258) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3019258) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3019258) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3019258) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3019258) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3020490) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3020490) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3020490) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3020490) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3020490) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3023536) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3023536) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3023536) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3023536) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3023536) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3025951) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:3025951) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:242:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3025951) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:3037167) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:244:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3037167) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3037167) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3038110) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:244:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3038110) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3038110) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3038110) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3038110) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3038110) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:244:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3038110) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3041949) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3041949) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3041949) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +/home/skybjaue/skyblock.bingo/index.js:154 + await fetch(`https://api.hypixel.net/resources/skyblock/bingo`) + ^^^^^ + +SyntaxError: Unexpected identifier + at Module._compile (internal/modules/cjs/loader.js:723:23) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) + at Module._compile (internal/modules/cjs/loader.js:778:30) +/home/skybjaue/skyblock.bingo/index.js:154 + await fetch(`https://api.hypixel.net/resources/skyblock/bingo`) + ^^^^^ + +SyntaxError: Unexpected identifier + at Module._compile (internal/modules/cjs/loader.js:723:23) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) + at Module._compile (internal/modules/cjs/loader.js:778:30) +/home/skybjaue/skyblock.bingo/index.js:154 + await fetch(`https://api.hypixel.net/resources/skyblock/bingo`) + ^^^^^ + +SyntaxError: Unexpected identifier + at Module._compile (internal/modules/cjs/loader.js:723:23) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) + at Module._compile (internal/modules/cjs/loader.js:778:30) +/home/skybjaue/skyblock.bingo/index.js:154 + await fetch(`https://api.hypixel.net/resources/skyblock/bingo`) + ^^^^^ + +SyntaxError: Unexpected identifier + at Module._compile (internal/modules/cjs/loader.js:723:23) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) + at Module._compile (internal/modules/cjs/loader.js:778:30) +(node:3042883) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:243:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3042883) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3042883) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3054147) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:145:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3054147) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3054147) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3054147) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:145:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3054147) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +ReferenceError: isUUID is not defined + at app.get (/home/skybjaue/skyblock.bingo/index.js:48:5) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) +TypeError: req.params.user.isUUID is not a function + at app.get (/home/skybjaue/skyblock.bingo/index.js:48:26) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) +(node:3171000) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3171000) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3171000) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3171000) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3171000) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3186286) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3186286) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3186286) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3186286) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:143:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3186286) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3200805) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:73:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3200805) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3200805) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3213873) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:72:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3213873) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3213873) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3214747) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:72:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3214747) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3214747) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3217060) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:70:23) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3217060) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3217060) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3217697) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3217697) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3217697) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3217697) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3217697) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3250351) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:154:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3250351) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3250351) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3250351) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:154:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3250351) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3257292) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3257292) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3257292) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +ReferenceError: mojang_data is not defined + at app.get (/home/skybjaue/skyblock.bingo/index.js:63:14) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) +ReferenceError: mojang_data is not defined + at app.get (/home/skybjaue/skyblock.bingo/index.js:63:14) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) +(node:3261621) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:70:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3261621) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3261621) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3261621) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3261621) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3261621) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3261621) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3261621) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3261621) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3266586) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:70:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3266586) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3266586) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3266586) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:151:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3266586) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3266586) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:151:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3266586) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3266586) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:151:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3266586) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3270322) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:70:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3270322) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3270322) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3270322) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'pets' of undefined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:100:75) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3270322) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3270322) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'pets' of undefined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:100:75) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3270322) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3271865) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:70:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3271865) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3271865) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +ReferenceError: mojang_data is not defined + at app.get (/home/skybjaue/skyblock.bingo/index.js:63:14) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) +(node:3273627) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3273627) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3273627) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3278481) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:70:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3278481) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3278481) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3280538) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:70:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3280538) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3280538) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3280538) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:151:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3280538) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3286002) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:71:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3286002) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 14) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 16) +(node:3286002) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3286002) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 17) +(node:3287457) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:71:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3287457) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3287457) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3287457) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3287457) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3287457) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3287457) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3287457) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3287457) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3287457) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3287457) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3287457) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3287457) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:3287457) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3287457) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +/home/skybjaue/skyblock.bingo/index.js:55 + id = await mojang_data.id; + ^^^^^ + +SyntaxError: await is only valid in async function + at Module._compile (internal/modules/cjs/loader.js:723:23) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) + at Module._compile (internal/modules/cjs/loader.js:778:30) +/home/skybjaue/skyblock.bingo/index.js:55 + id = await mojang_data.id; + ^^^^^ + +SyntaxError: await is only valid in async function + at Module._compile (internal/modules/cjs/loader.js:723:23) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) + at Module._compile (internal/modules/cjs/loader.js:778:30) +/home/skybjaue/skyblock.bingo/index.js:55 + id = await mojang_data.id; + ^^^^^ + +SyntaxError: await is only valid in async function + at Module._compile (internal/modules/cjs/loader.js:723:23) + at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) + at Module.load (internal/modules/cjs/loader.js:653:32) + at tryModuleLoad (internal/modules/cjs/loader.js:593:12) + at Function.Module._load (internal/modules/cjs/loader.js:585:3) + at Module.require (internal/modules/cjs/loader.js:692:17) + at require (internal/modules/cjs/helpers.js:25:18) + at startApplication (/usr/local/lsws/fcgi-bin/lsnode.js:48:15) + at Object. (/usr/local/lsws/fcgi-bin/lsnode.js:16:1) + at Module._compile (internal/modules/cjs/loader.js:778:30) +(node:3294650) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:149:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3294650) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3294650) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3294650) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:149:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3294650) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3377556) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:70:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3377556) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3377556) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3382602) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:70:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3382602) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3382602) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3388158) UnhandledPromiseRejectionWarning: ReferenceError: id is not defined + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:71:69) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3388158) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3388158) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3393127) UnhandledPromiseRejectionWarning: ReferenceError: req is not defined + at getID (/home/skybjaue/skyblock.bingo/index.js:158:5) + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:67:24) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3393127) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3393127) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3393127) UnhandledPromiseRejectionWarning: ReferenceError: req is not defined + at getID (/home/skybjaue/skyblock.bingo/index.js:158:5) + at Promise.all.then (/home/skybjaue/skyblock.bingo/index.js:67:24) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3393127) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3405830) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405830) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3405830) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3405910) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 14) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 16) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 17) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 18) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 19) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 20) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 21) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 22) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 23) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 24) +(node:3405910) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3405910) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 25) +(node:3410259) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3410259) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3410259) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3410259) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3410259) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3410259) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3410259) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3410259) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3410259) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3410259) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3410259) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3410259) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3410259) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:3410259) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:153:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3410259) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:3411541) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:152:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3411541) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3411541) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3494820) UnhandledPromiseRejectionWarning: TypeError: req.params.user.replaceAll is not a function + at app.get (/home/skybjaue/skyblock.bingo/index.js:50:65) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) +(node:3494820) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3494820) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3494820) UnhandledPromiseRejectionWarning: TypeError: req.params.user.replaceAll is not a function + at app.get (/home/skybjaue/skyblock.bingo/index.js:50:65) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) +(node:3494820) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3521891) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3521891) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3521891) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3525067) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:156:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3525067) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3525067) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3528051) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:156:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3528051) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3528051) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3528890) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:156:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3528890) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3528890) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3528890) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:156:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3528890) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3529110) UnhandledPromiseRejectionWarning: TypeError: id.replaceAll is not a function + at app.get (/home/skybjaue/skyblock.bingo/index.js:51:16) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:137:13) + at Route.dispatch (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/route.js:112:3) + at Layer.handle [as handle_request] (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:95:5) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:281:22 + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:360:14) + at param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:371:14) + at Function.process_params (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:416:3) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:275:10) +(node:3529110) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3529110) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3530836) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:156:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3530836) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3530836) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3536934) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 14) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 16) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 17) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 18) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 19) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 20) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 21) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 22) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 23) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 24) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 25) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 26) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 27) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 28) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 29) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 30) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 31) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 32) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 33) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 34) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 35) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 36) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 37) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 38) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 39) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 40) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 41) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 42) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 43) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 44) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 45) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 46) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 47) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 48) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 49) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 50) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 51) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 52) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 53) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 54) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 55) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 56) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 57) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 58) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 59) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 61) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 62) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 63) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 64) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 65) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 66) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 67) +(node:3536934) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3536934) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 68) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3317319) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 16) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 17) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 19) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 21) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 23) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 24) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 25) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 26) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 27) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 29) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 30) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 32) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 33) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 34) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 35) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 36) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 38) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 40) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 41) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 43) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 44) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 45) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 46) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 47) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 48) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 49) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 50) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 51) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 52) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 53) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 55) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 56) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 58) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 59) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 60) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 61) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 63) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 65) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 66) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 67) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 68) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 69) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 70) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 71) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 72) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 74) +(node:3317319) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:155:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3317319) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 75) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:3357193) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 7) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 9) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +Error: ENOENT: no such file or directory, stat '/home/skybjaue/skyblock.bingo/index.html' +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 13) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 17) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 18) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 21) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 22) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 23) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 24) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 25) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 26) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 27) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 28) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 29) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 31) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 33) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 35) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 36) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 37) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 38) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 39) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 40) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 41) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 42) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 43) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 44) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 45) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 46) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 47) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 49) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 50) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 51) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 53) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 55) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 57) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 58) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 60) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 62) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 64) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 66) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 67) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 68) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 69) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 71) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 72) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 73) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 74) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 75) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 77) +(node:3357193) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:147:17) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:3357193) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 78) +(node:1315088) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1315088) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:1315088) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1315088) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1315088) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:1315088) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1315088) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 11) +(node:1315088) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1315088) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 15) +(node:1315088) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1315088) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 18) +(node:1315088) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1315088) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 20) +(node:1973075) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1973075) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1973075) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1973075) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1973075) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:1976608) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 8) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 10) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 12) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 14) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 16) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 18) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 20) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: invalid json response body at https://api.hypixel.net/resources/skyblock/bingo reason: Unexpected token < in JSON at position 0 + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:273:32 + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 22) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 23) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 24) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 25) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 26) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 27) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 28) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 29) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 30) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 31) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 32) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 33) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 34) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 35) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 36) +(node:1976608) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: getaddrinfo ENOTFOUND api.hypixel.net api.hypixel.net:443 + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:1976608) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 37) +(node:2537519) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: connect ENETUNREACH 2606:4700::6810:4e15:443 - Local (:::0) + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:2537519) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2537519) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2537519) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: connect ENETUNREACH 2606:4700::6810:4e15:443 - Local (:::0) + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:2537519) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2537519) UnhandledPromiseRejectionWarning: FetchError: request to https://api.hypixel.net/resources/skyblock/bingo failed, reason: connect ENETUNREACH 2606:4700::6810:4e15:443 - Local (:::0) + at ClientRequest. (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/node-fetch/lib/index.js:1491:11) + at ClientRequest.emit (events.js:198:13) + at TLSSocket.socketErrorListener (_http_client.js:401:9) + at TLSSocket.emit (events.js:198:13) + at emitErrorNT (internal/streams/destroy.js:91:8) + at emitErrorAndCloseNT (internal/streams/destroy.js:59:3) + at process._tickCallback (internal/process/next_tick.js:63:19) +(node:2537519) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2542811) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:183:33) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2542811) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2542811) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2542811) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:183:33) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2542811) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2542811) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:183:33) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2542811) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3) +(node:2542811) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:183:33) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2542811) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4) +(node:2545752) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:183:33) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2545752) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) +(node:2545752) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. +(node:2545752) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:183:33) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2545752) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) +(node:2545752) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:170:12) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:267:15) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:183:33) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2545752) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 20) +(node:2545752) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client + at ServerResponse.setHeader (_http_outgoing.js:470:11) + at ServerResponse.header (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:776:10) + at ServerResponse.json (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:264:10) + at ServerResponse.send (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/response.js:158:21) + at Promise.all.then.catch.error (/home/skybjaue/skyblock.bingo/index.js:183:33) + at process._tickCallback (internal/process/next_tick.js:68:7) +(node:2545752) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 21) +URIError: Failed to decode param 'RARE%20DROP!%20Enchanted%20Ender%20Pearl%20(+118%%20%E2%9C%AF%20Magic%20Find)' + at decodeURIComponent () + at decode_param (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:172:12) + at Layer.match (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/layer.js:148:15) + at matchLayer (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:580:18) + at next (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/express/lib/router/index.js:220:15) + at cors (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/cors/lib/index.js:188:7) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/cors/lib/index.js:224:17 + at originCallback (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/cors/lib/index.js:214:15) + at /home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/cors/lib/index.js:219:13 + at optionsCallback (/home/skybjaue/nodevenv/skyblock.bingo/10/lib/node_modules/cors/lib/index.js:199:9) diff --git a/swagger.json b/swagger.json new file mode 100644 index 0000000..fb8fc08 --- /dev/null +++ b/swagger.json @@ -0,0 +1,73 @@ +{ + "swagger": "2.0", + "info": { + "description": "This API provides Hypixel Skyblock bingo data.", + "version": "1.0.0", + "title": "Bingo API", + "license": { + "name": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + }, + "host": "skyblock.bingo/api", + "tags": [ + { + "name": "stats", + "description": "Gets a player's bingo stats" + }, + { + "name": "leaderboard", + "description": "Get the top 100 bingo players" + } + ], + "schemes": [ + "https", + "http" + ], + "paths": { + "/stats/{username/uuid}": { + "get": { + "tags": [ + "stats" + ], + "operationId": "getStats", + "produces": [ + "application/xml", + "application/json" + ], + "parameters": [ + { + "name": "username/uuid", + "in": "path", + "description": "Username or UUID", + "required": true, + "type": "string", + "format": "utf8" + } + ], + "responses": { + "200": { + "description": "Successful operation" + } + } + } + }, + "/leaderboard": { + "get": { + "tags": [ + "leaderboard" + ], + "operationId": "getLeaderboard", + "produces": [ + "application/xml", + "application/json" + ], + "responses": { + "200": { + "description": "Successful operation" + } + } + } + } + } +} \ No newline at end of file -- cgit