commit 9abee1f0758bc5ffd42e4e6f2788b267a362b3a4 Author: Parker2991 Date: Tue Feb 20 17:17:43 2024 +0000 v4.2.5 diff --git a/.breakpoints b/.breakpoints new file mode 100644 index 0000000..6bc879c --- /dev/null +++ b/.breakpoints @@ -0,0 +1,12 @@ +{ + "files": { + "bot.js": [ + { + "id": "49d4dcaa-8dea-44a6-8ca6-dd002ada6649", + "line": 71, + "version": 1016, + "index": 2141 + } + ] + } +} \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4e208b --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.env +node_modules +.upm +.replit +replit.nix +new file \ No newline at end of file diff --git a/ChomensJS/README.md b/ChomensJS/README.md new file mode 100644 index 0000000..0e6d65d --- /dev/null +++ b/ChomensJS/README.md @@ -0,0 +1,11 @@ +# chomens-bot-js +***(originally named chomens-bot-mc)***\ +\ +Archive of ChomeNS Bot Javascript source code.\ +\ +Some of the code are messy and hardcoded so you might wanna change some of it.\ +\ +Explore the code and see how it works!\ +Also note that the core is broken sometimes. + +R.I.P ChomeNS Bot Javascript diff --git a/ChomensJS/bot.js b/ChomensJS/bot.js new file mode 100644 index 0000000..4216cbd --- /dev/null +++ b/ChomensJS/bot.js @@ -0,0 +1,128 @@ +const mc = require('minecraft-protocol') +const { EventEmitter } = require('events') +const { loadPlugins } = require('./util/loadPlugins') +const util = require('node:util') +const randomstring = require('randomstring') + +/** + * makes the bot + * @param {object} server the server object used in the config + * @param {object} config the config file + * @param {Function} getBots get bots function in index.js + * @param {Function} setNewBot ig real + * @param {Class} dcclient discord client + * @param {object} rl readline. + * @return {object} the bot object + */ +async function createBot (server, config, getBots, setNewBot, dcclient, rl) { + const bot = new EventEmitter() + bot.options = { + username: server.username ?? randomstring.generate(8), + host: server.host ?? 'localhost', + port: server.port ?? 25565, + version: config.version, + kaboom: server.kaboom ?? true, + logging: server.logging ?? true, + useChat: server.useChat ?? false, + checkTimeoutInterval: config.timeoutInterval, + hideErrors: true + } + + // among us fix for bot.options.host and bot.options.port + bot.server = { + host: server.host, + port: server.port + } + + bot.visibility = false + bot.getBots = getBots + + bot.end = (reason = 'end', event) => { + bot.emit('end', reason, event) + bot.removeAllListeners() + bot._client.end() + bot._client.removeAllListeners() + } + + bot._client = mc.createClient(bot.options) + + bot.setMaxListeners(Infinity) + bot._client.setMaxListeners(Infinity) + + bot.version = bot._client.version + bot.write = (name, data) => bot._client.write(name, data) + + setNewBot(bot.server.host, bot) + + const channel = dcclient.channels.cache.get(config.discord.servers[`${bot.server.host}:${bot.server.port}`]) + + channel.send( + `Connecting to: \`${bot.server.host}:${bot.server.port}\`` + ) + + bot._client.on('login', (data) => bot.emit('login', data)) + + bot.on('login', async function (data) { + bot.entityId = data.entityId + bot.uuid = bot._client.uuid + bot.username = bot._client.username + + channel.send( + `Successfully logged in to: \`${bot.server.host}:${bot.server.port}\`` + ) + }) + + await loadPlugins(bot, dcclient, config, rl) + + bot._client.on('end', (reason) => { + bot.end(reason, 'end') + }) + + bot.on('end', (reason, event) => { + bot.console.info( + `Disconnected from ${bot.server.host} (${event} event): ${util.inspect(reason)}` + ) + channel.send(`Disconnected: \`${util.inspect(reason)}\``) + + let timeout = config.reconnectTimeout + + try { + if (reason.text) { + if (reason.text === + 'Wait 5 seconds before connecting, thanks! :)' || + reason.text === + 'You are logging in too fast, try again later.' + ) timeout = 1000 * 7 + } + } catch (e) { + bot.console.error(e) + } + + setTimeout(() => { + bot.end() + createBot(server, config, getBots, setNewBot, dcclient, rl) + }, timeout) + }) + + bot._client.on('keep_alive', ({ keepAliveId }) => { + bot.write('keep_alive', { keepAliveId }) + }) + + bot._client.on('kick_disconnect', (data) => { + const parsed = JSON.parse(data.reason) + bot.end(parsed, 'kick_disconnect') + }) + + bot._client.on('disconnect', (data) => { + const parsed = JSON.parse(data.reason) + bot.end(parsed, 'disconnect') + }) + + bot._client.on('error', (data) => { + bot.end(data, 'error') + }) + + return bot +}; + +module.exports = { createBot } diff --git a/ChomensJS/commands/botuser.js b/ChomensJS/commands/botuser.js new file mode 100644 index 0000000..68e6fe5 --- /dev/null +++ b/ChomensJS/commands/botuser.js @@ -0,0 +1,18 @@ +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'botuser', + alias: [], + description: 'Shows the bot\'s username and UUID', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + bot.tellraw(selector, [{ text: 'The bot\'s username is: ', color: 'white' }, { text: bot.username, color: 'gold', clickEvent: { action: 'copy_to_clipboard', value: bot.username }, hoverEvent: { action: 'show_text', contents: [{ text: 'Click here to copy the username to your clipboard', color: 'green' }] } }, { text: ' and the UUID is: ' }, { text: bot.uuid, color: 'aqua', clickEvent: { action: 'copy_to_clipboard', value: bot.uuid }, hoverEvent: { action: 'show_text', contents: [{ text: 'Click here to copy the UUID to your clipboard', color: 'green' }] } }]) + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Bot\'s User') + .setDescription(`The bot's username is: \`${bot.username}\` and the UUID is: \`${bot.uuid}\``) + channeldc.send({ embeds: [Embed] }) + } +} diff --git a/ChomensJS/commands/botvisibility.js b/ChomensJS/commands/botvisibility.js new file mode 100644 index 0000000..639166e --- /dev/null +++ b/ChomensJS/commands/botvisibility.js @@ -0,0 +1,63 @@ +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'botvisibility', + alias: ['botvis', 'togglevis', 'togglevisibility'], + description: 'Changes the bot\'s visibility', + usage: [ + ' ', + ' ', + '' + ], + trusted: 1, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + if (args[1] === 'true' || args[1] === 'on') { + bot.visibility = true + bot.chat('/essentials:vanish disable') + bot.tellraw(selector, [{ text: 'The bot\'s visibility is now ', color: 'white' }, { text: 'visible', color: 'green' }]) + } else if (args[1] === 'false' || args[1] === 'off') { + bot.visibility = false + bot.chat('/essentials:vanish enable') + bot.tellraw(selector, [{ text: 'The bot\'s visibility is now ', color: 'white' }, { text: 'invisible', color: 'gold' }]) + } else if (!args[1]) { + bot.visibility = !bot.visibility + const greenOrGold = bot.visibility ? 'green' : 'gold' + const visibleOrInvisible = bot.visibility ? 'visible' : 'invisible' + const enableOrDisable = bot.visibility ? 'disable' : 'enable' + bot.chat(`/essentials:vanish ${enableOrDisable}`) + bot.tellraw(selector, [{ text: 'The bot\'s visibility is now ', color: 'white' }, { text: visibleOrInvisible, color: greenOrGold }]) + } else { + throw new SyntaxError('Invalid argument') + } + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + if (args[0] === 'true' || args[0] === 'on') { + bot.visibility = true + bot.chat('/essentials:vanish disable') + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Bot\'s Visibility') + .setDescription('The bot\'s visibility is now visible') + channeldc.send({ embeds: [Embed] }) + } else if (args[0] === 'false' || args[0] === 'off') { + bot.visibility = false + bot.chat('/essentials:vanish enable') + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Bot\'s Visibility') + .setDescription('The bot\'s visibility is now invisible') + channeldc.send({ embeds: [Embed] }) + } else if (!args[0]) { + bot.visibility = !bot.visibility + const visibleOrInvisible = bot.visibility ? 'visible' : 'invisible' + const enableOrDisable = bot.visibility ? 'disable' : 'enable' + bot.chat(`/essentials:vanish ${enableOrDisable}`) + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Bot\'s Visibility') + .setDescription(`The bot's visibility is now ${visibleOrInvisible}`) + channeldc.send({ embeds: [Embed] }) + } else { + throw new SyntaxError('Invalid argument') + } + } +} diff --git a/ChomensJS/commands/bruhify.js b/ChomensJS/commands/bruhify.js new file mode 100644 index 0000000..782d507 --- /dev/null +++ b/ChomensJS/commands/bruhify.js @@ -0,0 +1,19 @@ +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'bruhify', + alias: [], + description: 'RecycleBot bruhify but actionbar', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + bot.bruhifyText = args.join(' ') + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + bot.bruhifyText = args.join(' ') + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Bruhify') + .setDescription(`Bruhify set to: ${bot.bruhifyText}`) + channeldc.send({ embeds: [Embed] }) + } +} diff --git a/ChomensJS/commands/cb.js b/ChomensJS/commands/cb.js new file mode 100644 index 0000000..42db4a0 --- /dev/null +++ b/ChomensJS/commands/cb.js @@ -0,0 +1,13 @@ +module.exports = { + name: 'cb', + alias: ['cmd', 'commandblock', 'run'], + description: 'Executes a command in the command core', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + bot.core.run(args.join(' ')) + }, + discordExecute (bot, username, sender, prefix, args, channeldc) { + bot.core.run(args.join(' ')) + } +} diff --git a/ChomensJS/commands/clearchat.js b/ChomensJS/commands/clearchat.js new file mode 100644 index 0000000..91f5255 --- /dev/null +++ b/ChomensJS/commands/clearchat.js @@ -0,0 +1,22 @@ + +module.exports = { + name: 'clearchat', + alias: ['cc'], + description: 'Clears the chat', + usage: '[player]', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + if (args[0]) { + bot.tellraw(args.join(' '), [{ text: '\n'.repeat(100), color: 'white' }, { text: `Your chat has been cleared by ${username}.`, color: 'dark_green' }]) + } else { + bot.tellraw('@a', [{ text: '\n'.repeat(100), color: 'white' }, { text: 'The chat has been cleared.', color: 'dark_green' }]) + } + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message) { + if (args[0]) { + bot.tellraw(args.join(' '), [{ text: '\n'.repeat(100), color: 'white' }, { text: `Your chat has been cleared by ${username} (on Discord).`, color: 'dark_green' }]) + } else { + bot.tellraw('@a', [{ text: '\n'.repeat(100), color: 'white' }, { text: 'The chat has been cleared.', color: 'dark_green' }]) + } + } +} diff --git a/ChomensJS/commands/clearchatqueue.js b/ChomensJS/commands/clearchatqueue.js new file mode 100644 index 0000000..5a47f48 --- /dev/null +++ b/ChomensJS/commands/clearchatqueue.js @@ -0,0 +1,19 @@ +module.exports = { + name: 'clearchatqueue', + description: 'Clears the bot\'s chat queue', + alias: ['ccq'], + usage: '', + trusted: 0, + execute (bot) { + if (bot._chatQueue[0]) { + bot.chatQueue = [] + bot._chatQueue = [] + } + }, + discordExecute (bot) { + if (bot._chatQueue[0]) { + bot.chatQueue = [] + bot._chatQueue = [] + } + } +} diff --git a/ChomensJS/commands/cloop.js b/ChomensJS/commands/cloop.js new file mode 100644 index 0000000..b7ebb76 --- /dev/null +++ b/ChomensJS/commands/cloop.js @@ -0,0 +1,102 @@ + +const { EmbedBuilder } = require('discord.js') + +function list (bot, discord, channeldc, selector, config) { + const message = [] + + if (discord) { + for (const [index, { command, interval, list }] of Object.entries(bot.cloop.list)) { + if (!list) continue + message.push(index) + message.push(' > ') + message.push(`\`${command}\``) + message.push(' - ') + message.push(interval) + message.push('\n') + } + + message.pop() + + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Cloops') + .setDescription(message.join('')) + channeldc.send({ embeds: [Embed] }) + } else { + message.push({ text: 'Cloops:', color: 'green' }) + message.push('\n') + + for (const [index, { command, interval, list }] of Object.entries(bot.cloop.list)) { + if (!list) continue + message.push({ text: index, color: 'aqua' }) + message.push({ text: ' > ', color: 'gold' }) + message.push({ text: command, color: 'green' }) + message.push({ text: ' - ', color: 'gold' }) + message.push({ text: interval, color: 'green' }) + message.push('\n') + } + + message.pop() + + bot.tellraw(selector, message) + } +} + +module.exports = { + name: 'cloop', + alias: [], + description: 'Loop commands', + usage: [ + ' add ', + ' remove ', + ' removeall|clear', + ' list' + ], + trusted: 1, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + if (args[1] === 'add' && args[3]) { + if (!Number(args[2]) && Number(args[2]) !== 0) throw new SyntaxError('Invalid interval') + bot.cloop.add(args.slice(3).join(' '), args[2]) + bot.tellraw(selector, [{ text: 'Added command ', color: 'white' }, { text: args.slice(3).join(' '), color: 'aqua' }, { text: ' with interval ', color: 'white' }, { text: args[2], color: 'green' }, { text: ' to the cloops', color: 'white' }]) + } else if (args[1] === 'list') { + list(bot, false, null, selector) + } else if (args[1] === 'remove') { + bot.cloop.remove(args[2]) + bot.tellraw(selector, [{ text: 'Removed cloop ' }, { text: args[2], color: 'aqua' }]) + } else if (args[1] === 'removeall' || args[1] === 'clear') { + bot.cloop.clear() + bot.tellraw(selector, [{ text: 'Removed all looped commands', color: 'white' }]) + } else { + throw new SyntaxError('Invalid argument') + } + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + if (args[0] === 'add' && args[2]) { + if (!Number(args[1]) && Number(args[1]) !== 0) throw new SyntaxError('Invalid interval') + bot.cloop.add(args.slice(2).join(' '), args[1]) + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Cloop') + .setDescription(`Added cloop \`${args.slice(2).join(' ')}\` with interval ${args[1]} to the cloops`) + channeldc.send({ embeds: [Embed] }) + } else if (args[0] === 'list') { + list(bot, true, channeldc, '@a', config) + } else if (args[0] === 'remove') { + bot.cloop.remove(args[1]) + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Cloop') + .setDescription(`Removed cloop \`${args[1]}\``) + channeldc.send({ embeds: [Embed] }) + } else if (args[0] === 'removeall' || args[0] === 'clear') { + bot.cloop.clear() + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Cloop') + .setDescription('Removed all looped commands') + channeldc.send({ embeds: [Embed] }) + } else { + throw new Error('Invalid argument') + } + } +} diff --git a/ChomensJS/commands/cowsay.js b/ChomensJS/commands/cowsay.js new file mode 100644 index 0000000..2a653e2 --- /dev/null +++ b/ChomensJS/commands/cowsay.js @@ -0,0 +1,43 @@ +const cowsay = require('cowsay2') +const cows = require('cowsay2/cows') +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'cowsay', + alias: [], + description: 'Moo', + usage: [ + 'cow ', + 'list (not supported on Discord)' + ], + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + if (args[0] === 'list') { + const listed = Object.keys(cows) + + let primary = true + const message = [] + + for (const value of listed) { + message.push({ + text: value + ' ', + color: (!((primary = !primary)) ? 'gold' : 'yellow'), + clickEvent: { + action: 'suggest_command', + value: `${prefix}cowsay ${value} ` + } + }) + } + + bot.tellraw(selector, message) + } else { + bot.tellraw(selector, { text: cowsay.say(args.slice(1).join(' '), { cow: cows[args[0]] }) }) + } + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Cowsay') + .setDescription(`\`\`\`\n${cowsay.say(args.slice(1).join(' '), { cow: cows[args[0]] })}\n\`\`\``) + channeldc.send({ embeds: [Embed] }) + } +} diff --git a/ChomensJS/commands/creator.js b/ChomensJS/commands/creator.js new file mode 100644 index 0000000..a9a20b0 --- /dev/null +++ b/ChomensJS/commands/creator.js @@ -0,0 +1,18 @@ +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'creator', + alias: [], + description: 'Shows the bot\'s creator', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + bot.tellraw(selector, [{ text: 'ChomeNS Bot ', color: 'yellow' }, { text: 'was created by ', color: 'white' }, { text: 'chayapak', color: 'gold' }, { text: ' (', color: 'dark_gray' }, { text: 'Cloned ', color: 'blue' }, { text: 'by ', color: 'white' }, { text: 'Parker', color: 'dark_red' }, { text: '2991', color: 'black' }, { text: ')', color: 'dark_gray' }]) + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Creator') + .setDescription('ChomeNS Bot was created by chayapak (§9Cloned by §4Parker§02991)') + channeldc.send({ embeds: [Embed] }) + } +} diff --git a/ChomensJS/commands/discord.js b/ChomensJS/commands/discord.js new file mode 100644 index 0000000..b5df787 --- /dev/null +++ b/ChomensJS/commands/discord.js @@ -0,0 +1,23 @@ +module.exports = { + name: 'discord', + alias: [], + description: 'Shows the discord invite', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + bot.tellraw(selector, [ + { + text: 'The Discord invite is ', + color: 'white' + }, + { + text: 'https://discord.gg/xdgCkUyaA4', + color: 'blue', + clickEvent: { + action: 'open_url', + value: 'https://discord.gg/xdgCkUyaA4' + } + } + ]) + } +} diff --git a/ChomensJS/commands/draw.js b/ChomensJS/commands/draw.js new file mode 100644 index 0000000..789f83f --- /dev/null +++ b/ChomensJS/commands/draw.js @@ -0,0 +1,41 @@ +const { resize } = require('../util/image') +const axios = require('axios') +const sharp = require('sharp') + +module.exports = { + name: 'draw', + description: 'Draws an image', + alias: [], + trusted: 0, + usage: '', + execute: async function (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + let image + try { + const url = args.join(' ') + + image = await axios.get('https://http-proxy.nongsonchome.repl.co', { + params: { + uri: url + }, + responseType: 'arraybuffer' + }) + + const loaded = sharp(image.data) + + const metadata = await loaded + .metadata() + + const { width, height } = resize(metadata.width, metadata.height) + + const { data, info } = await loaded + .resize({ fit: 'fill', kernel: 'nearest', width, height }) + .raw() + .toBuffer({ resolveWithObject: true }) + + bot.draw(data, info) + } catch (_err) { + const e = _err.toString() === 'Error: Input buffer contains unsupported image format' ? image.data.toString() : _err + bot.tellraw(selector, { text: e, color: 'red' }) + } + } +} diff --git a/ChomensJS/commands/echo.js b/ChomensJS/commands/echo.js new file mode 100644 index 0000000..67dbbb8 --- /dev/null +++ b/ChomensJS/commands/echo.js @@ -0,0 +1,13 @@ +module.exports = { + name: 'echo', + alias: [], + description: 'Says a message', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + bot.chat(args.join(' ')) + }, + discordExecute (bot, username, sender, prefix, args, channeldc) { + bot.chat(args.join(' ')) + } +} diff --git a/ChomensJS/commands/end.js b/ChomensJS/commands/end.js new file mode 100644 index 0000000..506f02f --- /dev/null +++ b/ChomensJS/commands/end.js @@ -0,0 +1,13 @@ +module.exports = { + name: 'end', + alias: [], + description: 'Ends the bot\'s client', + usage: '', + trusted: 1, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + bot.end('end command') + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message) { + bot.end('end command') + } +} diff --git a/ChomensJS/commands/eval.js b/ChomensJS/commands/eval.js new file mode 100644 index 0000000..d706ae1 --- /dev/null +++ b/ChomensJS/commands/eval.js @@ -0,0 +1,60 @@ +const { EmbedBuilder } = require('discord.js') +const { VM } = require('vm2') +const axios = require('axios') +const util = require('util') +const { stylize } = require('../util/colors/minecraft') +module.exports = { + name: 'eval', + alias: [], + description: 'Safe eval 100% secure!!!', + trusted: 1, + usage: [ + 'run ', + 'reset' + ], + async execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + if (args[0] === 'run') { + try { + bot.tellraw(selector, { text: util.inspect(bot.vm.run(args.slice(1).join(' ')), { stylize }).substring(0, 32000) }) + } catch (err) { + bot.tellraw(selector, { text: util.inspect(err).replaceAll('runner', 'Parker2991'), color: 'red' }) + } + } + if (args[0] === 'reset') { + bot.vm = new VM(bot.vmOptions) + } + if (args[0] === 'server') { + const res = await axios.post(config.eval.serverUrl, new URLSearchParams({ + html: false, + showErrorMsg: false, + colors: 'minecraft', + code: args.slice(1).join(' ') + }).toString()) + bot.tellraw(selector, { text: res.data }) + } + }, + async discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + if (args[0] === 'run') { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Output') + .setDescription(`\`\`\`${util.inspect(bot.vm.run(args.slice(1).join(' '))).substring(0, 1950)}\`\`\``) + channeldc.send({ embeds: [Embed] }) + } else if (args[0] === 'reset') { + bot.vm = new VM(bot.vmOptions) + } else if (args[0] === 'server') { + const res = await axios.post(config.eval.serverUrl, new URLSearchParams({ + html: false, + showErrorMsg: false, + code: args.slice(1).join(' ') + }).toString()) + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Output') + .setDescription(`\`\`\`${res.data}\`\`\``) + channeldc.send({ embeds: [Embed] }) + } else { + throw new SyntaxError('Invalid argument') + } + } +} diff --git a/ChomensJS/commands/help.js b/ChomensJS/commands/help.js new file mode 100644 index 0000000..bb7ca1f --- /dev/null +++ b/ChomensJS/commands/help.js @@ -0,0 +1,152 @@ +//samething here +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'help', + alias: ['heko', 'cmds', 'commands'], + description: 'Shows the help', + usage: '[command]', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + if (args[0]) { + for (const command of bot.command_handler.commands) { + function run () { + let alias = command.name + + if (command.alias.toString() !== '') { + alias = command.alias.join(', ') + } + + const usage = [] + if (typeof command.usage === 'string') { + usage.push({ text: `${prefix}${command.name} `, color: 'gold' }) + usage.push({ text: command.usage, color: 'aqua' }) + } else { + for (const value of command.usage) { + usage.push({ text: `${prefix}${command.name} `, color: 'gold' }) + usage.push({ text: value, color: 'aqua' }) + usage.push('\n') + } + usage.pop() + } + + const component = [] + component.push({ text: prefix + command.name, color: 'gold' }) + component.push({ text: ` (${alias})`, color: 'white' }) + component.push({ text: ' - ', color: 'gray' }) + component.push({ text: command.description, color: 'gray' }) + + component.push('\n') + + component.push({ text: 'Trust level: ', color: 'green' }) + component.push({ text: command.trusted, color: 'yellow' }) + + component.push('\n') + + component.push({ text: 'Supported on Discord: ', color: 'green' }) + component.push({ text: command.discordExecute ? 'true' : 'false', color: 'gold' }) + + component.push('\n') + + component.push(usage) + + bot.tellraw(selector, component) + } + + if (command.name === args[0]) run() + for (const alias of command.alias) { + if (alias === args[0]) run() + } + }; + } else { + const generalCommands = [] + const trustedCommands = [] + const ownerCommands = [] + function component (command, color) { + return { + text: command.name + ' ', + color, + hoverEvent: { + action: 'show_text', + contents: [{ + text: 'Click here to see the information for this command', + color: 'green' + }] + }, + clickEvent: { + action: 'run_command', + value: `${prefix}help ${command.name}` + } + } + }; + for (const command of bot.command_handler.commands) { + if (command.trusted !== 0 || command.proxy) continue + generalCommands.push(component(command, 'green')) + } + for (const command of bot.command_handler.commands) { + if (command.trusted !== 1 || command.proxy) continue + trustedCommands.push(component(command, 'red')) + } + for (const command of bot.command_handler.commands) { + if (command.trusted !== 2 || command.proxy) continue + ownerCommands.push(component(command, 'dark_red')) + } + + const pre = [{ text: 'Commands ', color: 'gray' }, { text: '(', color: 'dark_gray' }, { text: 'Length: ', color: 'gray' }, { text: bot.command_handler.commands.length, color: 'green' }, { text: ') ', color: 'dark_gray' }, { text: '(', color: 'dark_gray' }, { text: 'Public ', color: 'green' }, { text: 'Trusted ', color: 'red' }, { text: 'Owner', color: 'dark_red' }, { text: ') - ', color: 'dark_gray' }] + bot.tellraw(selector, [pre, generalCommands, trustedCommands, ownerCommands]) + } + }, + discordExecute: async function (bot, username, sender, prefix, args, channeldc, message, config) { + if (args[0]) { + for (const command of bot.command_handler.commands) { + function run () { + let alias = command.name + + if (command.alias.toString() !== '') { + alias = command.alias.join(', ') + } + + const usage = [] + if (typeof command.usage === 'string') { + usage.push(`${prefix}${command.name} ${command.usage}`) + } else { + for (const value of command.usage) { + usage.push(`${prefix}${command.name} ${value}`) + usage.push('\n') + } + usage.pop() + } + + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle(`${prefix + command.name} (${alias}) - ${command.description}`) + .setDescription(`Trust level: ${command.trusted} + Supported: ${command.discordExecute ? 'true' : 'false'} + ${usage}` + ) + channeldc.send({ embeds: [Embed] }) + } + + if (command.name === args[0]) run() + for (const alias of command.alias) { + if (alias === args[0]) run() + } + }; + } else { + let supportedCommands = '' + let unsupportedCommands = '' + for (const command of bot.command_handler.commands) { + if (!command.discordExecute) continue + supportedCommands += command.name + ' ' + } + for (const command of bot.command_handler.commands) { + if (command.discordExecute || command.proxy) continue + unsupportedCommands += command.name + ' ' + } + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle(`Commands (Length: ${bot.command_handler.commands.length})`) + .setDescription('**Supported Commands**\n' + supportedCommands + '\n**Unsupported Commands**\n' + unsupportedCommands) + channeldc.send({ embeds: [Embed] }) + } + } +} diff --git a/ChomensJS/commands/list.js b/ChomensJS/commands/list.js new file mode 100644 index 0000000..08cefb0 --- /dev/null +++ b/ChomensJS/commands/list.js @@ -0,0 +1,76 @@ +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'list', + alias: [], + description: 'List players', + usage: '', + trusted: 0, + execute: async function (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + try { + const component = [] + component.push({ text: 'Players ', color: 'green' }) + component.push({ text: '(', color: 'dark_gray' }) + component.push({ text: bot.players.list.length, color: 'gray' }) + component.push({ text: ')', color: 'dark_gray' }) + component.push('\n') + for (const property of bot.players.list) { + // if (property.match.startsWith('@')) continue; + component.push({ + text: property.name, + color: 'yellow', + clickEvent: { + action: 'copy_to_clipboard', + value: property.name + }, + hoverEvent: { + action: 'show_text', + contents: [{ + text: 'Click here to copy the username to your clipboard', + color: 'green' + }] + } + }) + component.push({ + text: ' › ', + color: 'dark_gray' + }) + component.push({ + text: property.UUID, + color: 'aqua', + clickEvent: { + action: 'copy_to_clipboard', + value: property.UUID + }, + hoverEvent: { + action: 'show_text', + contents: [{ + text: 'Click here to copy the UUID to your clipboard', + color: 'green' + }] + } + }) + component.push('\n') + } + component.pop() + bot.tellraw(selector, component) + } catch (e) { + + } + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + try { + let players = '' + for (const property of bot.players.list) { + // if (property.match.startsWith('@')) continue; + players += `\`${property.name}\` › \`${property.UUID}\`` + '\n' + } + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle(`Players (${bot.players.list.length})`) + .setDescription(players.substring(0, 4096)) + channeldc.send({ embeds: [Embed] }) + } catch (e) { + + } + } +} diff --git a/ChomensJS/commands/music.js b/ChomensJS/commands/music.js new file mode 100644 index 0000000..a9c110e --- /dev/null +++ b/ChomensJS/commands/music.js @@ -0,0 +1,369 @@ +/* eslint-disable no-case-declarations */ + +const fs = require('fs/promises') +const { EmbedBuilder } = require('discord.js') +const path = require('path') +const getFilenameFromUrl = require('../util/getFilenameFromUrl') +const fileExists = require('../util/file-exists') +const fileList = require('../util/file-list') +const axios = require('axios') +const os = require('os') + +let SONGS_PATH + +if (os.hostname() === 'chomens-kubuntu') { + SONGS_PATH = path.join(__dirname, '..', '..', 'nginx-html', 'midis') +} else { + SONGS_PATH = path.join(__dirname, '..', 'midis') +} + +let song + +async function play (bot, values, discord, channeldc, selector, config) { + try { + const filepath = values.join(' ') + + const seperator = path.sep // for hosting bot on windows + + let absolutePath + if (filepath.includes(seperator) && filepath !== '') { + const pathSplitted = filepath.split(seperator) + + const songs = await fileList( + path.join( + SONGS_PATH, + pathSplitted[0] + ) + ) + + // this part took a bunch of time to figure out, but still chomens moment!1! + const lowerCaseFile = pathSplitted.pop().toLowerCase() + const file = songs.filter((song) => song.toLowerCase().includes(lowerCaseFile))[0] + + absolutePath = await resolve(path.join(pathSplitted.join(seperator), file)) + } else { + const songs = await fileList(SONGS_PATH) + const file = songs.filter((song) => song.toLowerCase().includes(filepath.toLowerCase()))[0] + absolutePath = await resolve(file) + } + + song = await bot.music.load(await fs.readFile(absolutePath), path.basename(absolutePath)) + + if (discord) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Music') + .setDescription(`Added ${song.name} to the song queue`) + channeldc.send({ embeds: [Embed] }) + } else { + bot.tellraw(selector, [{ text: 'Added ', color: 'white' }, { text: song.name, color: 'gold' }, { text: ' to the song queue', color: 'white' }]) + } + + bot.music.queue.push(song) + bot.music.play(song) + } catch (e) { + bot.console.error(e.stack) + if (discord) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.error) + .setTitle('Error') + .setDescription('```SyntaxError: Invalid file```') + channeldc.send({ embeds: [Embed] }) + } else { + bot.tellraw(selector, { text: 'SyntaxError: Invalid file', color: 'red' }) + } + } +} + +async function playUrl (bot, values, discord, channeldc, selector, config) { + let response + try { + const url = values.join(' ') + response = await axios.get('https://http-proxy.nongsonchome.repl.co', { + params: { + uri: url + }, + responseType: 'arraybuffer' + }) + + song = await bot.music.load(response.data, getFilenameFromUrl(url)) + + if (discord) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Music') + .setDescription(`Added ${song.name} to the song queue`) + channeldc.send({ embeds: [Embed] }) + } else { + bot.tellraw(selector, [{ text: 'Added ', color: 'white' }, { text: song.name, color: 'gold' }, { text: ' to the song queue', color: 'white' }]) + } + + bot.music.queue.push(song) + bot.music.play(song) + } catch (_err) { + const e = _err.toString().includes('Bad MIDI file. Expected \'MHdr\', got: ') ? response.data.toString() : _err + if (discord) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.error) + .setTitle('Error') + .setDescription(`\`\`\`${e}\`\`\``) + channeldc.send({ embeds: [Embed] }) + } else { + bot.tellraw(selector, { text: e, color: 'red' }) + } + } +} + +async function resolve (filepath) { + if (!path.isAbsolute(filepath) && await fileExists(SONGS_PATH)) { + return path.join(SONGS_PATH, filepath) + } + return filepath +} + +async function list (bot, discord, channeldc, prefix, selector, args, config) { + try { + let absolutePath + if (args[1]) absolutePath = await resolve(path.join(SONGS_PATH, args.slice(1).join(' '))) + else absolutePath = await resolve(SONGS_PATH) + + if (!absolutePath.includes('midis')) throw new Error('bro trying to hack my server?!/1?!') + + const listed = await fileList(absolutePath) + + if (discord) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Songs') + .setDescription(listed.join(', ')) + channeldc.send({ embeds: [Embed] }) + return + } + + let primary = true + const message = [] + + for (const value of listed) { + const isFile = (await fs.lstat(path.join(absolutePath, value))).isFile() + message.push({ + text: value + ' ', + color: (!((primary = !primary)) ? 'gold' : 'yellow'), + clickEvent: { + action: 'suggest_command', + value: `${prefix}music ${isFile ? 'play' : 'list'} ${path.join(args.slice(1).join(' '), value)}` + }, + hoverEvent: { + action: 'show_text', + contents: [ + { text: 'Name: ', color: 'white' }, + { text: value, color: 'gold' }, + '\n', + { text: 'Click here to suggest the command!', color: 'green' } + ] + } + }) + }; + + bot.tellraw(selector, message) + } catch (e) { + if (discord) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.error) + .setTitle('Error') + .setDescription(`\`\`\`${e.toString()}\`\`\``) + channeldc.send({ embeds: [Embed] }) + } else { + bot.tellraw(selector, { text: e.toString(), color: 'red' }) + } + } +}; + +module.exports = { + name: 'music', + description: 'Plays music', + alias: [], + trusted: 0, + usage: [ + 'play ', + 'stop', + 'loop ', + 'list [directory]', + 'skip', + 'nowplaying', + 'queue' + ], + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + switch (args[0]) { + case 'play': + case 'playurl': // deprecated + if (args.slice(1).join(' ').startsWith('http')) { + playUrl(bot, args.slice(1), false, null, selector, config) + } else { + play(bot, args.slice(1), false, null, selector, config) + } + break + case 'stop': + bot.tellraw(selector, { text: 'Cleared the song queue' }) + bot.music.stop() + break + case 'skip': + try { + bot.tellraw(selector, [{ text: 'Skipping ' }, { text: bot.music.song.name, color: 'gold' }]) + bot.music.skip() + } catch (e) { + throw new Error('No music is currently playing!') + } + break + case 'loop': + switch (args[1]) { + case 'off': + bot.music.loop = 0 + bot.tellraw(selector, [ + { + text: 'Looping is now ' + }, + { + text: 'disabled', + color: 'red' + } + ]) + break + case 'current': + bot.music.loop = 1 + bot.tellraw(selector, [ + { + text: 'Now Looping ' + }, + { + text: song.name, + color: 'gold' + } + ]) + break + case 'all': + bot.music.loop = 2 + bot.tellraw(selector, { + text: 'Now looping every song' + }) + break + default: + throw new SyntaxError('Invalid argument') + } + break + case 'list': + list(bot, false, null, prefix, selector, args, config) + break + case 'nowplaying': + bot.tellraw(selector, [ + { + text: 'Now playing ' + }, + { + text: bot.music.song.name, + color: 'gold' + } + ]) + break + case 'queue': + const queueWithName = [] + for (const song of bot.music.queue) queueWithName.push(song.name) + bot.tellraw(selector, [ + { + text: 'Queue: ', + color: 'green' + }, + { + text: queueWithName.join(', '), + color: 'aqua' + } + ]) + break + default: + throw new SyntaxError('Invalid argument') + } + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + let Embed + switch (args[0]) { + case 'play': + play(bot, args.slice(1), true, channeldc, config) + break + case 'playurl': + playUrl(bot, args.slice(1), true, channeldc, config) + break + case 'stop': + try { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Stop') + .setDescription('Cleared the song queue') + channeldc.send({ embeds: [Embed] }) + } catch (e) { + return + } + bot.music.stop() + break + case 'skip': + try { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Skip') + .setDescription(`Skipping ${bot.music.song.name}`) + channeldc.send({ embeds: [Embed] }) + bot.music.skip() + } catch (e) { + throw new Error('No music is currently playing!') + } + break + case 'loop': + switch (args[1]) { + case 'off': + bot.music.loop = 0 + Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Loop') + .setDescription('Looping is now disabled') + channeldc.send({ embeds: [Embed] }) + break + case 'current': + bot.music.loop = 1 + Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Loop') + .setDescription(`Now looping ${song.name}`) + channeldc.send({ embeds: [Embed] }) + break + case 'all': + bot.music.loop = 2 + Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Loop') + .setDescription('Now looping every song') + channeldc.send({ embeds: [Embed] }) + break + } + break + case 'list': + list(bot, true, channeldc, prefix, '@a', args, config) + break + case 'nowplaying': + Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Now playing') + .setDescription(`Now playing ${bot.music.song.name}`) + channeldc.send({ embeds: [Embed] }) + break + case 'queue': + const queueWithName = [] + for (const song of bot.music.queue) queueWithName.push(song.name) + Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Queue') + .setDescription(queueWithName.join(', ')) + channeldc.send({ embeds: [Embed] }) + break + default: + throw new SyntaxError('Invalid argument') + } + } +} diff --git a/ChomensJS/commands/netmsg.js b/ChomensJS/commands/netmsg.js new file mode 100644 index 0000000..db579fc --- /dev/null +++ b/ChomensJS/commands/netmsg.js @@ -0,0 +1,50 @@ +module.exports = { + name: 'netmsg', + alias: ['networkmessage', 'irc'], + description: 'Broadcasts a message to all of the servers that the bot is connected', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + const message = args.join(' ') + + if (message.toLowerCase().includes('netmsg')) return // lazy fix + + const component = [ + { + text: '[', + color: 'dark_gray' + }, + { + text: bot.server.host === 'kitsune.icu' ? 'kit' : bot.server.host, + color: 'gray' + }, + bot.server.host === 'kitsune.icu' + ? { + text: 'sune.icu', + color: 'gray' + } + : '', + { + text: '] ', + color: 'dark_gray' + }, + { + text: username, + color: 'gray' + }, + { + text: ' \u203a ', + color: 'dark_gray' + }, + { + text: message, + color: 'gray' + } + ] + + const bots = bot.getBots() + for (const bot of bots) { + bot.tellraw(selector, component) + } + } +} diff --git a/ChomensJS/commands/refillcore.js b/ChomensJS/commands/refillcore.js new file mode 100644 index 0000000..2a8b9ba --- /dev/null +++ b/ChomensJS/commands/refillcore.js @@ -0,0 +1,13 @@ +module.exports = { + name: 'refillcore', + alias: ['rc'], + description: 'Resets the bot\'s command core', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + bot.core.fillCore() + }, + discordExecute (bot) { + bot.core.fillCore() + } +} diff --git a/ChomensJS/commands/rtp.js b/ChomensJS/commands/rtp.js new file mode 100644 index 0000000..a6eca97 --- /dev/null +++ b/ChomensJS/commands/rtp.js @@ -0,0 +1,13 @@ +const { between } = require('../util/between') +module.exports = { + name: 'rtp', + alias: [], + description: 'Randomly teleports the player', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + const pos = `${between(1000, 10000)} 100 ${between(1000, 10000)}` + bot.tellraw(selector, [{ text: 'Teleporting ', color: 'white' }, { text: username, color: 'aqua' }, { text: ' to ', color: 'white' }, { text: pos, color: 'green' }, { text: '...', color: 'white' }]) + bot.core.run(`essentials:teleport ${sender} ${pos}`) + } +} diff --git a/ChomensJS/commands/servereval.js b/ChomensJS/commands/servereval.js new file mode 100644 index 0000000..466a6a1 --- /dev/null +++ b/ChomensJS/commands/servereval.js @@ -0,0 +1,33 @@ +/* eslint-disable no-eval */ +const util = require('util') +const { stylize } = require('../util/colors/minecraft') +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'servereval', + alias: [], + description: 'Basically eval command but without vm2', + trusted: 2, + usage: ' ', + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + try { + bot.tellraw(selector, { text: util.inspect(eval(args.slice(1).join(' ')), { stylize }).substring(0, 32700) }) + } catch (err) { + bot.tellraw(selector, { text: util.inspect(err).replaceAll('runner', 'home'), color: 'red' }) + } + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + try { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Output') + .setDescription(util.inspect(eval(args.join(' ')))) + channeldc.send({ embeds: [Embed] }) + } catch (err) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.error) + .setTitle('Error') + .setDescription(`\`\`\`${util.inspect(err).replaceAll('runner', 'home')}\`\`\``) + channeldc.send({ embeds: [Embed] }) + } + } +} diff --git a/ChomensJS/commands/serverinfo.js b/ChomensJS/commands/serverinfo.js new file mode 100644 index 0000000..f7b9f31 --- /dev/null +++ b/ChomensJS/commands/serverinfo.js @@ -0,0 +1,66 @@ +const os = require('os') +const path = require('path') +const fs = require('fs/promises') +const { EmbedBuilder } = require('discord.js') + +// should i move this to util? +async function getCpuModelName () { + const cpuInfo = await fs.readFile('/proc/cpuinfo') + const lines = cpuInfo.toString().split('\n') + // among us way of doing it + const modelName = lines.find((line) => line.startsWith('model name')).split('\t: ') + return modelName[1] +} + +module.exports = { + name: 'serverinfo', + alias: [], + description: 'Shows the info about the server that is hosting the bot', + trusted: 0, + usage: '', + execute: async function (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + const component = [] + component.push({ text: 'Hostname: ', color: 'gold' }) + component.push({ text: os.hostname(), color: 'aqua' }) + component.push('\n') + component.push({ text: 'Working directory: ', color: 'gold' }) + component.push({ text: path.join(__dirname, '..') /* if without .. it will includes the commands directory */, color: 'aqua' }) + component.push('\n') + component.push({ text: 'OS architecture: ', color: 'gold' }) + component.push({ text: os.arch(), color: 'aqua' }) + component.push('\n') + component.push({ text: 'OS platform: ', color: 'gold' }) + component.push({ text: os.platform(), color: 'aqua' }) + component.push('\n') + component.push({ text: 'OS name: ', color: 'gold' }) + component.push({ text: os.version(), color: 'aqua' }) + component.push('\n') + component.push({ text: 'CPU cores: ', color: 'gold' }) + component.push({ text: os.cpus().length, color: 'aqua' }) + component.push('\n') + component.push({ text: 'CPU model: ', color: 'gold' }) + component.push({ text: await getCpuModelName(), color: 'aqua' }) + component.push('\n') + component.push({ text: 'Total memory usage: ', color: 'gold' }) + component.push({ text: `${Math.floor(os.totalmem() / 1024 / 1024)} MB`, color: 'aqua' }) + component.push('\n') + component.push({ text: 'Available memory usage: ', color: 'gold' }) + component.push({ text: `${Math.floor(os.freemem() / 1024 / 1024)} MB`, color: 'aqua' }) + bot.tellraw(selector, component) + }, + discordExecute: async function (bot, username, sender, prefix, args, channeldc, message, config) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Server Info') + .setDescription(`Hostname: \`${os.hostname()}\` + Working directory: \`${path.join(__dirname, '..')}\` + OS architecture: \`${os.arch()}\` + OS platform: \`${os.platform()}\` + OS name: \`${os.version()}\` + CPU cores: \`${os.cpus().length}\` + CPU model: \`${await getCpuModelName()}\` + Total memory usage: \`${Math.floor(os.totalmem() / 1024 / 1024)} MB\` + Available memory usage: \`${Math.floor(os.freemem() / 1024 / 1024)} MB\``) + channeldc.send({ embeds: [Embed] }) + } +} diff --git a/ChomensJS/commands/test.js b/ChomensJS/commands/test.js new file mode 100644 index 0000000..2de5623 --- /dev/null +++ b/ChomensJS/commands/test.js @@ -0,0 +1,35 @@ +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'test', + alias: [], + description: 'Tests if the bot is working', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + bot.tellraw(selector, [ + { + text: `Username: ${username},`, + color: 'green' + }, + { + text: ` Sender UUID: ${sender},`, + color: 'green' + }, + { + text: ` Prefix: ${prefix},`, + color: 'green' + }, + { + text: ` Args: ${args.join(', ').toString()}`, + color: 'green' + } + ]) + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Hello!') + .setDescription('This is the first ever command to be discordified!' + '\n' + `More info: Username: ${username}, Prefix: ${prefix}, Args: ${args.join(' ')}`) + channeldc.send({ embeds: [Embed] }) + } +} diff --git a/ChomensJS/commands/time.js b/ChomensJS/commands/time.js new file mode 100644 index 0000000..b1931f4 --- /dev/null +++ b/ChomensJS/commands/time.js @@ -0,0 +1,37 @@ +const { EmbedBuilder } = require('discord.js') +const moment = require('moment-timezone') +module.exports = { + name: 'time', + alias: [], + description: 'Shows the time', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + const timezone = args.join(' ') + + if (!moment.tz.names().map((zone) => zone.toLowerCase()).includes(timezone.toLowerCase())) { + throw new SyntaxError('Invalid timezone') + } + + const momented = moment().tz(timezone).format('dddd, MMMM Do, YYYY, hh:mm:ss A') + const component = [{ text: 'The current date and time for the timezone ', color: 'white' }, { text: timezone, color: 'aqua' }, { text: ' is: ', color: 'white' }, { text: momented, color: 'green' }] + + bot.tellraw(selector, component) + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + const timezone = args.join(' ') + + if (!moment.tz.names().map((zone) => zone.toLowerCase()).includes(timezone.toLowerCase())) { + throw new SyntaxError('Invalid timezone') + } + + const momented = moment().tz(timezone).format('dddd, MMMM Do, YYYY, hh:mm:ss A') + const description = `The current date and time for the timezone ${timezone} is: ${momented}` + + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Time') + .setDescription(description) + channeldc.send({ embeds: [Embed] }) + } +} diff --git a/ChomensJS/commands/tpsbar.js b/ChomensJS/commands/tpsbar.js new file mode 100644 index 0000000..115ff5e --- /dev/null +++ b/ChomensJS/commands/tpsbar.js @@ -0,0 +1,63 @@ +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'tpsbar', + alias: ['tps'], + description: 'Shows the server\'s TPS using Minecraft bossbar', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + switch (args[0]) { + case 'on': + bot.tps.on() + bot.tellraw(selector, [ + { + text: 'TPSBar is now ', + color: 'white' + }, + { + text: 'enabled', + color: 'green' + } + ]) + break + case 'off': + bot.tps.off() + bot.tellraw(selector, [ + { + text: 'TPSBar is now ', + color: 'white' + }, + { + text: 'disabled', + color: 'red' + } + ]) + break + default: + throw new SyntaxError('Invalid argument') + } + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + let Embed + switch (args[0]) { + case 'on': + bot.tps.on() + Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('TPSBar') + .setDescription('TPSBar is now enabled') + channeldc.send({ embeds: [Embed] }) + break + case 'off': + bot.tps.off() + Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('TPSBar') + .setDescription('TPSBar is now disabled') + channeldc.send({ embeds: [Embed] }) + break + default: + throw new SyntaxError('Invalid argument') + } + } +} diff --git a/ChomensJS/commands/translate.js b/ChomensJS/commands/translate.js new file mode 100644 index 0000000..2531f2a --- /dev/null +++ b/ChomensJS/commands/translate.js @@ -0,0 +1,33 @@ +const { EmbedBuilder } = require('discord.js') +const { translate } = require('@vitalets/google-translate-api') +module.exports = { + name: 'translate', + alias: [], + description: 'Translate a message using Google Translate', + usage: ' ', + trusted: 0, + execute: async function (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + try { + const res = await translate(args.slice(2).join(' '), { from: args[0], to: args[1] }) + bot.tellraw(selector, [{ text: 'Result: ', color: 'gold' }, { text: res.text, color: 'green' }]) + } catch (e) { + bot.tellraw(selector, { text: String(e), color: 'red' }) + } + }, + discordExecute: async function (bot, username, sender, prefix, args, channeldc, message, config) { + try { + const res = await translate(args.slice(2).join(' '), { from: args[0], to: args[1] }) + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Result') + .setDescription(res.text) + channeldc.send({ embeds: [Embed] }) + } catch (e) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.error) + .setTitle('Error') + .setDescription(`\`\`\`${e}\`\`\``) + channeldc.send({ embeds: [Embed] }) + } + } +} diff --git a/ChomensJS/commands/uptime.js b/ChomensJS/commands/uptime.js new file mode 100644 index 0000000..f57c6ff --- /dev/null +++ b/ChomensJS/commands/uptime.js @@ -0,0 +1,23 @@ +const { EmbedBuilder } = require('discord.js') +const moment = require('moment-timezone') +module.exports = { + name: 'uptime', + alias: [], + description: 'Shows the bot\'s uptime', + usage: '', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + const duration = moment.duration(Math.floor(performance.now())) + const time = `${duration.days()} days, ${duration.hours()} hours, ${duration.minutes()} minutes, ${duration.seconds()} seconds` // moment please add duration.format() + bot.tellraw(selector, [{ text: 'The bot\'s uptime is ', color: 'white' }, { text: time, color: 'green' }]) + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + const duration = moment.duration(Math.floor(performance.now())) + const time = `${duration.days()} days, ${duration.hours()} hours, ${duration.minutes()} minutes, ${duration.seconds()} seconds` // moment please add duration.format() + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Bot\'s Uptime') + .setDescription(`The bot's uptime is ${time}`) + channeldc.send({ embeds: [Embed] }) + } +} diff --git a/ChomensJS/commands/urban.js b/ChomensJS/commands/urban.js new file mode 100644 index 0000000..399c603 --- /dev/null +++ b/ChomensJS/commands/urban.js @@ -0,0 +1,19 @@ +const urban = require('urban-dictionary') +module.exports = { + name: 'urban', + alias: [], + description: 'Working Urban Dictionary', + usage: '', + trusted: 0, + async execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + try { + const definitions = await urban.define(args.join(' ')) + + for (const definition of definitions) { + bot.tellraw(selector, [{ text: '[', color: 'dark_red' }, { text: 'Urban', color: 'red' }, { text: '] ', color: 'dark_red' }, { text: definition.word, color: 'white' }, { text: ' - ', color: 'white' }, { text: definition.definition, color: 'white' }]) + }// + } catch (e) { + bot.tellraw(selector, { text: e.toString(), color: 'red' }) + } + } +} diff --git a/ChomensJS/commands/uuid.js b/ChomensJS/commands/uuid.js new file mode 100644 index 0000000..efee29e --- /dev/null +++ b/ChomensJS/commands/uuid.js @@ -0,0 +1,84 @@ +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'uuid', + alias: [], + description: 'Gets the UUID of a player. If no player specified it will show your UUID instead', + usage: '[player (required on Discord)]', + trusted: 0, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + if (args[0]) { + const playername = args.join(' ') + const player = bot.players.list.find((user) => user.name === playername) + if (!player) throw new SyntaxError('Invalid username') + const playerUUID = player.UUID + bot.tellraw(selector, + [ + { + text: `${playername}'s UUID: `, + color: 'green' + }, + { + text: playerUUID, + color: 'aqua', + clickEvent: { + action: 'copy_to_clipboard', + value: playerUUID + }, + hoverEvent: { + action: 'show_text', + contents: [ + { + text: 'Click here to copy the UUID to your clipboard', + color: 'green' + } + ] + } + } + ]) + } else { + bot.tellraw(selector, + [ + { + text: 'Your UUID: ', + color: 'green' + }, + { + text: sender, + color: 'aqua', + clickEvent: { + action: 'copy_to_clipboard', + value: sender + }, + hoverEvent: { + action: 'show_text', + contents: [ + { + text: 'Click here to copy the uuid to your clipboard', + color: 'green' + } + ] + } + } + ]) + } + }, + discordExecute (bot, username, sender, prefix, args, channeldc, message, config) { + if (args[0]) { + const playername = args.join(' ') + const player = bot.players.list.find((user) => user.name === playername) + if (!player) throw new SyntaxError('Invalid username') + const playerUUID = player.UUID + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('UUID') + .setDescription(`${playername}'s UUID: ${playerUUID}`) + channeldc.send({ embeds: [Embed] }) + } else { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.error) + .setTitle('Error') + .setDescription('No player name specified') + channeldc.send({ embeds: [Embed] }) + } + } +} diff --git a/ChomensJS/commands/validate.js b/ChomensJS/commands/validate.js new file mode 100644 index 0000000..72f40c8 --- /dev/null +++ b/ChomensJS/commands/validate.js @@ -0,0 +1,14 @@ +module.exports = { + name: 'validate', + description: 'Validates a hash', + alias: ['checkhash'], + usage: '', + trusted: 1, + execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + if (args[0] === hash) { + bot.tellraw(selector, { text: 'Valid hash', color: 'green' }) + } else if (args[0] === ownerhash) { + bot.tellraw(selector, { text: 'Valid OwnerHash', color: 'green' }) + } + } +} diff --git a/ChomensJS/commands/wikipedia.js b/ChomensJS/commands/wikipedia.js new file mode 100644 index 0000000..fd8e975 --- /dev/null +++ b/ChomensJS/commands/wikipedia.js @@ -0,0 +1,36 @@ +const wiki = require('wikipedia') +const util = require('util') +const { EmbedBuilder } = require('discord.js') +module.exports = { + name: 'wikipedia', + alias: ['wiki'], + description: 'Working Wikipedia!', + usage: '', + trusted: 0, + execute: async function (bot, username, sender, prefix, args, config, hash, ownerhash, selector) { + try { + const page = await wiki.page(args.join(' ')) + const summary = await page.summary() + bot.tellraw(selector, { text: summary.extract, color: 'green' }) + } catch (e) { + bot.tellraw(selector, { text: e.toString(), color: 'red' }) + } + }, + discordExecute: async function (bot, username, sender, prefix, args, channeldc, message, config) { + try { + const page = await wiki.page(args.join(' ')) + const summary = await page.summary() + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.normal) + .setTitle('Output') + .setDescription(summary.extract) + channeldc.send({ embeds: [Embed] }) + } catch (e) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.error) + .setTitle('Error') + .setDescription(`\`\`\`${util.inspect(e)}\`\`\``) + channeldc.send({ embeds: [Embed] }) + } + } +} diff --git a/ChomensJS/config.js b/ChomensJS/config.js new file mode 100644 index 0000000..12d7cae --- /dev/null +++ b/ChomensJS/config.js @@ -0,0 +1,124 @@ +const randomstring = require('randomstring') +module.exports = { + version: '1.19.2', + prefixes: [ + '3*', + 'cbot3 ', + '/cbot3 ' + ], + commandsDir: '../commands', // this will be used by the commands.js in the plugins folder so it needs ../ + proxy: { + enabled: false, + version: '1.19.2' + }, + console: true, + chat: { + messageLength: 100 + }, + core: { + layers: 3, + refillInterval: 1000 * 60, + + customName: [ + { + text: 'https://doin-your.mom', + color: 'dark_red' + } + + ] + }, + self_care: { + prefix: true, + op: true, + cspy: true, + vanish: true, + nickname: true, + socialspy: true, + gamemode: true, + mute: true, + endCredits: true + }, + eval: { + serverUrl: 'http://localhost:4445/' + }, + reconnectTimeout: 15000, // idk mabe + timeoutInterval: 1000 * 40, + self_care_check_interval: 2000, + discord: { + prefix: '!', + servers: { + 'chipmunk.land:25565': '1152778909901934602', + 'thefreedomz.one:25565': '1152807307256811561', + '24.69.170.247:25565': '1155838188586283109', + 'ipv4.fusselig.xyz:25565': '1152807355000565871', + 'kaboom.pw:25565': '1152807462836109402', + '172.126.70.0:25565': '1160601659098017925', + '24.69.170.247:25564': '1160600923467415602' + }, + embedsColors: { + normal: '#FFFF00', + error: '#FF0000' + } + }, + servers: [ + // logging means log to console + { + host: 'chipmunk.land', + port: 25565, + username: randomstring.generate(8), + kaboom: true, + logging: true, + useChat: false + }, + { + host: '172.126.70.0', + port: 25565, + username: randomstring.generate(8), + kaboom: true, + logging: true, + useChat: false + }, + { + host: '24.69.170.247', + port: 25564, + username: randomstring.generate(8), + kaboom: true, + logging: true, + useChat: false + }, + { + host: 'ipv4.fusselig.xyz', + port: 25565, + username: randomstring.generate(8), + kaboom: true, + logging: true, + useChat: false + }, + { + host: 'kaboom.pw', + port: 25565, + username: randomstring.generate(8), + kaboom: true, + logging: true, + useChat: false + }, + + { + host: 'thefreedomz.one', + port: 25565, + username: randomstring.generate(8), + kaboom: true, + logging: true, + useChat: false + }, + + { + host: '24.69.170.247', + port: 25565, + username: randomstring.generate(8), + kaboom: true, + logging: true, + useChat: false + } + ] +} diff --git a/ChomensJS/default.js b/ChomensJS/default.js new file mode 100644 index 0000000..33af8df --- /dev/null +++ b/ChomensJS/default.js @@ -0,0 +1,77 @@ +module.exports = { + version: '1.19.2', + prefixes: [ + 'default*', + 'defaultcbot ', + '/defaultcbot ' + ], + commandsDir: '../commands', // this will be used by the commands.js in the plugins folder so it needs ../ + keys: { + normalKey: 'normal hash key here', + ownerHashKey: 'OwnerHash™ key here' + }, + proxy: { + enabled: true, + version: '1.19.2' + }, + console: true, + chat: { + messageLength: 100 + }, + core: { + layers: 3, + refillInterval: 1000 * 60, + customName: [ + { + text: 'ChomeNS ', + color: 'yellow' + }, + { + text: 'Core', + color: 'green' + }, + { + text: '\u2122', + color: 'gold' + } + ] + }, + self_care: { + prefix: true, + op: true, + cspy: true, + vanish: true, + nickname: true, + socialspy: true, + gamemode: true, + mute: true, + endCredits: true + }, + eval: { + serverUrl: 'http://localhost:4445/' + }, + reconnectTimeout: 1000 * 2, + timeoutInterval: 1000 * 40, + self_care_check_interval: 2000, + discord: { + prefix: 'default!', + servers: { + 'localhost:25565': '696969696969696969' + }, + embedsColors: { + normal: '#FFFF00', + error: '#FF0000' + } + }, + servers: [ + // logging means log to console + { + host: 'localhost', + port: 25565, + username: 'ChomeNS_Bot', + kaboom: false, + logging: true, + useChat: false + } + ] +} diff --git a/ChomensJS/index.js b/ChomensJS/index.js new file mode 100644 index 0000000..0269dcb --- /dev/null +++ b/ChomensJS/index.js @@ -0,0 +1,48 @@ +const fs = require('fs/promises') +const fileExist = require('./util/file-exists') +const path = require('path') +const { createBot } = require('./bot') + +let config + +function load () { + // these stuff takes time to load so i move it here + const readline = require('node:readline') + const { stdin: input, stdout: output } = require('node:process') + const rl = readline.createInterface({ input, output }) + const { Client, GatewayIntentBits } = require('discord.js') +const { MessageContent, GuildMessages, Guilds } = GatewayIntentBits + + const dcclient = new Client({ intents: [Guilds, GuildMessages, MessageContent] }) + + let bots = [] + + dcclient.on('ready', () => { + for (const server of config.servers) { + const getBots = () => bots + const setNewBot = (server, bot) => { + bots = bots.filter((eachBot) => eachBot.server.host !== server) + bots.push(bot) + } + createBot(server, config, getBots, setNewBot, dcclient, rl) + } + }) + require('dotenv').config() + dcclient.login(process.env.discordtoken1) +} + +// TODO: improve this thing +async function checkConfig () { + if (!await fileExist(path.join(__dirname, 'config.js'))) { + console.error('Config file doesn\'t exist, so the default one was created') + await fs.copyFile(path.join(__dirname, 'default.js'), path.join(__dirname, 'config.js')) + } + config = require('./config') + load() +} + +checkConfig() + +process.on('uncaughtException', (e) => { + console.log('uncaught ' + e.stack) +}) diff --git a/ChomensJS/midis/Manifest.midi b/ChomensJS/midis/Manifest.midi new file mode 100644 index 0000000..adca951 Binary files /dev/null and b/ChomensJS/midis/Manifest.midi differ diff --git a/ChomensJS/midis/NightOfNights.mid b/ChomensJS/midis/NightOfNights.mid new file mode 100644 index 0000000..e3bfe61 Binary files /dev/null and b/ChomensJS/midis/NightOfNights.mid differ diff --git a/ChomensJS/plugins/bruhify.js b/ChomensJS/plugins/bruhify.js new file mode 100644 index 0000000..0624848 --- /dev/null +++ b/ChomensJS/plugins/bruhify.js @@ -0,0 +1,26 @@ +const convert = require('color-convert') +module.exports = { + inject: function (bot) { + bot.bruhifyText = '' + let startHue = 0 + const timer = setInterval(() => { + if (bot.bruhifyText === '') return + + let hue = startHue + const displayName = bot.bruhifyText + const increment = (360 / Math.max(displayName.length, 20)) + const component = [] + for (const character of displayName) { + const color = convert.hsv.hex(hue, 100, 100) + component.push({ text: character, color: `#${color}` }) + hue = (hue + increment) % 360 + } + bot.core.run(`minecraft:title @a actionbar ${JSON.stringify(component)}`) + startHue = (startHue + increment) % 360 + }, 100) + + bot.on('end', () => { + clearInterval(timer) + }) + } +} diff --git a/ChomensJS/plugins/chat.js b/ChomensJS/plugins/chat.js new file mode 100644 index 0000000..e8bacc7 --- /dev/null +++ b/ChomensJS/plugins/chat.js @@ -0,0 +1,76 @@ +const { containsIllegalCharacters } = require('../util/containsIllegalCharacters') +const { chatPacketListener, parsePlayerMessages } = require('../util/chat') +const minecraftVersionToNumber = require('../util/minecraftVersionToNumber') + +function inject (bot, dcclient, config) { + bot.chatQueue = [] + bot._chatQueue = [] + + const _chatQueueInterval = setInterval(() => { + if (bot.chatQueue.length !== 0) { + if (containsIllegalCharacters(bot.chatQueue[0])) { + bot.chatQueue.shift() + return + }; + // totallynotskidded™️ from mineflayer/lib/plugins/chat.js + for (const subMessage of bot.chatQueue[0].split('\n')) { + if (!subMessage) return + let smallMsg + for (let i = 0; i < subMessage.length; i += config.chat.messageLength) { + smallMsg = subMessage.substring(i, i + config.chat.messageLength) + bot._chatQueue.push(smallMsg) + } + } + bot.chatQueue.shift() + } + }, 0) + + const chatQueueInterval = setInterval(function () { + if (bot._chatQueue.length !== 0) { + if (bot._chatQueue[0].startsWith('/') && minecraftVersionToNumber(bot.version) >= 1.19) { + // totallynotskidded™️ from mineflayer + const command = bot._chatQueue[0].slice(1) + const timestamp = BigInt(Date.now()) + bot._client.write('chat_command', { + command, + timestamp, + salt: 0n, + argumentSignatures: [], + signedPreview: false, + messageCount: 0, + acknowledged: Buffer.alloc(3), + previousMessages: [] + }) + } else { + bot._client.chat(bot._chatQueue[0]) + } + + bot._chatQueue.shift() + } + }, 450) + + bot.chat = (message) => { + bot.chatQueue.push(String(message)) + } + + bot.on('end', () => { + clearInterval(chatQueueInterval) + clearInterval(_chatQueueInterval) + }) + + function listener (packet) { + chatPacketListener( + packet, + bot, + minecraftVersionToNumber(bot.version) >= 1.19 + ) + } + // TODO: support playerChat (formattedMessage doesn't exist on kaboom so prefixes like [OP] doesn't appear) + // bot._client.on('playerChat', listener) + bot._client.on('systemChat', listener) + bot._client.on('chat', listener) + + bot.on('message', (message, parsedMessage) => parsePlayerMessages(message, parsedMessage, bot)) +} + +module.exports = { inject } diff --git a/ChomensJS/plugins/cloop.js b/ChomensJS/plugins/cloop.js new file mode 100644 index 0000000..5547fbb --- /dev/null +++ b/ChomensJS/plugins/cloop.js @@ -0,0 +1,25 @@ +function inject (bot) { + bot.cloop = { + list: [], + add (command, interval, list = true /* list is used in the cloop command listing and eaglercrash */) { + const id = setInterval(() => bot.core.run(command), interval) + + const thingsToPush /* ig not the best variable name */ = { id, interval, command, list } + bot.cloop.list.push(thingsToPush) + + return thingsToPush + }, + remove (item) { + clearInterval(bot.cloop.list[item].id) + + bot.cloop.list.splice(item, 1) + }, + clear () { + for (const interval of bot.cloop.list) clearInterval(interval.id) + + bot.cloop.list = [] + } + } +} + +module.exports = { inject } diff --git a/ChomensJS/plugins/commands.js b/ChomensJS/plugins/commands.js new file mode 100644 index 0000000..c80807b --- /dev/null +++ b/ChomensJS/plugins/commands.js @@ -0,0 +1,123 @@ + +const path = require('path') +const { EmbedBuilder } = require('discord.js') +function inject (bot, dcclient, config) { + const loadFiles = require('../util/load_files') + const channeldc = dcclient.channels.cache.get(config.discord.servers[`${bot.server.host}:${bot.server.port}`]) + bot.command_handler = {} + bot.command_handler.commands = {} + bot.command_handler.reload = async function () { + bot.command_handler.commands = await loadFiles(path.join(__dirname, config.commandsDir)) + } + bot.command_handler.reload() + bot.command_handler.main = function (prefix, username, message, sender, channeldc, hash, ownerhash, selector) { + bot.command_handler.reload() + let raw + let command + const discord = !!message.content + + discord + ? raw = message.content.substring(prefix.length) + : raw = message.substring(prefix.length) + + const [commandName, ...args] = raw.split(' ') + command = bot.command_handler.commands.find((command) => command.name === commandName.toLowerCase()) + + try { + const alias = bot.command_handler.commands.find((command) => command.alias.includes(commandName.toLowerCase())) + if (alias) command = alias + + if (prefix === '3*' && message.endsWith('3*') && message !== '3*') return + if (!command) throw new Error(`Unknown command: "${commandName}"`) + + if (command.trusted > 0) { + const discordRoles = message.member?.roles?.cache // do i need the "?"s ? + + // TODO: Don't hardcode the roles + + // trusted and host + // discord + if ( + discord && + command.trusted === 1 && + !discordRoles.some((role) => role.name === 'Trusted' || role.name === 'chomens' || role.name === 'FNFBoyfriendBot Owner') + ) throw new Error('You\'re not in the trusted role!') + // in game + if ( + !discord && + command.trusted === 1 && + args[0] !== hash && + args[0] !== ownerhash + + ) throw new Error('Invalid hash') + + // FNFBoyfriendBot Owner + // || role.name === 'Host' + if ( + discord && + command.trusted === 2 && + !discordRoles.some((role) => role.name === 'chomens' || role.name === 'FNFBoyfriendBot Owner') + + ) throw new Error('You\'re not in the host role!') + // in game + if ( + !discord && + command.trusted === 2 && + args[0] !== ownerhash + ) throw new Error('Invalid OwnerHash') + } + + if (prefix === config.discord.prefix) { + if (!command.discordExecute) throw new Error('This command is not yet supported on Discord!') + command.discordExecute(bot, username, sender, prefix, args, channeldc, message, config) + } else { + command.execute(bot, username, sender, prefix, args, config, hash, ownerhash, selector) + } + } catch (e) { + if (prefix === config.discord.prefix) { + const Embed = new EmbedBuilder() + .setColor(config.discord.embedsColors.error) + .setTitle('Error') + .setDescription(`\`\`\`${e}\`\`\``) + channeldc.send({ embeds: [Embed] }) + } else { + bot.tellraw(selector, { text: String(e), color: 'red' }) + } + } + } + bot.command_handler.run = function (username, message, sender, channeldc, hash, ownerhash, selector = '@a') { + for (const prefix of config.prefixes) { + if (!message.startsWith(prefix)) continue + bot.command_handler.main(prefix, username, message, sender, channeldc, hash, ownerhash, selector) + } + } + bot.on('chat', async (_username, _message) => { + const username = _username?.replace(/§.?/g, '') + const sender = bot.players.list.find((val) => val.name === username)?.UUID + const message = _message?.replace(/* /§r/g */ /§.?/g, '')/* .replace(/§/g, '') */ + bot.command_handler.run(username, message, sender, channeldc, bot.hash, bot.ownerHash) + }) + bot.on('cspy', async function (_username, _message) { + const username = _username.replace(/§.?/g, '') + const message = _message.replace(/§.?/g, '') + const sender = bot.players.list.find((val) => val.name === username)?.UUID + bot.command_handler.run(username, message, sender, channeldc, bot.hash, bot.ownerHash, username) + }) + function handleDiscordMessages (message) { + try { + // ignores the message that comes from the bot itself + if (message.author.id === dcclient.user.id) return + // only receive messages in SPECIFIC channel + if (message.channel.id !== channeldc.id) return + if (!message.content.startsWith(config.discord.prefix)) return + bot.command_handler.main(config.discord.prefix, message.member.displayName, message, 'no sender for discord', channeldc) + } catch (e) { + bot.console.error(e.stack) + }; + } + bot.on('end', () => { + dcclient.off('messageCreate', handleDiscordMessages) + }) + dcclient.on('messageCreate', handleDiscordMessages) +}; +module.exports = { inject } diff --git a/ChomensJS/plugins/console.js b/ChomensJS/plugins/console.js new file mode 100644 index 0000000..b39dc2b --- /dev/null +++ b/ChomensJS/plugins/console.js @@ -0,0 +1,107 @@ +const moment = require('moment-timezone') + +function inject (bot, _dcclient, config, rl) { + // readline > fix on log + function log (...args) { + rl.output.write('\x1b[2K\r') + console.log(args.toString()) + rl._refreshLine() + }; + + const chatMessage = require('prismarine-chat')(bot.version) + + function prefix (prefix, _message) { + const message = `[${moment().format('DD/MM/YY HH:mm:ss')} ${prefix}§r] [${bot.server.host}] ` + const component = chatMessage.MessageBuilder.fromString(message).toJSON() + return chatMessage.fromNotch(component).toAnsi() + _message + } +const originalConsole = console + this.log = (...args) => { + rl.output.write('\x1b[2K\r') + originalConsole.log(args.toString()) + rl._refreshLine() + } + bot.console = {} + bot.console.host = 'all' + bot.console.log = function (message) { + log(prefix('&6LOG', message)) + } + bot.console.info = function (message) { + log(prefix('&aINFO', message)) + } + bot.console.error = function (error) { + log(prefix('&cERROR', typeof error === 'string' ? error : error.stack)) + } + + // previous message is op feature to have in console :) + let previousMessage = '' + bot.on('message', (message) => { + if (!bot.options.logging) return + if (previousMessage === message.toString()) return + previousMessage = message.toString() + bot.console.log(message.toAnsi()) + }) + + if (!config.console) return + + function handleLine (line) { + try { + if (line.toLowerCase() === '' || + line.toLowerCase().startsWith(' ')) return + + if (line.startsWith('.csvr ')) { + const host = line.substring(6) + for (const eachBot of bot.getBots()) eachBot.console.host = host + bot.console.info(`Host set to: ${host}`) + return + } + + if (bot.server.host !== bot.console.host && bot.console.host !== 'all') return + if (line === '.kill') process.exit() + + if (line.startsWith('.')) { + return bot.command_handler.run( + bot.username, + config.prefixes[0] + line.substring(1), + bot.uuid, + null, + 'h', + 'o' + ) + } + bot.tellraw('@a', [ + { + text: '[', + color: 'dark_gray' + }, + { + text: `${bot.username} Console`, + color: 'gray' + }, + { + text: '] ', + color: 'dark_gray' + }, + { + text: 'chayapak ', + color: 'green' + }, + { + text: '\u203a ', + color: 'dark_gray' + }, + chatMessage.MessageBuilder.fromString('&7' + line) + ]) + } catch (e) { + bot.console.error(e) + } + } + + rl.on('line', handleLine) + + bot.on('end', () => { + rl.off('line', handleLine) + }) +} + +module.exports = { inject } diff --git a/ChomensJS/plugins/core.js b/ChomensJS/plugins/core.js new file mode 100644 index 0000000..1852e3d --- /dev/null +++ b/ChomensJS/plugins/core.js @@ -0,0 +1,115 @@ +const nbt = require('prismarine-nbt'); +const Vec3 = require('vec3'); + +const relativePosition = new Vec3(0, 0, 0); + +function inject(bot, dcclient, config) { + const mcData = require('minecraft-data')(bot.version); + const impulseMode = !bot.options.kaboom; + const core = { + // Initialize the height to 0 + height: 0, + run(command) { + try { + // Check if height has reached the maximum configured height + if (core.height >= config.core.layers) { + // Reset the height to 0 and the relativePosition to (0, 0, 0) + core.height = 0; + relativePosition.x = 0; + relativePosition.y = 0; + relativePosition.z = 0; + } + + const location = { + x: core.start.x + relativePosition.x, + y: core.start.y + core.height, // Use the core height + z: core.start.z + relativePosition.z + }; + + if (impulseMode) bot.write('update_command_block', { location, command: '', mode: 0, flags: 0 }); + bot.write('update_command_block', { + location, + command: String(command).substring(0, 32767), + mode: impulseMode ? 2 : 1, + flags: 0b101 + }); + + // Increment the relativePosition.x and update the height accordingly + relativePosition.x++; + if (relativePosition.x >= 16) { + relativePosition.x = 0; + relativePosition.z++; + if (relativePosition.z >= 16) { + relativePosition.z = 0; + core.height++; // Increment the height + } + } + } catch (e) { + bot.console.error(e); + } + }, + fillCore() { + core.start = new Vec3( + Math.floor(bot.position.x / 16) * 16, + 0 /* bot.position.y */, + Math.floor(bot.position.z / 16) * 16 + ).floor(); + core.end = core.start.clone().translate(16, config.core.layers, 16).subtract(new Vec3(1, 1, 1)); + + placeCore(); + } + }; + + bot.core = core; + + function placeCore() { + try { + const fillCommand = `minecraft:fill ${core.start.x} ${core.start.y} ${core.start.z} ${core.end.x} ${core.end.y} ${core.end.z} repeating_command_block{CustomName:'${JSON.stringify(config.core.customName)}'}`; + const location = { x: Math.floor(bot.position.x), y: Math.floor(bot.position.y) - 1, z: Math.floor(bot.position.z) }; + + bot.write('set_creative_slot', { + slot: 36, + item: { + present: true, + itemId: impulseMode ? mcData.itemsByName.command_block.id : mcData.itemsByName.repeating_command_block.id, + itemCount: 64, + nbtData: nbt.comp({ + BlockEntityTag: nbt.comp({ + Command: nbt.string(fillCommand), + auto: nbt.byte(1), + TrackOutput: nbt.byte(0) + }) + }) + } + }); + + bot.write('block_dig', { + status: 0, + location, + face: 1 + }); + + bot.write('block_place', { + location, + direction: 1, + hand: 0, + cursorX: 0.5, + cursorY: 0.5, + cursorZ: 0.5, + insideBlock: false + }); + } catch (e) { + bot.console.error(e); + } + } + + bot.on('position', bot.core.fillCore); + + const interval = setInterval(bot.core.fillCore, config.core.refillInterval); + + bot.on('end', () => { + clearInterval(interval); + }); +} + +module.exports = { inject }; diff --git a/ChomensJS/plugins/discord.js b/ChomensJS/plugins/discord.js new file mode 100644 index 0000000..7792fc2 --- /dev/null +++ b/ChomensJS/plugins/discord.js @@ -0,0 +1,178 @@ + +const { escapeMarkdown } = require('../util/escapeMarkdown') +async function inject (bot, dcclient, config) { + const chatMessage = require('prismarine-chat')(bot.version) + const channel = dcclient.channels.cache.get(config.discord.servers[`${bot.server.host}:${bot.server.port}`]) + + let queue = '' + const queueInterval = setInterval(() => { + if (queue === '') return + + channel.send({ + content: '```ansi\n' + queue.substring(0, 1986) + '\n```', + allowedMentions: { + parse: [] + } + })//sed -i '/start/s/"/"choom -n 1000 -- /' .replit + queue = '' + }, 1000) + + bot.on('message', (message) => { + const cleanMessage = escapeMarkdown(message.toAnsi(), true) + const discordMsg = cleanMessage + .replaceAll('@', '@\u200b') + .replaceAll('http', 'http\u200b') + .replaceAll('\u001b[9', '\u001b[3') + if (message.toMotd().startsWith('§8[§eChomeNS §9Discord§8] §c')) return + queue += '\n' + discordMsg + }) + + // handle discord messages!!! + async function handleDiscordMessages (message) { + // Ignore messages from the bot itself + if (message.author.id === dcclient.user.id) return + + // Only handle messages in specified channel + if (message.channel.id !== channel.id) return + if (message.content.startsWith(config.discord.prefix)) return + + try { + const attachmentsComponent = [] + if (message.attachments) { + for (const __attachment of message.attachments) { + const _attachment = [...__attachment] + const attachment = _attachment[1] // BEST WAY REAL!?/1?! + attachmentsComponent.push({ + text: message.content === '' ? '[Attachment]' : ' [Attachment]', // may not be the best fix + color: 'green', + clickEvent: { + action: 'open_url', + value: attachment.proxyURL + } + }) + } + } + const component = [ + { text: '[', color: 'dark_gray', bold:false, }, + { + text: 'FNF', + color: 'dark_purple', + bold:false, + clickEvent: { + action: 'open_url', + value: 'https://discord.gg/GCKtG4erux' + } + }, + { + text: 'Boyfriend', + color: 'aqua', + bold:false, + clickEvent: { + action: 'open_url', + value: 'https://discord.gg/GCKtG4erux' + } + }, + { + text: 'Bot', + color: 'dark_red', + bold: false, + clickEvent: { + action: 'open_url', + value: 'https://discord.gg/GCKtG4erux' + } + }, + { + text: ' Discord', + color: 'blue', + bold: false, + clickEvent: { + action: 'open_url', + value: 'https://discord.gg/GCKtG4erux' + } + }, + { + text: ']', + color: 'dark_gray', + bold: false, + clickEvent: { + action: 'open_url', + value: 'https://discord.gg/GCKtG4erux' + } + }, + { + text: '[', + color: 'dark_gray', + bold: false, + clickEvent: { + action: 'open_url', + value: 'https://discord.gg/GCKtG4erux' + } + }, + { + text: 'ChomeNS js ', + color: 'yellow', + bold:false, + clickEvent: { + action: 'open_url', + value: 'https://discord.gg/GCKtG4erux' + } + }, + { + text: 'Bot', + color: 'yellow', + bold:false, + clickEvent: { + action: 'open_url', + value: 'https://discord.gg/GCKtG4erux' + } + }, + { text: '] ', color: 'dark_gray', bold:false, }, + { + text: message.member.displayName, + color: 'red', + clickEvent: { + action: 'copy_to_clipboard', + value: `${message.author.username}#${message.author.discriminator}` + }, + hoverEvent: { + action: 'show_text', + value: [ + { + text: message.author.username, + color: 'white' + }, + { + text: '#', + color: 'dark_gray' + }, + { + text: message.author.discriminator, + color: 'gray' + }, + '\n', + { + text: 'Click here to copy the tag to your clipboard', + color: 'green' + } + ] + } + }, + { text: ' › ', color: 'dark_gray' }, + chatMessage.MessageBuilder.fromString('&7' + message.content), + attachmentsComponent.length === 0 ? '' : attachmentsComponent + ] + bot.tellraw('@a', component) + } catch (e) { + + } + } + + bot.on('end', () => { + clearInterval(queueInterval) + dcclient.off('messageCreate', handleDiscordMessages) + }) + + dcclient.on('messageCreate', handleDiscordMessages) +}; + +module.exports = { inject } diff --git a/ChomensJS/plugins/draw.js b/ChomensJS/plugins/draw.js new file mode 100644 index 0000000..ceb6692 --- /dev/null +++ b/ChomensJS/plugins/draw.js @@ -0,0 +1,53 @@ +const convert = require('color-convert') + +// eslint-disable-next-line require-jsdoc +function inject (bot) { + /** + * draw which is totallynotskidded from ybot + * @param {buffer} data data buffer + * @param {*} info idk bout this + * @param {object} prefix prefix in the output compoenent + */ + function draw (data, info, prefix = {}) { + const pixels = [] + + // Data Buffer -> RGB Array + for (let i = 0; i < data.length; i += info.channels) { + pixels.push([ + data[i + 0], + data[i + 1], + data[i + 2] + ]) + } + + const rows = [] + + // RGB Array -> Rows Array + for (let i = 0; i < pixels.length; i += info.width) { + const row = pixels.slice(i, i + info.width) + + rows.push(row) + } + + const messages = [] + + for (const row of rows) { + const message = [{ ...prefix, text: '' }] + + for (const rgb of row) { + message.push({ + text: '⎮', + color: `#${convert.rgb.hex(rgb)}` + }) + } + + messages.push(message) + } + + for (const message of messages) bot.tellraw('@a', message) + } + + bot.draw = draw +} + +module.exports = { inject } diff --git a/ChomensJS/plugins/hash.js b/ChomensJS/plugins/hash.js new file mode 100644 index 0000000..6abd021 --- /dev/null +++ b/ChomensJS/plugins/hash.js @@ -0,0 +1,18 @@ +const crypto = require('crypto') + +module.exports = { + inject: function (bot, dcclient, config) { + bot.hash = '' + + const interval = setInterval(() => { + const normalKey = process.env['chomensjs_key'] +const ownerHashKey = process.env['chomensjs_owner_key'] + bot.hash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + normalKey).digest('hex').substring(0, 16) + bot.ownerHash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + ownerHashKey).digest('hex').substring(0, 16) + }, 2000) + bot.on('end', () => { + clearInterval(interval) + + }) + } +} diff --git a/ChomensJS/plugins/music.js b/ChomensJS/plugins/music.js new file mode 100644 index 0000000..4824fec --- /dev/null +++ b/ChomensJS/plugins/music.js @@ -0,0 +1,190 @@ +const path = require('path') +const { Midi } = require('@tonejs/midi') +const { convertMidi } = require('../util/midi_converter') +const convertNBS = require('../util/nbs_converter') +const parseTXTSong = require('../util/txt_song_parser') + +const soundNames = { + harp: 'minecraft:block.note_block.harp', + basedrum: 'minecraft:block.note_block.basedrum', + snare: 'minecraft:block.note_block.snare', + hat: 'minecraft:block.note_block.hat', + bass: 'minecraft:block.note_block.bass', + flute: 'minecraft:block.note_block.flute', + bell: 'minecraft:block.note_block.bell', + guitar: 'minecraft:block.note_block.guitar', + chime: 'minecraft:block.note_block.chime', + xylophone: 'minecraft:block.note_block.xylophone', + iron_xylophone: 'minecraft:block.note_block.iron_xylophone', + cow_bell: 'minecraft:block.note_block.cow_bell', + didgeridoo: 'minecraft:block.note_block.didgeridoo', + bit: 'minecraft:block.note_block.bit', + banjo: 'minecraft:block.note_block.banjo', + pling: 'minecraft:block.note_block.pling' +} + +function inject (bot) { + bot.music = function () {} + bot.music.song = null + bot.music.loop = 0 + bot.music.queue = [] + let time = 0 + let startTime = 0 + let noteIndex = 0 + bot.music.skip = function () { + if (bot.music.loop === 2) { + bot.music.queue.push(bot.music.queue.shift()) + bot.music.play(bot.music.queue[0]) + } else { + bot.music.queue.shift() + } + resetTime() + } + + const bossbarName = 'chomens_bot:music' // maybe make this in the config? + + const selector = '@a[tag=!nomusic,tag=!chomens_bot_nomusic]' + + const interval = setInterval(async () => { + if (!bot.music.queue.length) return + bot.music.song = bot.music.queue[0] + time = Date.now() - startTime + /* + // bot.core.run('minecraft:title @a[tag=!nomusic] actionbar ' + JSON.stringify(toComponent())) + + // is spamming commands in core as a self care a good idea? + // btw this is totallynotskidded™️ from my song bot except the bossbarName (above) + bot.core.run(`minecraft:bossbar add ${bossbarName} ""`) // is setting the name to "" as a placeholder a good idea? + bot.core.run(`minecraft:bossbar set ${bossbarName} players ${selector}`) + bot.core.run(`minecraft:bossbar set ${bossbarName} name ${JSON.stringify(toComponent())}`) + bot.core.run(`minecraft:bossbar set ${bossbarName} color yellow`) // should i use purple lol + bot.core.run(`minecraft:bossbar set ${bossbarName} visible true`) + bot.core.run(`minecraft:bossbar set ${bossbarName} value ${Math.floor(time)}`) + bot.core.run(`minecraft:bossbar set ${bossbarName} max ${bot.music.song.length}`) + */ + bot.core.run(`title @a actionbar ${JSON.stringify(toComponent())}`) + + while (bot.music.song?.notes[noteIndex]?.time <= time) { + const note = bot.music.song.notes[noteIndex] + const floatingPitch = 2 ** ((note.pitch - 12) / 12.0) + bot.core.run(`minecraft:execute as ${selector} at @s run playsound ${soundNames[note.instrument]} record @s ~ ~ ~ ${note.volume} ${floatingPitch}`) + noteIndex++ + if (noteIndex >= bot.music.song.notes.length) { + bot.tellraw('@a', [ + { + text: 'Finished playing ' + }, + { + text: bot.music.song.name, + color: 'gold' + } + ]) + + if (bot.music.loop === 1) { + resetTime() + return + } + if (bot.music.loop === 2) { + resetTime() + bot.music.queue.push(bot.music.queue.shift()) + bot.music.play(bot.music.queue[0]) + return + } + bot.music.queue.shift() + bot.music.song = null // useless? + if (!bot.music.queue[0]) { + bot.music.stop() + return + } + if (bot.music.queue[0].notes.length > 0) { + if (bot.music.queue.length !== 1) resetTime() + bot.music.play(bot.music.queue[0]) + return + } + } + } + }, 50) + + bot.on('end', () => { + clearInterval(interval) + }) + + bot.music.load = async function (buffer, fallbackName = '[unknown]') { + let song + switch (path.extname(fallbackName)) { + case '.nbs': + song = convertNBS(buffer) + if (song.name === '') song.name = fallbackName + break + case '.txt': + song = parseTXTSong(buffer.toString()) + song.name = fallbackName + break + default: + // TODO: use worker_threads so the entire bot doesn't freeze (for example parsing we are number 1 black midi) + + // eslint-disable-next-line no-case-declarations + const midi = new Midi(buffer) + song = convertMidi(midi) + if (song.name === '') song.name = fallbackName + break + } + return song + } + + bot.music.play = function (song) { + if (bot.music.queue.length === 1) resetTime() + } + + bot.music.stop = function () { + bot.music.song = null + bot.music.loop = 0 + bot.music.queue = [] + resetTime() + } + + function resetTime () { + time = 0 + startTime = Date.now() + noteIndex = 0 + bot.core.run(`minecraft:bossbar remove ${bossbarName}`) // maybe not a good place to put it here but idk + } + + function formatTime (time) { + const seconds = Math.floor(time / 1000) + + return `${Math.floor(seconds / 60)}:${(seconds % 60).toString().padStart(2, '0')}` + } + + function toComponent () { + const component = [ + // { text: '[', color: 'dark_gray' }, + // { text: 'ChomeNS Bot', color: 'yellow' }, + // { text: '] ', color: 'dark_gray' }, + // { text: 'Now Playing', color: 'gold' }, + // { text: ' | ', color: 'dark_gray' }, + { text: bot.music.song.name, color: 'green' }, + { text: ' | ', color: 'dark_gray' }, + { text: formatTime(time), color: 'gray' }, + { text: ' / ', color: 'dark_gray' }, + { text: formatTime(bot.music.song.length), color: 'gray' }, + { text: ' | ', color: 'dark_gray' }, + { text: noteIndex, color: 'gray' }, + { text: ' / ', color: 'dark_gray' }, + { text: bot.music.song.notes.length, color: 'gray' } + ] + + if (bot.music.loop === 1) { + component.push({ text: ' | ', color: 'dark_gray' }) + component.push({ text: 'Looping Current', color: 'green' }) + } + if (bot.music.loop === 2) { + component.push({ text: ' | ', color: 'dark_gray' }) + component.push({ text: 'Looping All', color: 'green' }) + } + + return component + } +} + +module.exports = { inject } diff --git a/ChomensJS/plugins/players.js b/ChomensJS/plugins/players.js new file mode 100644 index 0000000..ecaf099 --- /dev/null +++ b/ChomensJS/plugins/players.js @@ -0,0 +1,136 @@ +const { EventEmitter } = require('events') + +class PlayerList { + list = [] + + addPlayer (player) { + this.removePlayer(player) + + this.list.push(player) + } + + hasPlayer (player) { + return this.getPlayer(player) !== undefined + } + + getPlayer (player) { + let identifier + + switch (typeof player) { + case 'object': + identifier = player.UUID + break + case 'string': + identifier = player + break + default: + throw new Error(`Get player called with ${player}`) + } + + return this.list.find((player) => [player.UUID, player.name].some((item) => item === identifier)) + } + + getPlayers () { + return Array.from(this.list) + } + + removePlayer (player) { + this.list = this.list.filter(({ UUID }) => UUID !== player.UUID) + } +} + +function inject (bot, dcclient, config) { + bot.players = new PlayerList() + + const tabCompletePlayerList = { + list: [], + interval: setInterval(async () => { + bot.write('tab_complete', { + text: '/scoreboard players add ' + }) + + const [packet] = await EventEmitter.once(bot._client, 'tab_complete') + + return packet.matches + .filter((match) => !match.tooltip) + .map(({ match }) => match) + }, 1000 * 3) + }//??? + + bot._client.on('player_info', async (packet) => { + for (const player of packet.data) { + switch (packet.action) { + case 0: + addPlayer(player, packet) + break + case 1: + updateGamemode(player, packet) + break + case 2: + updatePing(player, packet) + break + case 3: + updateDisplayName(player, packet) + break + case 4: + removePlayer(player, packet) + break + } + } + }) + + function addPlayer (player, packet) { + if (bot.players.getPlayer(player)) bot.emit('player_unvanished', player, packet) + else bot.emit('player_added', player, packet) + + bot.players.addPlayer(player) + } + + function updateGamemode (player, packet) { + const fullPlayer = bot.players.getPlayer(player) + + bot.emit('onPlayerGamemodeUpdate', player, packet) + + if (fullPlayer === undefined) return + + fullPlayer.gamemode = player.gamemode + } + + function updatePing (player, packet) { + const fullPlayer = bot.players.getPlayer(player) + + bot.emit('player_ping_updated', player, packet) + + if (fullPlayer === undefined) return + + fullPlayer.ping = player.ping + } + + function updateDisplayName (player, packet) { + const fullPlayer = bot.players.getPlayer(player) + + bot.emit('player_display_name_updated', player, packet) + + if (fullPlayer === undefined) return + + fullPlayer.displayName = player.displayName + } + + function removePlayer (player, packet) { + const fullPlayer = bot.players.getPlayer(player) + const players = tabCompletePlayerList.list + + if (fullPlayer && players.some((name) => name === fullPlayer.name)) { + bot.emit('player_vanished', player) + } else { + bot.emit('player_removed', player, packet) + bot.players.removePlayer(player) + } + } + + bot.on('end', () => { + clearInterval(tabCompletePlayerList.interval) + }) +} + +module.exports = { inject } diff --git a/ChomensJS/plugins/position.js b/ChomensJS/plugins/position.js new file mode 100644 index 0000000..7d81341 --- /dev/null +++ b/ChomensJS/plugins/position.js @@ -0,0 +1,11 @@ + +function inject (bot) { + bot.position = { x: 0, y: 0, z: 0 } + bot._client.on('position', (position) => { + bot.position = position + bot.write('teleport_confirm', { teleportId: position.teleportId }) + bot.emit('position', position) + }) +} + +module.exports = { inject } diff --git a/ChomensJS/plugins/proxy.js b/ChomensJS/plugins/proxy.js new file mode 100644 index 0000000..5d6f864 --- /dev/null +++ b/ChomensJS/plugins/proxy.js @@ -0,0 +1,129 @@ + +const util = require('util') +const mc = require('minecraft-protocol') +const { loadPlugins } = require('../util/loadPlugins') +const minecraftVersionToNumber = require('../util/minecraftVersionToNumber') + +function inject (bot, dcclient, config) { + if (!config.proxy.enabled) return + + let index + config.servers.forEach((server, _index) => { + if (bot.server.host !== server.host) return + index = _index + }) + + bot.proxy = {} + + const version = config.proxy.version + const srv = mc.createServer({ + 'online-mode': false, + port: 25566 + index, + keepAlive: false, + version + }) + + srv.on('login', (client) => { + bot.console.info(`[Proxy] ${client.username} connected to proxy`) + let clientEnded = false + // eslint-disable-next-line no-unused-vars + let targetEnded = false + + const target = mc.createClient({ + username: client.username, + host: bot.server.host, + port: bot.server.port, + version + }) + + const clientPacketBlacklist = [] + const targetPacketBlacklist = [] + + // should this be here or in the chat plugin? + target.sendMessage = function (message) { + if (message.startsWith('/') && minecraftVersionToNumber(target.version) >= 1.19) { + // totallynotskidded™️ from mineflayer + const command = message.slice(1) + const timestamp = BigInt(Date.now()) + target.write('chat_command', { + command, + timestamp, + salt: 0n, + argumentSignatures: [], + signedPreview: false, + messageCount: 0, + acknowledged: Buffer.alloc(3), + // 1.19.2 Chat Command packet also includes an array of last seen messages + previousMessages: [] + }) + } else { + target.chat(message) + } + } + + target.on('login', (packet) => { + bot.console.info(`[Proxy] ${client.username} target logged in`) + target.entityId = packet.entityId + loadPlugins(bot, null, config, null, target, client, true, clientPacketBlacklist, targetPacketBlacklist) + }) + + target.on('packet', (data, meta) => { + if (!clientEnded && + meta.state === mc.states.PLAY && + client.state === mc.states.PLAY && + !targetPacketBlacklist.includes(meta.name) + ) client.write(meta.name, data) + }) + + target.on('error', () => {}) + + target.on('end', targetEndListener) + target.on('kick_disconnect', ({ reason }) => targetEndListener(JSON.parse(reason))) + target.on('disconnect', ({ reason }) => targetEndListener(JSON.parse(reason))) + + function targetEndListener (reason) { + target.end() + client.end(`Target disconnected with reason: ${util.inspect(reason)}`) + targetEnded = true + } + + client.on('end', () => { + clientEnded = true + target.end() + target.removeAllListeners() + client.removeAllListeners() + bot.console.info(`[Proxy] ${client.username} ended`) + }) + + client.on('error', () => { + clientEnded = true + target.removeAllListeners() + client.removeAllListeners() + bot.console.info(`[Proxy] ${client.username} got error`) + }) + + client.on('packet', (data, meta) => { + if (clientPacketBlacklist.includes(meta.name)) return + target.write(meta.name, data) + }) + + bot.proxy[client.username] = { + target, + client + } + + function botEndListener (reason) { + delete bot.proxy[client.username] + client.end(`Bot disconnected with reason: ${util.inspect(reason)}`) + bot.off('end', botEndListener) + } + bot.on('end', botEndListener) + }) + + bot.on('end', () => { + srv.close() + srv.removeAllListeners() + }) +}; + +module.exports = { inject } diff --git a/ChomensJS/plugins/proxy/chat.js b/ChomensJS/plugins/proxy/chat.js new file mode 100644 index 0000000..d5733c0 --- /dev/null +++ b/ChomensJS/plugins/proxy/chat.js @@ -0,0 +1,16 @@ + +const { chatPacketListener, parsePlayerMessages } = require('../../util/chat') +const minecraftVersionToNumber = require('../../util/minecraftVersionToNumber') +function inject (bot, client, target) { + function listener (packet) { + chatPacketListener(packet, target, minecraftVersionToNumber(target.version) >= 1.10) + } + target.on('systemChat', listener) + target.on('chat', listener) + + target.on('message', (message, packet) => { + parsePlayerMessages(message, packet, target) + }) +}; + +module.exports = { inject } diff --git a/ChomensJS/plugins/proxy/custom_chat.js b/ChomensJS/plugins/proxy/custom_chat.js new file mode 100644 index 0000000..3f74ee2 --- /dev/null +++ b/ChomensJS/plugins/proxy/custom_chat.js @@ -0,0 +1,58 @@ +const minecraftVersionToNumber = require('../../util/minecraftVersionToNumber') + +function inject (bot, client, target, config, clientPacketBlacklist) { + const { MessageBuilder } = require('prismarine-chat')(bot.version) + clientPacketBlacklist.push('chat') + clientPacketBlacklist.push('chat_message') + client.on(minecraftVersionToNumber(target.version) >= 1.19 ? 'chat_message' : 'chat', (data) => { + // not the best place to put command handler thing here but ok + if (data.message?.startsWith('.')) { + return bot.command_handler.run( + client.username, + config.prefixes[0] + data.message.substring(1), + client.uuid, + null, + 'h', // real hash hardcode + 'o', + client.username, + true, + client, + target + ) + } + + if (!data.message?.startsWith('/')) { + const codeParsedMessage = data.message.replace(/%[^%]+%/g, (code) => { + try { + // eslint-disable-next-line no-eval + return eval(code.substring(1).slice(0, -1)) + } catch (e) { + return code + } + }) + bot.tellraw('@a', { + color: 'dark_gray', + translate: '[%s] [%s] %s \u203a %s', + with: [ + { + text: 'Chat', + color: 'gray' + }, + { + text: 'Proxy', + color: 'gray' + }, + { + selector: client.username, + color: 'green' + }, + MessageBuilder.fromString('&7' + codeParsedMessage) + ] + }) + } else { + target.sendMessage(data) + } + }) +}; + +module.exports = { inject } diff --git a/ChomensJS/plugins/proxy/self_care.js b/ChomensJS/plugins/proxy/self_care.js new file mode 100644 index 0000000..b5213d7 --- /dev/null +++ b/ChomensJS/plugins/proxy/self_care.js @@ -0,0 +1,48 @@ + +function inject (bot, client, target, config) { + let cspy = false + let op = true + // let gameMode = 1 + + target.on('message', (data) => { + if (data.toString() === 'Successfully enabled CommandSpy' || data.toString() === ' Enabled your command spy.' || data.toString() === ' Your command spy is already enabled.') cspy = true + if (data.toString() === 'Successfully disabled CommandSpy' || data.toString() === ' Disabled your command spy.') cspy = false + }) + + target.on('entity_status', (data) => { + if (data.entityId !== target.entityId) return + + switch (data.entityStatus) { + case 24: + op = false + break + case 28: + op = true + break + } + }) + + // target.on('game_state_change', (data) => { + // if (data.reason !== 3) return + // + // gameMode = data.gameMode + // }) + // + // target.on('login', (data) => { + // gameMode = data.gameMode + // }) + + const interval = setInterval(() => { + if (bot.options.kaboom) { + if (!op && config.self_care.op) target.sendMessage('/minecraft:op @s[type=player]') + if (!cspy && config.self_care.cspy) target.sendMessage('/commandspy:commandspy on') + } + // if (gameMode !== 1 && config.self_care.gamemode) target.sendMessage('/minecraft:gamemode creative @s[type=player]') + }, config.self_care_check_interval) + + bot.on('end', () => { + clearInterval(interval) + }) +}; + +module.exports = { inject } diff --git a/ChomensJS/plugins/self_care.js b/ChomensJS/plugins/self_care.js new file mode 100644 index 0000000..1b8ec58 --- /dev/null +++ b/ChomensJS/plugins/self_care.js @@ -0,0 +1,90 @@ + +function inject (bot, dcclient, config) { + let vanish = false + let nickname = true + let socialspy = false + let cspy = false + let prefix = false + + let op = false + let gameMode = 1 + let muted = false + + bot.on('message', (data) => { + if (data.toString() === 'You are now completely invisible to normal users, and hidden from in-game commands.') vanish = true + if (!bot.visibility && data.toString() === `Vanish for ${bot.username}: disabled`) vanish = false + + if (data.toString() === 'You no longer have a nickname.') nickname = true + if (data.toString().startsWith('Your nickname is now ')) nickname = false + + if (data.toString() === `SocialSpy for ${bot.username}: enabled`) socialspy = true + if (data.toString() === `SocialSpy for ${bot.username}: disabled`) socialspy = false + + if (data.toString().startsWith('You have been muted')) muted = true + if (data.toString() === 'You have been unmuted.') muted = false + + if (data.toString() === 'Successfully enabled CommandSpy' || data.toString() === ' Enabled your command spy.' || data.toString() === ' Your command spy is already enabled.') cspy = true + if (data.toString() === 'Successfully disabled CommandSpy' || data.toString() === ' Disabled your command spy.') cspy = false + + if (data.toString() === 'You now have the tag: [ChomeNS Bot]' || // for 1.19.2 (or 1.19?) and older clones + data.toString() === 'You now have the tag: &8[&eChomeNS Bot&8]' + ) { + prefix = true + return + } + if (data.toString().startsWith('You no longer have a tag')) prefix = false + if (data.toString().startsWith('You now have the tag: ')) prefix = false + }) + + bot._client.on('entity_status', (data) => { + if (data.entityId !== bot.entityId) return + + switch (data.entityStatus) { + case 24: + op = false + + bot.emit('deop') + break + case 28: + op = true + + bot.emit('op') + break + } + + bot.emit('entity_status', data) + }) + + bot._client.on('game_state_change', (data) => { + if (data.reason === 4 && config.self_care.endCredits) bot.write('client_command', { payload: 0 }) + + if (data.reason !== 3) return + + gameMode = data.gameMode + }) + + bot._client.on('login', (data) => { + gameMode = data.gameMode + }) + + const interval = setInterval(() => { + if (bot.options.kaboom) { + if (!prefix && config.self_care.prefix) bot.chat('/extras:prefix &8[&eChomeNS Bot&8]') + if (!op && config.self_care.op) bot.chat('/minecraft:op @s[type=player]') + if (!cspy && config.self_care.cspy) bot.chat('/commandspy:commandspy on') + } + + if (!vanish && config.self_care.vanish) bot.chat('/essentials:vanish enable') + //if (!socialspy && config.self_care.socialspy) bot.chat('/essentials:socialspy enable') + if (!nickname && config.self_care.nickname) bot.chat('/essentials:nickname off') + + if (gameMode !== 1 && config.self_care.gamemode) bot.chat('/minecraft:gamemode creative @s[type=player]') + if (muted && config.self_care.mute) bot.chat('/essentials:mute ' + bot.uuid) + }, config.self_care_check_interval) + + bot.on('end', () => { + clearInterval(interval) + }) +}; + +module.exports = { inject } diff --git a/ChomensJS/plugins/tellraw.js b/ChomensJS/plugins/tellraw.js new file mode 100644 index 0000000..a79aa7c --- /dev/null +++ b/ChomensJS/plugins/tellraw.js @@ -0,0 +1,12 @@ +function inject (bot, dcclient, config) { + const ChatMessage = require('prismarine-chat')(bot.version) + bot.tellraw = function (selector, message) { + if (bot.options.useChat && selector === '@a') { + bot.chat(ChatMessage.fromNotch(message).toMotd().replaceAll('\xa7', '&')) + return + } + bot.core.run(`minecraft:tellraw ${selector} ${JSON.stringify(message)}`) + } +}; + +module.exports = { inject } diff --git a/ChomensJS/plugins/tps.js b/ChomensJS/plugins/tps.js new file mode 100644 index 0000000..d9269d8 --- /dev/null +++ b/ChomensJS/plugins/tps.js @@ -0,0 +1,75 @@ +const clamp = require('../util/clamp') +function inject (bot, dcclient, config) { + const bossbarName = 'chomens_bot:tps' + + let enabled = false + bot.tps = { + on () { + enabled = true + }, + off () { + enabled = false + bot.core.run(`minecraft:bossbar remove ${bossbarName}`) + } + } + + const tickRates = [] + let nextIndex = 0 + let timeLastTimeUpdate = -1 + let timeGameJoined + + const interval = setInterval(() => { + if (!enabled) return + + const component = { + translate: 'TPS - %s', + color: 'gray', + bold: false, + with: [ + { text: getTickRate(), color: 'green' } + ] + } + bot.core.run(`minecraft:bossbar add ${bossbarName} ""`) + bot.core.run(`minecraft:bossbar set ${bossbarName} players @a`) + bot.core.run(`minecraft:bossbar set ${bossbarName} color yellow`) + bot.core.run(`minecraft:bossbar set ${bossbarName} visible true`) + bot.core.run(`minecraft:bossbar set ${bossbarName} style progress`) + bot.core.run(`minecraft:bossbar set ${bossbarName} name ${JSON.stringify(component)}`) + bot.core.run(`minecraft:bossbar set ${bossbarName} max 20`) + bot.core.run(`minecraft:bossbar set ${bossbarName} value ${Math.floor(getTickRate())}`) + }, 50) + + function getTickRate () { + if (Date.now() - timeGameJoined < 4000) return 'Calculating...' + + let numTicks = 0 + let sumTickRates = 0.0 + for (const tickRate of tickRates) { + if (tickRate > 0) { + sumTickRates += tickRate + numTicks++ + } + } + + const value = (sumTickRates / numTicks).toFixed(2) + if (value > 20) return 20 + else return value + } + + bot.on('login', () => { + nextIndex = 0 + timeGameJoined = timeLastTimeUpdate = Date.now() + }) + + bot._client.on('update_time', () => { + const now = Date.now() + const timeElapsed = (now - timeLastTimeUpdate) / 1000.0 + tickRates[nextIndex] = clamp(20.0 / timeElapsed, 0.0, 20.0) + nextIndex = (nextIndex + 1) % tickRates.length + timeLastTimeUpdate = now + }) + + bot.on('end', () => clearInterval(interval)) +} + +module.exports = { inject } diff --git a/ChomensJS/plugins/vm.js b/ChomensJS/plugins/vm.js new file mode 100644 index 0000000..26578bf --- /dev/null +++ b/ChomensJS/plugins/vm.js @@ -0,0 +1,46 @@ +const mc = require('minecraft-protocol') +const crypto = require('crypto') +const colorConvert = require('color-convert') + +const uuid = require('uuid-by-string') +const moment = require('moment-timezone') +const cowsay = require('cowsay2') +const cows = require('cowsay2/cows') +const { VM } = require('vm2') +const randomstring = require('randomstring') +const mineflayer = require('mineflayer') +const Vec3 = require('vec3') +function inject (bot) { + const chatMessage = require('prismarine-chat')(bot.version) + const mcData = require('minecraft-data')(bot.version) + bot.vmOptions = { + timeout: 2000, + sandbox: { + run (cmd) { + bot.core.run(cmd) + }, + mc, + mineflayer, + chat: bot.chat, + moment, + randomstring, + uuid, + chatMessage, + crypto, + colorConvert, + bruhifyText (message) { + if ( + typeof message !== 'string' + ) throw new SyntaxError('message must be a string') + bot.bruhifyText = message.substring(0, 1000) + }, + cowsay, + cows, + mcData, + Vec3 + } + } + bot.vm = new VM(bot.vmOptions) +}; + +module.exports = { inject } diff --git a/ChomensJS/replit_zip_error_log.txt b/ChomensJS/replit_zip_error_log.txt new file mode 100644 index 0000000..5b5e2c4 --- /dev/null +++ b/ChomensJS/replit_zip_error_log.txt @@ -0,0 +1 @@ +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file .cache/replit/modules/nodejs-18:v9-20230908-bb1b9fd","time":"2023-09-17T03:59:55Z"} diff --git a/ChomensJS/util/between.js b/ChomensJS/util/between.js new file mode 100644 index 0000000..2d7c3ba --- /dev/null +++ b/ChomensJS/util/between.js @@ -0,0 +1,13 @@ +module.exports = { + /** + * this code is from somewhere i can't remember... + * @param {Number} min + * @param {Number} max + * @return {Number} + */ + between: function (min, max) { + return Math.floor( + Math.random() * (max - min) + min + ) + } +} diff --git a/ChomensJS/util/chat.js b/ChomensJS/util/chat.js new file mode 100644 index 0000000..a1f3db5 --- /dev/null +++ b/ChomensJS/util/chat.js @@ -0,0 +1,146 @@ +/** + * for the chat packet listener (in util cuz proxy + bot) + * @param {object} packet chat packet + * @param {object} bot bot + * @param {boolean} mc119 minecraft 1.19 or newer + */ +function chatPacketListener (packet, bot, mc119) { + // try catch prevents json parse error (happens with a custom server that sends an invalid json component for example) + try { + const ChatMessage = require('prismarine-chat')(bot.version) + + const parsedMessage = JSON.parse(mc119 ? packet.formattedMessage : packet.message) + // down here it prevents command set message + + // for ayunboom cuz its 1.17.1 + // VVVVVVVVVVVVVVVVVVVVVVVVVVVV + if (parsedMessage.extra) { + if (parsedMessage.extra[0].text === 'Command set: ') return + } + // for 1.18 or newer(?) + // VVVVVVVVVVVVVVVVVVVVV + if (parsedMessage.translate === 'advMode.setCommand.success') return + + const message = ChatMessage.fromNotch(mc119 ? packet.formattedMessage : packet.message) + + bot.emit('message', message, parsedMessage) + } catch (e) { + bot.console.error(e) + } +} + +/** + * new parse player messages, more accurate message real!11!! + * @param {object} _message prismarine-chat ChatMessage - unused in code but used in legacy parsing + * @param {object} parsedMessage parsed message in a js object + * @param {object} bot bot + */ +function parsePlayerMessages (_message, parsedMessage, bot) { + const ChatMessage = require('prismarine-chat')(bot.version) + const vanillaKeys = [ + 'chat.type.text', + 'chat.type.announcement', + 'chat.type.emote' + ] + + // parse Extras™ chat messages + if ( + parsedMessage.translate === '%s' && + parsedMessage.with?.length === 1 && + parsedMessage.with[0]?.text === '' && + parsedMessage.with[0]?.extra?.length === 5 + ) { + const trueMessageComponent = parsedMessage.with[0].extra + const username = ChatMessage.fromNotch(trueMessageComponent[1]).toMotd() + const message = ChatMessage.fromNotch(trueMessageComponent[4]).toMotd() + bot.emit('chat', username, message) + + return + } + + // parse CommandSpy™ messages + if ( + ( + parsedMessage.color === 'yellow' || + parsedMessage.color === 'aqua' + ) && + parsedMessage.extra?.length === 2 + ) { + const username = parsedMessage.text + const command = parsedMessage.extra[1].text + bot.emit('cspy', username, command) + + return + } + + // parse Minecraft Vanilla™ messages + if ( + vanillaKeys.includes(parsedMessage.translate) && + parsedMessage.with.length >= 2 + ) { + const username = ChatMessage.fromNotch(parsedMessage.with[0]).toMotd() + const message = ChatMessage.fromNotch(parsedMessage.with[1]).toMotd() + bot.emit('chat', username, message) + + return + } + + parsePlayerMessagesLegacy(_message, parsedMessage, bot) +} + +/** + * LEGACY - parse player messages (for prismarine-chat) + * @param {object} message prismarine-chat ChatMessage + * @param {object} _parsedMessage parsed message in a js object + * @param {object} bot bot + */ +function parsePlayerMessagesLegacy (message, _parsedMessage, bot) { + try { + // here is all the player message parsing thing + const raw = message.toMotd() // lags the bot as you already know + // if (raw.match(/.* .*: .*/g)) { + // const username = raw.replace(/.*?\[.*?\] /g, '').replace(/:.*/g, '').replace(/§#....../gm, '') + // const message = raw.split(': ').slice(1).join(' ').replace(/§#....../gm, '') + // bot.emit('chat', username, message) + // } else + if (raw.match(/.* .*\u203a .*/g)) { + const username = raw.replace(/.*?\[.*?\] /g, '').replace(/\u203a.*/g, '').replace(/§#....../gm, '').split(' ')[0] + const message = raw.split('\u203a ').slice(1).join(' ').substring(2) + bot.emit('chat', username, message) + } else if (raw.match(/.* .*\u00BB .*/g)) { + const username = raw.replace(/.*?\[.*?\] /g, '').replace(/\u00BB.*/g, '').replace(/§#....../gm, '').split(' ')[0] + const message = raw.split('\u00BB ').slice(1).join(' ') + bot.emit('chat', username, message) + } + // } else if (raw.match(/.* .*> .*/g)) { + // const username = raw.replace(/.*?\[.*?\] /g, '').replace(/>.*/g, '').replace(/§#....../gm, '').split(' ')[0] + // const message = raw.split('> ').slice(1).join(' ').substring(2) + // bot.emit('chat', username, message) + // } else if (raw.match(/<.*> .*/g)) { + // const username = raw.substring(1).split('>')[0] + // const message = raw.split('> ').slice(1).join(' ') + // + // bot.emit('chat', username, message) + // } else if (raw.match(/§.*§b: §b\/.*/g)) { + // const username = raw.split('§b: §b')[0] + // const command = raw.split('§b: §b')[1] + + // bot.emit('cspy', username, command) + // } else if (raw.match(/§.*§e: §e\/.*/g)) { + // const username = raw.split('§e: §e')[0] + // const command = raw.split('§e: §e')[1] + // bot.emit('cspy', username, command) + // } else if (raw.match(/§.*§b: \/.*/g)) { + // const username = raw.split('§b: ')[0] + // const command = raw.split('§b: ')[1] + + // bot.emit('cspy', username, command) + // } else if (raw.match(/§.*§e: \/.*/g)) { + // const username = raw.split('§e: ')[0] + // const command = raw.split('§e: ')[1] + // bot.emit('cspy', username, command) + // } + } catch (e) {} +}; + +module.exports = { chatPacketListener, parsePlayerMessages } diff --git a/ChomensJS/util/clamp.js b/ChomensJS/util/clamp.js new file mode 100644 index 0000000..809bd3d --- /dev/null +++ b/ChomensJS/util/clamp.js @@ -0,0 +1,6 @@ +function clamp (value, min, max) { + if (value < min) return min + return Math.min(value, max) +} + +module.exports = clamp diff --git a/ChomensJS/util/colors/minecraft.js b/ChomensJS/util/colors/minecraft.js new file mode 100644 index 0000000..57ecfd4 --- /dev/null +++ b/ChomensJS/util/colors/minecraft.js @@ -0,0 +1,23 @@ + +const styles = { + bigint: '\xa76', + boolean: '\xa76', + date: '\xa75', + module: '\xa7n', + name: undefined, + null: '\xa7l', + number: '\xa76', + regexp: '\xa74', + special: '\xa73', + string: '\xa72', + symbol: '\xa72', + undefined: '\xa78' +} + +function stylize (str, styleType) { + const style = styles[styleType] + if (style !== undefined) return `${style}${str}\xa7r` + return str +} + +module.exports = { stylize, styles } diff --git a/ChomensJS/util/containsIllegalCharacters.js b/ChomensJS/util/containsIllegalCharacters.js new file mode 100644 index 0000000..379e595 --- /dev/null +++ b/ChomensJS/util/containsIllegalCharacters.js @@ -0,0 +1,18 @@ +/** + * character allowed in mc chat + * @param {String} character the character + * @return {boolean} allowed + */ +function isAllowedCharacter (character) { + return character !== '\xa7' && character !== '\x7f' +} +/** + * mc chat check if contains illegal chars. + * @param {String} string the string + * @return {boolean} if contains then true else false + */ +function containsIllegalCharacters (string) { + for (let i = 0; i < string.length; i++) if (!isAllowedCharacter(string[i])) return true +} + +module.exports = { containsIllegalCharacters, isAllowedCharacter } diff --git a/ChomensJS/util/escapeMarkdown.js b/ChomensJS/util/escapeMarkdown.js new file mode 100644 index 0000000..5bdc88f --- /dev/null +++ b/ChomensJS/util/escapeMarkdown.js @@ -0,0 +1,22 @@ +/** + * escape markdown so on discord it will be \_ChipMC\_ instead of _ChipMC_ + * @param {String} text + * @param {Boolean} zwsp + * @return {String} + */ +function escapeMarkdown (text, zwsp) { + let unescaped + let escaped + try { + unescaped = text.replace(/\\(\*|@|_|`|~|\\)/g, '$1') + escaped = unescaped.replace(/(\*|@|_|`|~|\\)/g, zwsp + ? '\u200b\u200b$1' + : '\\$1' + ) + } catch (e) { + return unescaped + } + return escaped +} + +module.exports = { escapeMarkdown } diff --git a/ChomensJS/util/file-exists.js b/ChomensJS/util/file-exists.js new file mode 100644 index 0000000..ddf102e --- /dev/null +++ b/ChomensJS/util/file-exists.js @@ -0,0 +1,19 @@ +const fs = require('fs/promises') + +/** + * check if file exists + * @param {String} filepath the file path + * @return {boolean} if file exists true else false + */ +async function fileExists (filepath) { + try { + await fs.access(filepath) + return true + } catch (error) { + if (error.code !== 'ENOENT') throw error + + return false + } +} + +module.exports = fileExists diff --git a/ChomensJS/util/file-list.js b/ChomensJS/util/file-list.js new file mode 100644 index 0000000..6bba885 --- /dev/null +++ b/ChomensJS/util/file-list.js @@ -0,0 +1,18 @@ +const fs = require('fs/promises') + +/** + * just list the files + * @param {String} filepath file path + * @return {Array} component. + */ +async function list (filepath = '.') { + const files = await fs.readdir(filepath) + + const component = [] + for (const filename of files) { + component.push(filename) + } + return component +} + +module.exports = list diff --git a/ChomensJS/util/getFilenameFromUrl.js b/ChomensJS/util/getFilenameFromUrl.js new file mode 100644 index 0000000..0d3ea40 --- /dev/null +++ b/ChomensJS/util/getFilenameFromUrl.js @@ -0,0 +1,14 @@ +const path = require('path') +/** + * get filename from url + * @param {string} urlStr the url + * @return {string} filename + * @example + * getFilenameFromUrl('https://sus.red/amogus.mid?verysus=true') // returns 'amogus.mid' + */ +function getFilenameFromUrl (urlStr) { + const url = new URL(urlStr) + return path.basename(url.pathname) +} + +module.exports = getFilenameFromUrl diff --git a/ChomensJS/util/image.js b/ChomensJS/util/image.js new file mode 100644 index 0000000..4a17c22 --- /dev/null +++ b/ChomensJS/util/image.js @@ -0,0 +1,27 @@ +/** + * resize image. + * @param {number} width width + * @param {number} height height + * @return {object} width and height + */ +function resize (width, height) { + const aspectRatio = width / height + + let optimalWidth = Math.round(aspectRatio * 20 * (27 / 3)) + let optimalHeight = 20 + + if (optimalWidth > 320) { + const reduction = optimalWidth / 320 + + optimalWidth = 320 + + optimalHeight *= reduction + } + + return { + width: Math.floor(optimalWidth), + height: Math.floor(optimalHeight) + } +} + +module.exports = { resize } diff --git a/ChomensJS/util/loadPlugins.js b/ChomensJS/util/loadPlugins.js new file mode 100644 index 0000000..71896f2 --- /dev/null +++ b/ChomensJS/util/loadPlugins.js @@ -0,0 +1,33 @@ +const fs = require('fs/promises') +const util = require('util') +const path = require('path') + +/** + * load plugins + * @param {object} bot the bot object + * @param {object} dcclient discord client + * @param {object} config the config + * @param {object} rl readline + * @param {object} target proxy target + * @param {object} client proxy client + * @param {boolean} proxy is proxy + * @param {array} clientPacketBlacklist the client packet blacklist + * @param {array} targetPacketBlacklist target packet blacklist +*/ +async function loadPlugins (bot, dcclient, config, rl, target, client, proxy, clientPacketBlacklist, targetPacketBlacklist) { + const dir = path.join(__dirname, '..', 'plugins', proxy ? 'proxy' : '') + const plugins = await fs.readdir(dir) + plugins.forEach((plugin) => { + if (!plugin.endsWith('.js')) return + try { + const plug = require(path.join(dir, plugin)) + if (!proxy) plug.inject(bot, dcclient, config, rl) + else plug.inject(bot, client, target, config, clientPacketBlacklist, targetPacketBlacklist) + } catch (e) { + console.log(`Plugin ${plugin} is having exception loading the plugin:`) + console.log(util.inspect(e)) + } + }) +}; + +module.exports = { loadPlugins } diff --git a/ChomensJS/util/load_files.js b/ChomensJS/util/load_files.js new file mode 100644 index 0000000..bbe0dc1 --- /dev/null +++ b/ChomensJS/util/load_files.js @@ -0,0 +1,25 @@ +const fs = require('fs/promises') +const path = require('path') + +/** + * loads js files + * @param {string} directory the directory that contains the js files + * @return {Array} an array of require()ed js files + */ +async function loadPlugins (directory) { + const plugins = [] + + for (const filename of await fs.readdir(directory)) { + if (!filename.endsWith('.js')) continue + + const filepath = path.join(directory, filename) + + const plugin = require(filepath) + + plugins.push(plugin) + } + + return plugins +} + +module.exports = loadPlugins diff --git a/ChomensJS/util/midi_converter/convert_note.js b/ChomensJS/util/midi_converter/convert_note.js new file mode 100644 index 0000000..dce7838 --- /dev/null +++ b/ChomensJS/util/midi_converter/convert_note.js @@ -0,0 +1,39 @@ +const instrumentMap = require('./instrument_map.js') +const percussionMap = require('./percussion_map.js') + +function convertNote (track, note) { + let instrument = null + + const instrumentList = instrumentMap[track.instrument.number] + if (instrumentList != null) { + for (const candidateInstrument of instrumentList) { + if (note.midi >= candidateInstrument.offset && note.midi <= candidateInstrument.offset + 24) { + instrument = candidateInstrument + break + } + } + } + + if (instrument == null) return null + + const pitch = note.midi - instrument.offset + const time = Math.floor(note.time * 1000) + + return { time, instrument: instrument.name, pitch, volume: note.velocity } +} + +function convertPercussionNote (track, note) { + if (note.midi < percussionMap.length) { + const mapEntry = percussionMap[note.midi] + if (mapEntry == null) return + + const { pitch, instrument } = mapEntry + const time = Math.floor(note.time * 1000) + + return { time, instrument: instrument.name, pitch, volume: note.velocity } + } + + return null +} + +module.exports = { convertNote, convertPercussionNote } diff --git a/ChomensJS/util/midi_converter/instrument_map.js b/ChomensJS/util/midi_converter/instrument_map.js new file mode 100644 index 0000000..8fbc770 --- /dev/null +++ b/ChomensJS/util/midi_converter/instrument_map.js @@ -0,0 +1,153 @@ +const instruments = require('./instruments.json') + +module.exports = [ + // Piano (harp bass bell) + [instruments.harp, instruments.bass, instruments.bell], // Acoustic Grand Piano + [instruments.harp, instruments.bass, instruments.bell], // Bright Acoustic Piano + [instruments.bit, instruments.didgeridoo, instruments.bell], // Electric Grand Piano + [instruments.harp, instruments.bass, instruments.bell], // Honky-tonk Piano + [instruments.bit, instruments.didgeridoo, instruments.bell], // Electric Piano 1 + [instruments.bit, instruments.didgeridoo, instruments.bell], // Electric Piano 2 + [instruments.harp, instruments.bass, instruments.bell], // Harpsichord + [instruments.harp, instruments.bass, instruments.bell], // Clavinet + + // Chromatic Percussion (iron_xylophone xylophone bass) + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], // Celesta + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], // Glockenspiel + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], // Music Box + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], // Vibraphone + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], // Marimba + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], // Xylophone + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], // Tubular Bells + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], // Dulcimer + + // Organ (bit didgeridoo bell) + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Drawbar Organ + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Percussive Organ + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Rock Organ + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Church Organ + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Reed Organ + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Accordian + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Harmonica + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Tango Accordian + + // Guitar (bit didgeridoo bell) + [instruments.guitar, instruments.harp, instruments.bass, instruments.bell], // Acoustic Guitar (nylon) + [instruments.guitar, instruments.harp, instruments.bass, instruments.bell], // Acoustic Guitar (steel) + [instruments.guitar, instruments.harp, instruments.bass, instruments.bell], // Electric Guitar (jazz) + [instruments.guitar, instruments.harp, instruments.bass, instruments.bell], // Electric Guitar (clean) + [instruments.guitar, instruments.harp, instruments.bass, instruments.bell], // Electric Guitar (muted) + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Overdriven Guitar + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Distortion Guitar + [instruments.guitar, instruments.harp, instruments.bass, instruments.bell], // Guitar Harmonics + + // Bass + [instruments.bass, instruments.harp, instruments.bell], // Acoustic Bass + [instruments.bass, instruments.harp, instruments.bell], // Electric Bass (finger) + [instruments.bass, instruments.harp, instruments.bell], // Electric Bass (pick) + [instruments.bass, instruments.harp, instruments.bell], // Fretless Bass + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Slap Bass 1 + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Slap Bass 2 + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Synth Bass 1 + [instruments.didgeridoo, instruments.bit, instruments.xylophone], // Synth Bass 2 + + // Strings + [instruments.flute, instruments.guitar, instruments.bass, instruments.bell], // Violin + [instruments.flute, instruments.guitar, instruments.bass, instruments.bell], // Viola + [instruments.flute, instruments.guitar, instruments.bass, instruments.bell], // Cello + [instruments.flute, instruments.guitar, instruments.bass, instruments.bell], // Contrabass + [instruments.bit, instruments.didgeridoo, instruments.bell], // Tremolo Strings + [instruments.harp, instruments.bass, instruments.bell], // Pizzicato Strings + [instruments.harp, instruments.bass, instruments.chime], // Orchestral Harp + [instruments.harp, instruments.bass, instruments.bell], // Timpani + + // Ensenble + [instruments.harp, instruments.bass, instruments.bell], // String Ensemble 1 + [instruments.harp, instruments.bass, instruments.bell], // String Ensemble 2 + [instruments.harp, instruments.bass, instruments.bell], // Synth Strings 1 + [instruments.harp, instruments.bass, instruments.bell], // Synth Strings 2 + [instruments.harp, instruments.bass, instruments.bell], // Choir Aahs + [instruments.harp, instruments.bass, instruments.bell], // Voice Oohs + [instruments.harp, instruments.bass, instruments.bell], // Synth Choir + [instruments.harp, instruments.bass, instruments.bell], // Orchestra Hit + + // Brass + [instruments.bit, instruments.didgeridoo, instruments.bell], + [instruments.bit, instruments.didgeridoo, instruments.bell], + [instruments.bit, instruments.didgeridoo, instruments.bell], + [instruments.bit, instruments.didgeridoo, instruments.bell], + [instruments.bit, instruments.didgeridoo, instruments.bell], + [instruments.bit, instruments.didgeridoo, instruments.bell], + [instruments.bit, instruments.didgeridoo, instruments.bell], + [instruments.bit, instruments.didgeridoo, instruments.bell], + + // Reed + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + + // Pipe + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + [instruments.flute, instruments.didgeridoo, instruments.iron_xylophone, instruments.bell], + + // Synth Lead + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + + // Synth Pad + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + + // Synth Effects + null, + null, + [instruments.bit, instruments.didgeridoo, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + [instruments.harp, instruments.bass, instruments.bell], + + // Ethnic + [instruments.banjo, instruments.bass, instruments.bell], + [instruments.banjo, instruments.bass, instruments.bell], + [instruments.banjo, instruments.bass, instruments.bell], + [instruments.banjo, instruments.bass, instruments.bell], + [instruments.banjo, instruments.bass, instruments.bell], + [instruments.harp, instruments.didgeridoo, instruments.bell], + [instruments.harp, instruments.didgeridoo, instruments.bell], + [instruments.harp, instruments.didgeridoo, instruments.bell], + + // Percussive + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], + [instruments.iron_xylophone, instruments.bass, instruments.xylophone], + [instruments.iron_xylophone, instruments.bass, instruments.xylophone] +] diff --git a/ChomensJS/util/midi_converter/instruments.json b/ChomensJS/util/midi_converter/instruments.json new file mode 100644 index 0000000..3171a9a --- /dev/null +++ b/ChomensJS/util/midi_converter/instruments.json @@ -0,0 +1,82 @@ +{ + "harp": { + "id": 0, + "name": "harp", + "offset": 54 + }, + "basedrum": { + "id": 1, + "name": "basedrum", + "offset": 0 + }, + "snare": { + "id": 2, + "name": "snare", + "offset": 0 + }, + "hat": { + "id": 3, + "name": "hat", + "offset": 0 + }, + "bass": { + "id": 4, + "name": "bass", + "offset": 30 + }, + "flute": { + "id": 5, + "name": "flute", + "offset": 66 + }, + "bell": { + "id": 6, + "name": "bell", + "offset": 78 + }, + "guitar": { + "id": 7, + "name": "guitar", + "offset": 42 + }, + "chime": { + "id": 8, + "name": "chime", + "offset": 78 + }, + "xylophone": { + "id": 9, + "name": "xylophone", + "offset": 78 + }, + "iron_xylophone": { + "id": 10, + "name": "iron_xylophone", + "offset": 54 + }, + "cow_bell": { + "id": 11, + "name": "cow_bell", + "offset": 66 + }, + "didgeridoo": { + "id": 12, + "name": "didgeridoo", + "offset": 30 + }, + "bit": { + "id": 13, + "name": "bit", + "offset": 54 + }, + "banjo": { + "id": 14, + "name": "banjo", + "offset": 54 + }, + "pling": { + "id": 15, + "name": "pling", + "offset": 54 + } +} \ No newline at end of file diff --git a/ChomensJS/util/midi_converter/main.js b/ChomensJS/util/midi_converter/main.js new file mode 100644 index 0000000..fe0000a --- /dev/null +++ b/ChomensJS/util/midi_converter/main.js @@ -0,0 +1,37 @@ + +const { Midi } = require('@tonejs/midi') +const { convertNote, convertPercussionNote } = require('./convert_note.js') + +function convertMidi (midi) { + if (!(midi instanceof Midi)) throw new TypeError('midi must be an instance of require(\'@tonejs/midi\').Midi') + + let noteList = [] + for (const track of midi.tracks) { + for (const note of track.notes) { + const mcNote = (track.instrument.percussion ? convertPercussionNote : convertNote)(track, note) + if (mcNote != null) { + noteList.push(mcNote) + } + } + } + + noteList = noteList.sort((a, b) => a.time - b.time) + + // It might be better to move some of this code to the converting loop (for performance reasons) + let maxVolume = 0.001 + for (const note of noteList) { + if (note.volume > maxVolume) maxVolume = note.volume + } + for (const note of noteList) { + note.volume /= maxVolume + } + + let songLength = 0 + for (const note of noteList) { + if (note.time > songLength) songLength = note.time + } + + return { name: midi.header.name, notes: noteList, loop: false, loopPosition: 0, length: songLength } +} + +module.exports = { convertMidi, convertNote, convertPercussionNote } diff --git a/ChomensJS/util/midi_converter/package.json b/ChomensJS/util/midi_converter/package.json new file mode 100644 index 0000000..a603764 --- /dev/null +++ b/ChomensJS/util/midi_converter/package.json @@ -0,0 +1,3 @@ +{ + "main": "main.js" +} \ No newline at end of file diff --git a/ChomensJS/util/midi_converter/percussion_map.js b/ChomensJS/util/midi_converter/percussion_map.js new file mode 100644 index 0000000..5cdd796 --- /dev/null +++ b/ChomensJS/util/midi_converter/percussion_map.js @@ -0,0 +1,58 @@ +const instruments = require('./instruments.json') + +module.exports = [ + ...new Array(35).fill(null), // offset + { pitch: 10, instrument: instruments.basedrum }, + { pitch: 6, instrument: instruments.basedrum }, + { pitch: 6, instrument: instruments.hat }, + { pitch: 8, instrument: instruments.snare }, + { pitch: 6, instrument: instruments.hat }, + { pitch: 4, instrument: instruments.snare }, + { pitch: 6, instrument: instruments.basedrum }, + { pitch: 22, instrument: instruments.snare }, + { pitch: 13, instrument: instruments.basedrum }, + { pitch: 22, instrument: instruments.snare }, + { pitch: 15, instrument: instruments.basedrum }, + { pitch: 18, instrument: instruments.snare }, + { pitch: 20, instrument: instruments.basedrum }, + { pitch: 23, instrument: instruments.basedrum }, + { pitch: 17, instrument: instruments.snare }, + { pitch: 23, instrument: instruments.basedrum }, + { pitch: 24, instrument: instruments.snare }, + { pitch: 8, instrument: instruments.snare }, + { pitch: 13, instrument: instruments.snare }, + { pitch: 18, instrument: instruments.hat }, + { pitch: 18, instrument: instruments.snare }, + { pitch: 1, instrument: instruments.hat }, + { pitch: 13, instrument: instruments.snare }, + { pitch: 2, instrument: instruments.hat }, + { pitch: 13, instrument: instruments.snare }, + { pitch: 9, instrument: instruments.hat }, + { pitch: 2, instrument: instruments.hat }, + { pitch: 8, instrument: instruments.hat }, + { pitch: 22, instrument: instruments.basedrum }, + { pitch: 15, instrument: instruments.basedrum }, + { pitch: 13, instrument: instruments.snare }, + { pitch: 8, instrument: instruments.snare }, + { pitch: 8, instrument: instruments.hat }, + { pitch: 3, instrument: instruments.hat }, + { pitch: 20, instrument: instruments.hat }, + { pitch: 23, instrument: instruments.hat }, + { pitch: 24, instrument: instruments.hat }, + { pitch: 24, instrument: instruments.hat }, + { pitch: 17, instrument: instruments.hat }, + { pitch: 11, instrument: instruments.hat }, + { pitch: 18, instrument: instruments.hat }, + { pitch: 9, instrument: instruments.hat }, + { pitch: 5, instrument: instruments.hat }, + { pitch: 22, instrument: instruments.hat }, + { pitch: 19, instrument: instruments.snare }, + { pitch: 17, instrument: instruments.hat }, + { pitch: 22, instrument: instruments.hat }, + { pitch: 22, instrument: instruments.snare }, + { pitch: 24, instrument: instruments.chime }, + { pitch: 24, instrument: instruments.chime }, + { pitch: 21, instrument: instruments.hat }, + { pitch: 14, instrument: instruments.basedrum }, + { pitch: 7, instrument: instruments.basedrum } +] diff --git a/ChomensJS/util/minecraftVersionToNumber.js b/ChomensJS/util/minecraftVersionToNumber.js new file mode 100644 index 0000000..50184be --- /dev/null +++ b/ChomensJS/util/minecraftVersionToNumber.js @@ -0,0 +1,13 @@ +/** + * converts minecraft version to number (for example '1.19.2' will be 1.19) + * @param {String} version + * @return {Number} decimal number of the version you specified + */ +function minecraftVersionToNumber (version) { + const versionArray = version.split('.') + if (versionArray.length === 2) return Number(version) + versionArray.pop() + return Number(versionArray.join('.')) +} + +module.exports = minecraftVersionToNumber diff --git a/ChomensJS/util/nbs_converter.js b/ChomensJS/util/nbs_converter.js new file mode 100644 index 0000000..ed174b6 --- /dev/null +++ b/ChomensJS/util/nbs_converter.js @@ -0,0 +1,65 @@ +const nbs = require('./nbs_file') +const instrumentNames = [ + 'harp', + 'bass', + 'basedrum', + 'snare', + 'hat', + 'guitar', + 'flute', + 'bell', + 'chime', + 'xylophone', + 'iron_xylophone', + 'cow_bell', + 'didgeridoo', + 'bit', + 'banjo', + 'pling' +] + +function convertNBS (buf) { + const parsed = nbs.parse(buf) + const song = { + name: parsed.songName, + notes: [], + loop: false, + loopPosition: 0, + length: 0 + } + if (parsed.loop > 0) { + song.loop = true + song.loopPosition = parsed.loopStartTick + } + for (const note of parsed.nbsNotes) { + let instrument = note.instrument + if (note.instrument < instrumentNames.length) { + instrument = instrumentNames[note.instrument] + } else continue + + let key = note.key + + while (key < 33) key += 12; + while (key > 57) key -= 12; + + const layerVolume = 100 + // will add layer volume later + + const time = tickToMs(note.tick, parsed.tempo) + song.length = Math.max(song.length, time) + + song.notes.push({ + instrument, + pitch: key - 33, + volume: note.velocity * layerVolume / 10000, + time + }) + } + return song +} + +function tickToMs (tick = 1, tempo) { + return Math.floor(1000 * tick * 100 / tempo) +} + +module.exports = convertNBS diff --git a/ChomensJS/util/nbs_file.js b/ChomensJS/util/nbs_file.js new file mode 100644 index 0000000..0cb6336 --- /dev/null +++ b/ChomensJS/util/nbs_file.js @@ -0,0 +1,157 @@ +function parse (buffer) { + let i = 0 + + let songLength = 0 + let format = 0 + let vanillaInstrumentCount = 0 + songLength = readShort() + if (songLength === 0) { + format = readByte() + } + + if (format >= 1) { + vanillaInstrumentCount = readByte() + } + if (format >= 3) { + songLength = readShort() + } + + const layerCount = readShort() + const songName = readString() + const songAuthor = readString() + const songOriginalAuthor = readString() + const songDescription = readString() + const tempo = readShort() + const autoSaving = readByte() + const autoSavingDuration = readByte() + const timeSignature = readByte() + const minutesSpent = readInt() + const leftClicks = readInt() + const rightClicks = readInt() + const blocksAdded = readInt() + const blocksRemoved = readInt() + const origFileName = readString() + + let loop = 0 + let maxLoopCount = 0 + let loopStartTick = 0 + if (format >= 4) { + loop = readByte() + maxLoopCount = readByte() + loopStartTick = readShort() + } + + const nbsNotes = [] + let tick = -1 + while (true) { + const tickJumps = readShort() + if (tickJumps === 0) break + tick += tickJumps + + let layer = -1 + while (true) { + const layerJumps = readShort() + if (layerJumps === 0) break + layer += layerJumps + const note = nbsNote() + note.tick = tick + note.layer = layer + note.instrument = readByte() + note.key = readByte() + if (format >= 4) { + note.velocity = readByte() + note.panning = readByte() + note.pitch = readShort() + } + nbsNotes.push(note) + } + } + + const nbsLayers = [] + if (i <= buffer.length) { + for (let j = 0; j < layerCount; j++) { + const layer = nbsLayer() + layer.name = readString() + if (format >= 4) { + layer.lock = readByte() + } + layer.volume = readByte() + if (format >= 2) { + layer.stereo = readByte() + } + nbsLayers.push(layer) + } + } + + return { + songLength, + format, + vanillaInstrumentCount, + layerCount, + songName, + songAuthor, + songOriginalAuthor, + songDescription, + tempo, + autoSaving, + autoSavingDuration, + timeSignature, + minutesSpent, + leftClicks, + rightClicks, + blocksAdded, + blocksRemoved, + origFileName, + loop, + maxLoopCount, + loopStartTick, + nbsNotes, + nbsLayers + } + + function readByte () { + return buffer.readInt8(i++) + } + + function readShort () { + const short = buffer.readInt16LE(i) + i += 2 + return short + } + + function readInt () { + const int = buffer.readInt32LE(i) + i += 4 + return int + } + + function readString () { + let length = readInt() + let string = '' + for (; length > 0; length--) string += String.fromCharCode(readByte()) + return string + } +} + +function nbsNote () { + return { + tick: null, + layer: null, + instrument: null, + key: null, + velocity: 100, + panning: 100, + pitch: 0 + } +} + +function nbsLayer () { + return { + name: null, + lock: 0, + volume: null, + stereo: 100 + } +} + +module.exports = { parse, nbsNote, nbsLayer } diff --git a/ChomensJS/util/txt_song_parser.js b/ChomensJS/util/txt_song_parser.js new file mode 100644 index 0000000..6459c15 --- /dev/null +++ b/ChomensJS/util/txt_song_parser.js @@ -0,0 +1,15 @@ +const { instrumentsArray } = require('minecraft-data')('1.15.2') // chip hardcoding moment + +function parseTXTSong (data) { + let length = 0 + const notes = String(data).split(/\r\n|\r|\n/).map(line => { + const [tick, pitch, instrument] = line.split(':').map(Number) + if (tick === undefined || pitch === undefined || instrument === undefined) return undefined + const time = tick * 50 + length = Math.max(length, time) + return { time, pitch, instrument: instrumentsArray[instrument].name, volume: 1 } + }).filter(note => note !== undefined) + return { name: '', notes, loop: false, loopPosition: 0, length } +} + +module.exports = parseTXTSong diff --git a/CommandModules/command_error.js b/CommandModules/command_error.js new file mode 100644 index 0000000..a71fe8f --- /dev/null +++ b/CommandModules/command_error.js @@ -0,0 +1,17 @@ +// TODO: Improve how messages are stringified +const ChatMessage = require('prismarine-chat')('1.20.2') +const stringify = message => new ChatMessage(message).toString() + +class CommandError extends Error { + constructor (message, filename, lineError) { + super(stringify(message), filename, lineError) + this.name = 'CommandError' + this._message = message + + } + + get message () { + return stringify(this._message) + } +} +module.exports = CommandError diff --git a/CommandModules/command_source.js b/CommandModules/command_source.js new file mode 100644 index 0000000..097fb73 --- /dev/null +++ b/CommandModules/command_source.js @@ -0,0 +1,17 @@ +class CommandSource { + constructor (player, sources, hash, owner = false, discordMessageEvent = null) { + this.player = player + this.sources = sources + this.hash = hash + this.owner = owner + this.discordMessageEvent = discordMessageEvent + } + + sendFeedback () {} + + sendError (message) { + this.sendFeedback([{ text: '', color: 'dark_red' }, message], false) + } +} + +module.exports = CommandSource diff --git a/README.md b/README.md new file mode 100644 index 0000000..770e9a3 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# FNFBoyfriendBot-V4.0 diff --git a/bot.js b/bot.js new file mode 100644 index 0000000..16f8241 --- /dev/null +++ b/bot.js @@ -0,0 +1,72 @@ +const mc = require('minecraft-protocol') +const { EventEmitter } = require('events') +const fs = require('fs') +const path = require('path') + +// "buildstring":"FNFBoyfriendBotX V4.0.8a Build:97", + //"FoundationBuildString":"Ultimate Foundation V1.0.1 Build:31", +function createBot(options = {}) { + const bot = new EventEmitter() +const rs = require('randomstring') + // Set some default values in options + let r = Math.floor(Math.random() * 255) + 1; + options.host ??= 'localhost' + options.username ??= username() + options.hideErrors ??= false // HACK: Hide errors by default as a lazy fix to console being spammed with them + + bot.options = options + + // Create our client object, put it on the bot, and register some events + bot.on('init_client', client => { + client.on('packet', (data, meta) => { + bot.emit('packet', data, meta) + bot.emit('packet.' + meta.name, data) + }) + + client.on('login', () => { + bot.uuid = client.uuid + bot.username = client.username + }) + + client.on('end', reason => bot.emit('end', reason)) + + client.on('error', error => bot.emit('error', error)) + + }) + +const buildstring = process.env['buildstring'] + + const client = options.client ?? mc.createClient(options) + bot._client = client + bot.emit('init_client', client) + + bot.bots = options.bots ?? [bot] + + // Modules + bot.loadModule = module => module(bot, options) + + for (const filename of fs.readdirSync(path.join(__dirname, 'modules'))) { + try { + const module = require(path.join(__dirname, 'modules', filename)) + bot.loadModule(module) + } catch (error) { + console.error('Failed to load module', filename, ':', error) + + } + } + + return bot +} + +// ABot username function mabe mabe +function username() { + const characters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'; // remove sus characters like ` or like ( or whatever because it breaks whatever + let username = ''; + for (let i = 0; i < 8; i++) { + const randomIndex = Math.floor(Math.random() * characters.length); + username += characters[randomIndex]; + } + return username; +} + +module.exports = createBot diff --git a/chat/chipmunkmod.js b/chat/chipmunkmod.js new file mode 100644 index 0000000..d64ca89 --- /dev/null +++ b/chat/chipmunkmod.js @@ -0,0 +1,30 @@ +function parseMessage (message, data, context) { + if (message === null || typeof message !== 'object') return + + if (message.with?.length < 3 || (message.translate !== '[%s] %s › %s' && message.translate !== '%s %s › %s')) return + + const senderComponent = message.with[1] + // wtf spam again - console.log(senderComponent)//wtf... + + + const contents = message.with[2] +// spam lol - console.log(contents) + let sender + + const hoverEvent = senderComponent.hoverEvent + if (hoverEvent?.action === 'show_entity') { + const id = hoverEvent.contents.id +// + sender = data.players.find(player => player.uuid === id) + } else { + const stringUsername = data.getMessageAsPrismarine(senderComponent).toString() // TypeError: data.getMessageAsPrismarine is not a function + + sender = data.players.find(player => player.profile.name) //=== stringusername) + } + + if (!sender) return undefined + + return { sender, contents, type: 'minecraft:chat', senderComponent } +} + +module.exports = parseMessage diff --git a/chat/chipmunkmodBlackilyKatVer.js b/chat/chipmunkmodBlackilyKatVer.js new file mode 100644 index 0000000..96d64a7 --- /dev/null +++ b/chat/chipmunkmodBlackilyKatVer.js @@ -0,0 +1,27 @@ +function parseMessage (message, data) { + if (message === null || typeof message !== 'object') return + + if (message.with?.length < 4 || (message.translate !== '[%s%s] %s › %s', message.color !== '#55FFFF' && message.translate !== '%s%s %s › %s', message.color !== '#55FFFF')) return + + const senderComponent = message.with[1] + const contents = message.with[3] + + let sender + + const hoverEvent = senderComponent.hoverEvent + if (hoverEvent?.action === 'show_entity') { + const id = hoverEvent.contents.id +// + sender = data.players.find(player => player.uuid === id) + } else { + const stringUsername = data.getMessageAsPrismarine(senderComponent).toString() // TypeError: data.getMessageAsPrismarine is not a function + + sender = data.players.find(player => player.profile.name) //=== stringusername) + } + + if (!sender) return undefined + + return { sender, contents, type: 'minecraft:chat', senderComponent } +} + +module.exports = parseMessage diff --git a/chat/kaboom.js b/chat/kaboom.js new file mode 100644 index 0000000..880b5bf --- /dev/null +++ b/chat/kaboom.js @@ -0,0 +1,41 @@ +const util = require('util') + +function parseMessage (message, data) { + if (message === null || typeof message !== 'object') return + + if (message.text !== '' || !Array.isArray(message.extra) || message.extra.length < 3) return + + const children = message.extra + + const prefix = children[0] + let displayName = data.senderName ?? { text: '' } + let contents = { text: '' } + + if (isSeparatorAt(children, 1)) { // Missing/blank display name + if (children.length > 3) contents = children[3] + } else if (isSeparatorAt(children, 2)) { + displayName = children[1] + if (children.length > 4) contents = children[4] + } else { + return undefined + } + + const playerListDisplayName = { extra: [prefix, displayName], text: '' } + let sender + if (data.uuid) { + sender = data.players.find(player => player.uuid === data.senderUuid) + } else { + const playerListDisplayName = { extra: [prefix, displayName], text: '' } + sender = data.players.find(player => util.isDeepStrictEqual(player.displayName, playerListDisplayName)) + } + + if (!sender) return undefined + + return { sender, contents, type: 'minecraft:chat', displayName } +} + +function isSeparatorAt (children, start) { + return (children[start]?.text === ':' || children[start]?.text === '\xa7f:') && children[start + 1]?.text === ' ' +} + +module.exports = parseMessage diff --git a/commands/botdevhistory.js b/commands/botdevhistory.js new file mode 100644 index 0000000..20247bd --- /dev/null +++ b/commands/botdevhistory.js @@ -0,0 +1,13 @@ +const CommandError = require('../CommandModules/command_error') + +module.exports = { + name: 'botdevhistory', + description:['bots dev history'], + execute (context) { + + const message = context.arguments.join(' ') + const bot = context.bot +var prefix = '&8&l&m[&4&mParker2991&8]&8&m[&b&mBOYFRIEND&8]&8&m[&b&mCONSOLE&8]&r ' + bot.core.run('bcraw ' + prefix + 'Thank you for all that helped and contributed with the bot, it has been one hell of a ride with the bot hasnt it? From November 22, 2022 to now, 0.1 beta to 4.0 alpha, Mineflayer to Node-Minecraft-Protocol. I have enjoyed all the new people i have met throughout the development of the bot back to the days when the bot used mineflayer for most of its lifespan to the present as it now uses node-minecraft-protocol. Its about time for me to tell how development went in the bot well here it is, back in 0.1 beta of the bot it was skidded off of menbot 1.0 reason why? Well because LoginTimedout gave me the bot when ayunboom was still a thing and he helped throughout that time period bot and when 1.0 beta came around he he just stopped helping me on it why? because he had servers to run so yeah but anyway back then i didnt know what skidded like i do now so i thought i could get away with but i was wrong 💀. Early names considered for the bot were &6&lParkerBot &4&lDEMONBot &b&lWoomyBot &b&lBoyfriendBot,&r i kept the name &b&lBoyfriendBot&r throughout most of the early development but i got sick and tired of being harassed about the name being told it was gay but people really didnt know what it meant did they? It was referenced to Boyfriend from Friday Night Funkin’ so right around 1.0 released i renamed it to &b&lFNFBoyfriend&4&lBot &rand around 2.0 changed it to &5&lFNF&b&lBoyfriend&4&lBot &rand luckily avoided the harassment when i changed it i love coding and i want to learn how to code more thank you all!') + } +} diff --git a/commands/bots.js b/commands/bots.js new file mode 100644 index 0000000..5beb582 --- /dev/null +++ b/commands/bots.js @@ -0,0 +1,205 @@ + // TODO: Maybe add more authors +const bots = [ + { + name: { text: 'HBot', color: 'aqua', bold:false }, + authors: ['hhhzzzsss'], + exclaimer:'HBOT HARRYBUTT LMAOOOOOOOOOOOOOOOOO', + foundation: 'java/mcprotocollib', + prefixes: ['#'] + }, + { + name: { text: '64Bot', color: 'gold', bold:false }, + authors: ['64Will64'], + exclaimer:'NINTENDO 64?!?!??!?! 69Bot when??????', + foundation: 'NodeJS/Mineflayer', + prefixes: ['w='] + }, + { + name: [{ text: 'Evil', color: 'dark_red', bold:false }, {text:'Bot', color:'dark_purple'}], + authors: ['FusseligerDev'], + exclaimer:'', + foundation: 'Java/Custom', + prefixes: ['!'] + }, + { + name: { text: 'SBot Java', color: 'white', bold:false }, // TODO: Gradient + authors: ['evkc'], + foundation: 'Java/MCProtocolLib', + prefixes: [':'] + }, + { + name: { text: 'SBot Rust', color: 'white', bold:false}, // TODO: Gradient + authors: ['evkc'], + foundation: 'Rust', + prefixes: ['re:'] + }, + { + name: { text: 'Z-Boy-Bot', color: 'dark_purple', bold:false }, // TODO: Gradient + exclaimer: 'Most likely skidded along with kbot that the dev used', + authors: ['Romnci'], + foundation: 'NodeJS/mineflayer or Java/mcprotocollib idfk', + prefixes: ['Z]'] + }, + { + name: { text: 'ABot', color: 'gold', bold:true }, // TODO: Gradient + exclaimer: 'not used anymore (replaced by V2)', + authors: [{text: '_yfd', color: 'light_purple'}], + foundation: 'NodeJS/Node-Minecraft-Protocol', + prefixes: ['<'] + }, + { + name: { text: 'ABot-V2', color: 'gold', bold:true }, // TODO: Gradient + exclaimer: '', + authors: [{text: '_yfd', color: 'light_purple'}], + foundation: 'NodeJS/Node-Minecraft-Protocol', + prefixes: ['<'] + }, + { + name: { text: 'FardBot', color: 'light_purple', bold:false }, + authors: ['_yfd'], + exclaimer: 'bot is dead lol', + foundation: 'NodeJS/Mineflayer', + prefixes: ['<'] + }, + + { + name: { text: 'ChipmunkBot', color: 'green', bold:false }, + authors: ['_ChipMC_'], + exclaimer: 'chips? also shoutout to chip and chayapak for helping in the rewrite', + + foundation: 'Java/MCProtocolLib', + prefixes: ["'", "/'"] + }, + { + name: { text: 'ChipmunkBot Old', color: 'green', bold:false }, + authors: ['_ChipMC_'], + foundation: 'NodeJS/Node-Minecraft-Protocol', + + }, + { + name: { text: 'TestBot', color: 'aqua', bold:false }, + authors: ['Blackilykat'], + foundation: 'Java/MCProtocolLib', + prefixes: ["-"] + }, + { + name: { text: 'UBot', color: 'grey', bold:false }, + authors: ['HexWoman'], + exclaimer: 'UwU OwO', + + foundation: 'NodeJS/node-minecraft-protocol', + prefixes: ['"'] + }, + { + name: { text: 'ChomeNS Bot Java', color: 'yellow', bold:false}, + authors: ['chayapak'], + exclaimer: 'wow its my bot !! ! 4374621q43567%^&#%67868-- chayapak', + foundation: 'Java/MCProtocolLib', + prefixes: ['*', 'cbot ', '/cbot '] + }, + { + name: { text: 'ChomeNS Bot NodeJS', color: 'yellow', bold:false}, + authors: ['chayapak'], + + foundation: 'NodeJS/Node-Minecraft-Protocol', + prefixes: ['*', 'cbot', '/cbot'] + }, + { + name: { text: 'RecycleBot', color: 'dark_green', bold:false}, + foundation: ['MorganAnkan'], + exclaimer: 'nice bot', + language: 'NodeJS/node-minecraft-protocol', + prefixes: ['='] + }, + { + name: { text: 'ManBot', color: 'dark_green' , bold:false }, + exclaimer: '(more like men bot :skull:) OH HAAAAAAAAAAAAAAIIILL LOGINTIMEDOUT', + authors: ['Man/LogintimedOut'], + foundation: 'NodeJS/mineflayer', + prefixes: ['(Note:I dont remember!!)'] + }, + { + name: [{ text: 'Useless', color: 'red', bold:false}, { text: 'Bot', color: 'gray', bold:false}], + exclaimer: 'it isnt useless its a good bot................', + authors: ['IuCC'], + foundation: 'NodeJS/node-minecraft-protocol', + prefixes: ['['] + }, + { + name: [{ text: 'Blurry', color: 'dark_purple' , bold:false}, { text: 'Bot', color: 'red' }], + exclaimer: '', + authors: ['SirLennox'], + foundation: 'Java/custom', + prefixes: [','] + }, + { + name: [{ text: 'KittyCorp', color: 'yellow', bold:false }, { text: 'Bot', color: 'yellow' }], + exclaimer: '3 words ginlang is gay', + authors: ['ginlang , G6_, ArrayBuffer, and i guess more??'], + foundation: 'NodeJS/node-minecraft-protocol', + prefixes: ['^'] + }, + + { + name: [{ text:'FNF', color: 'dark_purple', bold: false}, {text:'Boyfriend', color: 'aqua', bold:false}, {text:'Bot', color:'dark_red', bold:false}, {text:' Node-Minecraft-Protocol', color:'black', bold:false}], + authors: [{ text:'Parker2991', color: 'dark_red'}, {text:' _ChipMC_', color: 'dark_green', bold:false}, {text:' chayapak', color:'yellow', bold:false}], + exclaimer: 'FNFBoyfriendBot NMP Rewrite', + foundation: 'NodeJS/node-minecraft-protocol', + prefixes: ['~'] + }, + { + name: [{ text:'FNF', color: 'dark_purple', bold: false}, {text:'Boyfriend', color: 'aqua', bold:false}, {text:'Bot', color:'dark_red', bold:false}, {text:' Mineflayer', color:'green', bold:false}], + authors: [{text:'Parker2991', color:'dark_red' }, {text:' _ChipMC_', color:'dark_green', bold:false }], + exclaimer:'1037 LINES OF CODE WTFARD!??! also this version is in console commands only' , + foundation: 'NodeJS/mineflayer', + prefixes: [] + } +] + +module.exports = { + name: 'bots', + description:['shows a list of known bots'], + execute (context) { + const query = context.arguments.join(' ').toLowerCase() + + if (query.length === 0) { + const list = [] + + for (const info of bots) { + if (list.length !== 0) list.push({ text: ', ', color: 'gray' }) + list.push(info.name) + } + + context.source.sendFeedback(['Known bots (', bots.length, ') - ', ...list], false) + return + } + + for (const info of bots) { + const plainName = String(context.bot.getMessageAsPrismarine(info.name)).toLowerCase() + if (plainName.includes(query)) this.sendBotInfo(info, context.bot) + } + }, + + sendBotInfo (info, bot) { + const component = [''] + component.push('Name: ', info.name) + if (info.exclaimer) component.push('\n', 'Exclaimer: ', info.exclaimer) + if (info.authors && info.authors.length !== 0) { + component.push('\n', 'Authors: ') + for (const author of info.authors) { + component.push(author, { text: ', ', color: 'gray' }) + } + component.pop() + } + if (info.foundation) component.push('\n', 'Foundation: ', info.foundation) + if (info.prefixes && info.prefixes.length !== 0) { + component.push('\n', 'Prefixes: ') + for (const prefix of info.prefixes) { + component.push(prefix, { text: ', ', color: 'gray' }) + } + component.pop() + } + bot.tellraw([component]) + } +}//it doing it just for the ones i added lol +// prob a replit moment, it probably thinks there are regexes in the strings diff --git a/commands/calculator.js b/commands/calculator.js new file mode 100644 index 0000000..6369e91 --- /dev/null +++ b/commands/calculator.js @@ -0,0 +1,72 @@ +const CommandError = require('../CommandModules/command_error') +module.exports = { + name: 'calculator', + description:['calculate maths'], + execute (context) { + const bot = context.bot + const args = context.arguments + const cmd = {//test.js + translate: '[%s] ', + bold: false, + color: 'white', + with: [ + { color: 'blue', text: 'Calculator Cmd'}, + ] + } +const operation = args[0] + const operator1 = parseFloat(args[1]) + const operator2 = parseFloat(args[2]) + + // + switch (operation) { + case 'add': + context.source.sendFeedback({ + translate: '[%s] %s is %s', + with: [ + {color: 'blue', text:'Calculator Cmd'}, + `${operator1} + ${operator2}`, + operator1 + operator2 + ] + }); + + break + case 'subtract': + context.source.sendFeedback({ + translate: `[%s] %s is %s`, + with: [ + { color: 'blue', text: 'Calculator Cmd'}, + `${operator1} - ${operator2}`, + operator1 - operator2 + ] + }); + + break + case 'multiply': + context.source.sendFeedback({ + translate: '[%s] %s is %s', + with: [ + { color: 'blue', text: 'Calculator Cmd'}, + `${operator1} x ${operator2}`, + operator1 * operator2 + ] + }); + + break + case 'divide': + context.source.sendFeedback({ + translate: '[%s] %s is %s', + with: [ + { color: 'blue', text: 'Calculator Cmd'}, + `${operator1} / ${operator2}`, + operator1 / operator2 + ] + + }); + + break + default: + context.source.sendError([cmd, { text: 'Invalid action', color: 'dark_red' }]) + } + } +} + diff --git a/commands/changelog.js b/commands/changelog.js new file mode 100644 index 0000000..6523b28 --- /dev/null +++ b/commands/changelog.js @@ -0,0 +1,372 @@ + +const bots = [ + { + name: { text: 'v0.1.0 - v0.5.0-beta', color: 'blue', bold:false }, + authors: ['Prototypes'], + + foundation: '11/22/22 - 1/24/23', + exclaimer:'ehh nothing much just the release of the betas', + }, + { + name: { text: 'v1.0.0-beta', color: 'blue', bold:false }, + authors: ['in console test'], + + foundation: '1/25/23', + exclaimer:'original commands:!cloop bcraw,!cloop sudo,!troll,!say,!op (broke),!deop (broke), !gms (broke),!freeze,!icu <--- these commands no longer can be used in game but in console for beta 1.0 commands added: fake kick,ban,kick,crashserver,stop,gmc,greetin,test(broken idk),bypass,entity spam ,gms ,stop,tntspam ,prefix ,annoy (broke results in a complete server crash keeping ayunboom down for 3 to 5 hours),freeze,crashserver,troll ,trol(more destructive),icu ,say,sudo,cloop', + }, + { + name: { text: 'v1.0.0', color: 'dark_red', bold:false }, + authors: ['FNFBoyfriendBot'], + + foundation: '1/26/23', + exclaimer:'FNFBoyfriendBot. commands added: BOOM,deop,troll and trol(added extra code to both commands),kaboom,serverdeop, commands fixed:tp,gms,annoy(attemps to crash the server but not as bad as it was) commands untested:prefix command Broke:icu,freeze,tntspam,entityspam,tntspam? changed name to &b &lFNFBoyfriendBot may change later idk', + }, + { + name: { text: 'v1.0.1', color: 'green', bold:false }, + authors: [''], + + foundation: '1/26/23', + exclaimer:'reworked the kaboom command and fixed the description commands but thats about it. also reworked the greeting command', + }, + { + name: { text: 'v1.1.0', color: 'green', bold:false }, + authors: [''], + + foundation: '1/26/23 2:00pm', + exclaimer:'nothing much just added extra stuff to the troll, trol and that is about it', + }, + { + name: { text: 'v1.2.0', color: 'green', bold:false }, + authors: [''], + + foundation: '1/28/23 1:51', + exclaimer:'for ppl me making me really mad -.- got released early', + }, +{ + name: { text: 'v2.0.0', color: 'dark_red', bold:false }, + authors: ['Major'], + + foundation: '2/07/23 8:01pm', + exclaimer:'added DREAMSTANALERT,technoblade,GODSWORD,KFC,MYLEG,OHHAIL,altcrash,MyHead Reworked tntspam,entityspam,soundbreaker added Spim to the whitelist of the bot released too early than it was planned gonna be released due do the code almost leaked it had to be released early', + }, + { + name: { text: 'v2.1.0', color: 'green', bold:false }, + authors: [''], + + foundation: '2/11/23 5:30pm', + exclaimer:'added: refillcore(had early prototypes of this was original), vanish,deop,cloopdeop,mute,cloopmute reworked: op (supposed to already op the bot but didnt work until this release) and reworked gmc (same problem with op) (had early prototypes of vanish,refillcore,gmc,and op but these were original gonna be automatic but after alot of attempts i said screw it and added 2 commands refillcore, and vanish reworked gmc and op and got them working finally) removed Spim because come to find out he couldnt be trusted', + }, + { + name: { text: 'v2.2.0', color: 'green', bold:false }, + authors: [''], + + foundation: '2/20/23', + exclaimer:'added ckill(added back after trial and error),serversuicidal changed username of the bot from hex code to FNFBoyfriendBot because hex code for the username was confusing as it changes everytime', + }, + { + name: { text: 'v3.0.0-Beta', color: 'blue', bold:false }, + authors: ['blue-balled corruption'], + + foundation: '', + exclaimer:'was canceled due to ayunboom being rewriten and renamed to creayun barely usable on there because commands blocks are disabled which i created a bot for that server that has no command blocks just finished the final build of the Creayun build of the bot due to chip announcing that he may make a kaboom clone yk what 1.5.2 and 1.8 support but anyway onto what is in the v3.0-beta well the beta for right now commands added:discord,version,online,list,iownyou,endmysuffering,wafflehouse,whopper,bcraw,destroycore Notes:the original say command was reworked into talking in chat without bcraw and command blocks which the bcraw chatting code is still in the bot but was reworked into the bcraw commmand. maybe some commands removed? i dont know yet edit there is 2 commands removed commands removed:tpe and serverdeop??? reworked commands :say command for right now relay chat mabe will be added as a seperate repl i dont know yet possible would need a whole code rewrite for relay chat', + }, + { + name: { text: 'v3.0.0', color: 'dark_red', bold:false }, + authors: ['Sky Remanifested'], + + foundation: '', + exclaimer:'the full release of 3.0 the rewrite has been pushed back to 4.0 due to 3.0 already pass its release date and the code i had on hand was done but the rewrite wasnt done Added: SelfCare Made during development:Relay chat prototypes for several servers', + }, + { + name: { text: 'v3.0.5', color: 'green', bold:false }, + authors: [''], + + foundation: '', + exclaimer:'bug fixes', + }, + { + name: { text: 'v3.0.9', color: 'green', bold:false }, + authors: [''], + + foundation: '', + exclaimer:'commands added:Help(finally added after about a year),consolelog(added cuz yes),cloopconsolelog(added cuz yes)', + }, + { + name: { text: 'v3.3.0', color: 'dark_red', bold:false }, + authors: [''], + + foundation: '', + exclaimer:'switched it base to 4.0s base during 4.0s development', + }, + { + name: { text: 'v4.0.0-beta', color: 'blue', bold:false }, + authors: ['FNFBoyfriendBot Ultimate'], + + foundation: '', + exclaimer:'all of the command removed and or rewriten from version 3.0.9 Commands added or rewriten:ban,buyrealminecraft,cloop,discord,echo,errortest,freeze,help,icu,info,kick,bots,skids,romncitrash,say,selfdestruct,serversuicidal,sudo,test,trol,troll (note that this is different and is not CommandModules)Modules Added:discord,chat,chat_command_handler,command_manager,position,registry,reconnect,command_core CustomChats added:kaboom(for normal chat) (note that this is different and is not Modules)CommandModules Added:command_error,Command_source a beta release for rn', + }, + { + name: { text: 'v4.0.0-Alpha ', color: 'aqua', bold:false }, + authors: ['FNFBoyfriendBot Ultimate'], + + foundation: '', + exclaimer:'Commands added: calculator,ckill,evaljs,urban,crash,cloopcrash,core,list,ping,netmsg,skin,tpr Commands Removed:Buyrealminecraft (note that this is different and is not CommandModules)Modules Added:op selfcare,gmc selfcare,vanish selfcare,cspy selfcare,console (note that this is different and is not Modules)CustomChats Added:u2O3a(for custom chat) added util with between(for urban) eval_colors(for evaljs)', + }, + { + name: { text: 'v4.0.0', color: 'dark_red', bold:false }, + authors: ['FNFBoyfriendBotX'], + + foundation: '8/11/23', + exclaimer:'Bot is finished with the rewrite thank you ChipMC and chayapak for helping me rewrite the bot Heres the commands ban (mabe removing), blacklist (currently being worked on), botdevhistory, bots, calculator, changelog, ckill, cloop, cloopcrash(probably removing), core, crash, creators, discord, echo, errortest, evaljs, freeze, help, icu, list, meminfo, mineflayerbot, netmsg (Hello World!), ping (pong!), reconnect, say, selfdestruct, serversuicidal (probably removing because theres ckill), skin, sudo, test, tpr, trol (mabe renaming it to troll), troll (mabe removing it and replacing it with the trol command), urban (ong sus asf), validate, version', + }, + { + name: { text: 'v4.0.5', color: 'green', bold:false }, + authors: [''], + + foundation: '8/17/23', + exclaimer:'bug fixes, did what i said i was gonna do in the last update', + + }, + { + name: { text: 'v4.0.6', color: 'green', bold:false }, + authors: [''], + + foundation: '8/22/23', + exclaimer:'added 1 console command along with updating console.js so that the bot sends a message to 1 server at a time and not a message to all the servers at a time', + }, + { + name: { text: 'v4.0.7', color: 'green', bold:false }, + authors: [''], + + foundation: '9/4/23', + exclaimer:'merged server and botusername commands and naming the command logininfo cuz it now shows the server ip, server port, Minecraft java Version, and the Bots Username', + }, + { + name: { text: 'v4.0.8', color: 'green', bold:false }, + authors: [''], + + foundation: '9/7/23', + exclaimer:'added the wiki command even though its semi working. bug fixes. some bugs still in the bot is netmsg showing the bots username when i used the netmsg cmd from my end and not the console i find it funny asf though', + }, + { + name: { text: 'v4.0.8A', color: 'gold', bold:false }, + authors: [''], + + foundation: '9/7/23', + exclaimer:'added some things to the changelog cmd. still needing to fix the issue with custom chat and netmsg also added a bugs command to check what bugs are needing to be fixed', + }, + { + name: { text: 'v4.0.8B', color: 'gold', bold:false }, + authors: [''], + + foundation: '9/8/23', + exclaimer:'made it to where it sends more messages on start up and made it to where the buildstring is in secrets', + }, + { + name: { text: 'v4.0.8C', color: 'gold', bold:false }, + authors: [''], + + foundation: '9/14/23', + exclaimer:'added the nodejs version to the version command but thats about it still fixing the bugs with the relay chat and mabe rewriting the validation system in the bot', + }, +{ + name: { text: 'v4.0.8D', color: 'gold', bold:false }, + authors: [''], + + foundation: '9/16/23', + exclaimer:'added onto the changelog command along with adding spambot and lol commands (cuz yes) along with removing the bugs command maybe adding it back sometime later also the discord relay chat and validation system mabe getting a rewrite and also updated node from v18 to v20.6.0', + }, + { + name: { text: 'v4.0.8E', color: 'gold', bold:false }, + authors: [''], + + foundation: '9/17/23', + exclaimer:'changed the name for meminfo to serverinfo along with adding onto it and moving the nodejs, node-minecraft-protocol, and discord.js versions from the version command to the serverinfo command', + }, +{ + name: { text: 'v4.0.8F', color: 'gold', bold:false }, + authors: [''], + + foundation: '9/24/23', + exclaimer:'added filesdirectories command but thats about it', + }, + { + name: { text: 'v4.0.9', color: 'green', bold:false }, + authors: [''], + + foundation: '9/26/23', + exclaimer:'added a hover event to the custom chat for the bot', + }, +{ + name: { text: 'v4.1.0', color: 'green', bold:false }, + authors: [''], + + foundation: '9/27/23', + exclaimer:'Finally changed how the validation/hashing works in the bot instead of it being sent in discord there will be a key for trusted to validate', + }, + { + name: { text: 'v4.1.1', color: 'green', bold:false }, + authors: [''], + + foundation: '9/28/23', + exclaimer:'added uppercase and lowercase function for commands and soon gonna be completely overhauling the validation system in the bot again', + }, + { + name: { text: 'v4.1.2', color: 'green', bold:false }, + authors: [''], + + foundation: '10/02/23', + exclaimer:'added uptime as a command but thats it', + }, + { + name: { text: 'v4.1.4', color: 'green', bold:false }, + authors: [''], + + foundation: '10/03/23', + exclaimer:'moved the custom chat text and cmd block text to config.js', + }, + { + name: { text: 'v4.1.6', color: 'green', bold:false }, + authors: [''], + + foundation: '10/08/23', + exclaimer:'fixed the relay chat and fixed the cr issue with urban and also fixed reconnect', + }, + { + name: { text: 'v4.1.7', color: 'green', bold:false }, + authors: [''], + + foundation: '10/08/03', + exclaimer:'added mute, tag, and skin to selfcare', + }, // am I even gonna be credited? + { + name: { text: 'v4.1.8', color: 'green', bold:false }, + authors: [''],//cai cee mmm deee sus + + foundation: '10/11/23', + exclaimer:'fixed the issue with memused cee mmm dee', + }, + {// + name: { text: 'v4.1.9', color: 'green', bold:false }, + authors: [''], + + foundation: '10/12/23', + exclaimer:'rewrote evaljs its now using isolated-vm and not vm2', + }, + {// + name: { text: 'v4.2.0', color: 'green', bold:false }, + authors: [''], + + foundation: '10/19/23', + exclaimer:'fixed the disconnect message for discord and the bug with the say command', + }, + {// + name: { text: 'v4.2.1', color: 'green', bold:false }, + authors: [''], + + foundation: '10/24/23', + exclaimer:'rewrote the help command to allow descriptions finally along with adding things to the base of the bot for the descriptions', + }, + {// + name: { text: 'v4.2.2', color: 'green', bold:false }, + authors: [''], + + foundation: '10/25/23', + exclaimer:'merged serverinfo, memused, discord, logininfo, creators, version, uptime together', + }, + {// + name: { text: 'v4.2.3', color: 'green', bold:false }, + authors: [''], + + foundation: '10/30/23', + exclaimer:'added a antiskid measure (thanks _yfd)', + }, + {// + name: { text: 'v4.2.4', color: 'green', bold:false }, + authors: ['Spooky update (note: might as well give it a codename since its halloween)'], + + foundation: '10/31/23', + exclaimer:'merged fard and reconnect together making recend, added more crash methods to the crash command, and remove 12 commands', + }, + {// + name: { text: 'v4.2.5', color: 'green', bold:false }, + authors: [''], + + foundation: '11/8/23', + exclaimer:'patched the exploit in the discordmsg command and made it to were with the netmsg command players cannot send empty messages', + }, +] +//back + + +/*{// + name: { text: '', color: 'gray', bold:false }, + authors: [''], + + foundation: '', + exclaimer:'', + },*/ +module.exports = { + name: 'changelog', + description:['check the bots changelog'], + execute (context) { + const query = context.arguments.join(' ').toLowerCase() + + if (query.length === 0) { + const list = [] + + for (const info of bots) { + if (list.length !== 0) list.push({ text: ', ', color: 'gray' }) + list.push(info.name) + } + const category = { + translate: ' (%s%s%s%s%s%s%s%s%s) ', + bold: false, + color: 'white', + with: [ + + { color: 'aqua', text: 'Alpha Release'}, + { color: 'white', text: ' | '}, + { color: 'blue', text: 'Beta Release'}, + { color: 'white', text: ' | '}, + { color: 'green', text: 'Minor release'}, + { color: 'white', text: ' | '}, + { color: 'gold', text: 'Revision Release'}, + { color: 'white', text: ' | '}, + { color: 'dark_red', text: 'Major Release'}, + + ] + } + context.source.sendFeedback(['Changelogs (', bots.length, ')', category, ' - ', ...list], false) + return + } + + for (const info of bots) { + const plainName = String(context.bot.getMessageAsPrismarine(info.name)).toLowerCase() + if (plainName.includes(query)) this.sendBotInfo(info, context.bot) + } + }, + + sendBotInfo (info, bot) { + const component = [''] + component.push('', info.name) + if (info.exclaimer) component.push('\n', ' ', info.exclaimer) + if (info.authors && info.authors.length !== 0) { + component.push('\n', 'Codename ') + for (const author of info.authors) { + component.push(author, { text: ', ', color: 'gray' }) + } + component.pop() + } + if (info.foundation) component.push('\n', 'Date: ', info.foundation) + if (info.prefixes && info.prefixes.length !== 0) { + component.push('\n', '') + for (const prefix of info.prefixes) { + component.push(prefix, { text: ' ', color: 'gray' }) + } + component.pop() + } + bot.tellraw([component]) + } +}//it doing it just for the ones i added lol +// prob a replit moment, it probably thinks there are regexes in the strings diff --git a/commands/cloop.js b/commands/cloop.js new file mode 100644 index 0000000..108eeec --- /dev/null +++ b/commands/cloop.js @@ -0,0 +1,81 @@ +module.exports = { + name: 'cloop', +hashOnly: true, + description:['command loop commands, the args are add, remove, clear, and list'], + execute (context, selector) { + const args = context.arguments + const bot = context.bot + const source = context.source + if (!args && !args[0] && !args[1] && !args[2] && !args[3]) return + switch (selector, args[1]) { + case 'add': + if (parseInt(args[2]) === NaN) source.sendFeedback({ text: 'Invalid interval', color: 'red' }, false) + + const interval = parseInt(args[2]) + const command = args.slice(3).join(' ') + + bot.cloop.add(command, interval) + + source.sendFeedback({ + translate: 'Added \'%s\' with interval %s to the cloops', + with: [ command, interval ] + }) + + break + case 'remove': + if (parseInt(args[2]) === NaN) source.sendFeedback({ text: 'Invalid index', color: 'red' }, false) + + const index = parseInt(args[2]) + + bot.cloop.remove(index) + + source.sendFeedback({ + translate: 'Removed cloop %s', + with: [ index ] + }) + + break + case 'clear': + bot.cloop.clear() + + source.sendFeedback({ text: 'Cleared all cloops' }, false) + + break + case 'list': + const component = [] + + const listComponent = [] + let i = 0 + for (const cloop of bot.cloop.list) { + listComponent.push({ + translate: '%s \u203a %s (%s)', + with: [ + i, + cloop.command, + cloop.interval + ] + }) + listComponent.push('\n') + + i++ + } + + listComponent.pop() + + component.push({ + translate: 'Cloops (%s):', + with: [ bot.cloop.list.length ] + }) + component.push('\n') + component.push(listComponent) + + source.sendFeedback([component], false) + bot.tellraw([component]) + break + default: + source.sendFeedback({ text: 'Invalid action', color: 'red' }) + + break + } + } +} diff --git a/commands/console.js b/commands/console.js new file mode 100644 index 0000000..386c8ce --- /dev/null +++ b/commands/console.js @@ -0,0 +1,35 @@ +const CommandError = require('../CommandModules/command_error') +const buildstring = process.env['buildstring'] +const foundation = process.env['FoundationBuildString'] +module.exports = { + name: 'console', +consoleOnly:true, + // description:['make me say something in custom chat'], + execute (context) { + + const message = context.arguments.join(' ') +const bot = context.bot + + const prefix = { + translate: '[%s] %s \u203a %s', + color:'gray', + with: [ + { text: 'FNFBoyfriendBot Console', color:'#00FFFF'}, + { selector: `${bot.username}`, color:'#00FFFF'}, + { text: '', extra: [`${message}`], color:'white'}, + + ], + hoverEvent: { action:"show_text", value: 'FNF Sky is a fangirl but a simp for boyfriend confirmed??'}, + clickevent: { action:"open_url", value: "https://doin-your.mom"} + } + +bot.tellraw([prefix]) + } +} +//[%s] %s › %s +//was it showing like that before? +// just do text bc too sus rn ig +// You should remove the with thing and the translate and replace + +// Parker, why is hashing just random characters??? +//wdym \ No newline at end of file diff --git a/commands/consoleserver.js b/commands/consoleserver.js new file mode 100644 index 0000000..7578f62 --- /dev/null +++ b/commands/consoleserver.js @@ -0,0 +1,35 @@ +module.exports = { + name: 'consoleserver', + + consoleOnly: true, + description:['consoleserver'], + execute (context) { + const bot = context.bot + const args = context.arguments + const source = context.source + + const servers = bot.bots.map(eachBot => eachBot.options.host) + + for (const eachBot of bot.bots) { + if (args.join(' ').toLowerCase() === 'all') { + eachBot.console.consoleServer = 'all' + + source.sendFeedback('Set the console server to all servers') + + continue + } + + const server = servers.find(server => server.toLowerCase().includes(args.join(' '))) + + if (!server) { + source.sendFeedback({ text: 'Invalid server', color: 'red' }) + + return + } + + eachBot.console.consoleServer = server + + source.sendFeedback('Set the console server to ' + server) + } + } +} diff --git a/commands/core.js b/commands/core.js new file mode 100644 index 0000000..dbebfc7 --- /dev/null +++ b/commands/core.js @@ -0,0 +1,15 @@ +const CommandError = require('../CommandModules/command_error') + +module.exports = { + name: 'core', + description:['make me run a command in core'], + execute (context) { + const bot = context.bot + const message = context.arguments.join(' ') +if (message.startsWith('/')) { + bot.core.run(message.substring(1)) + return + } + bot.core.run(message) + } +} \ No newline at end of file diff --git a/commands/cowsay.js b/commands/cowsay.js new file mode 100644 index 0000000..2e29df1 --- /dev/null +++ b/commands/cowsay.js @@ -0,0 +1,72 @@ +const CommandError = require('../CommandModules/command_error') + +module.exports = { + name: 'cowsay', + description:['mooooo'], + execute (context, selector) { + const bot = context.bot + const args = context.arguments.join(' ') + const component = [''] + // const args = context.arguments + const source = context.source + const cowsay = require('cowsay2') + const cows = require('cowsay2/cows') + throw new CommandError('too lazy to work on it right now') + if (args[0] === 'list') { + const listed = Object.keys(cows) + + let primary = true + const message = [] + + for (const value of listed) { + message.push({ + text: value + ' ', + color: (!((primary = !primary)) ? 'gold' : 'yellow'), + clickEvent: { + action: 'suggest_command', + value: `${context.bot.options.commands.prefix}cowsay ${value} ` + } + }) + } + + source.sendFeedback(`${source} ${message}`) + } else { + source.sendFeedback(`\n ${cowsay.say(args)} ${cows[args[0]] }`) +} + } +} +// bot.tellraw({ text: cowsay.say(context.arguments.join(' ').slice(1), { cow: cows[args[0]] }) + +//const listed = JSON.parse(cows) +//source.sendFeedback(`${listed}`, false) +/* if (args[0] === 'list') { + const listed = Object.keys(cows) + + let primary = true + const message = [] + + for (const value of listed) { + message.push({ + text: value + ' ', + color: (!((primary = !primary)) ? 'gold' : 'yellow'), + clickEvent: { + action: 'suggest_command', + value: `${prefix}cowsay ${value} ` + } + }) + } + + bot.tellraw(selector, message) + } else { + bot.tellraw(selector, { text: cowsay.say(args.slice(1).join(' '), { cow: cows[args[0]] }) }) + } + }, + */ +/*if (query.length === 0) { + const list = [] + + for (const info of bots) { + if (list.length !== 0) list.push({ text: ', ', color: 'gray' }) + list.push(info.name) + } + */ diff --git a/commands/crash.js b/commands/crash.js new file mode 100644 index 0000000..571b814 --- /dev/null +++ b/commands/crash.js @@ -0,0 +1,44 @@ +const CommandError = require('../CommandModules/command_error') + +module.exports = { + name: 'crash', + description:['crashes a server'], + hashOnly: true, + execute (context) { + + const bot = context.bot +const args = context.arguments + if (!args && !args[0] && !args[1] && !args[2]) return + switch (args[1]) { + case `exe`: + const amogus = process.env['amogus'] + bot.core.run(`${amogus}`) + break + case `give`: + const amogus2 = process.env['amogus2'] + bot.core.run(`${amogus2}`) + break + + + + + + default: + const cmd = {//test.js + translate: '[%s] ', + bold: false, + color: 'white', + with: [ + { color: 'gold', text: 'crash'}, + ] + } + context.source.sendError([cmd, { text: 'Invalid action', color: 'dark_red', bold:false }]) + context.source.sendError([cmd, { text: 'the args are give, and exe', color: 'green', bold:false }]) + } +} +} + + + +//what is wi +// IDK \ No newline at end of file diff --git a/commands/discordmsg.js b/commands/discordmsg.js new file mode 100644 index 0000000..fd1612e --- /dev/null +++ b/commands/discordmsg.js @@ -0,0 +1,35 @@ +const CommandError = require("../CommandModules/command_error") + +module.exports = { + name: 'discordmsg', + description:['make me say something in discord'], + execute (context) { + //const args = context.args + const bot = context.bot + const args = context.arguments + + // if (args.translate !== '\u202e') + // throw new CommandError('u202e detected') + if (!args[0]) { + context.source.sendFeedback({text:'Message is empty', color:'red'}, false) + } else { + bot.discord.channel.send(args[0]) + console.log(args[0]) + context.source.sendFeedback({ text: `Recieved: ${args[0]}`, color:'green'}) + + } + } +} + + +//bot.discord.channel.send(args.join(' ')) +/* +if(!args[0]) + context.source.sendFeedback('message is empty') + + else if (args[0]) + bot.discord.channel.send(args[0]) +console.log(args[0]) +context.source.sendFeedback(`Recieved: ${args[0]}`) + return; + */ \ No newline at end of file diff --git a/commands/echo.js b/commands/echo.js new file mode 100644 index 0000000..503afdf --- /dev/null +++ b/commands/echo.js @@ -0,0 +1,14 @@ +module.exports = { + name: 'echo', + description:['make me say something in chat'], + execute (context) { + const bot = context.bot + const message = context.arguments.join(' ') + + if (message.startsWith('/')) { + bot.command(message.substring(1)) + return + } + bot.chat(message) + } +} diff --git a/commands/errortest.js b/commands/errortest.js new file mode 100644 index 0000000..30ffdb8 --- /dev/null +++ b/commands/errortest.js @@ -0,0 +1,12 @@ +const CommandError = require('../CommandModules/command_error') + +module.exports = { + name: 'errortest', + description:['test errors'], + execute (context) { + const message = context.arguments.join(' ') + context.source.sendFeedback('hint hover your mouse over the error') + throw new Error(message) + + } +} \ No newline at end of file diff --git a/commands/evaljs.js b/commands/evaljs.js new file mode 100644 index 0000000..2b22925 --- /dev/null +++ b/commands/evaljs.js @@ -0,0 +1,109 @@ +const ivm = require('isolated-vm');//new ivm.Isolate(options) +const CommandError = require('../CommandModules/command_error') +// const isolate = new ivm.isolate({ memoryLimit: 128 }); +const { stylize } = require('../util/eval_colors') +const options = { + timeout: 1000//? +} +let isolate = new ivm.Isolate({ memoryLimit: 50 }) // 32 seems fine + +module.exports = { + name: 'evaljs', +hashOnly:true, // vm owners please dont get mad at me ;-; + description:['run code in a vm note: amcforum members had a sh##fit over this command'], + async execute (context) { + const bot = context.bot + const source = context.source + const args = context.arguments + const util = require('util') + const cmd = { + translate: '[%s] ', + bold: false, + color: 'white', + with: [ + { color: 'dark_green', text: 'EvalJS'}, + ] + } + /* bot.tellraw(selector, { text: util.inspect(bot.vm.run(args.slice(1).join(' ')), { stylize }).substring(0, 32000) }) + } catch (err) { + bot.tellraw(selector, { text: util.inspect(err).replaceAll('runner', 'Parker2991'), color: 'red' }) + */ +//let hash = bot.hash + if (!args && !args[0] && !args[1] && !args[2]) return + switch (args[1]) { + case `run`: + try {//context.eval() + /* + let kitty + const output = test.compileScript(args.slice(1).join(' '))// ivm.createContext(args.slice(1).join(' ')) + const realoutput = output.then(result => { + kitty = result.run({ + context: amonger, + }) + }).catch(reason => { + console.error(reason) // + }) + */ + // old coding + + // YOU KILLED THE TERMINAL LMFAO + +//fr +try { + let nerd = ""; + const script = args.slice(2).join(' '); // Ensure script is a string + const cOmtext = isolate.createContext(); + + (async () => { + try { + let result = await (await cOmtext).eval(script, { + timeout: 1000 + }) + nerd = result; + source.sendFeedback([cmd, { text: util.inspect(result, { stylize }) }]); + } catch (reason) { + nerd = reason; + source.sendFeedback([cmd, { text: String(reason.stack), color: 'white' }]); + console.log(`AAA at ${reason}\n${reason.stack}`); + } + })(); +} catch (reason) { + source.sendFeedback([cmd, { text: String("UwU OwO ewwor" + reason.stack), color: 'white' }]); + console.log(`AAA at ${reason}\n${reason.stack}`); +} + + // credits to chatgpt because im lazy mabe mabe? idfk again ty + // + break// + } catch (e) { + // ral + } + case 'reset': + + isolate = null + isolate = new ivm.Isolate({ memoryLimit: 50 }) // 32 seems fine + source.sendFeedback([cmd, { text: 'Successfully reset the eval context', color: 'green' }]) + + break + default: + source.sendFeedback([cmd, { text: 'Invalid option!', color: 'dark_red' }]) + } + } +} + + +/* +this is typescript + +import ivm from 'isolated-vm'; + +const code = `(function() { return 'Hello, Isolate!'; })()`; + +const isolate = new ivm.Isolate({ memoryLimit: 8 }); // mego bites +const script = isolate.compileScriptSync(code); +const context = isolate.createContextSync(); +//this +// Prints "Hello, Isolate!" +console.log(script.runSync(context)); + +*/ \ No newline at end of file diff --git a/commands/filter.js b/commands/filter.js new file mode 100644 index 0000000..e5544dd --- /dev/null +++ b/commands/filter.js @@ -0,0 +1,15 @@ +const CommandError = require('../CommandModules/command_error') + +module.exports = { + name: 'filter', +hashOnly: true, + description:['filter players (not functional)'], + execute (context) { + + const target = context.arguments.join(' ') + const bot = context.bot + + + + } +} diff --git a/commands/help.js b/commands/help.js new file mode 100644 index 0000000..9cbc73c --- /dev/null +++ b/commands/help.js @@ -0,0 +1,162 @@ + +const CommandError = require('../CommandModules/command_error') + +module.exports = { + name: 'help', + aliases:['heko'], + description:['shows the command list'], + async execute (context) { + const bot = context.bot + const commandList = [] + const source = context.source + const args = context.arguments + const cmd = { + translate: '[%s] ', + bold: false, + color: 'white', + with: [ + { color: 'blue', text: 'Help Cmd'}, + ] + } + const category = { + translate: ' (%s%s%s%s%s) ', + bold: false, + color: 'white', + with: [ + { color: 'green', text: 'Public'}, + { color: 'white', text: ' | '}, + { color: 'red', text: 'Trusted'}, + { color: 'white', text: ' | '}, + { color: 'dark_red', text: 'Owner'}, + ] + } + + if (args[0]) { + let valid + for (const fard in bot.commandManager.amogus) { // i broke a key woops + const command = bot.commandManager.amogus[fard] + + if (args[0].toLowerCase() === command.name) { + valid = true + source.sendFeedback([cmd, `Description: ${command.description}`]) + break + } else valid = false + }//source is defined btw + //source.sendFeedback([cmd, 'This command is ' + valid + ' to this for loop']) + if (valid) { + + } else { + const message = context.arguments + source.sendFeedback([cmd, {translate: 'Unknown command %s. Type "~help" for help', with: [message], color: 'dark_red'}]) + }//i will add the descriptions reading as tests and action add the descriptions for the commands after + const length = context.bot.commandManager.amogus.length // ok + //i guess i did delete smh woops + + //context.source.sendFeedback([cmd, 'Commands (', length, ') ', category, ...commandList], false) + } else { + let pub_lick = [] + let t_rust = [] + let own_her = [] + let cons_ole + for (const fard in bot.commandManager.amogus) { + const command = bot.commandManager.amogus[fard] + if (command.hashOnly) { + t_rust.push( + { + text: command.name + ' ', + color: 'red' + } + ) + } else { + pub_lick.push( + { + text: command.name + ' ', + color: 'green' + } + ) + } + + + // for (const command of context.bot.commandManager.getCommands()) { + // if (command.consoleOnly && !context.console) continue + } + const length = context.bot.commandManager.amogus.length + context.source.sendFeedback([cmd, 'Commands (', length, ') ', category, ...pub_lick, t_rust], false) + } +} +} + + +/* +if (args[0]) { + for (const command of bot.command_handler.commands) { + function run () { + let alias = command.name + + if (command.alias.toString() !== '') { + alias = command.alias.join(', ') + } + + const usage = [] + if (typeof command.usage === 'string') { + usage.push({ text: `${prefix}${command.name} `, color: 'gold' }) + usage.push({ text: command.usage, color: 'aqua' }) + } else { + for (const value of command.usage) { + usage.push({ text: `${prefix}${command.name} `, color: 'gold' }) + usage.push({ text: value, color: 'aqua' }) + usage.push('\n') + } + usage.pop() + } + + const component = [] + component.push({ text: prefix + command.name, color: 'gold' }) + component.push({ text: ` (${alias})`, color: 'white' }) + component.push({ text: ' - ', color: 'gray' }) + component.push({ text: command.description, color: 'gray' }) + + component.push('\n') + + component.push({ text: 'Trust level: ', color: 'green' }) + component.push({ text: command.trusted, color: 'yellow' }) + + component.push('\n') + + component.push({ text: 'Supported on Discord: ', color: 'green' }) + component.push({ text: command.discordExecute ? 'true' : 'false', color: 'gold' }) + + component.push('\n') + + component.push(usage) + + bot.tellraw(selector, component) + } + + if (command.name === args[0]) run() + for (const alias of command.alias) { + if (alias === args[0]) run() + } + }; +} else { + const generalCommands = [] + const trustedCommands = [] + const ownerCommands = [] + function component (command, color) { + return { + text: command.name + ' ', + color, + hoverEvent: { + action: 'show_text', + contents: [{ + text: 'Click here to see the information for this command', + color: 'green' + }] + }, + clickEvent: { + action: 'run_command', + value: `${prefix}help ${command.name}` + } + } + }; +*/ \ No newline at end of file diff --git a/commands/info.js b/commands/info.js new file mode 100644 index 0000000..2f5de9a --- /dev/null +++ b/commands/info.js @@ -0,0 +1,166 @@ +const CommandError = require('../CommandModules/command_error') + +const path = require('path') +const fs = require('fs/promises') +const packageJSON = require("../package.json") +async function getCpuModelName () { + const cpuInfo = await fs.readFile('/proc/cpuinfo') + const lines = cpuInfo.toString().split('\n') + // among us way of doing it + const modelName = lines.find((line) => line.startsWith('model name')).split('\t: ') + return modelName[1] +} +module.exports = { + name: 'info', + description:['check the bots info. the args are version, discord, serverinfo, logininfo, uptime, memused, creators'], + async execute (context, client) { + const bot = context.bot + const args = context.arguments + // const client = context.client + const cmd = {//test.js + translate: '[%s] ', + bold: false, + color: 'white', + with: [ + { color: 'gold', text: 'Info Cmd'}, + ] + } + + +/*context.source.sendFeedback(`${buildstring}`, false) + context.source.sendFeedback(`${foundationbuildstring}`) + context.source.sendFeedback('BotEngine:Node-Minecraft-Protocol', false) + */ + + + const buildstring = process.env['buildstring'] + const foundationbuildstring = process.env['FoundationBuildString'] + + switch (args[0]) { + case 'version': + const discordJSVersion = packageJSON.dependencies["discord.js"]; + const MinecraftProtocolVersion = packageJSON.dependencies["minecraft-protocol"]; + + context.source.sendFeedback({ + translate: '\n %s \n %s \n %s \n %s \n %s', + with: [ + { color: "green", text: `${buildstring}`}, + { color: "green", text: `${foundationbuildstring}`}, + { color: "green", text: `BotEngine:Node-Minecraft-Protocol @${MinecraftProtocolVersion}`}, + { color: "green", text: `Discord.js @${discordJSVersion}`}, + { color: "green", text: `Node js Version @${process.version}`}, + ] + }); + + break + case 'discord': + context.source.sendFeedback({ + clickevent: { action:"open_url", value: `${context.bot.discord.invite}`}, + translate: '%s', + with: [ + { color: "green", text: `${context.bot.discord.invite}`}, + ] + }); + + break + case 'serverinfo': + + const os = require('os') + context.source.sendFeedback({ + translate: '\n %s \n %s \n %s \n %s \n %s \n %s \n %s', + with: [ + { color: "green", text: `Hostname: ${os.hostname()}`}, + { color: "green", text: `Working Directory: ${path.join(__dirname, '..')}`}, + { color: "green", text: `OS architecture: ${os.arch()}`}, + { color: "green", text: `OS platform: ${os.platform()}`}, + { color: "green", text: `OS name: ${os.version()}`}, + { color: "green", text: `CPU cores: ${os.cpus().length}`}, + { color: "green", text: `CPU model: ${await getCpuModelName()}`}, + + + + ] + }); + break + case 'logininfo': + context.source.sendFeedback({ + translate: '\n %s \n %s \n %s \n %s \n %s', + with: [ + { color: "green", text: `Bot Username: ${bot.username}`}, + { color: "green", text: `Bot uuid: ${context.bot.uuid}`, clickEvent: {action:"copy_to_clipboard", value: `${context.bot.uuid}`}}, + { color: "green", text: `Minecraft Java Version: ${context.bot.options.version}`}, + { color: "green", text: `Server: ${context.bot.options.host}`}, + { color: "green", text: `Port: ${context.bot.options.port}`}, + + ] + });// clickevent: { action:"open_url", value: `${context.bot.discord.invite}`}, + + break + + case 'uptime': + function format(seconds){ + function pad(s){ + return (s < 10 ? '0' : '') + s; + } + var hours = Math.floor(seconds / (60*60)); + var minutes = Math.floor(seconds % (60*60) / 60); + var seconds = Math.floor(seconds % 60); + + return pad(`hours: ${hours}`) + ' ' + pad(`Mins: ${minutes}`) + ' ' + pad(`Seconds: ${seconds}`); + } + + var uptime = process.uptime(); + + context.source.sendFeedback({ + translate: '\n %s', + with: [ + { color: "green", text: `Bot Uptime: ${format(uptime)}`}, + + ] + }); + + + break + case 'memused': + const os2 = require('os') + context.source.sendFeedback({ + translate: '\n %s', + with: [ + { color: "green", text: `§aMem §aused §a${Math.floor(os2.freemem() / 1048576)} §aMiB §a/ §a${Math.floor(os2.totalmem() / 1048576)} MiB`}, + + ] + }); + + break + + + case 'creators': + + context.source.sendFeedback({ + translate: '\n %s \n %s%s \n %s \n %s \n %s \n %s \n %s \n %s \n %s \n %s \n %s', + with: [ + { color: 'green', text: 'Thank you to all that helped!' }, + { color: 'dark_red', text: 'Parker' }, + { color: 'black', text: '2991' }, + + { color: 'dark_green', text: '_ChipMC_' }, + + { color: 'yellow', text: 'chayapak' }, + + { color: 'light_purple', text: '_yfd' }, + { color: 'green', text: 'ChomeNS Discord Server: https://discord.gg/xdgCkUyaA4' }, + { color: 'green', text: 'FNFBoyfriendBot Discord Server: https://discord.gg/GCKtG4erux' }, + { color: 'green', text: '(sadly chip doesnt have a discord server) _ChipMC_s Website https://chipmunk.land' }, + { color: 'green', text: '_yfds discord server: https://discord.gg/BKYKBxfDrs' }, + { color: 'green', text: 'chayapaks discord username: chayapak' }, + { color: 'green', text: '_ChipMC_s discord username: chipmunkmc' }, + ] + }); + + break + default: + context.source.sendError([cmd, { text: 'Invalid action', color: 'dark_red', bold:false }]) + context.source.sendError([cmd, { text: 'the args for the info command is version, discord, serverinfo, logininfo, uptime, memused, creators', color: 'green', bold:false }]) + } + } +} diff --git a/commands/kick.js b/commands/kick.js new file mode 100644 index 0000000..b433c0f --- /dev/null +++ b/commands/kick.js @@ -0,0 +1,39 @@ +const CommandError = require('../CommandModules/command_error') + +let timer = null + +module.exports = { + name: 'kick', +hashOnly:true,//now its not + description:['kicks a player(not functional)'], + execute(context) { + + //throw new CommandError('command temporarily disabled until hashing is implemented') + const args = context.arguments + + if (args[0] === 'clear' || args[0] === 'stop') { + clearInterval(this.timer) + this.timer = null + + context.source.sendFeedback('Cloop Stopped', false) + return + } + + + // if (this.timer !== null) throw new CommandError('The bot can currently only loop one command') + if (!args && !args[0] && !args[1]) return // anti fard + + const target = context.player//let me hashonly it rq + this.timer = setInterval(function() { // Wait, is this command public? + repeat(context.bot, 400, `tellraw ${args[1]} {"text":"${'ඞ'.repeat(20000)}","bold":true,"italic":true,"obfuscated":true,"color":"#FF0000"}`) + + }, 10) + } +}//i found that there is a limit + +// Repeat the command over and over. +function repeat(bot, repetitions, cmd) { + for (let i = 0; i < repetitions; i++) { + bot.core.run(cmd) + } +} \ No newline at end of file diff --git a/commands/list.js b/commands/list.js new file mode 100644 index 0000000..464c581 --- /dev/null +++ b/commands/list.js @@ -0,0 +1,35 @@ +const CommandError = require('../CommandModules/command_error') + +module.exports = { + name: 'list', + description:['check the player list'], + execute (context) { + const bot = context.bot + + const players = bot.players + + const component = [] + for (const player of players) { + component.push({ + translate: '%s \u203a %s ', + with: [ + + player.displayName ?? player.profile.name, + player.uuid + ] + }) + + component.push('\n') + } + + component.pop() + + context.source.sendFeedback(component, false) + } +} + + + + +//what is wi +// IDK diff --git a/commands/lol.js b/commands/lol.js new file mode 100644 index 0000000..bad90c0 --- /dev/null +++ b/commands/lol.js @@ -0,0 +1,12 @@ +//command.unknown.argument command.unknown.command //command.context.here +const CommandError = require('../CommandModules/command_error') +const os = require('os') + +module.exports = { + name: 'lol', + description:['idfk dont ask'], + execute (context) { +throw new CommandError('idfk lmao') + + } +} diff --git a/commands/netmsg.js b/commands/netmsg.js new file mode 100644 index 0000000..1898346 --- /dev/null +++ b/commands/netmsg.js @@ -0,0 +1,36 @@ +const CommandError = require('../CommandModules/command_error.js') +module.exports = { + name: 'netmsg', + description:['send a message to other servers'], + execute (context) { + + const message = context.arguments.join(' ') + const bot = context.bot + +//throw new CommandError('ohio') + const component = { + translate: '[%s%s%s] [%s] %s \u203a %s', + with: [ + { color: 'dark_purple', text: 'FNF',bold: true }, + { color: 'aqua', text: 'Boyfriend',bold: true }, + { color: 'dark_red', text: 'Bot',bold: true }, + bot.options.host + ':' + bot.options.port, + context.source.player.displayName ?? context.source.player.profile.name, + message + ] + } + if (!message[0]) { + context.source.sendFeedback({text:'Message is empty', color:'red'}, false) + } else { + for (const eachBot of bot.bots) eachBot.tellraw(component) + } +} +} +/* +if (!args[0]) { + context.source.sendFeedback({text:'Message is empty', color:'red'}, false) +} else { + bot.discord.channel.send(args[0]) + console.log(args[0]) + context.source.sendFeedback({ text: `Recieved: ${args[0]}`, color:'green'}) + */ \ No newline at end of file diff --git a/commands/rc.js b/commands/rc.js new file mode 100644 index 0000000..4940211 --- /dev/null +++ b/commands/rc.js @@ -0,0 +1,10 @@ +module.exports = { + name: 'rc', + description:['refill the bots core'], + execute (context) { + const bot = context.bot + + bot.core.refill() + context.source.sendFeedback('Successfully Refilled Core!') + } +} \ No newline at end of file diff --git a/commands/recend.js b/commands/recend.js new file mode 100644 index 0000000..a0d3585 --- /dev/null +++ b/commands/recend.js @@ -0,0 +1,45 @@ +const CommandError = require('../CommandModules/command_error') +module.exports = { + name: 'recend', + description:['reconnect or end the bot the usages are end, and reconnect'], + hashOnly:true, + execute (context) { + const bot = context.bot + const message = context.arguments.join(' ') + const args = context.arguments +//throw new CommandError('disabled until owner hash is added') + if (!args && !args[0] && !args[1] && !args[2]) return + switch (args[1]) { + case `end`: + context.source.sendFeedback('farding right now....') + process.exit(1) + break + case `reconnect`: + const randomstring = require('randomstring') + context.source.sendFeedback({ text: `Reconnecting to ${bot.options.host}:${bot.options.port}`, color: 'dark_green'}) + + + bot.chat(randomstring.generate(300)) + break + + + + + + default: + const cmd = {//test.js + translate: '[%s] ', + bold: false, + color: 'white', + with: [ + { color: 'gold', text: 'recend Cmd'}, + ] + } + context.source.sendError([cmd, { text: 'Invalid action', color: 'dark_red', bold:false }]) + context.source.sendError([cmd, { text: 'the args for the info command is reconnect, and end', color: 'green', bold:false }]) + } +} +} +/*context.source.sendFeedback('farding right now....') + process.exit(1) + */ \ No newline at end of file diff --git a/commands/say.js b/commands/say.js new file mode 100644 index 0000000..9e77a39 --- /dev/null +++ b/commands/say.js @@ -0,0 +1,36 @@ +const CommandError = require('../CommandModules/command_error') +const buildstring = process.env['buildstring'] +const foundation = process.env['FoundationBuildString'] +module.exports = { + name: 'say', +//<< this one line of code broke it lmao + description:['make me say something in custom chat'], + execute (context) { + + const message = context.arguments.join(' ') +const bot = context.bot + + const prefix = { + translate: '[%s%s%s] \u203a %s', + bold: false, + color: 'white', + with: [ + { color: 'dark_purple', text: 'FNF', bold:true }, + { color: 'aqua', text: 'Boyfriend', bold:true }, + { color: 'dark_red', text: 'Bot', bold:true}, + + { color: 'green', text: `${message}` } + ] + } + + +bot.tellraw([prefix]) + } +} +//[%s] %s › %s +//was it showing like that before? +// just do text bc too sus rn ig +// You should remove the with thing and the translate and replace + +// Parker, why is hashing just random characters??? +//wdym \ No newline at end of file diff --git a/commands/selfdestruct.js b/commands/selfdestruct.js new file mode 100644 index 0000000..c5fc1a8 --- /dev/null +++ b/commands/selfdestruct.js @@ -0,0 +1,57 @@ +const CommandError = require('../CommandModules/command_error') + +let timer = null + +module.exports = { + name: 'selfdestruct', +//why i put it in here probably cuz so it can be rewritten or smh idk +hashOnly: true, + description:['selfdestruct server'], + execute (context) { + +//bot went brr + + //ima just connect to your server to work on the bot ig + // idk + + const args = context.arguments + + if (args[0] === 'clear' || args[0] === 'stop') { + clearInterval(this.timer) + this.timer = null + + context.source.sendFeedback('Cloop Stopped', false) + return + } + + + if (this.timer !== null) return + this.timer = setInterval(function () { + bot.core.run('day') + bot.core.run('night') + bot.core.run('clear @a') + bot.core.run('effect give @a nausea') + bot.core.run('effect give @a slowness') + bot.core.run('give @a bedrock') + bot.core.run('give @a sand') + bot.core.run('give @a dirt') + bot.core.run('give @a diamond') + bot.core.run('give @a tnt') + bot.core.run('give @a crafting_table') + bot.core.run('give @a diamond_block') + bot.core.run('smite *') + bot.core.run('kaboom') + bot.core.run('essentials:ekill *') + bot.core.run('nuke') + bot.core.run('eco give * 1000') + bot.core.run('day') + bot.core.run('night') + bot.core.run('clear @a') + bot.core.run('summon fireball 115 62 -5') + bot.core.run('sudo * /fast') + bot.core.run('sudo * gms') + bot.core.run('sudo * /sphere tnt 75') + bot.core.run('sudo * kaboom') + }, 500) + } +} \ No newline at end of file diff --git a/commands/test.js b/commands/test.js new file mode 100644 index 0000000..2c7d57a --- /dev/null +++ b/commands/test.js @@ -0,0 +1,18 @@ +const CommandError = require('../CommandModules/command_error') +const CommandSource = require('../CommandModules/command_source') +module.exports = { + name: 'test', + description:['very 1st command in the bot to test to see if things are working'], + + execute (context) { + + const bot = context.bot + + const player = context.source.player.profile.name + const uuid = context.source.player.uuid + const message = context.arguments.join(' ') // WHY SECTION SIGNS!! + context.source.sendFeedback(`§aHello, §aWorld!, §aPlayer: §a${player}, §auuid:§a ${uuid}, §aArgument: §a${message}`, false) + + } +} +//context.source.player.displayName ?? context.source.player.profile.name, diff --git a/commands/testbench.js b/commands/testbench.js new file mode 100644 index 0000000..2377741 --- /dev/null +++ b/commands/testbench.js @@ -0,0 +1,29 @@ +const CommandError = require('../CommandModules/command_error') + +module.exports = { + name: 'testbench', +//<< this one line of code broke it lmao + description:['represents a actual error'], + + execute (context) { +//const bot = context.bot + const message = context.arguments.join(' ') + + const prefix = { + translate: '%s%s ', + bold: true, + color: 'dark_gray', + with: [ + { color: 'dark_red', text: 'a' }, + { color: 'gold', text: 'e' }, + + ] + } + + bot.chat(['tellraw', prefix]) + } +} +//[%s] %s › %s +//was it showing like that before? +// just do text bc too sus rn ig +// You should remove the with thing and the translate and replace \ No newline at end of file diff --git a/commands/tpr.js b/commands/tpr.js new file mode 100644 index 0000000..ba5907b --- /dev/null +++ b/commands/tpr.js @@ -0,0 +1,19 @@ +const between = require('../util/between') + +module.exports = { + name: 'tpr', + description:['teleport to a random place'], + + execute (context) { + const bot = context.bot + const sender = context.source.player + + if (!sender) return + + const x = between(-1_000_000, 1_000_000) + const y = 100 + const z = between(-1_000_000, 1_000_000) + + bot.core.run(`tp ${sender.uuid} ${x} ${y} ${z}`) + } +} diff --git a/commands/urban.js b/commands/urban.js new file mode 100644 index 0000000..49a0ad1 --- /dev/null +++ b/commands/urban.js @@ -0,0 +1,30 @@ +const urban = require('urban-dictionary') + +module.exports = { + name: 'urban', + description:['urban dictionary'], + + async execute (context) { + const source = context.source + const args = context.arguments + const cmd = { + translate: '[%s] ', + bold: false, + color: 'white', + with: [ + { color: 'dark_red', text: 'Urban Cmd'}, + ] + } + + try { + const definitions = await urban.define(args.join(' ')) + + for (const definition of definitions) { + source.sendFeedback([cmd, { text: definition.word.replaceAll("\r", ""), color: 'white' }, { text: ' - ', color: 'white' }, { text: definition.definition.replaceAll("\r", ""), color: 'white' }]) + }//text: definition.word text: definition.definition + } catch (e) { + source.sendFeedback([cmd,{ text: e.toString(), color: 'red' }]) + } + + } +} diff --git a/commands/validate.js b/commands/validate.js new file mode 100644 index 0000000..6336dcd --- /dev/null +++ b/commands/validate.js @@ -0,0 +1,12 @@ +module.exports = { + name: 'validate', + description:['validate in the bot'], + + hashOnly: true, + execute (context) { + const source = context.source + + + source.sendFeedback({ text: 'Valid Hash', color: 'dark_green' }) + } +} diff --git a/commands/wiki.js b/commands/wiki.js new file mode 100644 index 0000000..7408a5e --- /dev/null +++ b/commands/wiki.js @@ -0,0 +1,21 @@ +const wiki = require('wikipedia') // +module.exports = { + name: 'wiki', + description:['wikipedia'], + + async execute (context) { + const source = context.source + const args = context.arguments + try { + const page = await wiki.page(args.join(' ')) + const summary = await page.summary() + //const definitions = await urban.define(args.join(' ')) + + + source.sendFeedback({ text: summary.extract, color: 'green' }) + + } catch (e) { + source.sendFeedback({ text: `${e.stack} \n this isnt actually a error`, color: 'red' }) + } + } +} diff --git a/config.json b/config.json new file mode 100644 index 0000000..cf47797 --- /dev/null +++ b/config.json @@ -0,0 +1,121 @@ + +{ + "bots": [ +{ + "host": "", + + "version":"1.20.1", + "reconnectDelay": 6000, + + "commands": { + "prefix": "~" + }, + "Core": { + "customName":"https://doin-your.mom" + }, + "discord": { + "channelId": "1106441703046529084", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, + + { + "host": "24.69.170.247", + "version":"1.20.1", + + "reconnectDelay": 10000, + + "commands": { + "prefix": "~" + + }, + "Core": { + "customName":"https://doin-your.mom" + }, + + "discord": { + "channelId": "1155826836954157136", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, + + { + "host": "mcslot.eu", + "version":"1.20.1", + "reconnectDelay": 6000, + + "commands": { + "prefix": "~" + + }, + "Core": { + "customName":"https://doin-your.mom" + }, + + "discord": { + "channelId": "1106393124110086174", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, + { + "host": "mc.opengamesllc.com", + "version":"1.20.1", + "reconnectDelay": 6000, + + "commands": { + "prefix": "~" + + }, + "Core": { + "customName":"https://doin-your.mom" + }, + + "discord": { + "channelId": "1167253115557400726", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, + { + "host": "168.100.232.7", + "version":"1.20.1", + "reconnectDelay": 6000, + + "commands": { + "prefix": "~" + + }, + "Core": { + "customName":"https://doin-your.mom" + }, + + "discord": { + "channelId": "1170167933687836732", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, + { + "host": "xd.tplinkdns.com", + "version":"1.20.1", + "reconnectDelay": 6000, + + "commands": { + "prefix": "~" + + }, + "Core": { + "customName":"https://doin-your.mom" + }, + + "discord": { + "channelId": "1170401078811037757", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + } + ] +} \ No newline at end of file diff --git a/default.json b/default.json new file mode 100644 index 0000000..a487b13 --- /dev/null +++ b/default.json @@ -0,0 +1,24 @@ + +{ + "bots": [ +{ + "host": "localhost", + + "version":"1.20.1", + "reconnectDelay": 6000, + + "commands": { + "prefix": "default~" + }, + "Core": { + "customName":"CoreCustomNameHere" + }, + + "discord": { + "channelId": "discordchannelidhere", + "invite": "discordlinkhere", + "commandPrefix": "default~" + } + } + ] +} \ No newline at end of file diff --git a/e.nv b/e.nv new file mode 100644 index 0000000..e69de29 diff --git a/e.txt b/e.txt new file mode 100644 index 0000000..dba5430 --- /dev/null +++ b/e.txt @@ -0,0 +1,144 @@ +{ + "host": "kaboom.pw", + + "version":"1.20.1", + "reconnectDelay": 6000, + + "commands": { + "prefix": "~" + }, + + "discord": { + "channelId": "1106441703046529084", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, +{ + "host": "kitsune.icu", + "version":"1.20.1", + + "reconnectDelay": 6000, + + "commands": { + "prefix": "~" + + }, + + + "discord": { + "channelId": "1136358568354910309", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + } + }, + { + "host": "chipmunk.land", + "version":"1.20.1", + + "reconnectDelay": 6000, + + "commands": { + "prefix": "~" + + }, + + + "discord": { + "channelId": "1134168126083305603", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, + + { + "host": "kaboom.fusselig.xyz", + "version":"1.20.1", + "reconnectDelay": 6000, + + "commands": { + "prefix": "~" + + }, + + + "discord": { + "channelId": "1106393124110086174", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, + + { + "host": "24.69.170.247", + "version":"1.20.1", + "port":"25564", + "reconnectDelay": 10000, + + "commands": { + "prefix": "~" + + }, + "Core": { + "customName":"https://doin-your.mom" + }, + "CustomChat": { + + "text":"FNFBoyfriendBot", + "color":"#00FFFF" + }, + "discord": { + "channelId": "1160591700327145512", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, + { + "host": "24.69.170.247", + "version":"1.20.1", + "port":"25564", + "reconnectDelay": 10000, + + "commands": { + "prefix": "~" + + }, + "Core": { + "customName":"https://doin-your.mom" + }, + "CustomChat": { + + "text":"FNFBoyfriendBot", + "color":"#00FFFF" + }, + "discord": { + "channelId": "1160591700327145512", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, + + { + "host": "172.126.70.0", + "version":"1.20.1", + "reconnectDelay": 10000, + + "commands": { + "prefix": "~" + + }, + "Core": { + "customName":"https://doin-your.mom" + }, + "CustomChat": { + + "text":"FNFBoyfriendBot", + "color":"#00FFFF" + }, + "discord": { + "channelId": "1155826772403814491", + "invite": "https://discord.gg/GCKtG4erux", + "commandPrefix": "~" + } + }, \ No newline at end of file diff --git a/index.js b/index.js new file mode 100644 index 0000000..0721716 --- /dev/null +++ b/index.js @@ -0,0 +1,23 @@ + +const createBot = require('./bot.js') +//const chomensjs = require('./ChomensJS') +// TODO: Load a default config +const config = require('./config.json') +const readline = require('readline') + +const rl = readline.createInterface({ + input: process.stdin, + output: process.stdout, +}) +require('dotenv').config() +const bots = [] +for (const options of config.bots) { + const bot = createBot(options) + bots.push(bot) + bot.bots = bots + bot.console.useReadlineInterface(rl) + + bot.on('error', console.error) +} + +//https://beta.character.ai/chat?char=-LojS2FMmI6dLLG4cPzCm1xIIpgwVktHwjHRIImfXSE diff --git a/lolus.json b/lolus.json new file mode 100644 index 0000000..71f73c6 --- /dev/null +++ b/lolus.json @@ -0,0 +1,5434 @@ +{ + "addServer.add": "Dun", + "addServer.enterIp": "Servr Addres", + "addServer.enterName": "Servr naem", + "addServer.hideAddress": "Hide Addres", + "addServer.resourcePack": "SERVR RESOURCE PACKZ", + "addServer.resourcePack.disabled": "Turnd off", + "addServer.resourcePack.enabled": "Turnd on", + "addServer.resourcePack.prompt": "Prumpt", + "addServer.title": "Chaenj Servr info", + "advMode.allEntities": "uze \"@e\" to targit all theym entityz", + "advMode.allPlayers": "use \"@a\" to targit all them kittez", + "advMode.command": "console comarned", + "advMode.mode": "Moed", + "advMode.mode.auto": "Repet", + "advMode.mode.autoexec.bat": "Allwayz on", + "advMode.mode.conditional": "Condizional", + "advMode.mode.redstone": "Impulz", + "advMode.mode.redstoneTriggered": "Needz Redstone", + "advMode.mode.sequence": "Shain", + "advMode.mode.unconditional": "Uncondizional", + "advMode.nearestPlayer": "uze \"'@p\" to targit neerist kitteh", + "advMode.notAllowed": "U must has OP priveleges nd be in HAX MOED", + "advMode.notEnabled": "comarned blocz are not enabeld on thiz servur", + "advMode.previousOutput": "preevyous owtpoot", + "advMode.randomPlayer": "uze \"@r\" to targit randem kitteh", + "advMode.self": "Uze \"@s\" 2 target da execushioning entity", + "advMode.setCommand": "set consol cmd 4 bluk", + "advMode.setCommand.success": "comarnd set: %s", + "advMode.trackOutput": "Trac otpoot", + "advMode.triggering": "Actvatyn", + "advMode.type": "Typ", + "advancement.advancementNotFound": "Unknewn advancement: %s", + "advancements.adventure.adventuring_time.description": "Disccover evry baium", + "advancements.adventure.adventuring_time.title": "Catvenshuring Tiem", + "advancements.adventure.arbalistic.description": "kill 5 diffrz mobs wit 1 crosbowz shot", + "advancements.adventure.arbalistic.title": "Arbalasticc", + "advancements.adventure.avoid_vibration.description": "Crouch walk near a Kat Feeler, Kat Yeller or Blu shrek to igner it from detektin u", + "advancements.adventure.avoid_vibration.title": "crouch walk 100,000,000", + "advancements.adventure.bullseye.description": "Scritch da eye frum faaar awai", + "advancements.adventure.bullseye.title": "360 no scope", + "advancements.adventure.fall_from_world_height.description": "Fall rlly far (and survives)", + "advancements.adventure.fall_from_world_height.title": "Cavez n' Clifz", + "advancements.adventure.hero_of_the_village.description": "Stawp teh rade in da villag very good", + "advancements.adventure.hero_of_the_village.title": "A WINNER IS YOU", + "advancements.adventure.honey_block_slide.description": "Cat slidez on Sticky thing to B saved", + "advancements.adventure.honey_block_slide.title": "Sticky Cat", + "advancements.adventure.kill_a_mob.description": "Fite a bad kitteh", + "advancements.adventure.kill_a_mob.title": "Bad Kitteh deadmakr", + "advancements.adventure.kill_all_mobs.description": "Scratch wun uv each bad catz", + "advancements.adventure.kill_all_mobs.title": "Bad Kettehs made ded", + "advancements.adventure.kill_mob_near_sculk_catalyst.description": "Meak a mob ded near Weid blu Cat-alist :(", + "advancements.adventure.kill_mob_near_sculk_catalyst.title": "Teh Weird Thing Spredz", + "advancements.adventure.lightning_rod_with_villager_no_fire.description": "Protect Vilagr frum an undesird shok withowt startin fire", + "advancements.adventure.lightning_rod_with_villager_no_fire.title": "BOOM protecc", + "advancements.adventure.ol_betsy.description": "Shuut da Crosbowz", + "advancements.adventure.ol_betsy.title": "Ol' Betsey", + "advancements.adventure.play_jukebox_in_meadows.description": "Mak the Medows come aliv with the sond fo msic form a Jokebox", + "advancements.adventure.play_jukebox_in_meadows.title": "CATZ of musik", + "advancements.adventure.root.description": "Catvntur, explor an fite", + "advancements.adventure.root.title": "Catventure", + "advancements.adventure.shoot_arrow.description": "shot thing with arow", + "advancements.adventure.shoot_arrow.title": "Hedshot som1", + "advancements.adventure.sleep_in_bed.description": "taek a Nap 2 chengz ur kat home", + "advancements.adventure.sleep_in_bed.title": "Cat dreams", + "advancements.adventure.sniper_duel.description": "ez a boniboi frum at lest 50 metrs ewey", + "advancements.adventure.sniper_duel.title": "mLgY0l0 dewwel!!!", + "advancements.adventure.spyglass_at_dragon.description": "Lok at teh Dwagon Bos throo Spyglaz", + "advancements.adventure.spyglass_at_dragon.title": "IS THAT A SUPRA ?!!!!!", + "advancements.adventure.spyglass_at_ghast.description": "Lok at Cryin Big Cat throo Spyglaz", + "advancements.adventure.spyglass_at_ghast.title": "R it Balon?", + "advancements.adventure.spyglass_at_parrot.description": "Lok at teh berd throo a Spyglaz", + "advancements.adventure.spyglass_at_parrot.title": "R it bird?", + "advancements.adventure.summon_iron_golem.description": "Spawn 1 strange irun hooman 2 defend ordinary hoomanz in hooman town", + "advancements.adventure.summon_iron_golem.title": "Haird HALP", + "advancements.adventure.throw_trident.description": "Frow a Dinglehopper at sumthin.\nNot: Frowin away katz only wepun is no gud.", + "advancements.adventure.throw_trident.title": "EYE thruwei pun", + "advancements.adventure.totem_of_undying.description": "Uze a Toitem of Undining to cheetos deth", + "advancements.adventure.totem_of_undying.title": "After dieded", + "advancements.adventure.trade.description": "Successfullee traid wif villagr", + "advancements.adventure.trade.title": "Wat a deel!", + "advancements.adventure.trade_at_world_height.description": "Trade wit Villaguur rlly high", + "advancements.adventure.trade_at_world_height.title": "Rlly good tradr", + "advancements.adventure.two_birds_one_arrow.description": "Makez 2 Creepy Flyin Tings ded wit a piering Arrrou", + "advancements.adventure.two_birds_one_arrow.title": "2 Birbz, 1 Errow", + "advancements.adventure.very_very_frightening.description": "Striqe a Villagur wiz lijthing!", + "advancements.adventure.very_very_frightening.title": "beri beri frijthing!", + "advancements.adventure.voluntary_exile.description": "Kill rade captain\nStay away frum villadges 4 nao...", + "advancements.adventure.voluntary_exile.title": "He Ded, Boi", + "advancements.adventure.walk_on_powder_snow_with_leather_boots.description": "Walk on Weird Snow...without fell in it (oh no)", + "advancements.adventure.walk_on_powder_snow_with_leather_boots.title": "Lite as a kitteh", + "advancements.adventure.whos_the_pillager_now.description": "Give a Pilagur a test of itz oon medicin", + "advancements.adventure.whos_the_pillager_now.title": "I am da Pilagur. Not U!", + "advancements.empty": "Dere duznt sem 2 bee anythin hier...", + "advancements.end.dragon_breath.description": "Clean Dragon tooth", + "advancements.end.dragon_breath.title": "Throw in a Minetos", + "advancements.end.dragon_egg.description": "Hold Dragnoz' unhatched baby", + "advancements.end.dragon_egg.title": "Da next generashion", + "advancements.end.elytra.description": "I BELIEVE I CAN FLYYYYYYYY", + "advancements.end.elytra.title": "Sky iz teh limit", + "advancements.end.enter_end_gateway.description": "ESC the I-land", + "advancements.end.enter_end_gateway.title": "Remut getawai", + "advancements.end.find_end_city.description": "Go in, wat cud possibly go wong?", + "advancements.end.find_end_city.title": "Da city @ end", + "advancements.end.kill_dragon.description": "Git gud", + "advancements.end.kill_dragon.title": "Free teh End", + "advancements.end.levitate.description": "Flai up 50 bloks laik suprkitty aftr getin hit by a shulker", + "advancements.end.levitate.title": "Supr dupr view up heer", + "advancements.end.respawn_dragon.description": "rspwn skary dragyboi", + "advancements.end.respawn_dragon.title": "Teh End... Agaen...", + "advancements.end.root.description": "Or da start?", + "advancements.end.root.title": "Teh End", + "advancements.husbandry.allay_deliver_cake_to_note_block.description": "hev anz Flyin Blu Mob dzop a cek az nout bluk", + "advancements.husbandry.allay_deliver_cake_to_note_block.title": "Happi Birfday!! (\u3065^\uff65\u03c9\uff65^)\u3065", + "advancements.husbandry.allay_deliver_item_to_player.description": "hev an Flyin Blu Mob delyvex ytem tu u", + "advancements.husbandry.allay_deliver_item_to_player.title": "therz a kat in mi <:D", + "advancements.husbandry.axolotl_in_a_bucket.description": "Katch good Boyz with bucket", + "advancements.husbandry.axolotl_in_a_bucket.title": "Kitteh caught da KUTE FISH", + "advancements.husbandry.balanced_diet.description": "EAT ALL THE THINGZ", + "advancements.husbandry.balanced_diet.title": "ful uf fuuud", + "advancements.husbandry.breed_all_animals.description": "Briid oll da animalz!", + "advancements.husbandry.breed_all_animals.title": "2 by 2 iz 4?", + "advancements.husbandry.breed_an_animal.description": "Breeed 2 animalz 2gether", + "advancements.husbandry.breed_an_animal.title": "Da Parruts + da Batz", + "advancements.husbandry.complete_catalogue.description": "Become cat lord!", + "advancements.husbandry.complete_catalogue.title": "A Complet Cat-A-Log", + "advancements.husbandry.fishy_business.description": "Cat a fishy", + "advancements.husbandry.fishy_business.title": "fishy bashiness", + "advancements.husbandry.froglights.description": "get em all Toadshines in ya inventari", + "advancements.husbandry.froglights.title": "2gether we meoww!", + "advancements.husbandry.kill_axolotl_target.description": "TEEM UP WIF A KUTE FISHH AN WIN FITE", + "advancements.husbandry.kill_axolotl_target.title": "Teh Heelin Powr for Frendship", + "advancements.husbandry.leash_all_frog_variants.description": "Git evvy Toad on a Leesh", + "advancements.husbandry.leash_all_frog_variants.title": "Toad geng", + "advancements.husbandry.make_a_sign_glow.description": "Use da Magik Shineeh Skwid Powars too maek Sign shiny :O", + "advancements.husbandry.make_a_sign_glow.title": "Low n' bee-hooold!", + "advancements.husbandry.netherite_hoe.description": "Use an Hot Blak Thing to upgrat a Hoe, and then reevaluate ur other 8 choices", + "advancements.husbandry.netherite_hoe.title": "r u seriouz y u do dis", + "advancements.husbandry.plant_seed.description": "Plant 1 seed and w8t 4 it 2 grouw", + "advancements.husbandry.plant_seed.title": "SEEDZ!", + "advancements.husbandry.ride_a_boat_with_a_goat.description": "Get in bowt an flowt wif Gaot", + "advancements.husbandry.ride_a_boat_with_a_goat.title": "Watevr floatz ur gaot!", + "advancements.husbandry.root.description": "Diz wurld iz full of catz an eetin stuffz", + "advancements.husbandry.root.title": "Huzbandry", + "advancements.husbandry.safely_harvest_honey.description": "Have Faier to get Sweetz from Beez House wit a Bottel so dey dnt bite u", + "advancements.husbandry.safely_harvest_honey.title": "B our cat", + "advancements.husbandry.silk_touch_nest.description": "Smooth mine da Beez 2 do a B-lokation", + "advancements.husbandry.silk_touch_nest.title": "totl B-lokatiuon", + "advancements.husbandry.tactical_fishing.description": "Cat a Fishy... wizhout a Stik!", + "advancements.husbandry.tactical_fishing.title": "Kattical fihing", + "advancements.husbandry.tadpole_in_a_bucket.description": "Katch a kute smol toad in a bukkit", + "advancements.husbandry.tadpole_in_a_bucket.title": "Bukkit\u00b2", + "advancements.husbandry.tame_an_animal.description": "Taem a friendooo", + "advancements.husbandry.tame_an_animal.title": "BEZT CATZ EVAARR", + "advancements.husbandry.wax_off.description": "Scrape Waks off for Coppr Blok!", + "advancements.husbandry.wax_off.title": "Waks off", + "advancements.husbandry.wax_on.description": "Apple Honeycomb 2 Coppr Blok", + "advancements.husbandry.wax_on.title": "Waks on", + "advancements.nether.all_effects.description": "Hav evri effelt applied at teh saem tiem", + "advancements.nether.all_effects.title": "Haw did we get 'ere\u00bf", + "advancements.nether.all_potions.description": "Hav evri potion effect applied at teh same tiem", + "advancements.nether.all_potions.title": "Strange tastin' milk", + "advancements.nether.brew_potion.description": "Brw poshun", + "advancements.nether.brew_potion.title": "You're a lizard, Hairy", + "advancements.nether.charge_respawn_anchor.description": "FulL Powahhh", + "advancements.nether.charge_respawn_anchor.title": "fake LOLCAT!", + "advancements.nether.create_beacon.description": "Konstrukt and plaic a bacon", + "advancements.nether.create_beacon.title": "Bring hoem da bacon", + "advancements.nether.create_full_beacon.description": "Charg bacon 2 100%!!!1!", + "advancements.nether.create_full_beacon.title": "Baconator 2000", + "advancements.nether.distract_piglin.description": "Gib shinyy tu da Piglins", + "advancements.nether.distract_piglin.title": "Shinyyyy", + "advancements.nether.explore_nether.description": "Si al Nether bioms >:3", + "advancements.nether.explore_nether.title": "Veri hot vacashun", + "advancements.nether.fast_travel.description": "Uz da Nether 2 travl 7 km in slipycatwurld", + "advancements.nether.fast_travel.title": "Hiway thru hell", + "advancements.nether.find_bastion.description": "Go in Spoooky Place", + "advancements.nether.find_bastion.title": "Loong LoOong Agoo", + "advancements.nether.find_fortress.description": "Rush B I MEEN intu a Nether Fortress", + "advancements.nether.find_fortress.title": "Terribl Fortrez", + "advancements.nether.get_wither_skull.description": "get Wither skelet's skul", + "advancements.nether.get_wither_skull.title": "Spoopy Scury Skele-ton", + "advancements.nether.loot_bastion.description": "Steal frum an Anshien Cat Box", + "advancements.nether.loot_bastion.title": "War oinks", + "advancements.nether.netherite_armor.description": "get in a 4 sided Netherite box", + "advancements.nether.netherite_armor.title": "Covr meow in trash", + "advancements.nether.obtain_ancient_debris.description": "Ged de old trash", + "advancements.nether.obtain_ancient_debris.title": "Hidin under da couch", + "advancements.nether.obtain_blaze_rod.description": "Releef 1 blaze of its tail", + "advancements.nether.obtain_blaze_rod.title": "In2 fire", + "advancements.nether.obtain_crying_obsidian.description": "obtain depressed hard blok", + "advancements.nether.obtain_crying_obsidian.title": "The sadest blog evah :(", + "advancements.nether.return_to_sender.description": "Beet meanz Ghast w/ fiery ball", + "advancements.nether.return_to_sender.title": "Return 2 sendr", + "advancements.nether.ride_strider.description": "Climb on leg boats wif da moshroom stik", + "advancements.nether.ride_strider.title": "Dis bout haz legz!", + "advancements.nether.ride_strider_in_overworld_lava.description": "Take a Stridr for a looooooooong rid no a lav lak in teh Overwrld", + "advancements.nether.ride_strider_in_overworld_lava.title": "Itz laiK hOm", + "advancements.nether.root.description": "It's gun be HOT", + "advancements.nether.root.title": "Nether", + "advancements.nether.summon_wither.description": "Summun da Wither", + "advancements.nether.summon_wither.title": "WUThering Heights", + "advancements.nether.uneasy_alliance.description": "rezcu a Ghast from Nether, brin it safly 2 cathouz 2 teh ovawurld... AND THEN BETRAYYYY!!!!!!!", + "advancements.nether.uneasy_alliance.title": "Un-eZ Aliance", + "advancements.nether.use_lodestone.description": "hit magned wit da other magned", + "advancements.nether.use_lodestone.title": "cawntry lowd, taek me hooome to da plazz i belllonggggg :)", + "advancements.sad_label": "UnU", + "advancements.story.cure_zombie_villager.description": "wekn & then kur a gren ded vlager!", + "advancements.story.cure_zombie_villager.title": "Zoombye Medic", + "advancements.story.deflect_arrow.description": "Arro NO pass", + "advancements.story.deflect_arrow.title": "Cat says, \"Nawt today!\"", + "advancements.story.enchant_item.description": "Inchant an item et an Inchant Tebl", + "advancements.story.enchant_item.title": "Encater", + "advancements.story.enter_the_end.description": "Entr teh End Portel", + "advancements.story.enter_the_end.title": "Teh End?", + "advancements.story.enter_the_nether.description": "Bilt, lite and entr Nether Portel", + "advancements.story.enter_the_nether.title": "Us needz 2 go deepurr", + "advancements.story.follow_ender_eye.description": "folo 4n ey of endr on twtter!!!", + "advancements.story.follow_ender_eye.title": "Aye Spai", + "advancements.story.form_obsidian.description": "obtian a Blokc ov Hardst Hardest Thing EVAR", + "advancements.story.form_obsidian.title": "Ize Bucket Chalendz", + "advancements.story.iron_tools.description": "Mek beter pikax", + "advancements.story.iron_tools.title": "Oh isnt it iron pik", + "advancements.story.lava_bucket.description": "Fil Bukkit wif Hot Sauce", + "advancements.story.lava_bucket.title": "Hot Stuffz", + "advancements.story.mine_diamond.description": "Get dimunds", + "advancements.story.mine_diamond.title": "DEEMONDS!", + "advancements.story.mine_stone.description": "Mine stone wif ur sparckling new pikaxe", + "advancements.story.mine_stone.title": "Stoen Aeg", + "advancements.story.obtain_armor.description": "Defend urself wid a piic of iron man suit", + "advancements.story.obtain_armor.title": "Suit up k?", + "advancements.story.root.description": "Da hart and stowy of de gaim", + "advancements.story.root.title": "Minceraft", + "advancements.story.shiny_gear.description": "Deemond suit saves kitties' lives", + "advancements.story.shiny_gear.title": "Covr cat wit shin' diamonds", + "advancements.story.smelt_iron.description": "Cook teh iruns", + "advancements.story.smelt_iron.title": "I can haz irun", + "advancements.story.upgrade_tools.description": "Maek a beder pikkatt", + "advancements.story.upgrade_tools.title": "Lehveleng UP", + "advancements.toast.challenge": "Chalendz Kumpleet!", + "advancements.toast.goal": "Gool Reetst!", + "advancements.toast.task": "Atfancemend maed!", + "argument.anchor.invalid": "invalid entity anchor posishun %s", + "argument.angle.incomplete": "not completz (1 angl ekspectd)", + "argument.angle.invalid": "Dis angul bad", + "argument.block.id.invalid": "Cat doezn't know diz bluk taiip '%s'", + "argument.block.property.duplicate": "Properti '%s' can unli bee set wans 4 bluk %s", + "argument.block.property.invalid": "Bluk %s doez not axept '%s' 4 %s properti", + "argument.block.property.novalue": "Cat doez expected valiu four properti '%s' on bluk %s", + "argument.block.property.unclosed": "expected closing ] fur blok state properlies", + "argument.block.property.unknown": "Bluk %s doez not haf properti '%s'", + "argument.block.tag.disallowed": "Tags arent allowud, onli real blokz", + "argument.color.invalid": "was dis color? %s", + "argument.component.invalid": "invalud chat compononent: %s", + "argument.criteria.invalid": "unknknomwn criterion '%s'", + "argument.dimension.invalid": "Idk teh dimenzion '%s'", + "argument.double.big": "Dubeel must not bE moar than %s, fund %s", + "argument.double.low": "Double must nut be lezz den %s, fund %s", + "argument.entity.invalid": "Bad naem or UUID", + "argument.entity.notfound.entity": "No entity wuz findz", + "argument.entity.notfound.player": "No playr wuz findz", + "argument.entity.options.advancements.description": "Catz wit atfancemends", + "argument.entity.options.distance.description": "ow far is entitii", + "argument.entity.options.distance.negative": "distance catnot be negativ", + "argument.entity.options.dx.description": "entitis bitwn x n x + dx", + "argument.entity.options.dy.description": "catz btwn y and y + dy", + "argument.entity.options.dz.description": "kat btwn z and z + dz", + "argument.entity.options.gamemode.description": "Catz wit gaemode", + "argument.entity.options.inapplicable": "Optshn '%s' isnt aplickyble her", + "argument.entity.options.level.description": "lvl", + "argument.entity.options.level.negative": "Levuls catnot be negativ", + "argument.entity.options.limit.description": "Max numberr of entitiz to returnn", + "argument.entity.options.limit.toosmall": "Limit must be at least 1", + "argument.entity.options.mode.invalid": "invalid aw unnown geim moud '%s'", + "argument.entity.options.name.description": "Entitii naem", + "argument.entity.options.nbt.description": "Entitiz wit NBT", + "argument.entity.options.predicate.description": "Ur own predikate thingie", + "argument.entity.options.scores.description": "Entitiz wit scorz", + "argument.entity.options.sort.description": "Surt entitiz", + "argument.entity.options.sort.irreversible": "Invalid aw unnown surt styl '%s'", + "argument.entity.options.tag.description": "Entitiz wit tag", + "argument.entity.options.team.description": "Entitiz in team", + "argument.entity.options.type.description": "Entitiz of typ", + "argument.entity.options.type.invalid": "Invalid aw unnown entkitty styl '%s'", + "argument.entity.options.unknown": "unknauwn optshn '%s'", + "argument.entity.options.unterminated": "ekspected end of opshunz", + "argument.entity.options.valueless": "Cat doez expected valiu four option '%s'", + "argument.entity.options.x.description": "x positun", + "argument.entity.options.x_rotation.description": "Entiti'z x rotaetun", + "argument.entity.options.y.description": "y positun", + "argument.entity.options.y_rotation.description": "Entiti'z y rotaetun", + "argument.entity.options.z.description": "z positun", + "argument.entity.selector.allEntities": "All entitiz", + "argument.entity.selector.allPlayers": "All cats", + "argument.entity.selector.missing": "Missing selector kat", + "argument.entity.selector.nearestPlayer": "Neerest cat", + "argument.entity.selector.not_allowed": "Sileector don't allow ed ", + "argument.entity.selector.randomPlayer": "Rundom cat", + "argument.entity.selector.self": "Curent entitiii", + "argument.entity.selector.unknown": "Cat doezn't know diz silection taip '%s'", + "argument.entity.toomany": "Onwee wun enteetee ish alow'd, butt de provied'd shelektur alowz mur den wun", + "argument.enum.invalid": "Valu caan't use \"%s\" :(", + "argument.float.big": "Float must not be moar than %s, findz %s", + "argument.float.low": "Float must not be les than %s, findz %s", + "argument.id.invalid": "Invawid ID", + "argument.id.unknown": "wuts the id %s ??", + "argument.integer.big": "Integr must not be moar than %s, findz %s", + "argument.integer.low": "Integr must not be les than %s, findz %s", + "argument.item.id.invalid": "Cat doezn't know diz item '%s'", + "argument.item.tag.disallowed": "Tegs arunt allwed, only itemz", + "argument.literal.incorrect": "expectd literal %s", + "argument.long.big": "Lounge must not b moar dan %s, findz %s", + "argument.long.low": "Lounge must not b les than %s, findz %s", + "argument.nbt.array.invalid": "Invalid urray styl '%s'", + "argument.nbt.array.mixed": "Cant insert %s into %s", + "argument.nbt.expected.key": "Ekspectd key", + "argument.nbt.expected.value": "Ekspectd valu", + "argument.nbt.list.mixed": "Cant insert %s into list ov %s", + "argument.nbt.trailing": "Unexpected trailing data", + "argument.player.entities": "Onwee playrs can be efect'd by dis cmd, butt de provied'd shelektur includs enteetees", + "argument.player.toomany": "Onwee wun playr ish alow'd, butt de provied'd shelektur alowz mur den wun", + "argument.player.unknown": "Dat playr duz nawt exist", + "argument.pos.missing.double": "Expectd coordinaet", + "argument.pos.missing.int": "expected a blockz pozishun", + "argument.pos.mixed": "Cant mix world & locat coordz (everything must either use ^ or not)", + "argument.pos.outofbounds": "Dis pozishin iz outta diz wurld!!!!!!", + "argument.pos.outofworld": "dat pozishun is out of dis world!", + "argument.pos.unloaded": "dat pozishun iz not loaded", + "argument.pos2d.incomplete": "incompletez (ekspected 2 coords)", + "argument.pos3d.incomplete": "incompletez (ekspected 3 coords)", + "argument.range.empty": "expecc valu or ranj 0f vlues", + "argument.range.ints": "Ohnlee hoel numburz alowd, nat decimulz", + "argument.range.swapped": "min cannut be lahrger den max", + "argument.rotation.incomplete": "incompletez (ekspected 2 coords)", + "argument.scoreHolder.empty": "No skore holdurs cat be foundz", + "argument.scoreboardDisplaySlot.invalid": "Cat doezn't know deespley eslot '%s'", + "argument.time.invalid_tick_count": "Tik nombur nedz 2 bee nu-negative", + "argument.time.invalid_unit": "Invalud yoonit", + "argument.uuid.invalid": "Invawid kat ID", + "arguments.block.tag.unknown": "Cat doezn't know diz bluk taj: '%s'", + "arguments.function.tag.unknown": "Cat doezn't know diz funktion taj '%s'", + "arguments.function.unknown": "Cat doezn't know diz funktion '%s'", + "arguments.item.overstacked": "%s can unli stack ap tu %s", + "arguments.item.tag.unknown": "Cat doezn't know diz item teg '%s'", + "arguments.nbtpath.node.invalid": "Invalud NBT path element", + "arguments.nbtpath.nothing_found": "Fond no elementz matching %s", + "arguments.objective.notFound": "Unknown scorebord objectiv %s", + "arguments.objective.readonly": "scorebord objectiv %s iz read-only", + "arguments.operation.div0": "cunot divid bai ZERo", + "arguments.operation.invalid": "Invalud operaishun", + "arguments.swizzle.invalid": "Wrong swizzle, ekspected 'x', 'y' and 'z'", + "attribute.modifier.equals.0": "%s %s", + "attribute.modifier.equals.1": "%s%% %s", + "attribute.modifier.equals.2": "%s%% %s", + "attribute.modifier.plus.0": "+%s %s", + "attribute.modifier.plus.1": "+%s%% %s", + "attribute.modifier.plus.2": "+%s%% %s", + "attribute.modifier.take.0": "-%s %s", + "attribute.modifier.take.1": "-%s%% %s", + "attribute.modifier.take.2": "-%s%% %s", + "attribute.name.generic.armor": "Armur", + "attribute.name.generic.armor_toughness": "Armur fatness", + "attribute.name.generic.attack_damage": "attak damige", + "attribute.name.generic.attack_knockback": "Atacc noccbaccz", + "attribute.name.generic.attack_speed": "attak faztnes", + "attribute.name.generic.flying_speed": "flew spede", + "attribute.name.generic.follow_range": "mob folow raynge", + "attribute.name.generic.knockback_resistance": "Nockback Rezistance", + "attribute.name.generic.luck": "LOL", + "attribute.name.generic.max_health": "max helth", + "attribute.name.generic.movement_speed": "spede", + "attribute.name.horse.jump_strength": "horze jumpeh strenth", + "attribute.name.zombie.spawn_reinforcements": "zombee reinforzemontz", + "attribute.unknown": "wat da hek is dat?", + "biome.minecraft.badlands": "Hot dirt land", + "biome.minecraft.bamboo_jungle": "Green Stick Junglz", + "biome.minecraft.basalt_deltas": "Bawzult deltaz", + "biome.minecraft.beach": "Watury sans", + "biome.minecraft.birch_forest": "Wite Forust", + "biome.minecraft.cold_ocean": "Cold Oshun", + "biome.minecraft.crimson_forest": "Crimsun wuds", + "biome.minecraft.dark_forest": "Creepy forest", + "biome.minecraft.deep_cold_ocean": "Deap Cold Oatshun", + "biome.minecraft.deep_dark": "Derk hole", + "biome.minecraft.deep_frozen_ocean": "Dep frzo oshun", + "biome.minecraft.deep_lukewarm_ocean": "Deap Lukwurm Oatshun", + "biome.minecraft.deep_ocean": "Deep Watur Land", + "biome.minecraft.desert": "Sandy Place", + "biome.minecraft.dripstone_caves": "VERY sharp caevz", + "biome.minecraft.end_barrens": "End Barenz", + "biome.minecraft.end_highlands": "End Tolllandz", + "biome.minecraft.end_midlands": "End Semilandz", + "biome.minecraft.eroded_badlands": "Broken Badlandz", + "biome.minecraft.flower_forest": "flowy woodz", + "biome.minecraft.forest": "Forust", + "biome.minecraft.frozen_ocean": "Iced watr land", + "biome.minecraft.frozen_peaks": "Frozeen Peeks", + "biome.minecraft.frozen_river": "Frushen Rivir", + "biome.minecraft.grove": "Groov", + "biome.minecraft.ice_spikes": "Spiky icy thngz", + "biome.minecraft.jagged_peaks": "Jagegd Peeks", + "biome.minecraft.jungle": "Gungle", + "biome.minecraft.lukewarm_ocean": "Lukwurm Oatshun", + "biome.minecraft.lush_caves": "Forest caevz", + "biome.minecraft.mangrove_swamp": "Mangroff Zwump", + "biome.minecraft.meadow": "Meedowe", + "biome.minecraft.mushroom_fields": "Mushroom fieldz", + "biome.minecraft.nether_wastes": "Nether sux", + "biome.minecraft.ocean": "Watur land", + "biome.minecraft.old_growth_birch_forest": "Old grouwth brch tree place", + "biome.minecraft.old_growth_pine_taiga": "Old grouwth sPine tree place", + "biome.minecraft.old_growth_spruce_taiga": "Old grouwth sprooce tree place", + "biome.minecraft.plains": "Planes", + "biome.minecraft.river": "Watur road", + "biome.minecraft.savanna": "Savanna oh nana", + "biome.minecraft.savanna_plateau": "Zavana Plato", + "biome.minecraft.small_end_islands": "Smol End Izlandz", + "biome.minecraft.snowy_beach": "Snuwy WatRside", + "biome.minecraft.snowy_plains": "Snowee Plans", + "biome.minecraft.snowy_slopes": "Snowee Slops", + "biome.minecraft.snowy_taiga": "Snuwy Tayga", + "biome.minecraft.soul_sand_valley": "ded peepl valee", + "biome.minecraft.sparse_jungle": "Spars Jngle", + "biome.minecraft.stony_peaks": "Stonee Peeks", + "biome.minecraft.stony_shore": "Ston Chore", + "biome.minecraft.sunflower_plains": "Sunflowr plans", + "biome.minecraft.swamp": "Zwump", + "biome.minecraft.taiga": "Tiga", + "biome.minecraft.the_end": "Teh End", + "biome.minecraft.the_void": "Noutheyng", + "biome.minecraft.warm_ocean": "HOT Waterz", + "biome.minecraft.warped_forest": "warpd wuds", + "biome.minecraft.windswept_forest": "Windsept Forst", + "biome.minecraft.windswept_gravelly_hills": "Windsept Gravely Hlils", + "biome.minecraft.windswept_hills": "Windsept Hlils", + "biome.minecraft.windswept_savanna": "Windsept Savana", + "biome.minecraft.wooded_badlands": "Badlandz wit treeeez", + "block.minecraft.acacia_button": "Akacia Button", + "block.minecraft.acacia_door": "Acashuh Dor", + "block.minecraft.acacia_fence": "Cat Fence\n", + "block.minecraft.acacia_fence_gate": "ACAISHA GAIT", + "block.minecraft.acacia_leaves": "savana lefs", + "block.minecraft.acacia_log": "Acashuh lawg", + "block.minecraft.acacia_planks": "Acashuh Plankz", + "block.minecraft.acacia_pressure_plate": "Akacia Prseure Pleitz", + "block.minecraft.acacia_sapling": "Baby Acashuh", + "block.minecraft.acacia_sign": "Acashuh Sign", + "block.minecraft.acacia_slab": "Akacia Sleb", + "block.minecraft.acacia_stairs": "Acaci Stairz", + "block.minecraft.acacia_trapdoor": "Akacia Trap", + "block.minecraft.acacia_wall_sign": "Acashuh Sign on ur wall", + "block.minecraft.acacia_wood": "Acashuh Wuud", + "block.minecraft.activator_rail": "POWAAAAAAAAAAAH", + "block.minecraft.air": "Aihr", + "block.minecraft.allium": "Alollium", + "block.minecraft.amethyst_block": "Purpur shinee bluk", + "block.minecraft.amethyst_cluster": "Dun purpur shinee", + "block.minecraft.ancient_debris": "super old stuffz", + "block.minecraft.andesite": "grey rock", + "block.minecraft.andesite_slab": "Grey Rock", + "block.minecraft.andesite_stairs": "Grey Rock Stairz", + "block.minecraft.andesite_wall": "Grey Rock Wal", + "block.minecraft.anvil": "Anvehl", + "block.minecraft.attached_melon_stem": "sticky melon stik", + "block.minecraft.attached_pumpkin_stem": "Atachd pumpkin stem", + "block.minecraft.azalea": "Turtl-shel-laik trea", + "block.minecraft.azalea_leaves": "Les pretehh lefs", + "block.minecraft.azure_bluet": "Bloo flowre", + "block.minecraft.bamboo": "Green Stick", + "block.minecraft.bamboo_sapling": "littl baby green stik", + "block.minecraft.banner.base.black": "BLAK", + "block.minecraft.banner.base.blue": "Fully bloo feld", + "block.minecraft.banner.base.brown": "Fulle broun feld", + "block.minecraft.banner.base.cyan": "Full cayan feild", + "block.minecraft.banner.base.gray": "FLUL grayy field", + "block.minecraft.banner.base.green": "GREN", + "block.minecraft.banner.base.light_blue": "Fule lite bloooooo fieldd", + "block.minecraft.banner.base.light_gray": "LITTER COLUR", + "block.minecraft.banner.base.lime": "CAT MINT COLUR", + "block.minecraft.banner.base.magenta": "MEOWENTA", + "block.minecraft.banner.base.orange": "HONEY COLUR", + "block.minecraft.banner.base.pink": "PAW COLUR", + "block.minecraft.banner.base.purple": "PURRP", + "block.minecraft.banner.base.red": "cOMEPLETELY red feeld", + "block.minecraft.banner.base.white": "Fool wite filed", + "block.minecraft.banner.base.yellow": "Fuly ye low feild", + "block.minecraft.banner.border.black": "Blak Burdur", + "block.minecraft.banner.border.blue": "Blu Brdur", + "block.minecraft.banner.border.brown": "brown burder", + "block.minecraft.banner.border.cyan": "Sighan Burdur", + "block.minecraft.banner.border.gray": "Gra Burdur", + "block.minecraft.banner.border.green": "Gren Burdur", + "block.minecraft.banner.border.light_blue": "Lite bloo burdur", + "block.minecraft.banner.border.light_gray": "Lite Gra Burdur", + "block.minecraft.banner.border.lime": "Lim Burdur", + "block.minecraft.banner.border.magenta": "Majenta burdur", + "block.minecraft.banner.border.orange": "Ornge burdur", + "block.minecraft.banner.border.pink": "Pnk Burdur", + "block.minecraft.banner.border.purple": "Purrrrple Burdur", + "block.minecraft.banner.border.red": "Redd Burdur", + "block.minecraft.banner.border.white": "Wite burdur", + "block.minecraft.banner.border.yellow": "Yallow Brdur", + "block.minecraft.banner.bricks.black": "BRIK PATTURN!", + "block.minecraft.banner.bricks.blue": "covert in emo briks", + "block.minecraft.banner.bricks.brown": "Broun briks", + "block.minecraft.banner.bricks.cyan": "Nyan briks", + "block.minecraft.banner.bricks.gray": "Grey briks", + "block.minecraft.banner.bricks.green": "Grean briks", + "block.minecraft.banner.bricks.light_blue": "covert in laight blue briks", + "block.minecraft.banner.bricks.light_gray": "Lite Grey briks", + "block.minecraft.banner.bricks.lime": "lemi Feld mazond", + "block.minecraft.banner.bricks.magenta": "Majenta Feild Masoneded", + "block.minecraft.banner.bricks.orange": "coverd in oringe briks", + "block.minecraft.banner.bricks.pink": "Pink briks", + "block.minecraft.banner.bricks.purple": "Purpal briks", + "block.minecraft.banner.bricks.red": "Red briks", + "block.minecraft.banner.bricks.white": "wit fel mazon", + "block.minecraft.banner.bricks.yellow": "covert in yella briks", + "block.minecraft.banner.circle.black": "Black Rundel", + "block.minecraft.banner.circle.blue": "Bluu Rundel", + "block.minecraft.banner.circle.brown": "Bruwn Rundel", + "block.minecraft.banner.circle.cyan": "Cyan Rundel", + "block.minecraft.banner.circle.gray": "Gry Rundel", + "block.minecraft.banner.circle.green": "Gren Rundel", + "block.minecraft.banner.circle.light_blue": "Light Bluu Rundel", + "block.minecraft.banner.circle.light_gray": "Light Gry Rundel", + "block.minecraft.banner.circle.lime": "Laim Rundel", + "block.minecraft.banner.circle.magenta": "Magnta Rundel", + "block.minecraft.banner.circle.orange": "Orang Rundel", + "block.minecraft.banner.circle.pink": "Pinkie Raundl", + "block.minecraft.banner.circle.purple": "Purpl Rundel", + "block.minecraft.banner.circle.red": "Red Rundel", + "block.minecraft.banner.circle.white": "Whit Rundel", + "block.minecraft.banner.circle.yellow": "Yello Rundel", + "block.minecraft.banner.creeper.black": "bleck creeper churge", + "block.minecraft.banner.creeper.blue": "bleu creeper churge", + "block.minecraft.banner.creeper.brown": "brouwn creeper churge", + "block.minecraft.banner.creeper.cyan": "bleu creeper churge", + "block.minecraft.banner.creeper.gray": "grey creeper churge", + "block.minecraft.banner.creeper.green": "gryen creeper churge", + "block.minecraft.banner.creeper.light_blue": "lite blew creeper churge", + "block.minecraft.banner.creeper.light_gray": "lite grey creeper churge", + "block.minecraft.banner.creeper.lime": "liem creeper churge", + "block.minecraft.banner.creeper.magenta": "pyrple creeper churge", + "block.minecraft.banner.creeper.orange": "oraynge creeper churge", + "block.minecraft.banner.creeper.pink": "pienk creeper churge", + "block.minecraft.banner.creeper.purple": "pyrple creeper churge", + "block.minecraft.banner.creeper.red": "ried creeper churge", + "block.minecraft.banner.creeper.white": "whiet creeper churge", + "block.minecraft.banner.creeper.yellow": "yllow creeper churge", + "block.minecraft.banner.cross.black": "Blak Saltir", + "block.minecraft.banner.cross.blue": "Bloo Saltir", + "block.minecraft.banner.cross.brown": "Brwn Saltir", + "block.minecraft.banner.cross.cyan": "Cyan Saltir", + "block.minecraft.banner.cross.gray": "Gra Saltir", + "block.minecraft.banner.cross.green": "Gren Saltir", + "block.minecraft.banner.cross.light_blue": "Lite Bloo Saltir", + "block.minecraft.banner.cross.light_gray": "Lite Gra Saltir", + "block.minecraft.banner.cross.lime": "Lim Salitr", + "block.minecraft.banner.cross.magenta": "Majenta Saltir", + "block.minecraft.banner.cross.orange": "Ornge Salitr", + "block.minecraft.banner.cross.pink": "Pinc Saltir", + "block.minecraft.banner.cross.purple": "Purrrrrrrple Saltir", + "block.minecraft.banner.cross.red": "Red Salltir", + "block.minecraft.banner.cross.white": "Wite Saltir", + "block.minecraft.banner.cross.yellow": "Yelo Saltir", + "block.minecraft.banner.curly_border.black": "Blek bordur idedendededed", + "block.minecraft.banner.curly_border.blue": "Bloo burdur indentd", + "block.minecraft.banner.curly_border.brown": "Broun burdur indentd", + "block.minecraft.banner.curly_border.cyan": "Nyan burdur indentd", + "block.minecraft.banner.curly_border.gray": "Grey burdur indentd", + "block.minecraft.banner.curly_border.green": "Grean burdur indentd", + "block.minecraft.banner.curly_border.light_blue": "Lite bloo burdur indentd", + "block.minecraft.banner.curly_border.light_gray": "Lite Grey burdur indentd", + "block.minecraft.banner.curly_border.lime": "Lyem burdur indentd", + "block.minecraft.banner.curly_border.magenta": "Majenta burdur indentd", + "block.minecraft.banner.curly_border.orange": "Ornge burdur indentd", + "block.minecraft.banner.curly_border.pink": "Pink burdur indentd", + "block.minecraft.banner.curly_border.purple": "Purpal burdur indentd", + "block.minecraft.banner.curly_border.red": "Red burdur indentd", + "block.minecraft.banner.curly_border.white": "Wite burdur indentd", + "block.minecraft.banner.curly_border.yellow": "Yello burdur indentd", + "block.minecraft.banner.diagonal_left.black": "Blak Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.blue": "Blu Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.brown": "Browhn Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.cyan": "Sigh-Ann Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.gray": "Grey Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.green": "Grean Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.light_blue": "Lite Blu Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.light_gray": "Lite Grey Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.lime": "Lah-I'm Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.magenta": "Muhgentuh Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.orange": "Ohrang Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.pink": "Pink Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.purple": "Purpel Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.red": "Red Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.white": "Wite Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_left.yellow": "Yelo Pr Behnd Sinistar", + "block.minecraft.banner.diagonal_right.black": "Blak Purr Bend", + "block.minecraft.banner.diagonal_right.blue": "Bloo Purr Bend", + "block.minecraft.banner.diagonal_right.brown": "Brwn Purr Bend", + "block.minecraft.banner.diagonal_right.cyan": "Sighan Purr Bend", + "block.minecraft.banner.diagonal_right.gray": "Gra Purr Bend", + "block.minecraft.banner.diagonal_right.green": "Gren Purr Bend", + "block.minecraft.banner.diagonal_right.light_blue": "Lite Bloo Purr Bend", + "block.minecraft.banner.diagonal_right.light_gray": "Lite Gra Purr Bend", + "block.minecraft.banner.diagonal_right.lime": "Liem Purr Bend", + "block.minecraft.banner.diagonal_right.magenta": "Majentaa Purr Bend", + "block.minecraft.banner.diagonal_right.orange": "Ornge Purr Bend", + "block.minecraft.banner.diagonal_right.pink": "Pnk Purr Bend", + "block.minecraft.banner.diagonal_right.purple": "Purrrrple Purr Bend", + "block.minecraft.banner.diagonal_right.red": "Redd Purr Bend", + "block.minecraft.banner.diagonal_right.white": "Wite Purr Bend", + "block.minecraft.banner.diagonal_right.yellow": "Yelo Purr Bend", + "block.minecraft.banner.diagonal_up_left.black": "Blak Pr Behnd Inverted", + "block.minecraft.banner.diagonal_up_left.blue": "Blu Pr Behnd Inverted", + "block.minecraft.banner.diagonal_up_left.brown": "Browwhn Pr Behnd Inverted", + "block.minecraft.banner.diagonal_up_left.cyan": "Sigh-Ann Pr Behnd Inverted", + "block.minecraft.banner.diagonal_up_left.gray": "Gray Per Bend Invertd", + "block.minecraft.banner.diagonal_up_left.green": "Grean Pr Behnd Inverted", + "block.minecraft.banner.diagonal_up_left.light_blue": "Light Blue Per Bend Invertd", + "block.minecraft.banner.diagonal_up_left.light_gray": "Lite Gra Purr Bend Invertd", + "block.minecraft.banner.diagonal_up_left.lime": "Lime Per Bend Invertd", + "block.minecraft.banner.diagonal_up_left.magenta": "Magenta Per Bend Invertd", + "block.minecraft.banner.diagonal_up_left.orange": "Orange Per Bend Invertd", + "block.minecraft.banner.diagonal_up_left.pink": "Pink Per Bend Invertd", + "block.minecraft.banner.diagonal_up_left.purple": "Perpul Pr Behnd Inverted", + "block.minecraft.banner.diagonal_up_left.red": "Red Pr Behnd Inverted", + "block.minecraft.banner.diagonal_up_left.white": "Wait Pur Bent Invertd", + "block.minecraft.banner.diagonal_up_left.yellow": "Yellow Per Bend Invertd", + "block.minecraft.banner.diagonal_up_right.black": "Blak Par Bentsinistrrr Incetteerf", + "block.minecraft.banner.diagonal_up_right.blue": "Bluu Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.brown": "Brown Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.cyan": "Cyan Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.gray": "Gry Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.green": "Gren Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.light_blue": "Light bluu Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.light_gray": "Light Gry Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.lime": "Laim Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.magenta": "Magnta Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.orange": "Orang Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.pink": "Pink Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.purple": "Purpl Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.red": "Red Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.white": "Whit Pur Bed Sinster Invertud", + "block.minecraft.banner.diagonal_up_right.yellow": "Yello Pur Bed Sinster Invertud", + "block.minecraft.banner.flower.black": "Blak flowr karge", + "block.minecraft.banner.flower.blue": "Bloo Fluor Charg", + "block.minecraft.banner.flower.brown": "Broun Fluor Charg", + "block.minecraft.banner.flower.cyan": "Sighan Fluor Charg", + "block.minecraft.banner.flower.gray": "Gra Fluor Charg", + "block.minecraft.banner.flower.green": "Gren Fluor Charg", + "block.minecraft.banner.flower.light_blue": "Lite Bloo Fluor Charg", + "block.minecraft.banner.flower.light_gray": "Lite Gra Fluor Charg", + "block.minecraft.banner.flower.lime": "Liem Fluor Charg", + "block.minecraft.banner.flower.magenta": "Majentaa Fluor Charg", + "block.minecraft.banner.flower.orange": "Orang Fluor Charg", + "block.minecraft.banner.flower.pink": "Pinc Fluor Charg", + "block.minecraft.banner.flower.purple": "Purrrpl Fluor Charg", + "block.minecraft.banner.flower.red": "Redd Fluor Charg", + "block.minecraft.banner.flower.white": "Wite Fluor Charg", + "block.minecraft.banner.flower.yellow": "Yelo Fluor Charg", + "block.minecraft.banner.globe.black": "Ender Glolbe", + "block.minecraft.banner.globe.blue": "Water Glolbe", + "block.minecraft.banner.globe.brown": "Chocolate Glolbe", + "block.minecraft.banner.globe.cyan": "Cyaan Glolbe", + "block.minecraft.banner.globe.gray": "Gray Glolbe", + "block.minecraft.banner.globe.green": "Grass Glolbe", + "block.minecraft.banner.globe.light_blue": "Waterer Glolbe", + "block.minecraft.banner.globe.light_gray": "Lite Cyaan Glolbe", + "block.minecraft.banner.globe.lime": "Limd Glolbe", + "block.minecraft.banner.globe.magenta": "Majenta Glolbe", + "block.minecraft.banner.globe.orange": "Carrot Glolbe", + "block.minecraft.banner.globe.pink": "Pinky Glolbe", + "block.minecraft.banner.globe.purple": "Parpal Glolbe", + "block.minecraft.banner.globe.red": "Mojang Glolbe", + "block.minecraft.banner.globe.white": "Snow Glolbe", + "block.minecraft.banner.globe.yellow": "Banana Glolbe", + "block.minecraft.banner.gradient.black": "bleck faed", + "block.minecraft.banner.gradient.blue": "bleu faed", + "block.minecraft.banner.gradient.brown": "brouwn faed", + "block.minecraft.banner.gradient.cyan": "sea faed", + "block.minecraft.banner.gradient.gray": "grey faed", + "block.minecraft.banner.gradient.green": "greeen faed", + "block.minecraft.banner.gradient.light_blue": "lit bru gradz", + "block.minecraft.banner.gradient.light_gray": "lite grey faed", + "block.minecraft.banner.gradient.lime": "liem faed", + "block.minecraft.banner.gradient.magenta": "maginte gradz", + "block.minecraft.banner.gradient.orange": "oranje gradz", + "block.minecraft.banner.gradient.pink": "pienk faed", + "block.minecraft.banner.gradient.purple": "TEH PRPLZ TRANSIST", + "block.minecraft.banner.gradient.red": "ryd faed", + "block.minecraft.banner.gradient.white": "wit gradz", + "block.minecraft.banner.gradient.yellow": "yelouw faed", + "block.minecraft.banner.gradient_up.black": "blk gradz", + "block.minecraft.banner.gradient_up.blue": "bru gradz", + "block.minecraft.banner.gradient_up.brown": "bruwn gradz", + "block.minecraft.banner.gradient_up.cyan": "nyan gradz", + "block.minecraft.banner.gradient_up.gray": "gra grade", + "block.minecraft.banner.gradient_up.green": "gran gradz", + "block.minecraft.banner.gradient_up.light_blue": "lite blu gradz", + "block.minecraft.banner.gradient_up.light_gray": "lit gra grade", + "block.minecraft.banner.gradient_up.lime": "lemi gradz", + "block.minecraft.banner.gradient_up.magenta": "magintaz gradz", + "block.minecraft.banner.gradient_up.orange": "Ohrang Baze Graidieant", + "block.minecraft.banner.gradient_up.pink": "oink gradz", + "block.minecraft.banner.gradient_up.purple": "poiple gradz", + "block.minecraft.banner.gradient_up.red": "rad gradz", + "block.minecraft.banner.gradient_up.white": "Wite Bas Gradeent", + "block.minecraft.banner.gradient_up.yellow": "yello grad", + "block.minecraft.banner.half_horizontal.black": "blak purr fez", + "block.minecraft.banner.half_horizontal.blue": "blu purr fez", + "block.minecraft.banner.half_horizontal.brown": "brawn purr fez", + "block.minecraft.banner.half_horizontal.cyan": "cian purr fez", + "block.minecraft.banner.half_horizontal.gray": "grey perr fez", + "block.minecraft.banner.half_horizontal.green": "grean purr fez", + "block.minecraft.banner.half_horizontal.light_blue": "lightish blu perr fez", + "block.minecraft.banner.half_horizontal.light_gray": "lightish grey purr fez", + "block.minecraft.banner.half_horizontal.lime": "lime perr fez", + "block.minecraft.banner.half_horizontal.magenta": "majenta perr fez", + "block.minecraft.banner.half_horizontal.orange": "orange perr fez", + "block.minecraft.banner.half_horizontal.pink": "pink perr fez", + "block.minecraft.banner.half_horizontal.purple": "purrpel purr fez", + "block.minecraft.banner.half_horizontal.red": "red purr fez", + "block.minecraft.banner.half_horizontal.white": "colorless perr fez", + "block.minecraft.banner.half_horizontal.yellow": "yello perr fez", + "block.minecraft.banner.half_horizontal_bottom.black": "blak purr fess inverted", + "block.minecraft.banner.half_horizontal_bottom.blue": "Bloo par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.brown": "brown purr fess inverted", + "block.minecraft.banner.half_horizontal_bottom.cyan": "Nyan par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.gray": "Grey par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.green": "green purr fess inverted", + "block.minecraft.banner.half_horizontal_bottom.light_blue": "Lite bloo par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.light_gray": "Lite Gray par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.lime": "Lyem par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.magenta": "Majenta par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.orange": "Ornge par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.pink": "Pink par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.purple": "Purpal par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.red": "Red par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.white": "Wite par fazz invertud", + "block.minecraft.banner.half_horizontal_bottom.yellow": "Yello par fazz invertud", + "block.minecraft.banner.half_vertical.black": "blak pur payl", + "block.minecraft.banner.half_vertical.blue": "bloo pore payl", + "block.minecraft.banner.half_vertical.brown": "broun pr payl", + "block.minecraft.banner.half_vertical.cyan": "cian pur pal", + "block.minecraft.banner.half_vertical.gray": "grey purr peil", + "block.minecraft.banner.half_vertical.green": "grean por pail", + "block.minecraft.banner.half_vertical.light_blue": "lightt bkuez purr pail", + "block.minecraft.banner.half_vertical.light_gray": "lit gra pur pal", + "block.minecraft.banner.half_vertical.lime": "leim purr peil", + "block.minecraft.banner.half_vertical.magenta": "majenta purr pail", + "block.minecraft.banner.half_vertical.orange": "oringe purr peil", + "block.minecraft.banner.half_vertical.pink": "stylish purr peil", + "block.minecraft.banner.half_vertical.purple": "porple pair paiyiyil", + "block.minecraft.banner.half_vertical.red": "red par pal", + "block.minecraft.banner.half_vertical.white": "white purr pail", + "block.minecraft.banner.half_vertical.yellow": "yella purr peil", + "block.minecraft.banner.half_vertical_right.black": "blak purr pale inverted", + "block.minecraft.banner.half_vertical_right.blue": "blu purr pale inverted", + "block.minecraft.banner.half_vertical_right.brown": "brown purr pale inverted", + "block.minecraft.banner.half_vertical_right.cyan": "cyan purr pale inverted", + "block.minecraft.banner.half_vertical_right.gray": "grey purr pale inverted", + "block.minecraft.banner.half_vertical_right.green": "green purr pale inverted", + "block.minecraft.banner.half_vertical_right.light_blue": "lightish blu purr pale inverted", + "block.minecraft.banner.half_vertical_right.light_gray": "lighish grey purr pale inverted", + "block.minecraft.banner.half_vertical_right.lime": "lime purr pale inverted", + "block.minecraft.banner.half_vertical_right.magenta": "majenta purr pale inverted", + "block.minecraft.banner.half_vertical_right.orange": "orange purr pale inverted", + "block.minecraft.banner.half_vertical_right.pink": "pink purr pale inverted", + "block.minecraft.banner.half_vertical_right.purple": "purrrppple purr pale inverted", + "block.minecraft.banner.half_vertical_right.red": "red purr pale inverted", + "block.minecraft.banner.half_vertical_right.white": "colorless purr pale inverted", + "block.minecraft.banner.half_vertical_right.yellow": "yellow purr pale inverted", + "block.minecraft.banner.mojang.black": "Blak thng", + "block.minecraft.banner.mojang.blue": "Bloo thng", + "block.minecraft.banner.mojang.brown": "Broun thng", + "block.minecraft.banner.mojang.cyan": "Nyan thng", + "block.minecraft.banner.mojang.gray": "Grey thng", + "block.minecraft.banner.mojang.green": "Grean thng", + "block.minecraft.banner.mojang.light_blue": "Lite bloo thng", + "block.minecraft.banner.mojang.light_gray": "Lite Grey thng", + "block.minecraft.banner.mojang.lime": "Lyme thng", + "block.minecraft.banner.mojang.magenta": "Majenta thng", + "block.minecraft.banner.mojang.orange": "Ornge thng", + "block.minecraft.banner.mojang.pink": "Pig-colored thing", + "block.minecraft.banner.mojang.purple": "Purpal thng", + "block.minecraft.banner.mojang.red": "Redz thng", + "block.minecraft.banner.mojang.white": "Wite thng", + "block.minecraft.banner.mojang.yellow": "Yello thng", + "block.minecraft.banner.piglin.black": "Blak noze", + "block.minecraft.banner.piglin.blue": "Blu nouze", + "block.minecraft.banner.piglin.brown": "Brown noze", + "block.minecraft.banner.piglin.cyan": "Nyan noze", + "block.minecraft.banner.piglin.gray": "Gray noze", + "block.minecraft.banner.piglin.green": "Green noze", + "block.minecraft.banner.piglin.light_blue": "Lite bluu nouze", + "block.minecraft.banner.piglin.light_gray": "Lite gray noze", + "block.minecraft.banner.piglin.lime": "Limy nose", + "block.minecraft.banner.piglin.magenta": "Magenta nouze", + "block.minecraft.banner.piglin.orange": "Oreng noze", + "block.minecraft.banner.piglin.pink": "Pinku noze", + "block.minecraft.banner.piglin.purple": "Purrpl noze", + "block.minecraft.banner.piglin.red": "Redz noze", + "block.minecraft.banner.piglin.white": "Wite noze", + "block.minecraft.banner.piglin.yellow": "Yelo Noz", + "block.minecraft.banner.rhombus.black": "blak losng", + "block.minecraft.banner.rhombus.blue": "Blu losung", + "block.minecraft.banner.rhombus.brown": "broun lozeng", + "block.minecraft.banner.rhombus.cyan": "cian lozene", + "block.minecraft.banner.rhombus.gray": "grey lozunj", + "block.minecraft.banner.rhombus.green": "greyn lozinge", + "block.minecraft.banner.rhombus.light_blue": "lit blu lozenge", + "block.minecraft.banner.rhombus.light_gray": "lite gruy losinge", + "block.minecraft.banner.rhombus.lime": "lym LOLzenge", + "block.minecraft.banner.rhombus.magenta": "majina lizange", + "block.minecraft.banner.rhombus.orange": "urang lizangee", + "block.minecraft.banner.rhombus.pink": "Pinc Loseng", + "block.minecraft.banner.rhombus.purple": "pupell losenge", + "block.minecraft.banner.rhombus.red": "Rud lozanj", + "block.minecraft.banner.rhombus.white": "wyte lozunge", + "block.minecraft.banner.rhombus.yellow": "yullo lozunge", + "block.minecraft.banner.skull.black": "Blac Scul Charg", + "block.minecraft.banner.skull.blue": "Bloo Scul Charg", + "block.minecraft.banner.skull.brown": "Broun Scul Charg", + "block.minecraft.banner.skull.cyan": "Sighan Scul Charg", + "block.minecraft.banner.skull.gray": "Gra Scul Charg", + "block.minecraft.banner.skull.green": "Gren Scul Charg", + "block.minecraft.banner.skull.light_blue": "Lite Bloo Scul Charg", + "block.minecraft.banner.skull.light_gray": "Lite Gra Scul Charg", + "block.minecraft.banner.skull.lime": "Liem Scul Charg", + "block.minecraft.banner.skull.magenta": "Majentaa Scul Charg", + "block.minecraft.banner.skull.orange": "Orang Scul Charg", + "block.minecraft.banner.skull.pink": "Pinc Scul Charg", + "block.minecraft.banner.skull.purple": "Purrrpl Scul Charg", + "block.minecraft.banner.skull.red": "rad SKULLZ charg", + "block.minecraft.banner.skull.white": "Wite Scul Charg", + "block.minecraft.banner.skull.yellow": "Yelo Scul Charg", + "block.minecraft.banner.small_stripes.black": "Blak Palee", + "block.minecraft.banner.small_stripes.blue": "Bluu Palee", + "block.minecraft.banner.small_stripes.brown": "Brawn Palee", + "block.minecraft.banner.small_stripes.cyan": "CyN Palee", + "block.minecraft.banner.small_stripes.gray": "Grey Palee", + "block.minecraft.banner.small_stripes.green": "Gre-n Palee", + "block.minecraft.banner.small_stripes.light_blue": "Lite Bloo Palee", + "block.minecraft.banner.small_stripes.light_gray": "Light Grey Palee", + "block.minecraft.banner.small_stripes.lime": "Limeh Palee", + "block.minecraft.banner.small_stripes.magenta": "Mujentaa Palee", + "block.minecraft.banner.small_stripes.orange": "Ornge Palee", + "block.minecraft.banner.small_stripes.pink": "Pinky Palee", + "block.minecraft.banner.small_stripes.purple": "PurpL Palee", + "block.minecraft.banner.small_stripes.red": "Red Palee", + "block.minecraft.banner.small_stripes.white": "Wyt Palee", + "block.minecraft.banner.small_stripes.yellow": "Yelo Palee", + "block.minecraft.banner.square_bottom_left.black": "Black Base Dextr Canton", + "block.minecraft.banner.square_bottom_left.blue": "bluz bais lepht skuair", + "block.minecraft.banner.square_bottom_left.brown": "browzn bais lepht skuair", + "block.minecraft.banner.square_bottom_left.cyan": "sian bais lepht skuair", + "block.minecraft.banner.square_bottom_left.gray": "grae bais lepht skuair", + "block.minecraft.banner.square_bottom_left.green": "Green Base Dextr Canton", + "block.minecraft.banner.square_bottom_left.light_blue": "lite blu bais lepht skuair", + "block.minecraft.banner.square_bottom_left.light_gray": "lite grae bais lepht skuair", + "block.minecraft.banner.square_bottom_left.lime": "laim bais lepht skuair", + "block.minecraft.banner.square_bottom_left.magenta": "majnta bais lepht skuair", + "block.minecraft.banner.square_bottom_left.orange": "oranj bais lepht skuair", + "block.minecraft.banner.square_bottom_left.pink": "pinkz bais lepht skuair", + "block.minecraft.banner.square_bottom_left.purple": "purpul bais lepht skuair", + "block.minecraft.banner.square_bottom_left.red": "Red Base Dextr Canton", + "block.minecraft.banner.square_bottom_left.white": "wiit bais lepht skuair", + "block.minecraft.banner.square_bottom_left.yellow": "yeloe bais lepht skuair", + "block.minecraft.banner.square_bottom_right.black": "blak bais rite skuair", + "block.minecraft.banner.square_bottom_right.blue": "blu bais rite skuair", + "block.minecraft.banner.square_bottom_right.brown": "braun bais rite skuair", + "block.minecraft.banner.square_bottom_right.cyan": "sian bais rite skuair", + "block.minecraft.banner.square_bottom_right.gray": "grai bais rite skuair", + "block.minecraft.banner.square_bottom_right.green": "grin bais rite skuair", + "block.minecraft.banner.square_bottom_right.light_blue": "lite blu bais rite skuair", + "block.minecraft.banner.square_bottom_right.light_gray": "lite grai bais rite skuair", + "block.minecraft.banner.square_bottom_right.lime": "laim bais rite skuair", + "block.minecraft.banner.square_bottom_right.magenta": "majnta bais rite skuair", + "block.minecraft.banner.square_bottom_right.orange": "oraje bais rite skuair", + "block.minecraft.banner.square_bottom_right.pink": "pinck bais rite skuair", + "block.minecraft.banner.square_bottom_right.purple": "purpul bais rite skuair", + "block.minecraft.banner.square_bottom_right.red": "red bais rite skuair", + "block.minecraft.banner.square_bottom_right.white": "White baze sinistor kattun", + "block.minecraft.banner.square_bottom_right.yellow": "yelloe bais rite skuair", + "block.minecraft.banner.square_top_left.black": "blak cheef dextor kattun", + "block.minecraft.banner.square_top_left.blue": "blooh cheef dextor cantun", + "block.minecraft.banner.square_top_left.brown": "broawn cheef dextor kattun", + "block.minecraft.banner.square_top_left.cyan": "cian cheef dextor cantun", + "block.minecraft.banner.square_top_left.gray": "greh cheef dextor cantun", + "block.minecraft.banner.square_top_left.green": "grein cheef dextor kattun", + "block.minecraft.banner.square_top_left.light_blue": "liat blooh cheef dextor cantun", + "block.minecraft.banner.square_top_left.light_gray": "liat greh cheef dextor cantun", + "block.minecraft.banner.square_top_left.lime": "liame cheef dextor cantun", + "block.minecraft.banner.square_top_left.magenta": "magentorh cheef dextor cantun", + "block.minecraft.banner.square_top_left.orange": "oringe cheef dextor cantun", + "block.minecraft.banner.square_top_left.pink": "piank cheef dextor cantun", + "block.minecraft.banner.square_top_left.purple": "perpol cheef dextor cantun", + "block.minecraft.banner.square_top_left.red": "red cheef dextor kattun", + "block.minecraft.banner.square_top_left.white": "white cheef dextor cantun", + "block.minecraft.banner.square_top_left.yellow": "yelow cheef dextor cantun", + "block.minecraft.banner.square_top_right.black": "black cheef sinistor cantun", + "block.minecraft.banner.square_top_right.blue": "blooh cheef sinistor cantun", + "block.minecraft.banner.square_top_right.brown": "broawn cheef sinistor cantun", + "block.minecraft.banner.square_top_right.cyan": "cian cheef sinistor cantun", + "block.minecraft.banner.square_top_right.gray": "greyh cheef sinistor cantun", + "block.minecraft.banner.square_top_right.green": "grein cheef sinistor cantun", + "block.minecraft.banner.square_top_right.light_blue": "liat bloo cheef sinistor cantun", + "block.minecraft.banner.square_top_right.light_gray": "liat greyh cheef sinistor cantun", + "block.minecraft.banner.square_top_right.lime": "liame cheef sinistor cantun", + "block.minecraft.banner.square_top_right.magenta": "magentorh cheef sinistor cantun", + "block.minecraft.banner.square_top_right.orange": "oringe cheef sinistor cantun", + "block.minecraft.banner.square_top_right.pink": "piank cheef sinistor cantun", + "block.minecraft.banner.square_top_right.purple": "perpol cheef sinistor cantun", + "block.minecraft.banner.square_top_right.red": "red cheef sinistor cantun", + "block.minecraft.banner.square_top_right.white": "white cheef sinistor cantun", + "block.minecraft.banner.square_top_right.yellow": "yelow cheef sinistor cantun", + "block.minecraft.banner.straight_cross.black": "Blk Croz", + "block.minecraft.banner.straight_cross.blue": "Bleu Croz", + "block.minecraft.banner.straight_cross.brown": "Brawn Croz", + "block.minecraft.banner.straight_cross.cyan": "Nyan Croz", + "block.minecraft.banner.straight_cross.gray": "Grai Croz", + "block.minecraft.banner.straight_cross.green": "Grean Croz", + "block.minecraft.banner.straight_cross.light_blue": "Zero Bleu Croz", + "block.minecraft.banner.straight_cross.light_gray": "Zero Grai Croz", + "block.minecraft.banner.straight_cross.lime": "Lame Croz", + "block.minecraft.banner.straight_cross.magenta": "Magnet Croz", + "block.minecraft.banner.straight_cross.orange": "Orang-Utan Croz", + "block.minecraft.banner.straight_cross.pink": "Pink Panther Croz", + "block.minecraft.banner.straight_cross.purple": "Poople Croz", + "block.minecraft.banner.straight_cross.red": "Read Croz", + "block.minecraft.banner.straight_cross.white": "No Color Croz", + "block.minecraft.banner.straight_cross.yellow": "Hello Yellow Croz", + "block.minecraft.banner.stripe_bottom.black": "Blak Baze", + "block.minecraft.banner.stripe_bottom.blue": "Bloo Baze", + "block.minecraft.banner.stripe_bottom.brown": "Brwn Baze", + "block.minecraft.banner.stripe_bottom.cyan": "Nyan Baze", + "block.minecraft.banner.stripe_bottom.gray": "Gray Baze", + "block.minecraft.banner.stripe_bottom.green": "Gren Baze", + "block.minecraft.banner.stripe_bottom.light_blue": "Lite Bloo Baze", + "block.minecraft.banner.stripe_bottom.light_gray": "Lite Gray Baze", + "block.minecraft.banner.stripe_bottom.lime": "Liem Baze", + "block.minecraft.banner.stripe_bottom.magenta": "Majenta Baze", + "block.minecraft.banner.stripe_bottom.orange": "Orang Baze", + "block.minecraft.banner.stripe_bottom.pink": "Pinc Baze", + "block.minecraft.banner.stripe_bottom.purple": "Purpal Baze", + "block.minecraft.banner.stripe_bottom.red": "Red Baze", + "block.minecraft.banner.stripe_bottom.white": "Wite Baze", + "block.minecraft.banner.stripe_bottom.yellow": "Yello Baze", + "block.minecraft.banner.stripe_center.black": "Blak Pal", + "block.minecraft.banner.stripe_center.blue": "Bloo Pal", + "block.minecraft.banner.stripe_center.brown": "Brwn Pal", + "block.minecraft.banner.stripe_center.cyan": "Sigh-an Pal", + "block.minecraft.banner.stripe_center.gray": "Gra Pal", + "block.minecraft.banner.stripe_center.green": "Gren Pal", + "block.minecraft.banner.stripe_center.light_blue": "Lite Bloo Pal", + "block.minecraft.banner.stripe_center.light_gray": "Lite Gra Pal", + "block.minecraft.banner.stripe_center.lime": "Liem Pal", + "block.minecraft.banner.stripe_center.magenta": "Majentaa Pal", + "block.minecraft.banner.stripe_center.orange": "Ornge Pal", + "block.minecraft.banner.stripe_center.pink": "Pinc Pal", + "block.minecraft.banner.stripe_center.purple": "Purrrrrrple Pal", + "block.minecraft.banner.stripe_center.red": "Red Pal\n", + "block.minecraft.banner.stripe_center.white": "Wite Pal", + "block.minecraft.banner.stripe_center.yellow": "Ylw Pal", + "block.minecraft.banner.stripe_downleft.black": "Bluk Vend Sinizturr", + "block.minecraft.banner.stripe_downleft.blue": "Bluu Bend SinistR", + "block.minecraft.banner.stripe_downleft.brown": "Brahwn Bend SinistR", + "block.minecraft.banner.stripe_downleft.cyan": "CyN Bend SinistR", + "block.minecraft.banner.stripe_downleft.gray": "Grey Bend SinistR", + "block.minecraft.banner.stripe_downleft.green": "Gren Bent Siniste", + "block.minecraft.banner.stripe_downleft.light_blue": "Light Bluu Bend SinistR", + "block.minecraft.banner.stripe_downleft.light_gray": "Light Grey Bend SinistR", + "block.minecraft.banner.stripe_downleft.lime": "Limeh Bend SinistR", + "block.minecraft.banner.stripe_downleft.magenta": "Magentah Bend SinistR", + "block.minecraft.banner.stripe_downleft.orange": "Oreng Bend SinistR", + "block.minecraft.banner.stripe_downleft.pink": "Pink Bend SinistR", + "block.minecraft.banner.stripe_downleft.purple": "PurpL Bend SinistR", + "block.minecraft.banner.stripe_downleft.red": "Reed Baend Sinistier", + "block.minecraft.banner.stripe_downleft.white": "Wite Bend SinistR", + "block.minecraft.banner.stripe_downleft.yellow": "Yolo-w Bend SinistR", + "block.minecraft.banner.stripe_downright.black": "darrk dawn line", + "block.minecraft.banner.stripe_downright.blue": "Bloo Bend", + "block.minecraft.banner.stripe_downright.brown": "bruwn side line", + "block.minecraft.banner.stripe_downright.cyan": "greeen bleu side line", + "block.minecraft.banner.stripe_downright.gray": "greay side line", + "block.minecraft.banner.stripe_downright.green": "greeen side line", + "block.minecraft.banner.stripe_downright.light_blue": "Teh lite blu bend", + "block.minecraft.banner.stripe_downright.light_gray": "wite greay side line", + "block.minecraft.banner.stripe_downright.lime": "brite greeen side line", + "block.minecraft.banner.stripe_downright.magenta": "Teh Magentra Bend", + "block.minecraft.banner.stripe_downright.orange": "orng bend", + "block.minecraft.banner.stripe_downright.pink": "peenk side line", + "block.minecraft.banner.stripe_downright.purple": "Purrrrple Bend", + "block.minecraft.banner.stripe_downright.red": "red dawn line", + "block.minecraft.banner.stripe_downright.white": "Whit Bund", + "block.minecraft.banner.stripe_downright.yellow": "yelaw side line", + "block.minecraft.banner.stripe_left.black": "blak pail deztr", + "block.minecraft.banner.stripe_left.blue": "blu pail deztr", + "block.minecraft.banner.stripe_left.brown": "braun pail deztr", + "block.minecraft.banner.stripe_left.cyan": "sian pail deztr", + "block.minecraft.banner.stripe_left.gray": "grei pail deztr", + "block.minecraft.banner.stripe_left.green": "grin pail deztr", + "block.minecraft.banner.stripe_left.light_blue": "Lite Bleu Pail Dextr", + "block.minecraft.banner.stripe_left.light_gray": "lite grei pail deztr", + "block.minecraft.banner.stripe_left.lime": "laim pail deztr", + "block.minecraft.banner.stripe_left.magenta": "Maginta Pail Dextr", + "block.minecraft.banner.stripe_left.orange": "Orenge Pail Dextr", + "block.minecraft.banner.stripe_left.pink": "pinck pail deztr", + "block.minecraft.banner.stripe_left.purple": "purpl pail deztr", + "block.minecraft.banner.stripe_left.red": "rad pail deztr", + "block.minecraft.banner.stripe_left.white": "Wite Pail Dextr", + "block.minecraft.banner.stripe_left.yellow": "Yello Pail Dextr", + "block.minecraft.banner.stripe_middle.black": "Blak Fezz", + "block.minecraft.banner.stripe_middle.blue": "Bloo Fezz", + "block.minecraft.banner.stripe_middle.brown": "Brwn Fezz", + "block.minecraft.banner.stripe_middle.cyan": "Sigh-an Fezz", + "block.minecraft.banner.stripe_middle.gray": "Gray Fezz", + "block.minecraft.banner.stripe_middle.green": "Gren Fezz", + "block.minecraft.banner.stripe_middle.light_blue": "Late Bluu Fezz", + "block.minecraft.banner.stripe_middle.light_gray": "Lite Gray Fezz", + "block.minecraft.banner.stripe_middle.lime": "Lame Fezz", + "block.minecraft.banner.stripe_middle.magenta": "purpl-ey Fezz", + "block.minecraft.banner.stripe_middle.orange": "oranj dawn Fezz", + "block.minecraft.banner.stripe_middle.pink": "Pinc Fezz", + "block.minecraft.banner.stripe_middle.purple": "Purrrrple Fezz", + "block.minecraft.banner.stripe_middle.red": "Red Fezz", + "block.minecraft.banner.stripe_middle.white": "blanck dawn Fezz", + "block.minecraft.banner.stripe_middle.yellow": "Yellau Fezz", + "block.minecraft.banner.stripe_right.black": "Blak Peil Sinizter", + "block.minecraft.banner.stripe_right.blue": "Bluu Peil Sinizter", + "block.minecraft.banner.stripe_right.brown": "Braun Peil Sinizter", + "block.minecraft.banner.stripe_right.cyan": "Cya Peil Sinizter", + "block.minecraft.banner.stripe_right.gray": "Grayz Peil Sinizter", + "block.minecraft.banner.stripe_right.green": "Gren Peil Sinizter", + "block.minecraft.banner.stripe_right.light_blue": "Late Bluu Peil Sinizter", + "block.minecraft.banner.stripe_right.light_gray": "Light Grayz Peil Sinizter", + "block.minecraft.banner.stripe_right.lime": "Lame Peil Sinizter", + "block.minecraft.banner.stripe_right.magenta": "Meigent Peil Sinizter", + "block.minecraft.banner.stripe_right.orange": "Oreng Peil Sinizter", + "block.minecraft.banner.stripe_right.pink": "Pink Peil Sinizter", + "block.minecraft.banner.stripe_right.purple": "Purpl Peil Sinizter", + "block.minecraft.banner.stripe_right.red": "Red Peil Sinizter", + "block.minecraft.banner.stripe_right.white": "Wait Peil Sinizter", + "block.minecraft.banner.stripe_right.yellow": "Yellau Peil Sinizter", + "block.minecraft.banner.stripe_top.black": "Blak Chif", + "block.minecraft.banner.stripe_top.blue": "Bloo Chif", + "block.minecraft.banner.stripe_top.brown": "Brwn Chif", + "block.minecraft.banner.stripe_top.cyan": "Nyan Chif", + "block.minecraft.banner.stripe_top.gray": "Gray Chif", + "block.minecraft.banner.stripe_top.green": "Gren Chif", + "block.minecraft.banner.stripe_top.light_blue": "Lite Bloo Chif", + "block.minecraft.banner.stripe_top.light_gray": "Lite Gray Chif", + "block.minecraft.banner.stripe_top.lime": "Liem Chif", + "block.minecraft.banner.stripe_top.magenta": "Majenta Chif", + "block.minecraft.banner.stripe_top.orange": "Orang Chif", + "block.minecraft.banner.stripe_top.pink": "Pinc Chif", + "block.minecraft.banner.stripe_top.purple": "Parpal Chif", + "block.minecraft.banner.stripe_top.red": "Redish Chif", + "block.minecraft.banner.stripe_top.white": "Wite Chif", + "block.minecraft.banner.stripe_top.yellow": "Yello Chif", + "block.minecraft.banner.triangle_bottom.black": "Dark Chevronz", + "block.minecraft.banner.triangle_bottom.blue": "Blu Chevronz", + "block.minecraft.banner.triangle_bottom.brown": "Brown Chevronz", + "block.minecraft.banner.triangle_bottom.cyan": "Sighan Shevrun", + "block.minecraft.banner.triangle_bottom.gray": "GREY SHEVRON", + "block.minecraft.banner.triangle_bottom.green": "Green Chevronz", + "block.minecraft.banner.triangle_bottom.light_blue": "Lite Bloo Shevrun", + "block.minecraft.banner.triangle_bottom.light_gray": "VERY LITE GREY SHEVRON", + "block.minecraft.banner.triangle_bottom.lime": "Liem Shevrun", + "block.minecraft.banner.triangle_bottom.magenta": "Majentaa Shevrun", + "block.minecraft.banner.triangle_bottom.orange": "Orung Shevrun", + "block.minecraft.banner.triangle_bottom.pink": "PIINK SHEVRON", + "block.minecraft.banner.triangle_bottom.purple": "PRPLZ CHVRN", + "block.minecraft.banner.triangle_bottom.red": "Red Chevronz", + "block.minecraft.banner.triangle_bottom.white": "Wite Shevrun", + "block.minecraft.banner.triangle_bottom.yellow": "Yelo Shevrun", + "block.minecraft.banner.triangle_top.black": "blakc upsied v", + "block.minecraft.banner.triangle_top.blue": "blew upsied v", + "block.minecraft.banner.triangle_top.brown": "broun upsied v", + "block.minecraft.banner.triangle_top.cyan": "bleuy upsied v", + "block.minecraft.banner.triangle_top.gray": "grey upsied v", + "block.minecraft.banner.triangle_top.green": "grn upsied v", + "block.minecraft.banner.triangle_top.light_blue": "lite blew upsied v", + "block.minecraft.banner.triangle_top.light_gray": "lite grey upsied v", + "block.minecraft.banner.triangle_top.lime": "liem upsied v", + "block.minecraft.banner.triangle_top.magenta": "puerple upsied v", + "block.minecraft.banner.triangle_top.orange": "orangue upsied v", + "block.minecraft.banner.triangle_top.pink": "pienk upsied v", + "block.minecraft.banner.triangle_top.purple": "purrple upsied v", + "block.minecraft.banner.triangle_top.red": "ryd upsied v", + "block.minecraft.banner.triangle_top.white": "whiet upsied v", + "block.minecraft.banner.triangle_top.yellow": "yelou upsied v", + "block.minecraft.banner.triangles_bottom.black": "bleck bottum indiented", + "block.minecraft.banner.triangles_bottom.blue": "bleu bottum indiented", + "block.minecraft.banner.triangles_bottom.brown": "broun bottum indiented", + "block.minecraft.banner.triangles_bottom.cyan": "cian bottum indiented", + "block.minecraft.banner.triangles_bottom.gray": "grey bottum indiented", + "block.minecraft.banner.triangles_bottom.green": "greun bottum indiented", + "block.minecraft.banner.triangles_bottom.light_blue": "lite bleu bottum indiented", + "block.minecraft.banner.triangles_bottom.light_gray": "lite grey bottum indiented", + "block.minecraft.banner.triangles_bottom.lime": "liem bottum indiented", + "block.minecraft.banner.triangles_bottom.magenta": "prple bottum indiented", + "block.minecraft.banner.triangles_bottom.orange": "oraynge bottum indiented", + "block.minecraft.banner.triangles_bottom.pink": "pienk bottum indiented", + "block.minecraft.banner.triangles_bottom.purple": "pyrple bottum indiented", + "block.minecraft.banner.triangles_bottom.red": "read bottum indiented", + "block.minecraft.banner.triangles_bottom.white": "whiet bottum indiented", + "block.minecraft.banner.triangles_bottom.yellow": "YELLOU BASS INDEZTED", + "block.minecraft.banner.triangles_top.black": "BLAWK CHEEF INDEZTED", + "block.minecraft.banner.triangles_top.blue": "Bwue Cheef Indentd", + "block.minecraft.banner.triangles_top.brown": "Bwown Cheef Indentd", + "block.minecraft.banner.triangles_top.cyan": "Cian Cheef Indentd", + "block.minecraft.banner.triangles_top.gray": "Gray Cheef Indentd", + "block.minecraft.banner.triangles_top.green": "Gween Cheef Indentd", + "block.minecraft.banner.triangles_top.light_blue": "Lite Blu Cheef Indentd", + "block.minecraft.banner.triangles_top.light_gray": "Lit gray Cheef Indentd", + "block.minecraft.banner.triangles_top.lime": "Laim Cheef Indentd", + "block.minecraft.banner.triangles_top.magenta": "Mahgehntah Cheef Indentd", + "block.minecraft.banner.triangles_top.orange": "Ohrang Cheef Indentd", + "block.minecraft.banner.triangles_top.pink": "Pnik Cheef Indentd", + "block.minecraft.banner.triangles_top.purple": "Purrrple Cheef Indentd", + "block.minecraft.banner.triangles_top.red": "Red Cheef Indentd", + "block.minecraft.banner.triangles_top.white": "Wuhite Cheef Indentd", + "block.minecraft.banner.triangles_top.yellow": "Yallo Cheef Indentd", + "block.minecraft.barrel": "Fish box", + "block.minecraft.barrier": "You shall not pass", + "block.minecraft.basalt": "Bawzult", + "block.minecraft.beacon": "Bacon", + "block.minecraft.beacon.primary": "Primari Pahwer", + "block.minecraft.beacon.secondary": "Secondari Pahwer", + "block.minecraft.bed.no_sleep": "U can shleep onwy at nite and duwin thundewstuwms", + "block.minecraft.bed.not_safe": "U do not haf tu rezt nao; der are monztahrs nirby", + "block.minecraft.bed.obstructed": "Dis bed iz obstructd", + "block.minecraft.bed.occupied": "Sumone stole ur bed!", + "block.minecraft.bed.too_far_away": "U do not haf tu rezt nao; da bed is TOO FAR awey", + "block.minecraft.bedrock": "TROL BLUKZ", + "block.minecraft.bee_nest": "B nest", + "block.minecraft.beehive": "Beez's place", + "block.minecraft.beetroots": "Red Juicy Undrgrawnd Plant", + "block.minecraft.bell": "Belly", + "block.minecraft.big_dripleaf": "Big fall thru plantt", + "block.minecraft.big_dripleaf_stem": "Big fall thru plantt stehm", + "block.minecraft.birch_button": "Burch Button", + "block.minecraft.birch_door": "Birtch Dor", + "block.minecraft.birch_fence": "BIRCH SCRATCHEZPOST", + "block.minecraft.birch_fence_gate": "BURCH GAIT", + "block.minecraft.birch_leaves": "birch salad", + "block.minecraft.birch_log": "lite woodezn lawg", + "block.minecraft.birch_planks": "lite woodezn blox", + "block.minecraft.birch_pressure_plate": "Burch Prseure Pleitz", + "block.minecraft.birch_sapling": "baby burch", + "block.minecraft.birch_sign": "Burchs Sign", + "block.minecraft.birch_slab": "Burch Sleb", + "block.minecraft.birch_stairs": "Burch Stairz", + "block.minecraft.birch_trapdoor": "Burch Trap", + "block.minecraft.birch_wall_sign": "Burchs Sign on ur wall", + "block.minecraft.birch_wood": "Birtch Wuud", + "block.minecraft.black_banner": "blakc bahnor", + "block.minecraft.black_bed": "Blak Bed", + "block.minecraft.black_candle": "Blak land pikl", + "block.minecraft.black_candle_cake": "Caek wif Blak Candl", + "block.minecraft.black_carpet": "Black Cat Rug", + "block.minecraft.black_concrete": "Blek tough bluk", + "block.minecraft.black_concrete_powder": "Blak tough bluk powdr", + "block.minecraft.black_glazed_terracotta": "Blek mosaic", + "block.minecraft.black_shulker_box": "Black Shulker Bux", + "block.minecraft.black_stained_glass": "Blak Staind Glas", + "block.minecraft.black_stained_glass_pane": "blerk thin culurd thingy", + "block.minecraft.black_terracotta": "Blak Teracottah", + "block.minecraft.black_wool": "Black Fur Bluk", + "block.minecraft.blackstone": "Blecston", + "block.minecraft.blackstone_slab": "bleckston sleb", + "block.minecraft.blackstone_stairs": "bleck rock stairz", + "block.minecraft.blackstone_wall": "bleckston wal", + "block.minecraft.blast_furnace": "BlAsT FuRnAcE", + "block.minecraft.blue_banner": "bloo bahnor", + "block.minecraft.blue_bed": "Bloo Bed", + "block.minecraft.blue_candle": "Bloo hot stik", + "block.minecraft.blue_candle_cake": "Caek wif Bloo Land pikl", + "block.minecraft.blue_carpet": "Bloo Cat Rug", + "block.minecraft.blue_concrete": "Bluu tough bluk", + "block.minecraft.blue_concrete_powder": "Bluu tough bluk powdr", + "block.minecraft.blue_glazed_terracotta": "Bluu mosaic", + "block.minecraft.blue_ice": "Big blu", + "block.minecraft.blue_orchid": "pretteh bloo flowr", + "block.minecraft.blue_shulker_box": "Bloo Shulker Bux", + "block.minecraft.blue_stained_glass": "Waterly Stained Glazz", + "block.minecraft.blue_stained_glass_pane": "Bloo Staned Glas Pan", + "block.minecraft.blue_terracotta": "Bloo Terrakattah", + "block.minecraft.blue_wool": "Bloo Fur Bluk", + "block.minecraft.bone_block": "Compresd bone", + "block.minecraft.bookshelf": "bed 4 bookz", + "block.minecraft.brain_coral": "Brein koral", + "block.minecraft.brain_coral_block": "Brein koral cube", + "block.minecraft.brain_coral_fan": "Brein koral fen", + "block.minecraft.brain_coral_wall_fan": "Braen Corel Wahll Fan", + "block.minecraft.brewing_stand": "Bubbleh", + "block.minecraft.brick_slab": "Brik Sleb", + "block.minecraft.brick_stairs": "Brik stairez", + "block.minecraft.brick_wall": "Brik Wal", + "block.minecraft.bricks": "brickz", + "block.minecraft.brown_banner": "broun bahnor", + "block.minecraft.brown_bed": "Brownish Bed", + "block.minecraft.brown_candle": "Brwn land pikl", + "block.minecraft.brown_candle_cake": "Caek wif Brown Candl", + "block.minecraft.brown_carpet": "Brownish Cat Rug", + "block.minecraft.brown_concrete": "Brownish tough bluk", + "block.minecraft.brown_concrete_powder": "Brownish tough bluk powdr", + "block.minecraft.brown_glazed_terracotta": "Brownish mosaic", + "block.minecraft.brown_mushroom": "brwn Mushroom", + "block.minecraft.brown_mushroom_block": "brwn Mushroom Blok", + "block.minecraft.brown_shulker_box": "Brownish Shulker Bux", + "block.minecraft.brown_stained_glass": "Brownly Stainedly Glazz", + "block.minecraft.brown_stained_glass_pane": "Broun Staned Glas Pan", + "block.minecraft.brown_terracotta": "Brewn Terrakattah", + "block.minecraft.brown_wool": "Brownish Fur Bluk", + "block.minecraft.bubble_column": "babul kolum", + "block.minecraft.bubble_coral": "Bubol koral", + "block.minecraft.bubble_coral_block": "Bubol koral cube", + "block.minecraft.bubble_coral_fan": "Bubol koral fen", + "block.minecraft.bubble_coral_wall_fan": "Bable koral wull fan", + "block.minecraft.budding_amethyst": "Purpur shinee makr", + "block.minecraft.cactus": "Spiky Green Plant", + "block.minecraft.cake": "liez", + "block.minecraft.calcite": "Wite rok", + "block.minecraft.campfire": "Campfireh", + "block.minecraft.candle": "Land pikl", + "block.minecraft.candle_cake": "lie wif hot stix", + "block.minecraft.carrots": "Jumpin Foodz Foodz", + "block.minecraft.cartography_table": "Cartogrophy Table", + "block.minecraft.carved_pumpkin": "Karvd Pumpkin", + "block.minecraft.cauldron": "Rly big pot", + "block.minecraft.cave_air": "air of spOoOky cavess", + "block.minecraft.cave_vines": "Caev wiskrs", + "block.minecraft.cave_vines_plant": "Shinin' Viine Plantta o' Caevs", + "block.minecraft.chain": "Shain", + "block.minecraft.chain_command_block": "Alpha Block Dat Duz A Congo Line With Other Alpha Blocks", + "block.minecraft.chest": "Cat Box", + "block.minecraft.chipped_anvil": "Oh so much chipped anvehl", + "block.minecraft.chiseled_deepslate": "chizeled dark ston", + "block.minecraft.chiseled_nether_bricks": "Chizald nether brickz", + "block.minecraft.chiseled_polished_blackstone": "chizald shiny blak rok", + "block.minecraft.chiseled_quartz_block": "Chizald Kworts Blak", + "block.minecraft.chiseled_red_sandstone": "Chizald warmy sanstown", + "block.minecraft.chiseled_sandstone": "carved litter box rockz", + "block.minecraft.chiseled_stone_bricks": "Stacked Rockz en an Patternz", + "block.minecraft.chorus_flower": "Meow flawur", + "block.minecraft.chorus_plant": "Meow Plantz", + "block.minecraft.clay": "CLAE", + "block.minecraft.coal_block": "Koala", + "block.minecraft.coal_ore": "Rockz wif Coel", + "block.minecraft.coarse_dirt": "Ruff durt", + "block.minecraft.cobbled_deepslate": "coobled dark ston", + "block.minecraft.cobbled_deepslate_slab": "coobled dark ston sleb", + "block.minecraft.cobbled_deepslate_stairs": "coobled dark ston stairz", + "block.minecraft.cobbled_deepslate_wall": "coobled dark ston wal", + "block.minecraft.cobblestone": "Cooblestoneh", + "block.minecraft.cobblestone_slab": "small pebble blok", + "block.minecraft.cobblestone_stairs": "rok stairz", + "block.minecraft.cobblestone_wall": "COBULSTOWN WALL", + "block.minecraft.cobweb": "icky spider webz", + "block.minecraft.cocoa": "dont feed dis to ur catz", + "block.minecraft.command_block": "Comnd Bluk", + "block.minecraft.comparator": "Redstone thingy", + "block.minecraft.composter": "Compostr", + "block.minecraft.conduit": "strange box", + "block.minecraft.copper_block": "Blok of copurr", + "block.minecraft.copper_ore": "Copurr rok", + "block.minecraft.cornflower": "Unicornflowerpower", + "block.minecraft.cracked_deepslate_bricks": "half brokn dark ston breekz", + "block.minecraft.cracked_deepslate_tiles": "half brokn dark ston tilz", + "block.minecraft.cracked_nether_bricks": "Craked nether brickz", + "block.minecraft.cracked_polished_blackstone_bricks": "craked polised bleck briks", + "block.minecraft.cracked_stone_bricks": "Stacked Pebblez", + "block.minecraft.crafting_table": "Krafting Tabal", + "block.minecraft.creeper_head": "Creeper Hed", + "block.minecraft.creeper_wall_head": "Creeper Wall Hed", + "block.minecraft.crimson_button": "Crimzn Bawttn", + "block.minecraft.crimson_door": "Krimzn Big Kat Door", + "block.minecraft.crimson_fence": "Crimzn Fanse", + "block.minecraft.crimson_fence_gate": "Crimzn Fenc Gaet", + "block.minecraft.crimson_fungus": "Crimzn Foongis", + "block.minecraft.crimson_hyphae": "Weerd red nethar plnat", + "block.minecraft.crimson_nylium": "Crimzun Nyanium", + "block.minecraft.crimson_planks": "Crimsun planmks", + "block.minecraft.crimson_pressure_plate": "Crimson prseure Pleitz", + "block.minecraft.crimson_roots": "Crimsun roots", + "block.minecraft.crimson_sign": "Krimzn Syne", + "block.minecraft.crimson_slab": "Crimzn Sleb", + "block.minecraft.crimson_stairs": "Crimzn Staez", + "block.minecraft.crimson_stem": "Crimzn stim", + "block.minecraft.crimson_trapdoor": "Crimzn Kat Door", + "block.minecraft.crimson_wall_sign": "Red walz sign", + "block.minecraft.crying_obsidian": "sad hardest thing evar", + "block.minecraft.cut_copper": "1000\u00b0 kniv vs cuprr blok", + "block.minecraft.cut_copper_slab": "Slised copurr sleb", + "block.minecraft.cut_copper_stairs": "Slised copurr sters", + "block.minecraft.cut_red_sandstone": "Warmy red sanstown", + "block.minecraft.cut_red_sandstone_slab": "Cut warmy sansdstoen sleb", + "block.minecraft.cut_sandstone": "Warmy sanstown", + "block.minecraft.cut_sandstone_slab": "Cut sansdstoen sleb", + "block.minecraft.cyan_banner": "nyan bahnor", + "block.minecraft.cyan_bed": "Nyan Bed", + "block.minecraft.cyan_candle": "C-an land pikl", + "block.minecraft.cyan_candle_cake": "Caek wif Cyan Candle", + "block.minecraft.cyan_carpet": "Sighun Cat Rug", + "block.minecraft.cyan_concrete": "Syan tough bluk", + "block.minecraft.cyan_concrete_powder": "Syan tough bluk powdr", + "block.minecraft.cyan_glazed_terracotta": "Syan mosaic", + "block.minecraft.cyan_shulker_box": "Weird Blu Shulker Bux", + "block.minecraft.cyan_stained_glass": "Cyanled Stainely Glazz", + "block.minecraft.cyan_stained_glass_pane": "Sian Staned Glas Pan", + "block.minecraft.cyan_terracotta": "Nyan Teracottah", + "block.minecraft.cyan_wool": "Sighun Fur Bluk", + "block.minecraft.damaged_anvil": "Oh so much braken anvehl", + "block.minecraft.dandelion": "Yello Flowah", + "block.minecraft.dark_oak_button": "Blak Oke Button", + "block.minecraft.dark_oak_door": "Dark Oak Dor", + "block.minecraft.dark_oak_fence": "Drk Oak Fence", + "block.minecraft.dark_oak_fence_gate": "DARK GAIT", + "block.minecraft.dark_oak_leaves": "derk ok lefs", + "block.minecraft.dark_oak_log": "Oranj lawg", + "block.minecraft.dark_oak_planks": "Oranj Wud", + "block.minecraft.dark_oak_pressure_plate": "Dark Oke Prseure Pleitz", + "block.minecraft.dark_oak_sapling": "baby blak oak", + "block.minecraft.dark_oak_sign": "Dak Ook Sign", + "block.minecraft.dark_oak_slab": "Blak Oke Sleb", + "block.minecraft.dark_oak_stairs": "Dakwoak Stairz", + "block.minecraft.dark_oak_trapdoor": "Blak Oke Trap", + "block.minecraft.dark_oak_wall_sign": "Dak Ook Sign on ur wall", + "block.minecraft.dark_oak_wood": "Dark Oak Wuud", + "block.minecraft.dark_prismarine": "Dark Prizmarine", + "block.minecraft.dark_prismarine_slab": "Dark Prizmarine Sleb", + "block.minecraft.dark_prismarine_stairs": "Dark Prizmarine Stairz", + "block.minecraft.daylight_detector": "light eater", + "block.minecraft.dead_brain_coral": "Ded brein koral", + "block.minecraft.dead_brain_coral_block": "Ded brain koral cube", + "block.minecraft.dead_brain_coral_fan": "Ded brein koral fen", + "block.minecraft.dead_brain_coral_wall_fan": "Ded brein koral wull fan", + "block.minecraft.dead_bubble_coral": "Ded bubol koral", + "block.minecraft.dead_bubble_coral_block": "Ded bubol koral cube", + "block.minecraft.dead_bubble_coral_fan": "Ded bubol koral fen", + "block.minecraft.dead_bubble_coral_wall_fan": "Ded bable korall wull fan", + "block.minecraft.dead_bush": "Died bushez", + "block.minecraft.dead_fire_coral": "Ded HOT koral", + "block.minecraft.dead_fire_coral_block": "Ded HOT koral cube", + "block.minecraft.dead_fire_coral_fan": "Ded HOT koral fen", + "block.minecraft.dead_fire_coral_wall_fan": "Ded hot korall wull fan", + "block.minecraft.dead_horn_coral": "Ded jorn koral", + "block.minecraft.dead_horn_coral_block": "Ded jorn koral cube", + "block.minecraft.dead_horn_coral_fan": "Ded jorn koral fen", + "block.minecraft.dead_horn_coral_wall_fan": "Ded hurn korall wull fan", + "block.minecraft.dead_tube_coral": "Ded tuf koral", + "block.minecraft.dead_tube_coral_block": "Ded tuf koral cube", + "block.minecraft.dead_tube_coral_fan": "Ded tuf koral fen", + "block.minecraft.dead_tube_coral_wall_fan": "Ded tub koral wull fan", + "block.minecraft.deepslate": "dark ston", + "block.minecraft.deepslate_brick_slab": "dark ston brik sleb", + "block.minecraft.deepslate_brick_stairs": "dark ston brik stairz", + "block.minecraft.deepslate_brick_wall": "dark ston brik wal", + "block.minecraft.deepslate_bricks": "dark ston brikz", + "block.minecraft.deepslate_coal_ore": "dark ston koal or", + "block.minecraft.deepslate_copper_ore": "dark ston coppur or", + "block.minecraft.deepslate_diamond_ore": "dark ston deemond or", + "block.minecraft.deepslate_emerald_ore": "dark ston green shiny or", + "block.minecraft.deepslate_gold_ore": "dark ston gold or", + "block.minecraft.deepslate_iron_ore": "dark ston irony or", + "block.minecraft.deepslate_lapis_ore": "dark ston bloo or", + "block.minecraft.deepslate_redstone_ore": "dark ston Redstone or", + "block.minecraft.deepslate_tile_slab": "dark ston til sleb", + "block.minecraft.deepslate_tile_stairs": "dark ston til stairz", + "block.minecraft.deepslate_tile_wall": "dark ston til wal", + "block.minecraft.deepslate_tiles": "dark ston tilez", + "block.minecraft.detector_rail": "Ditektar Ral", + "block.minecraft.diamond_block": "MUCH MUNY $$$", + "block.minecraft.diamond_ore": "Rockz wif Deemond", + "block.minecraft.diorite": "kitteh litter rockz", + "block.minecraft.diorite_slab": "Diorito Sleb", + "block.minecraft.diorite_stairs": "Diorito Stairz", + "block.minecraft.diorite_wall": "Diorito Wal", + "block.minecraft.dirt": "Durt", + "block.minecraft.dirt_path": "Durt roud", + "block.minecraft.dispenser": "Dizpnzur", + "block.minecraft.dragon_egg": "Dwagon Eg", + "block.minecraft.dragon_head": "Dragun Hed", + "block.minecraft.dragon_wall_head": "Dragon Wall Hed", + "block.minecraft.dried_kelp_block": "Smoky lettuce cube", + "block.minecraft.dripstone_block": "bootleg netherite", + "block.minecraft.dropper": "DRUPPER", + "block.minecraft.emerald_block": "Shineh bloock of Green stuff", + "block.minecraft.emerald_ore": "Rockz wif Emmiez", + "block.minecraft.enchanting_table": "Kewl Tabel", + "block.minecraft.end_gateway": "Megeek purrtul", + "block.minecraft.end_portal": "Magik yarn bawl howl", + "block.minecraft.end_portal_frame": "Magik portl fraem", + "block.minecraft.end_rod": "Unikorn Horn", + "block.minecraft.end_stone": "Weird white rock", + "block.minecraft.end_stone_brick_slab": "Ston Brik Sleb of za End", + "block.minecraft.end_stone_brick_stairs": "Ston Stairz of za End", + "block.minecraft.end_stone_brick_wall": "Ston Brik Wal of za End", + "block.minecraft.end_stone_bricks": "Kat Litter Briks", + "block.minecraft.ender_chest": "Endur Chest", + "block.minecraft.exposed_copper": "EXPOSED copurr", + "block.minecraft.exposed_cut_copper": "EXPOSED cut coppurr", + "block.minecraft.exposed_cut_copper_slab": "Seen Sliced Copurr Half Block", + "block.minecraft.exposed_cut_copper_stairs": "Seen Sliced Copurr sters", + "block.minecraft.farmland": "fudholz", + "block.minecraft.fern": "furn", + "block.minecraft.fire": "fireh", + "block.minecraft.fire_coral": "HOT koral", + "block.minecraft.fire_coral_block": "HOT coral cube", + "block.minecraft.fire_coral_fan": "HOT koral fen", + "block.minecraft.fire_coral_wall_fan": "Hot koral wull fan", + "block.minecraft.fletching_table": "Fleching Tabel", + "block.minecraft.flower_pot": "container for all the pretty plantz", + "block.minecraft.flowering_azalea": "Tertl-shel-laik tree but in FLOWARZZ", + "block.minecraft.flowering_azalea_leaves": "Flowerin azalee leevez", + "block.minecraft.frogspawn": "toad ec", + "block.minecraft.frosted_ice": "Thatz kowld!", + "block.minecraft.furnace": "Hot Box", + "block.minecraft.gilded_blackstone": "Some goldid bleckston", + "block.minecraft.glass": "Glazz", + "block.minecraft.glass_pane": "Glazz Payn", + "block.minecraft.glow_lichen": "shiny moss", + "block.minecraft.glowstone": "Glowstone", + "block.minecraft.gold_block": "Shiny blok", + "block.minecraft.gold_ore": "Rockz wif Guld", + "block.minecraft.granite": "Red Rock", + "block.minecraft.granite_slab": "Red Rock Sleb", + "block.minecraft.granite_stairs": "Red Rock Stairz", + "block.minecraft.granite_wall": "Red Rock Wal", + "block.minecraft.grass": "Grazz", + "block.minecraft.grass_block": "Gras blak", + "block.minecraft.gravel": "Graval", + "block.minecraft.gray_banner": "grai bahnor", + "block.minecraft.gray_bed": "Greyh Bed", + "block.minecraft.gray_candle": "Gra hot stik", + "block.minecraft.gray_candle_cake": "Caek wif Gra Land pikl", + "block.minecraft.gray_carpet": "Gray Cat Rug", + "block.minecraft.gray_concrete": "Grey tough bluk", + "block.minecraft.gray_concrete_powder": "Grey tough bluk powdr", + "block.minecraft.gray_glazed_terracotta": "Grey mosaic", + "block.minecraft.gray_shulker_box": "Grayish Shulker Bux", + "block.minecraft.gray_stained_glass": "Grayly Stainedly Glazz", + "block.minecraft.gray_stained_glass_pane": "Gray Staned Glas Pan", + "block.minecraft.gray_terracotta": "Greyh Teracottah", + "block.minecraft.gray_wool": "Gray Fur Bluk", + "block.minecraft.green_banner": "grene bahnor", + "block.minecraft.green_bed": "Gren Bed", + "block.minecraft.green_candle": "Gren hot stik", + "block.minecraft.green_candle_cake": "Caek wif Grin Candl", + "block.minecraft.green_carpet": "Greenish Cat Rug", + "block.minecraft.green_concrete": "Gren tough bluk", + "block.minecraft.green_concrete_powder": "Gren tough bluk powdr", + "block.minecraft.green_glazed_terracotta": "Gren mosaic", + "block.minecraft.green_shulker_box": "Greenish Shulker Bux", + "block.minecraft.green_stained_glass": "Grean Stainedly Glazz", + "block.minecraft.green_stained_glass_pane": "Green Staned Glas Pan", + "block.minecraft.green_terracotta": "Gren Teracottah", + "block.minecraft.green_wool": "Greenish Fur Bluk", + "block.minecraft.grindstone": "Removezstone", + "block.minecraft.hanging_roots": "hangin stickz", + "block.minecraft.hay_block": "Stwaw bael", + "block.minecraft.heavy_weighted_pressure_plate": "hvy weited presplat plet", + "block.minecraft.honey_block": "Huny Bloc", + "block.minecraft.honeycomb_block": "B thing bloc", + "block.minecraft.hopper": "Huperr", + "block.minecraft.horn_coral": "Jorn koral", + "block.minecraft.horn_coral_block": "Jorn koral cube", + "block.minecraft.horn_coral_fan": "Jorn koral fen", + "block.minecraft.horn_coral_wall_fan": "Hurn koral wull fan", + "block.minecraft.ice": "Frozen water", + "block.minecraft.infested_chiseled_stone_bricks": "Kewl Rockz Wit Monsters", + "block.minecraft.infested_cobblestone": "Invezzted Cooblestoon", + "block.minecraft.infested_cracked_stone_bricks": "Brokin Rockz Wit Monsters", + "block.minecraft.infested_deepslate": "dark ston wit weird thing inside idk", + "block.minecraft.infested_mossy_stone_bricks": "Rockz Wit Mozs And Monsters", + "block.minecraft.infested_stone": "Invezzted Stoon ", + "block.minecraft.infested_stone_bricks": "Rockz Wit Patternz And Monsters", + "block.minecraft.iron_bars": "Jeil Bahz", + "block.minecraft.iron_block": "Blok of Irony", + "block.minecraft.iron_door": "Iron Dor", + "block.minecraft.iron_ore": "Rockz wif Irun", + "block.minecraft.iron_trapdoor": "Trappy Irun Kitty Dore", + "block.minecraft.jack_o_lantern": "Big glowy squash", + "block.minecraft.jigsaw": "Jig saw Blok", + "block.minecraft.jukebox": "Catbox", + "block.minecraft.jungle_button": "Jongle Button", + "block.minecraft.jungle_door": "Jungl Dor", + "block.minecraft.jungle_fence": "Janggal Fence", + "block.minecraft.jungle_fence_gate": "Janggal Fence Gate", + "block.minecraft.jungle_leaves": "jungel salad", + "block.minecraft.jungle_log": "Junglz wodden lawg", + "block.minecraft.jungle_planks": "Junglz wodden bloc", + "block.minecraft.jungle_pressure_plate": "Jongle Prseure Pleitz", + "block.minecraft.jungle_sapling": "baby jungel", + "block.minecraft.jungle_sign": "Junglz Sign", + "block.minecraft.jungle_slab": "Jungo Sleb", + "block.minecraft.jungle_stairs": "Junggel Stairz", + "block.minecraft.jungle_trapdoor": "Jongle Trap", + "block.minecraft.jungle_wall_sign": "Junglz Sign on ur wall", + "block.minecraft.jungle_wood": "Jungl Wuud", + "block.minecraft.kelp": "Yucky lettuce", + "block.minecraft.kelp_plant": "Yucky lettuce plant", + "block.minecraft.ladder": "Ladr", + "block.minecraft.lantern": "Lanturn", + "block.minecraft.lapis_block": "Glosy Blu Bluk", + "block.minecraft.lapis_ore": "Rockz wif Blu Stuf", + "block.minecraft.large_amethyst_bud": "Big purpur shinee", + "block.minecraft.large_fern": "Larg furn", + "block.minecraft.lava": "hot sauce", + "block.minecraft.lava_cauldron": "big bukkit wif hot sauec", + "block.minecraft.lectern": "Book readin ting", + "block.minecraft.lever": "Flipurr", + "block.minecraft.light": "Shin'", + "block.minecraft.light_blue_banner": "ligt bloo bahnor", + "block.minecraft.light_blue_bed": "Lite Blu Bed", + "block.minecraft.light_blue_candle": "Lite blu land pikl", + "block.minecraft.light_blue_candle_cake": "Caek wif Lite blu Land pikl", + "block.minecraft.light_blue_carpet": "Lite Bloo Cat Rug", + "block.minecraft.light_blue_concrete": "Layte Bluu tough bluk", + "block.minecraft.light_blue_concrete_powder": "Layte Bluu tough bluk powdr", + "block.minecraft.light_blue_glazed_terracotta": "Layte Bluu mosaic", + "block.minecraft.light_blue_shulker_box": "Lite Blue Shulker Bux", + "block.minecraft.light_blue_stained_glass": "Lit Bloo Staned Glas", + "block.minecraft.light_blue_stained_glass_pane": "Lit Bloo Staned Glas Pan", + "block.minecraft.light_blue_terracotta": "Lite Blu Teracottah", + "block.minecraft.light_blue_wool": "Lite Bloo Fur Bluk", + "block.minecraft.light_gray_banner": "ligt grai bahnor", + "block.minecraft.light_gray_bed": "Lite Grehy Bed", + "block.minecraft.light_gray_candle": "Lite gra hot stik", + "block.minecraft.light_gray_candle_cake": "Caek wif Lite Grai Candl", + "block.minecraft.light_gray_carpet": "Lite Gray Cat Rug", + "block.minecraft.light_gray_concrete": "Layte Grey tough bluk", + "block.minecraft.light_gray_concrete_powder": "Layte grey tough bluk powdr", + "block.minecraft.light_gray_glazed_terracotta": "Layte Grey mosaic", + "block.minecraft.light_gray_shulker_box": "Lite Gray Shulker Bux", + "block.minecraft.light_gray_stained_glass": "Lightly Grayen Stainedly Grazz", + "block.minecraft.light_gray_stained_glass_pane": "Lit Gray Staned Glas Pan", + "block.minecraft.light_gray_terracotta": "Lite Greyh Teracottah", + "block.minecraft.light_gray_wool": "Lite Gray Fur Bluk", + "block.minecraft.light_weighted_pressure_plate": "liht weightefd prueusure platt", + "block.minecraft.lightning_rod": "Litnin rot", + "block.minecraft.lilac": "tall purpl flowr", + "block.minecraft.lily_of_the_valley": "Lily of da Vallyz", + "block.minecraft.lily_pad": "big watr leef", + "block.minecraft.lime_banner": "liem bahnor", + "block.minecraft.lime_bed": "Limeh Bed", + "block.minecraft.lime_candle": "Liem hot stik", + "block.minecraft.lime_candle_cake": "Caek wif Liem Land pickl", + "block.minecraft.lime_carpet": "Limd Cat Rug", + "block.minecraft.lime_concrete": "Layme tough bluk", + "block.minecraft.lime_concrete_powder": "Layme tough bluk powdr", + "block.minecraft.lime_glazed_terracotta": "Layme mosaic", + "block.minecraft.lime_shulker_box": "Limd Shulker Bux", + "block.minecraft.lime_stained_glass": "Lim Staned Glas", + "block.minecraft.lime_stained_glass_pane": "Lim Staned Glas Pan", + "block.minecraft.lime_terracotta": "Laym Teracottah", + "block.minecraft.lime_wool": "Limd Fur Bluk", + "block.minecraft.lodestone": "Loserstone", + "block.minecraft.loom": "L\u00f6\u00f6m", + "block.minecraft.magenta_banner": "megentre bahnor", + "block.minecraft.magenta_bed": "Majenta Bed", + "block.minecraft.magenta_candle": "Majentra land pikl", + "block.minecraft.magenta_candle_cake": "Caek wif Majentra Land pikl", + "block.minecraft.magenta_carpet": "Majenta Cat Rug", + "block.minecraft.magenta_concrete": "Majenta tough bluk", + "block.minecraft.magenta_concrete_powder": "Majentah tough bluk powdr", + "block.minecraft.magenta_glazed_terracotta": "Majentah mosaic", + "block.minecraft.magenta_shulker_box": "Majenta Shulker Bux", + "block.minecraft.magenta_stained_glass": "Magentar Stainedlyd Glazz", + "block.minecraft.magenta_stained_glass_pane": "Majenta Staned Glas Pan", + "block.minecraft.magenta_terracotta": "Majenta Teracottah", + "block.minecraft.magenta_wool": "Majenta Fur Bluk", + "block.minecraft.magma_block": "Hot Bluk", + "block.minecraft.mangrove_button": "mengruv buton", + "block.minecraft.mangrove_door": "Mangroff door", + "block.minecraft.mangrove_fence": "Redwud scratchin pawst", + "block.minecraft.mangrove_fence_gate": "mengroff fens dor", + "block.minecraft.mangrove_leaves": "Mengroff salud", + "block.minecraft.mangrove_log": "Mangroff lawg", + "block.minecraft.mangrove_planks": "Mangroff PlAnKz", + "block.minecraft.mangrove_pressure_plate": "Mengruv pwesuwe pleite", + "block.minecraft.mangrove_propagule": "baby mangroff", + "block.minecraft.mangrove_roots": "Mangroff roots", + "block.minecraft.mangrove_sign": "Mengroff sihg", + "block.minecraft.mangrove_slab": "Mengroff Half Block", + "block.minecraft.mangrove_stairs": "Mangroff steppie", + "block.minecraft.mangrove_trapdoor": "Mangroff Trap", + "block.minecraft.mangrove_wall_sign": "Mangroff horizontal welcome matt", + "block.minecraft.mangrove_wood": "Mangroff wood", + "block.minecraft.medium_amethyst_bud": "Midl purpur shinee", + "block.minecraft.melon": "mlon", + "block.minecraft.melon_stem": "melon stik", + "block.minecraft.moss_block": "squishy gras blok", + "block.minecraft.moss_carpet": "squeeshd grazz", + "block.minecraft.mossy_cobblestone": "DURTY COBULSTOWN", + "block.minecraft.mossy_cobblestone_slab": "Mossy Cobulston Sleb", + "block.minecraft.mossy_cobblestone_stairs": "Mossy Cobulston Stairz", + "block.minecraft.mossy_cobblestone_wall": "DURTY COBULSTOWN WALL", + "block.minecraft.mossy_stone_brick_slab": "Mossy Ston Brick Sleb", + "block.minecraft.mossy_stone_brick_stairs": "Mossy Ston Brik Stairz", + "block.minecraft.mossy_stone_brick_wall": "Mossy Ston Brik Wal", + "block.minecraft.mossy_stone_bricks": "Stacked Greenish Rockz", + "block.minecraft.moving_piston": "dis piston is movin", + "block.minecraft.mud": "dirty water", + "block.minecraft.mud_brick_slab": "dirty water brik sleb", + "block.minecraft.mud_brick_stairs": "dirty water steppie", + "block.minecraft.mud_brick_wall": "dirty water brik wal", + "block.minecraft.mud_bricks": "dirty water briks", + "block.minecraft.muddy_mangrove_roots": "Mengroff dirt roots", + "block.minecraft.mushroom_stem": "Mushroom Stem", + "block.minecraft.mycelium": "miceliwm", + "block.minecraft.nether_brick_fence": "Nether brik fens", + "block.minecraft.nether_brick_slab": "Nether brik slav", + "block.minecraft.nether_brick_stairs": "Nether Brik Sters", + "block.minecraft.nether_brick_wall": "Nether brik Wal", + "block.minecraft.nether_bricks": "Brik from Nether", + "block.minecraft.nether_gold_ore": "Netherockz wif Guld", + "block.minecraft.nether_portal": "Nether purtal", + "block.minecraft.nether_quartz_ore": "Nether Kworts Ore", + "block.minecraft.nether_sprouts": "Nether Sprowts", + "block.minecraft.nether_wart": "Icky Nether plant", + "block.minecraft.nether_wart_block": "Nether warz bluk", + "block.minecraft.netherite_block": "Block of Netherite", + "block.minecraft.netherrack": "Netherrack", + "block.minecraft.note_block": "nowht blohk", + "block.minecraft.oak_button": "Oak Button", + "block.minecraft.oak_door": "Oak Dor", + "block.minecraft.oak_fence": "oke fenz", + "block.minecraft.oak_fence_gate": "Oke Wod fence Gate", + "block.minecraft.oak_leaves": "oak salad", + "block.minecraft.oak_log": "Oak lawg", + "block.minecraft.oak_planks": "oak bloc", + "block.minecraft.oak_pressure_plate": "Oak Prseure Pleitz", + "block.minecraft.oak_sapling": "baby oak", + "block.minecraft.oak_sign": "Ook Sign", + "block.minecraft.oak_slab": "Oak Sleb", + "block.minecraft.oak_stairs": "WOAKOAK Stairz", + "block.minecraft.oak_trapdoor": "Oak Trap", + "block.minecraft.oak_wall_sign": "Ook Sign on ur wall", + "block.minecraft.oak_wood": "Oak Wuud", + "block.minecraft.observer": "CREEPY StaLKeR DuDE", + "block.minecraft.obsidian": "hardest thing evar", + "block.minecraft.ochre_froglight": "Yelo toedshin", + "block.minecraft.ominous_banner": "skeri bahnor", + "block.minecraft.orange_banner": "oreng bahnor", + "block.minecraft.orange_bed": "Orang Bed", + "block.minecraft.orange_candle": "Ornge land pikl", + "block.minecraft.orange_candle_cake": "Caek wif Ornge Land pikl", + "block.minecraft.orange_carpet": "Ornge Cat Rug", + "block.minecraft.orange_concrete": "Orang tough bluk", + "block.minecraft.orange_concrete_powder": "Orang tough bluk powdr", + "block.minecraft.orange_glazed_terracotta": "Orang mosaic", + "block.minecraft.orange_shulker_box": "Ornge Shulker Bux", + "block.minecraft.orange_stained_glass": "Oranz Staned Glas", + "block.minecraft.orange_stained_glass_pane": "Oranz Staned Glas Pan", + "block.minecraft.orange_terracotta": "Orang Teracottah", + "block.minecraft.orange_tulip": "Ornge tulehp", + "block.minecraft.orange_wool": "Ornge Fur Bluk", + "block.minecraft.oxeye_daisy": "big wite flowr", + "block.minecraft.oxidized_copper": "Very-old copurr", + "block.minecraft.oxidized_cut_copper": "Very-old sliced copurr", + "block.minecraft.oxidized_cut_copper_slab": "Very-old Copurr sleb", + "block.minecraft.oxidized_cut_copper_stairs": "Very-old Copurr sters", + "block.minecraft.packed_ice": "Pack'd Frozen Water", + "block.minecraft.packed_mud": "dirty water compact", + "block.minecraft.pearlescent_froglight": "Perlecsetn Toadshine", + "block.minecraft.peony": "pony plant", + "block.minecraft.petrified_oak_slab": "Petrifid Oak Sleb", + "block.minecraft.pink_banner": "pinek bahnor", + "block.minecraft.pink_bed": "Pinky Bed", + "block.minecraft.pink_candle": "Pinc land pikl", + "block.minecraft.pink_candle_cake": "Caek wif Pinc Land pikl", + "block.minecraft.pink_carpet": "Pinky Cat Rug", + "block.minecraft.pink_concrete": "Pinkyyy tough bluk", + "block.minecraft.pink_concrete_powder": "Pinkyyy tough bluk powdr", + "block.minecraft.pink_glazed_terracotta": "Pinkyyy mosaic", + "block.minecraft.pink_shulker_box": "Pinky Shulker Bux", + "block.minecraft.pink_stained_glass": "Pingk Staned Glas", + "block.minecraft.pink_stained_glass_pane": "Pingk Staned Glas Pan", + "block.minecraft.pink_terracotta": "Pinky Teracottah", + "block.minecraft.pink_tulip": "Pink tulehp", + "block.minecraft.pink_wool": "Pinky Fur Bluk", + "block.minecraft.piston": "Pushur", + "block.minecraft.piston_head": "pushy-uppy face", + "block.minecraft.player_head": "Kat Hed", + "block.minecraft.player_head.named": "%s's Hed", + "block.minecraft.player_wall_head": "Cat Wall Hed", + "block.minecraft.podzol": "Durtee durt", + "block.minecraft.pointed_dripstone": "Sharp cave rok", + "block.minecraft.polished_andesite": "pretteh grey rock", + "block.minecraft.polished_andesite_slab": "Pretteh Grey Rock Sleb", + "block.minecraft.polished_andesite_stairs": "Pretteh Grey Rock Stairz", + "block.minecraft.polished_basalt": "cleened baisolt", + "block.minecraft.polished_blackstone": "polised bleckston", + "block.minecraft.polished_blackstone_brick_slab": "shiny blak rok brik slab", + "block.minecraft.polished_blackstone_brick_stairs": "shiny blak rok brik sters", + "block.minecraft.polished_blackstone_brick_wall": "polised bleck brik wal", + "block.minecraft.polished_blackstone_bricks": "Preteh bleck rockz stackd", + "block.minecraft.polished_blackstone_button": "shiny blak rok buton", + "block.minecraft.polished_blackstone_pressure_plate": "shiny blak rok step button", + "block.minecraft.polished_blackstone_slab": "shiny blak rok sleb", + "block.minecraft.polished_blackstone_stairs": "shiny blak rok sters", + "block.minecraft.polished_blackstone_wall": "shiny blak rok wal", + "block.minecraft.polished_deepslate": "shiny dark ston", + "block.minecraft.polished_deepslate_slab": "shiny dark ston sleb", + "block.minecraft.polished_deepslate_stairs": "shiny dark ston stairz", + "block.minecraft.polished_deepslate_wall": "shiny dark ston wal", + "block.minecraft.polished_diorite": "pretteh kitteh litter rockz", + "block.minecraft.polished_diorite_slab": "Pretteh Diorito Sleb", + "block.minecraft.polished_diorite_stairs": "Pretteh Diorito Stairz", + "block.minecraft.polished_granite": "pretteh red rock", + "block.minecraft.polished_granite_slab": "Pretteh Red Rock Sleb", + "block.minecraft.polished_granite_stairs": "Pretteh Red Rock Stairz", + "block.minecraft.poppy": "poopy", + "block.minecraft.potatoes": "Taturs", + "block.minecraft.potted_acacia_sapling": "Pottd acazia saplin", + "block.minecraft.potted_allium": "Pottd alium", + "block.minecraft.potted_azalea_bush": "Pottd Alakazam", + "block.minecraft.potted_azure_bluet": "Pottd azur blut", + "block.minecraft.potted_bamboo": "Pottd green stick", + "block.minecraft.potted_birch_sapling": "Pottd birsh saplin", + "block.minecraft.potted_blue_orchid": "Pottd bluu orkid", + "block.minecraft.potted_brown_mushroom": "Pottd bron shroom", + "block.minecraft.potted_cactus": "Pottd cacus", + "block.minecraft.potted_cornflower": "Pottd Cornflowerpower", + "block.minecraft.potted_crimson_fungus": "Pottd Crimzin Foongiz", + "block.minecraft.potted_crimson_roots": "Pottd Crimzn Rutez", + "block.minecraft.potted_dandelion": "Pottd danksdelion", + "block.minecraft.potted_dark_oak_sapling": "Pottd darkok saplin", + "block.minecraft.potted_dead_bush": "Pottd ded bujsh", + "block.minecraft.potted_fern": "Pottd ferrn", + "block.minecraft.potted_flowering_azalea_bush": "Pottd Flowerig Alakazam", + "block.minecraft.potted_jungle_sapling": "Pottd junle saplin", + "block.minecraft.potted_lily_of_the_valley": "Pottd Lily of za Valley", + "block.minecraft.potted_mangrove_propagule": "Mangroff baby inpot", + "block.minecraft.potted_oak_sapling": "Pottd ok saplin", + "block.minecraft.potted_orange_tulip": "Pottd orang tlip", + "block.minecraft.potted_oxeye_daisy": "Pottd oxyey daisye", + "block.minecraft.potted_pink_tulip": "Pottd pikk tlip", + "block.minecraft.potted_poppy": "Pottd popi", + "block.minecraft.potted_red_mushroom": "Pottd red shroom", + "block.minecraft.potted_red_tulip": "Pottd red tlip", + "block.minecraft.potted_spruce_sapling": "Pottd sprus saplin", + "block.minecraft.potted_warped_fungus": "Pottd Warpt Foongis", + "block.minecraft.potted_warped_roots": "Pottd Warpd Rootz", + "block.minecraft.potted_white_tulip": "Pottd wit tlip", + "block.minecraft.potted_wither_rose": "Pottd Wither Roos", + "block.minecraft.powder_snow": "Powdr Sno", + "block.minecraft.powder_snow_cauldron": "Big bukkit wit Powdr Sno", + "block.minecraft.powered_rail": "PUWERD RAIL", + "block.minecraft.prismarine": "Prizmarine", + "block.minecraft.prismarine_brick_slab": "blue sleb thing", + "block.minecraft.prismarine_brick_stairs": "prizrin strs", + "block.minecraft.prismarine_bricks": "Prizmarine Briks", + "block.minecraft.prismarine_slab": "Prizmarine Sleb", + "block.minecraft.prismarine_stairs": "Prizmarine thingy", + "block.minecraft.prismarine_wall": "Prizmarine Wal", + "block.minecraft.pumpkin": "Pangkan", + "block.minecraft.pumpkin_stem": "Dat thing teh orange scary thing grows on", + "block.minecraft.purple_banner": "purrrpel bahnor", + "block.minecraft.purple_bed": "Parpal Bed", + "block.minecraft.purple_candle": "Parpal hot stik", + "block.minecraft.purple_candle_cake": "Caek wif Purpl Candl", + "block.minecraft.purple_carpet": "Parpal Cat Rug", + "block.minecraft.purple_concrete": "Perpl tough bluk", + "block.minecraft.purple_concrete_powder": "Perpl tough bluk powdr", + "block.minecraft.purple_glazed_terracotta": "Perpl mosaic", + "block.minecraft.purple_shulker_box": "Parpal Shulker Bux", + "block.minecraft.purple_stained_glass": "Purply Stainedly Glazz", + "block.minecraft.purple_stained_glass_pane": "Parpal Staned Glas Pan", + "block.minecraft.purple_terracotta": "Parpal Teracottah", + "block.minecraft.purple_wool": "Parpal Fur Bluk", + "block.minecraft.purpur_block": "OOO PURPUR Bluk", + "block.minecraft.purpur_pillar": "OOO PURPUR Bluk w/ Stripez", + "block.minecraft.purpur_slab": "OOO PURPUR Bluk Cut In Half", + "block.minecraft.purpur_stairs": "OOO PURPUR Bluk U Can Climb", + "block.minecraft.quartz_block": "Blak Av Kworts", + "block.minecraft.quartz_bricks": "Kwartz brickz", + "block.minecraft.quartz_pillar": "Kwartz piler", + "block.minecraft.quartz_slab": "White half blok", + "block.minecraft.quartz_stairs": "Kworts Sters", + "block.minecraft.rail": "Trakz", + "block.minecraft.raw_copper_block": "Bluk ov moldy wurst", + "block.minecraft.raw_gold_block": "Bluk ov shiny coal", + "block.minecraft.raw_iron_block": "Bluk ov RAWWWW irun", + "block.minecraft.red_banner": "Red bahnor", + "block.minecraft.red_bed": "Reddish Bed", + "block.minecraft.red_candle": "Red land pikl", + "block.minecraft.red_candle_cake": "Caek wif Rd Candl", + "block.minecraft.red_carpet": "Redish Cat Rug", + "block.minecraft.red_concrete": "Redish tough bluk", + "block.minecraft.red_concrete_powder": "Redish tough bluk powdr", + "block.minecraft.red_glazed_terracotta": "Redish mosaic", + "block.minecraft.red_mushroom": "blood Mooshroom", + "block.minecraft.red_mushroom_block": "blood Mushroom blok", + "block.minecraft.red_nether_brick_slab": "Red Sleb that Nether bricks", + "block.minecraft.red_nether_brick_stairs": "Red Nether Brik Sters", + "block.minecraft.red_nether_brick_wall": "Red Nether brik Wal", + "block.minecraft.red_nether_bricks": "Blud Nether brik", + "block.minecraft.red_sand": "Red sand", + "block.minecraft.red_sandstone": "Warmy sanstown", + "block.minecraft.red_sandstone_slab": "Rds litterbox slab", + "block.minecraft.red_sandstone_stairs": "Rds litterbox sters", + "block.minecraft.red_sandstone_wall": "Redy Sandston Wal", + "block.minecraft.red_shulker_box": "Redish Shulker Bux", + "block.minecraft.red_stained_glass": "Read Stainedly Glazz", + "block.minecraft.red_stained_glass_pane": "rud thin culurd thingy", + "block.minecraft.red_terracotta": "Reddish Teracottah", + "block.minecraft.red_tulip": "Red tulehp", + "block.minecraft.red_wool": "Redish Fur Bluk", + "block.minecraft.redstone_block": "Redstone Bluk", + "block.minecraft.redstone_lamp": "Redstone lapm", + "block.minecraft.redstone_ore": "Rockz wif Redstone", + "block.minecraft.redstone_torch": "Glowy Redstone Stik", + "block.minecraft.redstone_wall_torch": "Glowy Redstone Wall Stik", + "block.minecraft.redstone_wire": "Redstone Whyr", + "block.minecraft.reinforced_deepslate": "dark ston wit weird thing outside idk", + "block.minecraft.repeater": "Redstone Repeetah", + "block.minecraft.repeating_command_block": "Again Doing Block", + "block.minecraft.respawn_anchor": "Reezpon mawgic blok", + "block.minecraft.rooted_dirt": "durt wit stickz", + "block.minecraft.rose_bush": "Rose brah", + "block.minecraft.sand": "litter box stuffs", + "block.minecraft.sandstone": "litter box rockz", + "block.minecraft.sandstone_slab": "sansdstoen sleb", + "block.minecraft.sandstone_stairs": "Sanston Sters", + "block.minecraft.sandstone_wall": "Sandston Wal", + "block.minecraft.scaffolding": "Sceffolding", + "block.minecraft.sculk": "Sculk", + "block.minecraft.sculk_catalyst": "Sculk Cat-alist", + "block.minecraft.sculk_sensor": "Sculk detektor", + "block.minecraft.sculk_shrieker": "Kat Yeller", + "block.minecraft.sculk_vein": "Smol sculk", + "block.minecraft.sea_lantern": "See lanturn", + "block.minecraft.sea_pickle": "See pikol", + "block.minecraft.seagrass": "MARIN GRAZZ", + "block.minecraft.set_spawn": "hear is new kat home!!", + "block.minecraft.shroomlight": "Shroomy Lite", + "block.minecraft.shulker_box": "Shulker Bux", + "block.minecraft.skeleton_skull": "Spooke scury Skeletun Faze", + "block.minecraft.skeleton_wall_skull": "Spooke Scury Skeletun Wall Hed", + "block.minecraft.slime_block": "bouncy green stuff", + "block.minecraft.small_amethyst_bud": "Smol purpur shinee", + "block.minecraft.small_dripleaf": "Smol fall thru plantt", + "block.minecraft.smithing_table": "Smissing Table", + "block.minecraft.smoker": "Za Smoker", + "block.minecraft.smooth_basalt": "smoos bazalt", + "block.minecraft.smooth_quartz": "Smooth Wite Kat Blawk", + "block.minecraft.smooth_quartz_slab": "Smooth Qwartz Sleb", + "block.minecraft.smooth_quartz_stairs": "Smooth Qwartz Stairz", + "block.minecraft.smooth_red_sandstone": "Smud warmy sanstown", + "block.minecraft.smooth_red_sandstone_slab": "Smooth Redy Sandston Sleb", + "block.minecraft.smooth_red_sandstone_stairs": "Smooth Redy Sandston Stairz", + "block.minecraft.smooth_sandstone": "smooth litter box rockz", + "block.minecraft.smooth_sandstone_slab": "Smooth Sandston Sleb", + "block.minecraft.smooth_sandstone_stairs": "Smooth Sandston Stairz", + "block.minecraft.smooth_stone": "Smooth Rockz", + "block.minecraft.smooth_stone_slab": "Smooth Ston Sleb", + "block.minecraft.snow": "Cold white stuff", + "block.minecraft.snow_block": "Snowi bloc", + "block.minecraft.soul_campfire": "sul camfiri", + "block.minecraft.soul_fire": "bloo hot stuff", + "block.minecraft.soul_lantern": "Sol Lanturn", + "block.minecraft.soul_sand": "sole snd", + "block.minecraft.soul_soil": "ded peeple dirt", + "block.minecraft.soul_torch": "Creepy torch thingy", + "block.minecraft.soul_wall_torch": "Creepy torch thingy on de wal", + "block.minecraft.spawn.not_valid": "U iz homelezz nao cuz ur hoem bed or charjd respwn anchr, or wuz obstructd", + "block.minecraft.spawner": "Spaawnr", + "block.minecraft.sponge": "Spangblob", + "block.minecraft.spore_blossom": "snees flowar", + "block.minecraft.spruce_button": "Sproos Button", + "block.minecraft.spruce_door": "Spruz Dor", + "block.minecraft.spruce_fence": "Sprce Fenc", + "block.minecraft.spruce_fence_gate": "Sprce Fenc Gaet", + "block.minecraft.spruce_leaves": "spruce salad", + "block.minecraft.spruce_log": "Spruce lawg", + "block.minecraft.spruce_planks": "dark wooden bloc", + "block.minecraft.spruce_pressure_plate": "Sproos Prseure Pleitz", + "block.minecraft.spruce_sapling": "baby spurce", + "block.minecraft.spruce_sign": "Sproos Sign", + "block.minecraft.spruce_slab": "Sproos Sleb", + "block.minecraft.spruce_stairs": "Sproos Stairz", + "block.minecraft.spruce_trapdoor": "Sproos Trap", + "block.minecraft.spruce_wall_sign": "Sproos Sign on ur wall", + "block.minecraft.spruce_wood": "Spruz Wuud", + "block.minecraft.sticky_piston": "Stickeh Pushurr", + "block.minecraft.stone": "Rock", + "block.minecraft.stone_brick_slab": "Ston Brick Sleb", + "block.minecraft.stone_brick_stairs": "Stone Brik Sters", + "block.minecraft.stone_brick_wall": "Ston Brik Wal", + "block.minecraft.stone_bricks": "Stackd Rockz", + "block.minecraft.stone_button": "Stoon Button", + "block.minecraft.stone_pressure_plate": "Stone Presar Plat", + "block.minecraft.stone_slab": "stne slab", + "block.minecraft.stone_stairs": "Ston Stairz", + "block.minecraft.stonecutter": "Shrpy movin thingy", + "block.minecraft.stripped_acacia_log": "Naked Acashuh lawg", + "block.minecraft.stripped_acacia_wood": "Naked Acashuh Bawk", + "block.minecraft.stripped_birch_log": "Naked berch lawg", + "block.minecraft.stripped_birch_wood": "Naked Berch Bawk", + "block.minecraft.stripped_crimson_hyphae": "Da werd red nehtr plnta but neked", + "block.minecraft.stripped_crimson_stem": "Nakd crimzon stem", + "block.minecraft.stripped_dark_oak_log": "Naked shaded-O lawg", + "block.minecraft.stripped_dark_oak_wood": "Naked Blak Oac Bawk", + "block.minecraft.stripped_jungle_log": "Naked juncle lawg", + "block.minecraft.stripped_jungle_wood": "Naked Juggle Bawk", + "block.minecraft.stripped_mangrove_log": "Neked mengroff lawg", + "block.minecraft.stripped_mangrove_wood": "Neked mengroff wuud", + "block.minecraft.stripped_oak_log": "Naked Oac lawg", + "block.minecraft.stripped_oak_wood": "Naked Oac Bawk", + "block.minecraft.stripped_spruce_log": "Naked spruice lawg", + "block.minecraft.stripped_spruce_wood": "Naked Sproos Bawk", + "block.minecraft.stripped_warped_hyphae": "Da werd nethr plnt butt nakie", + "block.minecraft.stripped_warped_stem": "Naekt Warpt Stem", + "block.minecraft.structure_block": "Strcter blek", + "block.minecraft.structure_void": "Blank space", + "block.minecraft.sugar_cane": "BAMBOOO", + "block.minecraft.sunflower": "Rly tall flowr", + "block.minecraft.sweet_berry_bush": "Sweet Bery Bush", + "block.minecraft.tall_grass": "Tall Gras", + "block.minecraft.tall_seagrass": "TOLL MARIN GRAZZ", + "block.minecraft.target": "Tawget", + "block.minecraft.terracotta": "Terrakattah", + "block.minecraft.tinted_glass": "Skary glazz", + "block.minecraft.tnt": "BOOM", + "block.minecraft.torch": "burny stick", + "block.minecraft.trapped_chest": "Rigged Cat Box", + "block.minecraft.tripwire": "String", + "block.minecraft.tripwire_hook": "String huk", + "block.minecraft.tube_coral": "Tuf koral", + "block.minecraft.tube_coral_block": "Tuf koral cube", + "block.minecraft.tube_coral_fan": "Tuf koral fen", + "block.minecraft.tube_coral_wall_fan": "Tueb Corahl Wahll Fahn", + "block.minecraft.tuff": "Tfff", + "block.minecraft.turtle_egg": "Tertl ball", + "block.minecraft.twisting_vines": "Spyrale noodel", + "block.minecraft.twisting_vines_plant": "Spyrale noodel plont", + "block.minecraft.verdant_froglight": "Grin Toadshine", + "block.minecraft.vine": "Climbin plantz", + "block.minecraft.void_air": "vOoId", + "block.minecraft.wall_torch": "burny stick on de wall", + "block.minecraft.warped_button": "Warpt Thingy", + "block.minecraft.warped_door": "Warpt Big Kat Door", + "block.minecraft.warped_fence": "Warpt Fenc", + "block.minecraft.warped_fence_gate": "Warpt Fenc Gaet", + "block.minecraft.warped_fungus": "Warpt Foongis", + "block.minecraft.warped_hyphae": "Wierd nethr plant", + "block.minecraft.warped_nylium": "wrped nyanium", + "block.minecraft.warped_planks": "Warpt Plaenkz", + "block.minecraft.warped_pressure_plate": "Wapt Weight Plaet", + "block.minecraft.warped_roots": "Warpt Roods", + "block.minecraft.warped_sign": "Warpt Texxt Bawrd", + "block.minecraft.warped_slab": "Warpt Slaep", + "block.minecraft.warped_stairs": "Worp Katstairs", + "block.minecraft.warped_stem": "Warpt trunkk", + "block.minecraft.warped_trapdoor": "Warpt Kat Door", + "block.minecraft.warped_wall_sign": "Warpt wol book", + "block.minecraft.warped_wart_block": "Warpt Pimpl Blawk", + "block.minecraft.water": "Watr", + "block.minecraft.water_cauldron": "big bukkit wit watr", + "block.minecraft.waxed_copper_block": "Shiny Blok of copurr", + "block.minecraft.waxed_cut_copper": "Waxd an sliecd copurr", + "block.minecraft.waxed_cut_copper_slab": "Yucky slised copurr sleb", + "block.minecraft.waxed_cut_copper_stairs": "Yucky slised copurr sters", + "block.minecraft.waxed_exposed_copper": "Shiny Seen Copurr", + "block.minecraft.waxed_exposed_cut_copper": "Shiny Seen Sliced Copurr", + "block.minecraft.waxed_exposed_cut_copper_slab": "Shineh Seen Sliced Steal Half Block", + "block.minecraft.waxed_exposed_cut_copper_stairs": "Shiny Seen Sliced Steal sters", + "block.minecraft.waxed_oxidized_copper": "Shiny very-old copurr", + "block.minecraft.waxed_oxidized_cut_copper": "Shiny very-old sliced copurr", + "block.minecraft.waxed_oxidized_cut_copper_slab": "Shiny very-old copurr sleb", + "block.minecraft.waxed_oxidized_cut_copper_stairs": "Shiny cery-old copurr sters", + "block.minecraft.waxed_weathered_copper": "Yucky old copurr", + "block.minecraft.waxed_weathered_cut_copper": "Shiny Yucky old sliced copurr", + "block.minecraft.waxed_weathered_cut_copper_slab": "Shiny rained sliced steal half block", + "block.minecraft.waxed_weathered_cut_copper_stairs": "Shiny rained sliced copurr sters", + "block.minecraft.weathered_copper": "Rainy copurr", + "block.minecraft.weathered_cut_copper": "Old slised copurr", + "block.minecraft.weathered_cut_copper_slab": "Kinda-old slised copurr bluk haf", + "block.minecraft.weathered_cut_copper_stairs": "Old yucky slised copurr sters", + "block.minecraft.weeping_vines": "oh no y u cry roof noddle", + "block.minecraft.weeping_vines_plant": "sad noodle plant", + "block.minecraft.wet_sponge": "wet Spangblob", + "block.minecraft.wheat": "Wheat Crops", + "block.minecraft.white_banner": "blenk bahnor", + "block.minecraft.white_bed": "Waite Bed", + "block.minecraft.white_candle": "Wite land pikl", + "block.minecraft.white_candle_cake": "Caek wif Wite Land pickl", + "block.minecraft.white_carpet": "White scratchy stuff", + "block.minecraft.white_concrete": "Wyte tough bluk", + "block.minecraft.white_concrete_powder": "Wayte tough bluk powdr", + "block.minecraft.white_glazed_terracotta": "Wayte mosaic", + "block.minecraft.white_shulker_box": "Waite Shulker Bux", + "block.minecraft.white_stained_glass": "Wite Staind Glas", + "block.minecraft.white_stained_glass_pane": "Whitty Glazz Payn", + "block.minecraft.white_terracotta": "Waite Terrakattah", + "block.minecraft.white_tulip": "Wite tulehp", + "block.minecraft.white_wool": "Waite Fur Bluk", + "block.minecraft.wither_rose": "Wither Roos", + "block.minecraft.wither_skeleton_skull": "Wither Skellyton Skul", + "block.minecraft.wither_skeleton_wall_skull": "Wither Skellyton Wall", + "block.minecraft.yellow_banner": "yelloh bahnor", + "block.minecraft.yellow_bed": "Banana Bed", + "block.minecraft.yellow_candle": "Yello land pikl", + "block.minecraft.yellow_candle_cake": "Caek Wif Yelow Candle", + "block.minecraft.yellow_carpet": "Yello Cat Rug", + "block.minecraft.yellow_concrete": "Yello tough bluk", + "block.minecraft.yellow_concrete_powder": "Yellow tough bluk powdr", + "block.minecraft.yellow_glazed_terracotta": "Yellow mosaic", + "block.minecraft.yellow_shulker_box": "Yello Shulker Bux", + "block.minecraft.yellow_stained_glass": "Yelo Staned Glas", + "block.minecraft.yellow_stained_glass_pane": "Yelo Staned Glas Pan", + "block.minecraft.yellow_terracotta": "Yollo Terrakattah", + "block.minecraft.yellow_wool": "Yello Fur Bluk", + "block.minecraft.zombie_head": "Zombee Hed", + "block.minecraft.zombie_wall_head": "Ded Person Wall Hed", + "book.byAuthor": "by %1$s", + "book.editTitle": "Titl 4 ur book:", + "book.finalizeButton": "sighn an uplode", + "book.finalizeWarning": "Warnin!!1! whenz you sign teh bok it cantz be changedz!!1", + "book.generation.0": "FIRST!", + "book.generation.1": "copee of first", + "book.generation.2": "copee off copee", + "book.generation.3": "scratched up (i didnt do dat)", + "book.invalid.tag": "* Invalud buk tag *", + "book.pageIndicator": "page %1$s of a bunch (%2$s)", + "book.signButton": "Put najm", + "build.tooHigh": "tallnes limet for bilding iz %s", + "chat.cannotSend": "sry m8 cants send chatz msg", + "chat.coordinates": "%s, %s, %s", + "chat.coordinates.tooltip": "Click 2 teleportz", + "chat.copy": "SAEV 4 L8R", + "chat.copy.click": "klix tu cop 2 catbord", + "chat.disabled.expiredProfileKey": "Chats disabld cuz publik kee expaired. Try reconectin plss", + "chat.disabled.launcher": "Chat disabld by launchr opshun. Cannot sen mesage", + "chat.disabled.options": "Chat turnd off in cleint opshinz", + "chat.disabled.profile": "Chat not allowed by akownt settins. Press '%s' again 4 more informashun", + "chat.disabled.profile.moreInfo": "Chat not allowed by akownt settins. Cannot send or view mesagez.", + "chat.editBox": "chatz", + "chat.filtered_full": "Teh servr has hidden ur mesage 4 some playrs.", + "chat.link.confirm": "R u sur u wants 2 open teh followin websiet?", + "chat.link.confirmTrusted": "Wants 2 opn or u wants 2 saev it 4 l8r?", + "chat.link.open": "Opin in browzr", + "chat.link.warning": "Nevr open linkz frum kittehs u doan't trust!", + "chat.previewInput": "Press [%s] 2 see", + "chat.queue": "[+%s pandig limes]", + "chat.square_brackets": "[%s]", + "chat.tag.filtered": "Dis mesage haz been filtred by teh servr.", + "chat.tag.modified": "Dis mesage haz been modified by teh servr.", + "chat.tag.modified.original": "Furst text: %s", + "chat.tag.not_secure": "Dis mesage iz not secure, which means dat it might hav been modified by teh servr", + "chat.type.admin": "[%s: %s]", + "chat.type.advancement.challenge": "%s didz %s clap clap meeee", + "chat.type.advancement.goal": "%s dids %s omg gg bro", + "chat.type.advancement.task": "%s haz maed da atfancemend %s", + "chat.type.announcement": "[%s] %s", + "chat.type.emote": "* %s %s", + "chat.type.team.hover": "Mesedg Tem", + "chat.type.team.sent": "-> %s <%s> %s", + "chat.type.team.text": "%s <%s> %s", + "chat.type.text": "<%s> %s", + "chat.type.text.narrate": "%s sayz %s", + "chatPreview.warning.check": "No ask u gain fer da server", + "chatPreview.warning.content": "Chat Preview allows teh servr 2 see ur mesagez before they r sent 2 other playrs. Dis allows a server 2 send u a preview ov ur chat mesagez wif custom modificashuns an stylin applied.\n\nThe Chat Preview behavior can be changed in ur Char settins. Current settin is: [%s]", + "chatPreview.warning.title": "Dis servr usz Chatz Previu", + "chatPreview.warning.toast": "Dis servr usez Chat Pweview & can see ur msgz b4 they're sent 2 othr playrz. U can turn dis off in Chat Settins.", + "chatPreview.warning.toast.title": "Chat Preview iz enabled", + "chat_screen.message": "Mesage to sen: %s", + "chat_screen.title": "Chad screeen", + "chat_screen.usage": "Inputed mesage an prez Intr 2 sen", + "clear.failed.multiple": "No items wuz findz on %s players", + "clear.failed.single": "Nu itemz fund on pleyer %s", + "color.minecraft.black": "Blak", + "color.minecraft.blue": "Blew", + "color.minecraft.brown": "Broun", + "color.minecraft.cyan": "Nyan", + "color.minecraft.gray": "Gray", + "color.minecraft.green": "Grean", + "color.minecraft.light_blue": "Lite Blew", + "color.minecraft.light_gray": "Lite Gray", + "color.minecraft.lime": "Lyem", + "color.minecraft.magenta": "Majenta", + "color.minecraft.orange": "Stampy Colour", + "color.minecraft.pink": "Pynk", + "color.minecraft.purple": "Purpel", + "color.minecraft.red": "Red", + "color.minecraft.white": "Wite", + "color.minecraft.yellow": "Yello", + "command.context.here": "<--[LOK HER!11]", + "command.context.parse_error": "%s at pozishun %s: %s", + "command.exception": "cud not parse command: %s", + "command.expected.separator": "Expectd whitespace 2 end wan argument, but findz trailin data", + "command.failed": "An unexpectd errur occurd tryin 2 do dis cmd", + "command.unknown.argument": "Incorrect argument 4 command", + "command.unknown.command": "cant find teh commnd :( luk under 2 c y", + "commands.advancement.advancementNotFound": "No atfancemend wuz found bai de naem '%s'", + "commands.advancement.criterionNotFound": "De atfancemend '%1$s' dooz not contain de criterion '%2$s'", + "commands.advancement.grant.criterion.to.many.failure": "Coeldn't grand da kriterion '%s' uv atfancemend %s 2 %s playrs cuz they already have it", + "commands.advancement.grant.criterion.to.many.success": "Granted da criterion '%s' of atfancemend %s 2 %s kities", + "commands.advancement.grant.criterion.to.one.failure": "Coeldn't grand da kriterion '%s' uv atfancemend %s 2 %s cuz they already have it", + "commands.advancement.grant.criterion.to.one.success": "Granted da criterion '%s' of atfancemend %s 2 %s", + "commands.advancement.grant.many.to.many.failure": "Coeldn't grand %s atfancemends 2 %s pleytrs cuz they already hav em", + "commands.advancement.grant.many.to.many.success": "Granted %s atfancemends 2 %s kities", + "commands.advancement.grant.many.to.one.failure": "Coeldn't grand %s atfancemends 2 %s cuz they already hav em", + "commands.advancement.grant.many.to.one.success": "Granted %s atfancemends 2 %s", + "commands.advancement.grant.one.to.many.failure": "Coeldn't grand da atfancemend %s 2 %s playrs cuz they already have it", + "commands.advancement.grant.one.to.many.success": "Granted da atfancemend '%s' 2 %s kities", + "commands.advancement.grant.one.to.one.failure": "Coeldn't grand da atfancemend '%s' 2 %s cuz they already hav it", + "commands.advancement.grant.one.to.one.success": "Granted da atfancemend '%s' 2 %s", + "commands.advancement.revoke.criterion.to.many.failure": "Coeldn't tak da kriterion '%s' uv atfancemend %s frum %s katz cuz they no have it", + "commands.advancement.revoke.criterion.to.many.success": "Skracht standurdz '%s' of advansment squarz %s from %s katz", + "commands.advancement.revoke.criterion.to.one.failure": "Coeldn't tak da kriterion '%s' uv atfancemend %s frum %s cuz they no have it", + "commands.advancement.revoke.criterion.to.one.success": "Skracht standurdz '%s' of advansment squarz %s from %s", + "commands.advancement.revoke.many.to.many.failure": "Coodint Skrach %s advansment squarz from %s katz bcuz thay dont hav squarz", + "commands.advancement.revoke.many.to.many.success": "Skracht %s advansment squarz from %s katz", + "commands.advancement.revoke.many.to.one.failure": "Coodint Skrach %s advansment squarz from %s bcuz thay dont hav squarez", + "commands.advancement.revoke.many.to.one.success": "Skracht %s advansment squarz from %s", + "commands.advancement.revoke.one.to.many.failure": "Coeldn't tak da adfancemend %s frum %s playrs cuz they no have it", + "commands.advancement.revoke.one.to.many.success": "Tuk atvunzment %s frum %s kities", + "commands.advancement.revoke.one.to.one.failure": "Coeldn't tek atvunzment %s frum %s cuz dey no hav it", + "commands.advancement.revoke.one.to.one.success": "Tuk atvunzment %s frum %s", + "commands.attribute.base_value.get.success": "Base valooe of attribute %s 4 cat %s iz %s", + "commands.attribute.base_value.set.success": "Base valooe 4 attribute %s 4 cat %s iz nao %s", + "commands.attribute.failed.entity": "%s iz not valid entity 4 dis command", + "commands.attribute.failed.modifier_already_present": "Modifier %s alredy preznt on attribute %s 4 cat %s", + "commands.attribute.failed.no_attribute": "Cat %s haz no attribute %s", + "commands.attribute.failed.no_modifier": "Atributz %s for katz haz %s no modifer %s", + "commands.attribute.modifier.add.success": "Addz modifier %s 2 attribute %s 4 cat %s", + "commands.attribute.modifier.remove.success": "Remoovd modifier %s from attribute %s 4 cat %s", + "commands.attribute.modifier.value.get.success": "Valooe of modifier %s on attribute %s 4 cat %s iz %s", + "commands.attribute.value.get.success": "Valooe of attribute %s 4 cat %s iz %s", + "commands.ban.failed": "Nothin changd, da kat is already banned", + "commands.ban.success": "Beaned %s: %s", + "commands.banip.failed": "Nothin changd, dat IP is banned", + "commands.banip.info": "This bean affects %s playrs: %s", + "commands.banip.invalid": "Bad IP or unknown kitteh", + "commands.banip.success": "IP Beaned %s: %s", + "commands.banlist.entry": "%s was beaned by %s: %s", + "commands.banlist.list": "There r %s beans:", + "commands.banlist.none": "There r no beans", + "commands.bossbar.create.failed": "a Boshbar alweady exists with da id '%s'", + "commands.bossbar.create.success": "Kreatd cuztum bossthing %s", + "commands.bossbar.get.max": "cuztum bossthing %s haz new big numburz: %s", + "commands.bossbar.get.players.none": "cuztum bossthing %s haz no katz on teh linez", + "commands.bossbar.get.players.some": "cuztum bossthing %s haz %s katz on teh linez: %s", + "commands.bossbar.get.value": "cuztum bossthing %s haz new numberz: %s", + "commands.bossbar.get.visible.hidden": "cuztum bossthing %s iz hiddind", + "commands.bossbar.get.visible.visible": "cuztum bossthing %s iz shownin'", + "commands.bossbar.list.bars.none": "Der ar no cuztum bossthing aktiv", + "commands.bossbar.list.bars.some": "Der ar %s cuztum bossthing aktiv: %s", + "commands.bossbar.remove.success": "Remuvd cuztum bossthing %s", + "commands.bossbar.set.color.success": "cuztum bossthing %s haz new culurz", + "commands.bossbar.set.color.unchanged": "nothin changd, thaz already teh color ov dis bosbar", + "commands.bossbar.set.max.success": "cuztum bossthing %s haz new big numburz: %s", + "commands.bossbar.set.max.unchanged": "nothin changd, thaz already teh max ov dis bosbar", + "commands.bossbar.set.name.success": "cuztum bossthing %s haz new namez", + "commands.bossbar.set.name.unchanged": "nothin changd, thaz already teh naym ov dis bosbar", + "commands.bossbar.set.players.success.none": "cuztum bossthing %s haz no mor katz", + "commands.bossbar.set.players.success.some": "cuztum bossthing %s haz %s katz %s", + "commands.bossbar.set.players.unchanged": "Nothin changd, dose players r already on teh bosbar wif nobody 2 add or remoov", + "commands.bossbar.set.style.success": "cuztum bossthing %s haz new stylinz", + "commands.bossbar.set.style.unchanged": "nothin changd, thaz already teh style ov dis bosbar", + "commands.bossbar.set.value.success": "cuztum bossthing %s haz new numberz: %s", + "commands.bossbar.set.value.unchanged": "nothin changd, thaz already teh value ov dis bosbar", + "commands.bossbar.set.visibility.unchanged.hidden": "nothin changd, teh bosbar iz already hidden", + "commands.bossbar.set.visibility.unchanged.visible": "nothin changd, teh bosbar iz already visible", + "commands.bossbar.set.visible.success.hidden": "I cant see cuztum bossthing %s", + "commands.bossbar.set.visible.success.visible": "I can see cuztum bossthing %s", + "commands.bossbar.unknown": "No bosbar exists wif teh id %s", + "commands.clear.success.multiple": "Tuk %s stuffz from %s kittiez", + "commands.clear.success.single": "Tuk %s stuffz frum kat %s", + "commands.clear.test.multiple": "We seez %s lookeelikee stuffz on %s katz", + "commands.clear.test.single": "We seez %s lookeelikee stuffz on katz %s", + "commands.clone.failed": "no blockz wuz clond", + "commands.clone.overlap": "teh source an destinashun areas cant overlap", + "commands.clone.success": "Copy musheend %s blokz right", + "commands.clone.toobig": "2 maini blukz in teh spesified aria (macksimum %s, spesified %s)", + "commands.data.block.get": "%s on blok %s, %s, %s aftur skalez numbur of %s iz %s", + "commands.data.block.invalid": "teh target block iz not block entity", + "commands.data.block.modified": "Changeded blok infoz of %s, %s, %s", + "commands.data.block.query": "%s, %s, %s haz dis blok infoz: %s", + "commands.data.entity.get": "%s on %s after skalez numbur of %s iz %s", + "commands.data.entity.invalid": "unabl 2 modifi cat dataz", + "commands.data.entity.modified": "Modifid entitey deeta off %s", + "commands.data.entity.query": "%s haz teh followin entitey deeta: %s", + "commands.data.get.invalid": "No can doo with %s; can ownly bee number tag", + "commands.data.get.multiple": "Dis argument accepts a singl NBT value", + "commands.data.get.unknown": "Cant git %s: tag dosnt exist", + "commands.data.merge.failed": "nauthing chanched, da specifd propaties alweady hav dis values", + "commands.data.modify.expected_list": "Cat wonts many not %s", + "commands.data.modify.expected_object": "Expected object, got: %s", + "commands.data.modify.invalid_index": "Invlid lst indez: %s", + "commands.data.storage.get": "%s n sturage %s aftur skalez numbur o %s iz %s", + "commands.data.storage.modified": "Modifid reservoir %s", + "commands.data.storage.query": "Storge %s has followin subject-matter: %s", + "commands.datapack.disable.failed": "Pack %s iz not enabld!", + "commands.datapack.enable.failed": "Pack %s iz already enabld!", + "commands.datapack.list.available.none": "Ther R no infoz packz that can be yes-yes", + "commands.datapack.list.available.success": "Ther R %s infoz packz that can be yes-yes: %s", + "commands.datapack.list.enabled.none": "Ther R no infoz packz that are yes-yes", + "commands.datapack.list.enabled.success": "Ther R %s infoz packz that are yes-yes: %s", + "commands.datapack.modify.disable": "deactivatin nerdz stwuff: %s", + "commands.datapack.modify.enable": "activatin nerdz dawta stuffz: %s", + "commands.datapack.unknown": "Cat doezn't know diz data pak %s", + "commands.debug.alreadyRunning": "Teh tik profilr r alreedy startd", + "commands.debug.function.noRecursion": "kat cant traec frawm insid ov fnctoin", + "commands.debug.function.success.multiple": "Traicd %s komandz frum %s funkshinz t0 output file %s", + "commands.debug.function.success.single": "Traicd %s komandz frum funkshinz '%s' too output file %s", + "commands.debug.function.traceFailed": "coodnt trace teh functshun!", + "commands.debug.notRunning": "Teh tik profilr hasnt startd", + "commands.debug.started": "Startd tik profilin'", + "commands.debug.stopped": "Stoppd tik profilin aftr %s secondz an %s tikz (%s tikz pr secund)", + "commands.defaultgamemode.success": "%s iz naow da normul playin' for teh kittez", + "commands.deop.failed": "nothin changd, teh playr iz not an operator", + "commands.deop.success": "%s is not alfa enymor", + "commands.difficulty.failure": "Teh difficulty did not change; it already set 2 %s", + "commands.difficulty.query": "Teh diffikuty es %s", + "commands.difficulty.success": "Da ameownt of creeperz iz gunnu bee %s", + "commands.drop.no_held_items": "Entity can not hold any items... AND NEVAH WILL", + "commands.drop.no_loot_table": "Entity %s has no loot table", + "commands.drop.success.multiple": "Droppd %s itemz", + "commands.drop.success.multiple_with_table": "Droppd %s items frum za table %s", + "commands.drop.success.single": "Droppd %s %s", + "commands.drop.success.single_with_table": "Droppd %s %s stuffz frum za table %s", + "commands.effect.clear.everything.failed": "target has no effects 2 remoov", + "commands.effect.clear.everything.success.multiple": "Tuk all efekt frum %s targits", + "commands.effect.clear.everything.success.single": "Rmved all efekt fram %s", + "commands.effect.clear.specific.failed": "target doesnt has teh requestd effect", + "commands.effect.clear.specific.success.multiple": "Tuk efukt %s frum %s targits", + "commands.effect.clear.specific.success.single": "Tuk efukt %s frum %s", + "commands.effect.give.failed": "unable 2 apply dis effect (target iz eithr immune 2 effects, or has somethin strongr)", + "commands.effect.give.success.multiple": "%s targitz ar gunnu have %s", + "commands.effect.give.success.single": "Appoled efekt %s tO %s", + "commands.enchant.failed": "nothin changd, targets eithr has no item in their hanz or teh enchantment cud not be applid", + "commands.enchant.failed.entity": "%s iz not valid entity 4 dis command", + "commands.enchant.failed.incompatible": "%s cennot seppurt thet megic", + "commands.enchant.failed.itemless": "%s s nut hulding item", + "commands.enchant.failed.level": "%s iz highr than teh maximum level ov %s supportd by dat enchantment", + "commands.enchant.success.multiple": "Applid inchantmnt %s to %s intitiez", + "commands.enchant.success.single": "Applid inchantmnt %s to %s item", + "commands.execute.blocks.toobig": "2 maini blukz in teh spesified aria (macksimum %s, spesified %s)", + "commands.execute.conditional.fail": "Tiist failured", + "commands.execute.conditional.fail_count": "Tiist failured, count: %s", + "commands.execute.conditional.pass": "Testz Pazzed uwu", + "commands.execute.conditional.pass_count": "Test pasd, count: %s", + "commands.experience.add.levels.success.multiple": "Gev %s uxpeerinz luvlz two %s katz", + "commands.experience.add.levels.success.single": "Gev %s uxpeerinz luvlz two %s", + "commands.experience.add.points.success.multiple": "Gev %s uxpeerinz puhnts two %s katz", + "commands.experience.add.points.success.single": "Gev %s uxpeerinz puhnts two %s", + "commands.experience.query.levels": "%s haz %s uxpeerinz luvlz", + "commands.experience.query.points": "%s haz %s uxpeerinz puhnts", + "commands.experience.set.levels.success.multiple": "Sat %s uxpeerinz luvlz on %s playurz", + "commands.experience.set.levels.success.single": "Sat %s uxpeerinz luvlz on %s", + "commands.experience.set.points.invalid": "cant set experience points aboov teh maximum points 4 da kitteh current level", + "commands.experience.set.points.success.multiple": "Sat %s uxpeerinz puhnts on %s katz", + "commands.experience.set.points.success.single": "Sat %s uxpeerinz puhnts on %s", + "commands.fill.failed": "no blockz wuz filld", + "commands.fill.success": "Suxexfuly fild %s blox", + "commands.fill.toobig": "2 maini blukz in teh spesified aria (macksimum %s, spesified %s)", + "commands.forceload.added.failure": "No pieces wre markd for furce looding", + "commands.forceload.added.multiple": "Merked %s pieces in %s frum %s 2 %s 2 to be furce loded", + "commands.forceload.added.none": "A furce loded piece ws fund in et: %s", + "commands.forceload.added.single": "Merked pieces %s in %s 2 be furce looded", + "commands.forceload.list.multiple": "%s furce looded pieces wer fund in %s at: %s", + "commands.forceload.list.single": "A furce loded piece ws fund in %s et: %s", + "commands.forceload.query.failure": "Piece et %s in %s is nut merked fur furce loding", + "commands.forceload.query.success": "Piece et %s in %s is merked fur furce loding", + "commands.forceload.removed.all": "Unmerked al furce looded pieces in %s", + "commands.forceload.removed.failure": "Nu pieces wer removd frum furce looding", + "commands.forceload.removed.multiple": "Unmerked %s pieces inn %s frm %s 2 %s fr furce looding", + "commands.forceload.removed.single": "Unmerked piece %s in %s for furce lodig", + "commands.forceload.toobig": "2 maini blukz in teh spesified aria (macksimum %s, spesified %s)", + "commands.function.success.multiple": "Xcutd %s comandz frum %s funkshunz", + "commands.function.success.single": "Xcutd %s comandz frum funkshun %s", + "commands.gamemode.success.other": "Set %s's gaem moed 2 %s", + "commands.gamemode.success.self": "Set awn gaem moed 2 %s", + "commands.gamerule.query": "Gemrul %s iz set to: %s", + "commands.gamerule.set": "Gemrul %s iz now set to: %s", + "commands.give.failed.toomanyitems": "Cant givez moar dan %s off %s", + "commands.give.success.multiple": "Gev %s %s to %s kities", + "commands.give.success.single": "Givn %s %s 2 %s", + "commands.help.failed": "unknown command or insufficient permishuns", + "commands.item.block.set.success": "Replased a slot att %s, %s, %s wit %s", + "commands.item.entity.set.success.multiple": "Replacd slot on %s intitiez wif %s", + "commands.item.entity.set.success.single": "Replaedz a sluut on %s wif %s", + "commands.item.source.no_such_slot": "Teh target doez not has slot %s", + "commands.item.source.not_a_container": "Sors bluk at %s, %s, %s iz nawt a containr", + "commands.item.target.no_changed.known_item": "Naw tawgetz welcmd itemz %s intu slot %s", + "commands.item.target.no_changes": "Neh targeets hassnt aceptd item in toslot %s", + "commands.item.target.no_such_slot": "Da targit duzent has slot %s", + "commands.item.target.not_a_container": "Bluk at %s, %s, %s iz nawt a containr", + "commands.jfr.dump.failed": "JFR profawlllin faild to trash recawrd: %s", + "commands.jfr.start.failed": "JFR profawlllin reawly messd up cos fo CATZ", + "commands.jfr.started": "JFR profawlllin startd wiht CATZ", + "commands.jfr.stopped": "JFR profawlllin stopd and thrown by kittn to %s", + "commands.kick.success": "Shun %s out of da houz: %s", + "commands.kill.success.multiple": "%s tings put to slep foreva", + "commands.kill.success.single": "Killd %s", + "commands.list.nameAndId": "%s (%s)", + "commands.list.players": "Der r %s of a max of %s kities in da houz: %s", + "commands.locate.biome.invalid": "Dere iz no bioem wif typ \"%s\"", + "commands.locate.biome.not_found": "No kan findz bioem liek \"%s\" in resunabl ranj", + "commands.locate.biome.success": "Da nerest %s iz at %s (%s stepz fur)", + "commands.locate.poi.invalid": "Dere iz nah POI wit taip \"%s\"", + "commands.locate.poi.not_found": "no kan findz intewest wit da typ \"%s\" near kitteh", + "commands.locate.poi.success": "Da nerest %s iz at %s (%s stepz fur)", + "commands.locate.structure.invalid": "Kitteh cant find da strooktur wif taip \"%s\"", + "commands.locate.structure.not_found": "Kitteh culdnt find strooktur of taip \"%s\" neerby", + "commands.locate.structure.success": "Da nerest %s iz at %s (%s stepz fur)", + "commands.message.display.incoming": "%s meowz at u: %s", + "commands.message.display.outgoing": "You meow to %s: %s", + "commands.op.failed": "nothin changd, teh kitteh iz already an operator", + "commands.op.success": "Med %s a alfa kiten", + "commands.pardon.failed": "nothin changd, teh kitteh isnt bannd", + "commands.pardon.success": "Unbeaned %s", + "commands.pardonip.failed": "nothin changd, dat ip isnt bannd", + "commands.pardonip.invalid": "invalid ip addres", + "commands.pardonip.success": "Unbeaned IP %s", + "commands.particle.failed": "teh particle wuz not visible 4 anybody", + "commands.particle.success": "Showin purrtikle %s", + "commands.perf.alreadyRunning": "Teh performens profilr r alreedy startd", + "commands.perf.notRunning": "Teh performens profilr hasnt startd", + "commands.perf.reportFailed": "Faild 2 maek Bug reprort", + "commands.perf.reportSaved": "Bugs re nau in %s", + "commands.perf.started": "Startd 10 secon performens profilin runed (us '/perf stop' 2 stop eerly)", + "commands.perf.stopped": "Stoppd performens profilin aftr %s secondz an %s tikz (%s tikz pr secund)", + "commands.place.feature.failed": "Kitteh tryd so hard but culdnt place fetur", + "commands.place.feature.invalid": "Dere iz nah featur wit taip \"%s\"", + "commands.place.feature.success": "Plaised da \"%s\" at %s, %s, %s", + "commands.place.jigsaw.failed": "Spon jigsou reawly messd up cos fo CATZ", + "commands.place.jigsaw.invalid": "Dere iz nah templete pul wit taip \"%s\"", + "commands.place.jigsaw.success": "Spond jigsou @ %s, %s, %s", + "commands.place.structure.failed": "Kitteh tryd so hard but culdnt place structur", + "commands.place.structure.invalid": "Kitteh cant find da strooktur wif taip \"%s\"", + "commands.place.structure.success": "Spond structur \"%s\" @ %s, %s, %s", + "commands.place.template.failed": "Kitteh tryd so hard but culdnt place teemplet", + "commands.place.template.invalid": "Dere iz nah teemplete wit typ \"%s", + "commands.place.template.success": "Kitteh made da teemplete \"%s\" at %s, %s, %s", + "commands.playsound.failed": "teh sound iz 2 far away 2 be herd", + "commands.playsound.success.multiple": "Playd sund %s to %s kitiez", + "commands.playsound.success.single": "Makd noize %s 2 %s", + "commands.publish.alreadyPublished": "Kittenzgame is elreadi hsted 0n prt %s", + "commands.publish.failed": "Unabl 2 hust locul gaem", + "commands.publish.started": "Lucl gaem hustd on port %s", + "commands.publish.success": "Yurw wurld is naw hawsted on powrt %s", + "commands.recipe.give.failed": "no new recipez wuz lernd", + "commands.recipe.give.success.multiple": "Gott %s resapeez 4 %s peepz", + "commands.recipe.give.success.single": "Gott %s resapeez 4 %s", + "commands.recipe.take.failed": "no recipez cud be forgotten", + "commands.recipe.take.success.multiple": "Took %s resapeez from %s katz", + "commands.recipe.take.success.single": "Took %s resapeez from %s", + "commands.reload.failure": "Relod iz fail! Keepin old stuffz", + "commands.reload.success": "Reloadin!", + "commands.save.alreadyOff": "Savin iz already turnd off", + "commands.save.alreadyOn": "Savin iz already turnd on", + "commands.save.disabled": "Robot savingz iz no-no", + "commands.save.enabled": "Robot savingz iz yes-yes", + "commands.save.failed": "unable 2 save teh game (iz thar enough disk space?)", + "commands.save.saving": "Savingz teh gamez (U hav 2 wate)", + "commands.save.success": "Saved da gamez", + "commands.schedule.cleared.failure": "Nu enrollments called id %s", + "commands.schedule.cleared.success": "Removed %s programmes by the name of id %s", + "commands.schedule.created.function": "Sceduled function '%s' in %s tiks at gemtime %s", + "commands.schedule.created.tag": "Sceduled teg '%s' in %s tiks at gemtime %s", + "commands.schedule.same_tick": "Dats 2 sun i cant maek it", + "commands.scoreboard.objectives.add.duplicate": "an objectiv already exists by dat naym", + "commands.scoreboard.objectives.add.success": "Made new goalz %s", + "commands.scoreboard.objectives.display.alreadyEmpty": "nothin changd, dat display slot iz already empty", + "commands.scoreboard.objectives.display.alreadySet": "nothin changd, dat display slot iz already showin dat objectiv", + "commands.scoreboard.objectives.display.cleared": "No moar goalzez in shownin' spot %s", + "commands.scoreboard.objectives.display.set": "Made shownin' spot %s shownin' goalz %s", + "commands.scoreboard.objectives.list.empty": "Ther R no objectivez", + "commands.scoreboard.objectives.list.success": "Ther R %s goalzez: %s", + "commands.scoreboard.objectives.modify.displayname": "%s now reeds liek %s", + "commands.scoreboard.objectives.modify.rendertype": "Chengd how objectiv %s is drawd", + "commands.scoreboard.objectives.remove.success": "Tuk away goalz %s", + "commands.scoreboard.players.add.success.multiple": "Added %s 2 %s 4 %s thingyz", + "commands.scoreboard.players.add.success.single": "Added %s 2 %s 4 %s (naow %s)", + "commands.scoreboard.players.enable.failed": "nothin changd, dat triggr iz already enabld", + "commands.scoreboard.players.enable.invalid": "Enable only werkz on triggr-objectivez", + "commands.scoreboard.players.enable.success.multiple": "Tigger %s 4 %s thingyz is yes-yes", + "commands.scoreboard.players.enable.success.single": "Enabuled trigur %s 4 %s", + "commands.scoreboard.players.get.null": "Cantt gt valu of %s fur %s; nun is set", + "commands.scoreboard.players.get.success": "%s haz %s %s", + "commands.scoreboard.players.list.empty": "Ther R stalkd entitiz", + "commands.scoreboard.players.list.entity.empty": "%s haz no pointz 4 shownin'", + "commands.scoreboard.players.list.entity.entry": "%s: %s", + "commands.scoreboard.players.list.entity.success": "%s haz %s scores:", + "commands.scoreboard.players.list.success": "Ther R %s stalkd entitiez: %s", + "commands.scoreboard.players.operation.success.multiple": "Updatd %s 4 %s entitiez", + "commands.scoreboard.players.operation.success.single": "Set %s four %s two %s", + "commands.scoreboard.players.remove.success.multiple": "Tuk %s frum %s 4 %s thingyz", + "commands.scoreboard.players.remove.success.single": "Tuk %s frum %s 4 %s (naow %s)", + "commands.scoreboard.players.reset.all.multiple": "Start pointzez over 4 %s thingyz", + "commands.scoreboard.players.reset.all.single": "Start pointzez over 4 %s", + "commands.scoreboard.players.reset.specific.multiple": "Start %s over 4 %s thingyz", + "commands.scoreboard.players.reset.specific.single": "Start %s over 4 %s", + "commands.scoreboard.players.set.success.multiple": "Set %s 4 %s thingyz 2 %s", + "commands.scoreboard.players.set.success.single": "Set %s 4 %s 2 %s", + "commands.seed.success": "Seed: %s", + "commands.setblock.failed": "Cud not set teh block", + "commands.setblock.success": "Changd teh blok at %s, %s, %s", + "commands.setidletimeout.success": "Teh slow cat go out in %s minitz", + "commands.setworldspawn.success": "I has movd big bed tu %s, %s, %s [%s]", + "commands.spawnpoint.success.multiple": "Set kat home 2 %s, %s, %s [%s] in %s 4 %s playrz", + "commands.spawnpoint.success.single": "Set kat home 2 %s, %s, %s [%s] in %s 4 %s", + "commands.spectate.not_spectator": "%s is not lurkin arund", + "commands.spectate.self": "Cant wach urself", + "commands.spectate.success.started": "Now lukin at %s", + "commands.spectate.success.stopped": "Not lookin at anythign anymoar", + "commands.spreadplayers.failed.entities": "Culd not spred %s entits arund %s, %s (tuu meny entitsss fur space - try using spred of at most %s)", + "commands.spreadplayers.failed.invalid.height": "Dat maxHeight %s doeznt wurk; ekzpekted highar dan wurld mimimum %s", + "commands.spreadplayers.failed.teams": "Culd nut spred %s tems arund %s, %s (tu manie entitis fur spaze - try usin spred of et most %s)", + "commands.spreadplayers.success.entities": "Spred %s kats aroun %s, %s wif an average distens for %s blokz apart", + "commands.spreadplayers.success.teams": "Spred %s teemz aroun %s, %s wif an average distens for %s blokz apart", + "commands.stop.stopping": "Stoppin teh servr", + "commands.stopsound.success.source.any": "Stopd all teh sundz %s", + "commands.stopsound.success.source.sound": "Stopt soundz '%s\" on sourzz '%s'", + "commands.stopsound.success.sourceless.any": "Stopd all teh sundz", + "commands.stopsound.success.sourceless.sound": "Stupped sound %s", + "commands.summon.failed": "Unable 2 summon enkitty", + "commands.summon.failed.uuid": "Unebel 2 sunon dis entity cuz sam cat id", + "commands.summon.invalidPosition": "Kitteh canot pops into existnz ther", + "commands.summon.success": "Summzund new %s", + "commands.tag.add.failed": "target eithr already has teh tag or has 2 lotz da tags", + "commands.tag.add.success.multiple": "Addd tag '%s' to %s intitiez", + "commands.tag.add.success.single": "Addd tag '%s' to %s", + "commands.tag.list.multiple.empty": "Ther r no tahz on da %s entitiz", + "commands.tag.list.multiple.success": "Teh %s intitiez haz %s totel tags: %s", + "commands.tag.list.single.empty": "%s haz no tagzz", + "commands.tag.list.single.success": "%s haz %s tagz: %s", + "commands.tag.remove.failed": "Target doez not has dis tag", + "commands.tag.remove.success.multiple": "Tuk tag '%s' frum %s intitiez", + "commands.tag.remove.success.single": "Removd tag '%s' frum %s", + "commands.team.add.duplicate": "a team already exists by dat naym", + "commands.team.add.success": "Created Kitteh Team %s", + "commands.team.empty.success": "Removd %s kats frum teem %s", + "commands.team.empty.unchanged": "nothin changd, dat team iz already empty", + "commands.team.join.success.multiple": "Added %s kats to teemz %s", + "commands.team.join.success.single": "Added %s 2 teemz %s", + "commands.team.leave.success.multiple": "Kickd out %s kats frum any teamz", + "commands.team.leave.success.single": "Kickd out %s frum any teemz", + "commands.team.list.members.empty": "Ther iz no kats on teem %s", + "commands.team.list.members.success": "Teem %s haz %s katz: %s", + "commands.team.list.teams.empty": "There r no beanz", + "commands.team.list.teams.success": "Ther iz %s teems: %s", + "commands.team.option.collisionRule.success": "Bumpy rulez 4 teem %s iz naow \"%s\"", + "commands.team.option.collisionRule.unchanged": "Nothin changd, collishun rule iz already dat value", + "commands.team.option.color.success": "Updatd teh colr fr teem %s to %s", + "commands.team.option.color.unchanged": "Nothin changd, dat team already has dat color", + "commands.team.option.deathMessageVisibility.success": "Dying memoz shownin' 4 teem %s iz naow \"%s\"", + "commands.team.option.deathMessageVisibility.unchanged": "Nothin changd, death mesage visibility iz already dat value", + "commands.team.option.friendlyfire.alreadyDisabled": "nothin changd, friendly fire iz already disabld 4 dat team", + "commands.team.option.friendlyfire.alreadyEnabled": "Nothin changd, friendly fire iz already enabld 4 dat team", + "commands.team.option.friendlyfire.disabled": "Disabld frendli fire fr teem %s", + "commands.team.option.friendlyfire.enabled": "Inabld frendli fire fr teem %s", + "commands.team.option.name.success": "%s haz got new naem", + "commands.team.option.name.unchanged": "Nothin changd. Dat team already has dat naym", + "commands.team.option.nametagVisibility.success": "Nemetag visibiliti fr teem %s r now \"%s\"", + "commands.team.option.nametagVisibility.unchanged": "nothin changd, nametag visibility iz already dat value", + "commands.team.option.prefix.success": "tem prfix set 2 %s", + "commands.team.option.seeFriendlyInvisibles.alreadyDisabled": "nothin changd, dat team already cant c invisable teammatez", + "commands.team.option.seeFriendlyInvisibles.alreadyEnabled": "Nothin changd, dat team can already c invisable teammatez", + "commands.team.option.seeFriendlyInvisibles.disabled": "Teem %s can no longr se envisibl teemmatez", + "commands.team.option.seeFriendlyInvisibles.enabled": "Teem %s can now se envisibl teemmatez", + "commands.team.option.suffix.success": "tem sufx sot 2 %s", + "commands.team.remove.success": "Remoovd teem %s", + "commands.teammsg.failed.noteam": "Ur muzt be on a teem 2 mesage ur teem", + "commands.teleport.invalidPosition": "Kitteh canot zaps tu ther", + "commands.teleport.success.entity.multiple": "Teleportd %s entitez two %s", + "commands.teleport.success.entity.single": "Teleportd %s 2 %s", + "commands.teleport.success.location.multiple": "Teleportd %s intitiez to %s, %s, %s", + "commands.teleport.success.location.single": "Teleportd %s tu %s, %s, %s", + "commands.time.query": "The tiem is %s", + "commands.time.set": "Taim travld 2 %s", + "commands.title.cleared.multiple": "Cleerd titlez fr %s kittiez", + "commands.title.cleared.single": "Deleetd Nams for %s", + "commands.title.reset.multiple": "Reset titl optionz fr %s kittiez", + "commands.title.reset.single": "Reset titl optionz fr %s", + "commands.title.show.actionbar.multiple": "Showin new actionbar titl fr %s kittiez", + "commands.title.show.actionbar.single": "Showin new actionbar titl fr %s", + "commands.title.show.subtitle.multiple": "Showin new subtitl fr %s kittiez", + "commands.title.show.subtitle.single": "Showin new subtitl fr %s", + "commands.title.show.title.multiple": "Showin new titl fr %s kittiez", + "commands.title.show.title.single": "Showin new titl fr %s", + "commands.title.times.multiple": "Changd titl displai timez fr %s kittiez", + "commands.title.times.single": "Changd titl displai timez fr %s", + "commands.trigger.add.success": "Tiggerd %s (added %s 2 numburz)", + "commands.trigger.failed.invalid": "u can only triggr objectivez dat r triggr type", + "commands.trigger.failed.unprimed": "u cant triggr dis objectiv yet", + "commands.trigger.set.success": "Tiggerd %s (made numburz %s)", + "commands.trigger.simple.success": "Tiggerd %s", + "commands.weather.set.clear": "Rainz R off", + "commands.weather.set.rain": "Quiet rainz R on", + "commands.weather.set.thunder": "Laoud rainz R on", + "commands.whitelist.add.failed": "cat iz already whitelistd", + "commands.whitelist.add.success": "Whitlist now haz %s", + "commands.whitelist.alreadyOff": "whitelist iz already turnd off", + "commands.whitelist.alreadyOn": "whitelist iz already turnd on", + "commands.whitelist.disabled": "Witlist off :(!!!", + "commands.whitelist.enabled": "Witlist now on boi", + "commands.whitelist.list": "Ther R %s kats in teh exklusiv clubz: %s", + "commands.whitelist.none": "Ther R no kats in teh exklusiv clubz", + "commands.whitelist.reloaded": "Reloadd teh whitelist", + "commands.whitelist.remove.failed": "cat iz not whitelistd", + "commands.whitelist.remove.success": "Removd %s frum teh whitelist", + "commands.worldborder.center.failed": "nothin changd, teh wurld bordr iz already senterd thar", + "commands.worldborder.center.success": "Set teh centr for teh world bordr to %s, %s", + "commands.worldborder.damage.amount.failed": "nothin changd, teh wurld bordr damage iz already dat amount", + "commands.worldborder.damage.amount.success": "Set teh wurld bordr damage tiem 2 %s purr blok evry second", + "commands.worldborder.damage.buffer.failed": "Nothin changd, teh wurld bordr damage buffr iz already dat distance", + "commands.worldborder.damage.buffer.success": "Set teh world bordr damage buffr to %s blokz", + "commands.worldborder.get": "Teh world bordr currentle r %s blokz wide", + "commands.worldborder.set.failed.big": "Wurld bordr cant b biggr den %s blokz wide", + "commands.worldborder.set.failed.far": "Wurld bordr cant b moar away den %s blokz", + "commands.worldborder.set.failed.nochange": "nothin changd, teh wurld bordr iz already dat size", + "commands.worldborder.set.failed.small": "Da wrold border canot bee smaler thn 1 block wide", + "commands.worldborder.set.grow": "Growin teh world bordr to %s blokz wide ovr %s secondz", + "commands.worldborder.set.immediate": "Set teh wurld bordr 2 %s blockz wide", + "commands.worldborder.set.shrink": "Shtinkin teh world bordr to %s blokz wide ovr %s secondz", + "commands.worldborder.warning.distance.failed": "nothin changd, teh wurld bordr warnin iz already dat distance", + "commands.worldborder.warning.distance.success": "Set teh world bordr warnin distens to %s secondz", + "commands.worldborder.warning.time.failed": "nothin changd, teh wurld bordr warnin iz already dat amount ov tiem", + "commands.worldborder.warning.time.success": "Set teh world bordr warnin time to %s secondz", + "compliance.playtime.greaterThan24Hours": "U was playin for moar dan 24 hourz", + "compliance.playtime.hours": "Yu haz bin pleyin fur %s aur(s)", + "compliance.playtime.message": "GO OUTSIED N HAV A LIF", + "connect.aborted": "Abort!!", + "connect.authorizing": "Makin sure it's safe...", + "connect.connecting": "Buildin catwalk 2 teh servr...", + "connect.encrypting": "Encriipthing...", + "connect.failed": "Not today... :(", + "connect.joining": "Cat iz comming tu wourld...", + "connect.negotiating": "NiGuZiatInj...", + "container.barrel": "Fish box", + "container.beacon": "Bacon", + "container.blast_furnace": "BlAsT FuRnAcE", + "container.brewing": "Bubbleh", + "container.cartography_table": "Cartografy Table", + "container.chest": "Kat Box", + "container.chestDouble": "Exttra Bigg Cat Box", + "container.crafting": "Makezing", + "container.creative": "Grabbeh Stuff", + "container.dispenser": "Dizpnzur", + "container.dropper": "DRUPPER", + "container.enchant": "Makeh shineh", + "container.enchant.clue": "%s wat?", + "container.enchant.lapis.many": "%s blu stuffz", + "container.enchant.lapis.one": "1 blu stuffz", + "container.enchant.level.many": "%s shineh levls", + "container.enchant.level.one": "1 shineh stick", + "container.enchant.level.requirement": "Lvl neded: %s", + "container.enderchest": "sp00ky Litterbox", + "container.furnace": "kat sleeps her", + "container.grindstone_title": "Fix it & Remove za shine", + "container.hopper": "RUN VACUUM!", + "container.inventory": "Mah stuff", + "container.isLocked": "Oh noes! %s woent open!", + "container.lectern": "Lectrn", + "container.loom": "L\u00f6\u00f6m", + "container.repair": "Fixeh & Nameh", + "container.repair.cost": "Shineh Levl Cost: %1$s", + "container.repair.expensive": "2 Expenciv!", + "container.shulkerBox": "Shulker Bux", + "container.shulkerBox.more": "& %s moar...", + "container.smoker": "Za Smoker", + "container.spectatorCantOpen": "kant opn cuz thr aint no cheezburgers yet", + "container.stonecutter": "Shrpy movin thingy", + "container.upgrade": "Upgraed Geer", + "controls.keybinds": "Kee Blinds...", + "controls.keybinds.title": "Key Bindz", + "controls.reset": "Rezet", + "controls.resetAll": "Rezet Keyz", + "controls.title": "Controlz", + "createWorld.customize.buffet.biome": "Pwease pik baium", + "createWorld.customize.buffet.title": "Bufet Wurld Kustemizaeshun", + "createWorld.customize.custom.baseSize": "deep beas siez", + "createWorld.customize.custom.biomeDepthOffset": "baium deep ofset", + "createWorld.customize.custom.biomeDepthWeight": "lolztype depth weight", + "createWorld.customize.custom.biomeScaleOffset": "baium scael ofset", + "createWorld.customize.custom.biomeScaleWeight": "baium scael weigt", + "createWorld.customize.custom.biomeSize": "baium siez", + "createWorld.customize.custom.center": "centr tallnes", + "createWorld.customize.custom.confirm1": "Dis shal owerwite ur curent", + "createWorld.customize.custom.confirm2": "setinz and u cant undo.", + "createWorld.customize.custom.confirmTitle": "Uh oh!", + "createWorld.customize.custom.coordinateScale": "moar numbrz thingy", + "createWorld.customize.custom.count": "spahn triez", + "createWorld.customize.custom.defaults": "da basikz", + "createWorld.customize.custom.depthNoiseScaleExponent": "deep noisy thingy", + "createWorld.customize.custom.depthNoiseScaleX": "deep soundy thing x", + "createWorld.customize.custom.depthNoiseScaleZ": "deep soundy thing z", + "createWorld.customize.custom.dungeonChance": "numbrz of scaries", + "createWorld.customize.custom.fixedBiome": "baium", + "createWorld.customize.custom.heightScale": "tallnes thingy", + "createWorld.customize.custom.lavaLakeChance": "numbrz of spicie nopes", + "createWorld.customize.custom.lowerLimitScale": "basement max scael", + "createWorld.customize.custom.mainNoiseScaleX": "soundy thing x", + "createWorld.customize.custom.mainNoiseScaleY": "soundy thing y", + "createWorld.customize.custom.mainNoiseScaleZ": "soundy thing z", + "createWorld.customize.custom.maxHeight": "Max. tallnes", + "createWorld.customize.custom.minHeight": "Min. tallnes", + "createWorld.customize.custom.next": "go ferward plz", + "createWorld.customize.custom.page0": "eazy customizashuns", + "createWorld.customize.custom.page1": "Setinz 4 Oer", + "createWorld.customize.custom.page2": "Advanses Customizashuns (SMART KITTEHS ONLEE!)", + "createWorld.customize.custom.page3": "REELY ADVANSES CUSTOMIZASHUNS (SMART KITTEHS ONLEE!)", + "createWorld.customize.custom.preset.caveChaos": "Caevz ov Kaeyos", + "createWorld.customize.custom.preset.caveDelight": "Cavurz Dilite", + "createWorld.customize.custom.preset.drought": "No watr :(", + "createWorld.customize.custom.preset.goodLuck": "Meow", + "createWorld.customize.custom.preset.isleLand": "Isle Land", + "createWorld.customize.custom.preset.mountains": "Mauntin Craezines", + "createWorld.customize.custom.preset.waterWorld": "Moist Wurld", + "createWorld.customize.custom.presets": "Presuts", + "createWorld.customize.custom.presets.title": "Custmiz Wurld Presuts", + "createWorld.customize.custom.prev": "go back plz", + "createWorld.customize.custom.randomize": "RANDUMIZE", + "createWorld.customize.custom.riverSize": "rivr siez", + "createWorld.customize.custom.seaLevel": "Watr lvl", + "createWorld.customize.custom.size": "spahn siez", + "createWorld.customize.custom.spread": "spred tallnes", + "createWorld.customize.custom.stretchY": "squeeze teh tallnes", + "createWorld.customize.custom.upperLimitScale": "ceiling max scael", + "createWorld.customize.custom.useCaves": "Caevz", + "createWorld.customize.custom.useDungeons": "scaries", + "createWorld.customize.custom.useLavaLakes": "spiecie nopes", + "createWorld.customize.custom.useLavaOceans": "big spicy nope", + "createWorld.customize.custom.useMansions": "Land of Wood Manshuns", + "createWorld.customize.custom.useMineShafts": "mein zhaftsd", + "createWorld.customize.custom.useMonuments": "fisheh houzez", + "createWorld.customize.custom.useOceanRuins": "Oo wator ruine!!!!??!", + "createWorld.customize.custom.useRavines": "spooky holez", + "createWorld.customize.custom.useStrongholds": "kitteh towurz", + "createWorld.customize.custom.useTemples": "hooman shrinez", + "createWorld.customize.custom.useVillages": "hooman townz", + "createWorld.customize.custom.useWaterLakes": "watr laekz", + "createWorld.customize.custom.waterLakeChance": "numbrz of watr laekz", + "createWorld.customize.flat.height": "tallnes", + "createWorld.customize.flat.layer": "%s", + "createWorld.customize.flat.layer.bottom": "Battom - %s", + "createWorld.customize.flat.layer.top": "High thingy - %s", + "createWorld.customize.flat.removeLayer": "Deleet Layr", + "createWorld.customize.flat.tile": "Layr materialz", + "createWorld.customize.flat.title": "SUPER FLAT CUSTOMIZ", + "createWorld.customize.presets": "Presuts", + "createWorld.customize.presets.list": "Human's presuts lolz!", + "createWorld.customize.presets.select": "Use presut", + "createWorld.customize.presets.share": "SHAR UR STOOF!?1? JUST PUNCH BOX!!!!1111!\n", + "createWorld.customize.presets.title": "Select a presut", + "createWorld.preparing": "Cat god iz preparin ur wurld...", + "dataPack.title": "Selecc data packz", + "dataPack.validation.back": "Go Bacc", + "dataPack.validation.failed": "Data pacc validashun fayld!", + "dataPack.validation.reset": "Rezet 2 defawlt", + "dataPack.validation.working": "Validatin selectd data packz...", + "dataPack.vanilla.description": "Teh uzual infoz", + "datapackFailure.safeMode": "Safty moed", + "datapackFailure.title": "Errurs in nau chusen datapak maek wurld no loed. U can loed vanila datapak (\"Safty moed\") or go bak tu titol screhn and fix manuelly.", + "death.attack.genericKill":"%1$s ded", + "death.attack.anvil": "%1$s was squazhd by a falln anvehl", + "death.attack.anvil.player": "%1$s was kille by anvul from sky whil protec from %2$s", + "death.attack.arrow": "%1$s was shot by %2$s", + "death.attack.arrow.item": "%1$s was shot by %2$s usin %3$s", + "death.attack.badRespawnPoint.link": "Intnesional game desin", + "death.attack.badRespawnPoint.message": "%1$s was kill by %2$s", + "death.attack.cactus": "%1$s wuz prickd 2 death", + "death.attack.cactus.player": "%1$s walkd intu a spiky green plant whilst tryin 2 escaep %2$s", + "death.attack.cramming": "%1$s gut turnd intu mashd potato", + "death.attack.cramming.player": "%1$s wus skwash by %2$s", + "death.attack.dragonBreath": "%1$s wuz burnt in dragunish puff", + "death.attack.dragonBreath.player": "%1$s wuz burnt in dragunish puff bai %2$s", + "death.attack.drown": "%1$s drownd when dey took a bath", + "death.attack.drown.player": "%1$s drownd whilst tryin 2 escape %2$s", + "death.attack.dryout": "%1$s ded from dehideration", + "death.attack.dryout.player": "%1$s ded from dehideration whils tryin 2 escape %2$s", + "death.attack.even_more_magic": "%1$s iz ded by lotz of magikz", + "death.attack.explosion": "%1$s xploded", + "death.attack.explosion.player": "%1$s waz xploded by %2$s", + "death.attack.explosion.player.item": "%1$s was boom by %2$s usin %3$s", + "death.attack.fall": "%1$s hit teh ground 2 hard", + "death.attack.fall.player": "%1$s fell cuz %2$s", + "death.attack.fallingBlock": "%1$s was squazhd by fallin bluk", + "death.attack.fallingBlock.player": "%1$s was kille by bloc from sky whil protec from %2$s", + "death.attack.fallingStalactite": "%1$s waz kut in half by foling sharp cave rok", + "death.attack.fallingStalactite.player": "%1$s waz kut in half by foling sharp cave rok whil scratchin at %2$s", + "death.attack.fireball": "%1$s was fierballd by %2$s", + "death.attack.fireball.item": "%1$s was fierballd %2$s usin %3$s", + "death.attack.fireworks": "%1$s iz ded cuz BOOM", + "death.attack.fireworks.item": "%1$s exploded cuz a firwork ran awy frum %3$s bie %2$s", + "death.attack.fireworks.player": "%1$s got kill wif firwork whil protecting us frum %2$s", + "death.attack.flyIntoWall": "%1$s flu in2 a wal", + "death.attack.flyIntoWall.player": "%1$s flew 2 wall cuz of %2$s", + "death.attack.freeze": "%1$s waz 2 kold and died", + "death.attack.freeze.player": "%1$s waz 2 kold and died bcuz of %2$s", + "death.attack.generic": "R.I.P %1$s", + "death.attack.generic.player": "%1$s dieded cuz %2$s", + "death.attack.hotFloor": "%1$s fund ut flor was laav", + "death.attack.hotFloor.player": "%1$s gon in dedzone thx 2 %2$s", + "death.attack.inFire": "%1$s walkd in2 fier n dieded", + "death.attack.inFire.player": "%1$s walkd 2 fier wile fiting wif %2$s", + "death.attack.inWall": "%1$s dieded in teh wahls", + "death.attack.inWall.player": "%1$s die in wall whil fite %2$s", + "death.attack.indirectMagic": "%1$s was killd by %2$s usin magikz", + "death.attack.indirectMagic.item": "%1$s was killd by %2$s usin %3$s", + "death.attack.lava": "%1$s thawt thay cud swim in nope", + "death.attack.lava.player": "%1$s treid 2 swim in nope to git away frum %2$s", + "death.attack.lightningBolt": "%1$s waz struck by lightnin", + "death.attack.lightningBolt.player": "%1$s ded by ligtning wen figting %2$s", + "death.attack.magic": "%1$s was killd by magikz", + "death.attack.magic.player": "%1$s wahs skidaddle skadoodled whilst tryin 2 escaep %2$s", + "death.attack.message_too_long": "Da msg wuz 2 long 2 snd fuly. Sry! Hers stripd vrsion: %s", + "death.attack.mob": "%1$s was slain by %2$s", + "death.attack.mob.item": "%1$s was slain by %2$s usin %3$s", + "death.attack.onFire": "%1$s died in a fier", + "death.attack.onFire.item": "%1$s was fiting %2$s wen thay BURND ALIEV wildin %3$s!!!", + "death.attack.onFire.player": "%1$s was fiting %2$s wen thay BURND ALIEV!!!", + "death.attack.outOfWorld": "%1$s fell out ov teh wurld", + "death.attack.outOfWorld.player": "%1$s not want to liv in sam world as %2$s", + "death.attack.player": "%1$s was scretchd bai %2$s", + "death.attack.player.item": "%1$s was slain by %2$s usin %3$s", + "death.attack.sonic_boom": "%1$s was booomed bai a sunically-charged EPIG ANIME ATTEK!!!!!!!~~", + "death.attack.sonic_boom.item": "%1$s was booooomed by a sunically-charged ANIME ATTECK while tring 2 hid from %2$s wildin %3$s", + "death.attack.sonic_boom.player": "%1$s was booooomed by a sunically-charged skreem while trin 2 hid from %2$s", + "death.attack.stalagmite": "%1$s waz hurt bi sharp cave rokk", + "death.attack.stalagmite.player": "%1$s waz hurt bi sharp cave rokk whil scratchin at %2$s", + "death.attack.starve": "%1$s starvd 2 death", + "death.attack.starve.player": "%1$s starvd whil fitghting %2$s", + "death.attack.sting": "%1$s was piereced to DETH", + "death.attack.sting.item": "%1$s wuz poked 2 deth by %2$s usin %3$s", + "death.attack.sting.player": " %2$s piereced %1$s to DETH", + "death.attack.sweetBerryBush": "%1$s was poked to deth by a sweet bery bush", + "death.attack.sweetBerryBush.player": "%1$s was poked to deth by a sweet bery bush whilst trying to escepe %2$s", + "death.attack.thorns": "%1$s was killd tryin 2 hurt %2$s", + "death.attack.thorns.item": "%1$s was killd tryin by %3$s 2 hurt %2$s", + "death.attack.thrown": "%1$s was pumeld by %2$s", + "death.attack.thrown.item": "%1$s was pumeld by %2$s usin %3$s", + "death.attack.trident": "%1$s was vigorously poked by %2$s", + "death.attack.trident.item": "%1$s was imPAled cos of %2$s and iz %3$s", + "death.attack.wither": "%1$s withrd away lol", + "death.attack.wither.player": "%1$s withrd away while protecting us against %2$s", + "death.attack.witherSkull": "%1$s vus shhoott bai 1 skall frem %2$s", + "death.attack.witherSkull.item": "%1$s wus shhoott bai 1 skall frem %2$s usin %3$s", + "death.fell.accident.generic": "%1$s fell frum high place", + "death.fell.accident.ladder": "%1$s fell off laddr an doan landd on fed", + "death.fell.accident.other_climbable": "%1$s fell whil clymbin", + "death.fell.accident.scaffolding": "%1$s dropd frm a climby thing", + "death.fell.accident.twisting_vines": "%1$s kuldnt huld da spyral noodel", + "death.fell.accident.vines": "%1$s fell off sum vinez", + "death.fell.accident.weeping_vines": "%1$s kuldnt huld da sad noodel", + "death.fell.assist": "%1$s wuz doomd 2 fall by %2$s", + "death.fell.assist.item": "%1$s wuz doomd 2 fall by %2$s usin %3$s trying 2 escape da amogus", + "death.fell.finish": "%1$s fell 2 far an wuz finishd by %2$s", + "death.fell.finish.item": "%1$s fell 2 far an wuz finishd by %2$s usin %3$s", + "death.fell.killer": "%1$s waz doomd 2 fall", + "deathScreen.quit.confirm": "R u sure u wants 2 quit?", + "deathScreen.respawn": "Remeow", + "deathScreen.score": "ur pointz", + "deathScreen.spectate": "Spec wurld lol", + "deathScreen.title": "U dies, sad kitteh :c", + "deathScreen.title.hardcore": "Gaem ova, lol", + "deathScreen.titleScreen": "Teh Big Menu", + "debug.advanced_tooltips.help": "F3 + H = Advancd tooltipz", + "debug.advanced_tooltips.off": "Advancd tooltipz: nah", + "debug.advanced_tooltips.on": "Advancd tooltipz: yea", + "debug.chunk_boundaries.help": "F3 + G = maek linez 'round pieczs", + "debug.chunk_boundaries.off": "Chunk line thingys: Nah", + "debug.chunk_boundaries.on": "Chunk line thingys: Yea", + "debug.clear_chat.help": "F3 + D = forget wat every1 is sayin", + "debug.copy_location.help": "f3 + 3 = copi locatoin as /tp command, hold f3 + c to mak gam go pasta!!", + "debug.copy_location.message": "Coopieed luucation tO clappbirb", + "debug.crash.message": "f3 + c i prssed. dis wil mak gam go pasta unles rilizd", + "debug.crash.warning": "Stup guorkin in %s...", + "debug.creative_spectator.error": "U shall nawt chaeng ur gaemmode!", + "debug.creative_spectator.help": "F3 + N = Chaenge gaemmode <-> spetaror", + "debug.gamemodes.error": "Uh oh, no swichin permishunz", + "debug.gamemodes.help": "f3 and f4 = open cat mood changer", + "debug.gamemodes.press_f4": "[ F4 ]", + "debug.gamemodes.select_next": "%s Nekzt", + "debug.help.help": "F3 + Q = Wat ur lookin at rite nao", + "debug.help.message": "Kei bindunz:", + "debug.inspect.client.block": "Copid client-side block data 2 clipbord", + "debug.inspect.client.entity": "Copid client-side entity data 2 clipbord", + "debug.inspect.help": "F3 + I = Copy entity or blukz data 2 clipboard", + "debug.inspect.server.block": "Copid servr-side block data 2 clipbord", + "debug.inspect.server.entity": "Copid servr-side entity data 2 clipbord", + "debug.pause.help": "F3 + Esc = Paws wifut da menu (cant if cant paws)", + "debug.pause_focus.help": "F3 + P = Paws wen no focusss", + "debug.pause_focus.off": "Paws wen no focus: nah", + "debug.pause_focus.on": "Paws wen no focus: yea", + "debug.prefix": "[Dedog]:", + "debug.profiling.help": "F3 + L = Statr/stup your catt saving", + "debug.profiling.start": "Profilin startd fr %s secundz. Us F3 + L to stop eerle", + "debug.profiling.stop": "The Grand Finaly of Profilin'. saivd rezults too %s", + "debug.reload_chunks.help": "F3 + A = mak all piecz reloed", + "debug.reload_chunks.message": "Reloedin all pieczs", + "debug.reload_resourcepacks.help": "F3 + T = Reloed visualz", + "debug.reload_resourcepacks.message": "Reloeded visualz", + "debug.show_hitboxes.help": "F3 + B = put all stuffz in glas box", + "debug.show_hitboxes.off": "Stuff is in glass boxs: nah", + "debug.show_hitboxes.on": "Stuff is in glass boxs: yea", + "demo.day.1": "Dis cat demo wil lust 5 gaem daez, so do ur best!", + "demo.day.2": "DAI 2", + "demo.day.3": "DAI 3", + "demo.day.4": "DAI 4", + "demo.day.5": "DIS UR LAST DAI!!!!!", + "demo.day.6": "U have pasd ur 5th dae. Uz %s 2 saev a screenshawt of ur kreashun.", + "demo.day.warning": "UR TIEM IZ ALMOST UP!", + "demo.demoExpired": "Ur dmo haz run out of kittehs!", + "demo.help.buy": "Buy nao!", + "demo.help.fullWrapped": "Dis demo's gunna last 5 in-gaem-daez (bout 1 oure nd 40 minits of kitteh tiem). Chevk le advaensmens 4 hintz! Haev fun!", + "demo.help.inventory": "PRES %1$s 2 LUK AT UR STUFF", + "demo.help.jump": "JUMP BI PRESING %1$s-key", + "demo.help.later": "Go on playin!", + "demo.help.movement": "UZ %1$s, %2$s, %3$s, %4$s N TASTI MOUZEZ 2 MOVE ARUND", + "demo.help.movementMouse": "LUK ARUND USIN TEH MOUZ", + "demo.help.movementShort": "MOV BI PRESING %1$s, %2$s, %3$s N %4$s", + "demo.help.title": "DMO MOED LOL", + "demo.remainingTime": "REMENING TIEM: %s", + "demo.reminder": "Za demo tiem haz ekspird. Buy da gaem 2 kontinu or start 1 new wurld!", + "difficulty.lock.question": "R u sure u wants 2 lock teh difficulty ov dis wurld ? Dis will set dis wurld 2 always be %1$s,na u will nevr be able 2 change dat again!", + "difficulty.lock.title": "Lock Wurld Difficulty", + "disconnect.closed": "Cat clozed konecticon", + "disconnect.disconnected": "U left teh catwalk", + "disconnect.endOfStream": "Ent ov striam", + "disconnect.exceeded_packet_rate": "Kick'd 4 eksidin paket ratd limet", + "disconnect.genericReason": "%s", + "disconnect.kicked": "Ran awy frm ownrz", + "disconnect.loginFailed": "u faild log1n", + "disconnect.loginFailedInfo": "Fled to lug in: %s", + "disconnect.loginFailedInfo.insufficientPrivileges": "Utur kittehz is dizabl, pwease chek ur Mekrosoft akowant setinz.", + "disconnect.loginFailedInfo.invalidSession": "sezzion nawt workz (restart ur gaem & lawnchr)", + "disconnect.loginFailedInfo.serversUnavailable": "coodnt reach authentikashn servers! plz try again.", + "disconnect.loginFailedInfo.userBanned": "U r banned frum playin online", + "disconnect.lost": "U fell of teh catwalk", + "disconnect.overflow": "butter oveflou", + "disconnect.quitting": "KTHXBYE", + "disconnect.spam": "Meow, sthap spammin'", + "disconnect.timeout": "took 2 long", + "disconnect.unknownHost": "Kitteh doezn't know da hozt", + "editGamerule.default": "Da basikz: %s", + "editGamerule.title": "EDET gaem Rulez", + "effect.effectNotFound": "unknuwn effect: %s", + "effect.minecraft.absorption": "absurbshun", + "effect.minecraft.bad_omen": "Bad kitteh", + "effect.minecraft.blindness": "I cant see anything", + "effect.minecraft.conduit_power": "Kitty powah", + "effect.minecraft.darkness": "Dawkness", + "effect.minecraft.dolphins_grace": "Greis of a Dolphin", + "effect.minecraft.fire_resistance": "Fire Rezistance", + "effect.minecraft.glowing": "Makes U Shiny", + "effect.minecraft.haste": "IM MININ FAST", + "effect.minecraft.health_boost": "10th Life", + "effect.minecraft.hero_of_the_village": "Da Hero ov teh Village", + "effect.minecraft.hunger": "Need nomz", + "effect.minecraft.instant_damage": "Instant Ouch", + "effect.minecraft.instant_health": "insta sheezburgerz", + "effect.minecraft.invisibility": "U cant see meh", + "effect.minecraft.jump_boost": "Bunny cat", + "effect.minecraft.levitation": "Hoverz", + "effect.minecraft.luck": "LOL", + "effect.minecraft.mining_fatigue": "fu wana stehp minin", + "effect.minecraft.nausea": "Sik cat", + "effect.minecraft.night_vision": "Cat Vishun", + "effect.minecraft.poison": "Puizn", + "effect.minecraft.regeneration": "Time Lordz Buffeh", + "effect.minecraft.resistance": "Rezistance", + "effect.minecraft.saturation": "Satshurashun", + "effect.minecraft.slow_falling": "Slowmo fall", + "effect.minecraft.slowness": "fatnes", + "effect.minecraft.speed": "spede", + "effect.minecraft.strength": "Powah", + "effect.minecraft.unluck": "NOT LOL", + "effect.minecraft.water_breathing": "Watr Breathin", + "effect.minecraft.weakness": "Fat cat", + "effect.minecraft.wither": "Wither", + "effect.none": "No Effects to dis cat", + "enchantment.level.1": "I", + "enchantment.level.10": "X", + "enchantment.level.2": "2", + "enchantment.level.3": "3", + "enchantment.level.4": "IV", + "enchantment.level.5": "V", + "enchantment.level.6": "VI", + "enchantment.level.7": "VII", + "enchantment.level.8": "VIII", + "enchantment.level.9": "IX", + "enchantment.minecraft.aqua_affinity": "Kitteh no like water", + "enchantment.minecraft.bane_of_arthropods": "KILL ALL DIS SPIDRZ", + "enchantment.minecraft.binding_curse": "cant taek dis off", + "enchantment.minecraft.blast_protection": "Blast Protecshun", + "enchantment.minecraft.channeling": "Being thor", + "enchantment.minecraft.depth_strider": "Fuzt Watur Wullken", + "enchantment.minecraft.efficiency": "Fuzt Diggin'", + "enchantment.minecraft.feather_falling": "Fall on ur feetz", + "enchantment.minecraft.fire_aspect": "Burn dis thing", + "enchantment.minecraft.fire_protection": "Fier Protecshun", + "enchantment.minecraft.flame": "Flaem", + "enchantment.minecraft.fortune": "Forshun", + "enchantment.minecraft.frost_walker": "cat no liek water hax", + "enchantment.minecraft.impaling": "Idk lmao", + "enchantment.minecraft.infinity": "FOREVERS", + "enchantment.minecraft.knockback": "Nockback", + "enchantment.minecraft.looting": "Steal all dis thingz", + "enchantment.minecraft.loyalty": "BFF", + "enchantment.minecraft.luck_of_the_sea": "Luk ov se zee", + "enchantment.minecraft.lure": "Luer", + "enchantment.minecraft.mending": "Mendin", + "enchantment.minecraft.multishot": "Manysot", + "enchantment.minecraft.piercing": "Errow gous thru", + "enchantment.minecraft.power": "Powir", + "enchantment.minecraft.projectile_protection": "Projektile Protecshun", + "enchantment.minecraft.protection": "Protecshun", + "enchantment.minecraft.punch": "Punsh", + "enchantment.minecraft.quick_charge": "Qwick Charge", + "enchantment.minecraft.respiration": "fish moed", + "enchantment.minecraft.riptide": "COME BACK", + "enchantment.minecraft.sharpness": "Much sharp", + "enchantment.minecraft.silk_touch": "Smooth Diggin'", + "enchantment.minecraft.smite": "Smiet", + "enchantment.minecraft.soul_speed": "rannin on ded peepl", + "enchantment.minecraft.sweeping": "Sweeper Deeper", + "enchantment.minecraft.swift_sneak": "SNEK SPEEDRUN!!", + "enchantment.minecraft.thorns": "Spiky", + "enchantment.minecraft.unbreaking": "Nevr break", + "enchantment.minecraft.vanishing_curse": "wen u getrekt its gon", + "enchantment.unknown": "unknawn enhcantment: %s", + "entity.minecraft.allay": "flyin blu mob", + "entity.minecraft.area_effect_cloud": "Area Effect Cloud\n", + "entity.minecraft.armor_stand": "Stick hooman", + "entity.minecraft.arrow": "ERROW", + "entity.minecraft.axolotl": "KUTE PINK FISHH", + "entity.minecraft.bat": "Batman", + "entity.minecraft.bee": "B", + "entity.minecraft.blaze": "OMG it's made of fier", + "entity.minecraft.boat": "Watr car", + "entity.minecraft.cat": "Kitteh", + "entity.minecraft.cave_spider": "Tine paneful spidur", + "entity.minecraft.chest_boat": "Watr Car wif Cat box", + "entity.minecraft.chest_minecart": "Minecat wif Cat Box", + "entity.minecraft.chicken": "Bawk Bawk!", + "entity.minecraft.cod": "Cot", + "entity.minecraft.command_block_minecart": "Minecat wif Comnd Bluk", + "entity.minecraft.cow": "Milk-Maeker", + "entity.minecraft.creeper": "Creeper", + "entity.minecraft.dolphin": "doolfin", + "entity.minecraft.donkey": "Donkeh", + "entity.minecraft.dragon_fireball": "Dragunish burp", + "entity.minecraft.drowned": "watuur thing", + "entity.minecraft.egg": "Fhrown Egg", + "entity.minecraft.elder_guardian": "BIG LAZUR SHARK", + "entity.minecraft.end_crystal": "Endur Cristal", + "entity.minecraft.ender_dragon": "Dwagon Bos", + "entity.minecraft.ender_pearl": "Frown Ender Perl", + "entity.minecraft.enderman": "Enderman", + "entity.minecraft.endermite": "Endermite", + "entity.minecraft.evoker": "Wizrd", + "entity.minecraft.evoker_fangs": "Evokr fanjz", + "entity.minecraft.experience_bottle": "Thraun potion wif ur levlz", + "entity.minecraft.experience_orb": "Experience Ballz", + "entity.minecraft.eye_of_ender": "teh evil eye", + "entity.minecraft.falling_block": "bb bluk lol", + "entity.minecraft.fireball": "Nope", + "entity.minecraft.firework_rocket": "shiny 'splody thing", + "entity.minecraft.fishing_bobber": "watuur toy", + "entity.minecraft.fox": "Fuxe", + "entity.minecraft.frog": "Toad", + "entity.minecraft.furnace_minecart": "Minecat wif Hot Box", + "entity.minecraft.ghast": "Ghast", + "entity.minecraft.giant": "OMG ZOMBIE 4 DAYZ", + "entity.minecraft.glow_item_frame": "Brite item holdr", + "entity.minecraft.glow_squid": "Shiny skwid", + "entity.minecraft.goat": "monten shep", + "entity.minecraft.guardian": "SHARKS WITH LAZERS", + "entity.minecraft.hoglin": "Hoglin", + "entity.minecraft.hopper_minecart": "Minecat wif hoppez", + "entity.minecraft.horse": "PONY", + "entity.minecraft.husk": "Warm hooman", + "entity.minecraft.illusioner": "Wiizardur", + "entity.minecraft.iron_golem": "Strange Irun Hooman", + "entity.minecraft.item": "Itum", + "entity.minecraft.item_frame": "Kitteh Fraem", + "entity.minecraft.killer_bunny": "Scari jumpin foodz", + "entity.minecraft.leash_knot": "Leesh knot", + "entity.minecraft.lightning_bolt": "litnin bot", + "entity.minecraft.llama": "camel sheep", + "entity.minecraft.llama_spit": "tal goat spit", + "entity.minecraft.magma_cube": "Fier sliem", + "entity.minecraft.marker": "Meowrker", + "entity.minecraft.minecart": "Minecat", + "entity.minecraft.mooshroom": "Mooshroom", + "entity.minecraft.mule": "Donkehpony", + "entity.minecraft.ocelot": "Wild kitteh", + "entity.minecraft.painting": "Art on a paper", + "entity.minecraft.panda": "Green Stick Eatar", + "entity.minecraft.parrot": "Rainbow Bird", + "entity.minecraft.phantom": "Creepy flyin ting", + "entity.minecraft.pig": "Oinkey", + "entity.minecraft.piglin": "Piglin", + "entity.minecraft.piglin_brute": "Piglin Brut", + "entity.minecraft.pillager": "Pilagur", + "entity.minecraft.player": "Cat", + "entity.minecraft.polar_bear": "Wite beer", + "entity.minecraft.potion": "Poshun", + "entity.minecraft.pufferfish": "very yukky fishy", + "entity.minecraft.rabbit": "Jumpin Foodz", + "entity.minecraft.ravager": "Rivagur", + "entity.minecraft.salmon": "Salmon", + "entity.minecraft.sheep": "Baa Baa!", + "entity.minecraft.shulker": "Shulker", + "entity.minecraft.shulker_bullet": "Shulker bullit", + "entity.minecraft.silverfish": "Grae fish", + "entity.minecraft.skeleton": "Spooke scury Skeletun", + "entity.minecraft.skeleton_horse": "Spooke scury Skeletun Hoers", + "entity.minecraft.slime": "Sliem", + "entity.minecraft.small_fireball": "Tiny nope", + "entity.minecraft.snow_golem": "Cold Watr Hooman", + "entity.minecraft.snowball": "Cold wet", + "entity.minecraft.spawner_minecart": "Minecat wit spawnr", + "entity.minecraft.spectral_arrow": "Shini Errow", + "entity.minecraft.spider": "Spidur", + "entity.minecraft.squid": "Sqyd", + "entity.minecraft.stray": "Frozen Skeletun", + "entity.minecraft.strider": "mr hoo walx on laava", + "entity.minecraft.tadpole": "kute smol toad", + "entity.minecraft.tnt": "Primeld TNT", + "entity.minecraft.tnt_minecart": "Boomy Minecat", + "entity.minecraft.trader_llama": "Givr Camel", + "entity.minecraft.trident": "Dinglehopper", + "entity.minecraft.tropical_fish": "Topicel fis", + "entity.minecraft.tropical_fish.predefined.0": "Anemoen", + "entity.minecraft.tropical_fish.predefined.1": "Blak Tin", + "entity.minecraft.tropical_fish.predefined.10": "Mooriz Idowl", + "entity.minecraft.tropical_fish.predefined.11": "Ornat Buterflyphysh", + "entity.minecraft.tropical_fish.predefined.12": "Perrtfis", + "entity.minecraft.tropical_fish.predefined.13": "Quen Angl", + "entity.minecraft.tropical_fish.predefined.14": "Red Sickled", + "entity.minecraft.tropical_fish.predefined.15": "Rd Lippd Bleny", + "entity.minecraft.tropical_fish.predefined.16": "Red Snapur", + "entity.minecraft.tropical_fish.predefined.17": "Thrudfin", + "entity.minecraft.tropical_fish.predefined.18": "Red Funny Fishy", + "entity.minecraft.tropical_fish.predefined.19": "Triggerd Fishy", + "entity.minecraft.tropical_fish.predefined.2": "Blew Tin", + "entity.minecraft.tropical_fish.predefined.20": "Yello bird fishy", + "entity.minecraft.tropical_fish.predefined.21": "Yello Tin", + "entity.minecraft.tropical_fish.predefined.3": "Buttrfli Fsh", + "entity.minecraft.tropical_fish.predefined.4": "Sicklid", + "entity.minecraft.tropical_fish.predefined.5": "funny fishy", + "entity.minecraft.tropical_fish.predefined.6": "Cotun candeh fishy", + "entity.minecraft.tropical_fish.predefined.7": "Dotts in the back", + "entity.minecraft.tropical_fish.predefined.8": "Rich Red Snipper", + "entity.minecraft.tropical_fish.predefined.9": "Gowt fishy", + "entity.minecraft.tropical_fish.type.betty": "Betteh", + "entity.minecraft.tropical_fish.type.blockfish": "Blouckfish", + "entity.minecraft.tropical_fish.type.brinely": "Brnly", + "entity.minecraft.tropical_fish.type.clayfish": "Cley fishy", + "entity.minecraft.tropical_fish.type.dasher": "Runnr", + "entity.minecraft.tropical_fish.type.flopper": "Floppy", + "entity.minecraft.tropical_fish.type.glitter": "Glitur", + "entity.minecraft.tropical_fish.type.kob": "Kob", + "entity.minecraft.tropical_fish.type.snooper": "Snopr", + "entity.minecraft.tropical_fish.type.spotty": "Spotz", + "entity.minecraft.tropical_fish.type.stripey": "stipor", + "entity.minecraft.tropical_fish.type.sunstreak": "Sunzxcnjsa", + "entity.minecraft.turtle": "TortL", + "entity.minecraft.vex": "ghosty thingy", + "entity.minecraft.villager": "Vilaagur", + "entity.minecraft.villager.armorer": "Armurur", + "entity.minecraft.villager.butcher": "Butchur", + "entity.minecraft.villager.cartographer": "Mapmakr", + "entity.minecraft.villager.cleric": "Cleyric", + "entity.minecraft.villager.farmer": "Farmr", + "entity.minecraft.villager.fisherman": "Fishr", + "entity.minecraft.villager.fletcher": "Fletchur", + "entity.minecraft.villager.leatherworker": "Lethurwurkur", + "entity.minecraft.villager.librarian": "Nerdz", + "entity.minecraft.villager.mason": "Masun", + "entity.minecraft.villager.nitwit": "shtOOpid man", + "entity.minecraft.villager.none": "Vilaagur", + "entity.minecraft.villager.shepherd": "Shehprd", + "entity.minecraft.villager.toolsmith": "Toolsmif", + "entity.minecraft.villager.weaponsmith": "Weponsmif", + "entity.minecraft.vindicator": "Bad Guy", + "entity.minecraft.wandering_trader": "Wubterng Truder", + "entity.minecraft.warden": "Blu shrek", + "entity.minecraft.witch": "Crazy Kitteh Ownr", + "entity.minecraft.wither": "Wither", + "entity.minecraft.wither_skeleton": "Spooke Wither Skeletun", + "entity.minecraft.wither_skull": "Wither Hed", + "entity.minecraft.wolf": "Woof Woof!", + "entity.minecraft.zoglin": "Zoglin", + "entity.minecraft.zombie": "Bad Hooman", + "entity.minecraft.zombie_horse": "Zombee hoers", + "entity.minecraft.zombie_villager": "Unded Villaguur", + "entity.minecraft.zombified_piglin": "Zombiefid Piglin", + "entity.notFound": "Cat doezn't know diz zing: %s", + "event.minecraft.raid": "Rade", + "event.minecraft.raid.defeat": "Defeet", + "event.minecraft.raid.raiders_remaining": "Raiderz stieel alaiv: %s", + "event.minecraft.raid.victory": "ezpz", + "filled_map.buried_treasure": "Buredd Treet Findehr", + "filled_map.id": "Id #%s", + "filled_map.level": "(lvl %s/%s)", + "filled_map.locked": "Lockd", + "filled_map.mansion": "WOOdland explurer map", + "filled_map.monument": "Oshun explurer map", + "filled_map.scale": "Scalin @ 1:%s", + "filled_map.unknown": "Idk dis map", + "flat_world_preset.minecraft.bottomless_pit": "Da PIT Of FALLiNG DOWN", + "flat_world_preset.minecraft.classic_flat": "DA OG Flat", + "flat_world_preset.minecraft.desert": "Sandy Place", + "flat_world_preset.minecraft.overworld": "ON TOp WUrlD", + "flat_world_preset.minecraft.redstone_ready": "Reddy fer dat Redstone", + "flat_world_preset.minecraft.snowy_kingdom": "Kingdom ef Snows", + "flat_world_preset.minecraft.the_void": "Noutheyng", + "flat_world_preset.minecraft.tunnelers_dream": "Tunnel Manz Dream", + "flat_world_preset.minecraft.water_world": "Watr Wurld", + "flat_world_preset.unknown": "???", + "gameMode.adventure": "Catventure moed", + "gameMode.changed": "Ur gaem mowd has bin apdated tu %s", + "gameMode.creative": "HAX MOD", + "gameMode.hardcore": "Catcore Moed!", + "gameMode.spectator": "Spector moed", + "gameMode.survival": "Sirvivl Moed", + "gamerule.announceAdvancements": "Annunc advencement", + "gamerule.category.chat": "Chatz", + "gamerule.category.drops": "dops", + "gamerule.category.misc": "Miscelanus", + "gamerule.category.mobs": "Mahbs", + "gamerule.category.player": "Cat", + "gamerule.category.spawning": "Zponing", + "gamerule.category.updates": "Wurld updatz", + "gamerule.commandBlockOutput": "Broadcatz command blocky bois output thingy", + "gamerule.disableElytraMovementCheck": "Nou moar FLYYY", + "gamerule.disableRaids": "no raidz", + "gamerule.doDaylightCycle": "advanc tiem ov dai", + "gamerule.doEntityDrops": "Dop nenity kuitmenp", + "gamerule.doEntityDrops.description": "Kontrol dropz from mincartz (inclooding invantoriez), item framz, boat stuffs, etc.", + "gamerule.doFireTick": "Updat burny stuff", + "gamerule.doImmediateRespawn": "Reezpon fazt", + "gamerule.doInsomnia": "Spahn creepy flyin ting", + "gamerule.doLimitedCrafting": "Requaire recipee 4 kraftingz", + "gamerule.doLimitedCrafting.description": "If enabaled, cats will bee able 2 kraft onlee unlokd recipiez", + "gamerule.doMobLoot": "Drop cat goodies", + "gamerule.doMobLoot.description": "Twakes wower fnacy pants lwoot froms mwobs, invclubing eXeXpEeeE oorbz", + "gamerule.doMobSpawning": "Zpon tings", + "gamerule.doMobSpawning.description": "Som enteetees mait hav haz seprate rulz", + "gamerule.doPatrolSpawning": "Zpon ugly men wit krosbou", + "gamerule.doTileDrops": "Drop blockz", + "gamerule.doTileDrops.description": "Twakes wower fnacy pants lwoot froms blobs, invclubing eXeXpEeeE oorbz", + "gamerule.doTraderSpawning": "Spon Walkin Traderz", + "gamerule.doWardenSpawning": "Spon Big badd", + "gamerule.doWeatherCycle": "Updat wetder", + "gamerule.drowningDamage": "Deel 2 long in watr damaj", + "gamerule.fallDamage": "Deel fall damaj", + "gamerule.fireDamage": "Deel hot stuff damage", + "gamerule.forgiveDeadPlayers": "Forgiev ded kittehz", + "gamerule.forgiveDeadPlayers.description": "Angerd neutrl mobz stop goin angery moed wehn teh targetd playr oofz nearbai.", + "gamerule.freezeDamage": "do kold pain", + "gamerule.keepInventory": "Keepz invantorie aftur no livez", + "gamerule.logAdminCommands": "Broadcatz Admin orderz", + "gamerule.maxCommandChainLength": "Comnd chainz size limtz", + "gamerule.maxCommandChainLength.description": "Applizes to comand blockz tingy chainz and functionz", + "gamerule.maxEntityCramming": "Entiti cramin trushhold", + "gamerule.mobGriefing": "Alow anmgry mob actionz", + "gamerule.naturalRegeneration": "Regenrat kat loivs", + "gamerule.playersSleepingPercentage": "Sleepy katz percentg", + "gamerule.playersSleepingPercentage.description": "Kat percentge that must sleep 2 nite go byeeeeeeeee", + "gamerule.randomTickSpeed": "Random tickz speed rat", + "gamerule.reducedDebugInfo": "reduc debugz infos", + "gamerule.reducedDebugInfo.description": "Limitz contentz ov deeBUG screen", + "gamerule.sendCommandFeedback": "Sendz comand responz", + "gamerule.showDeathMessages": "show ded katz", + "gamerule.spawnRadius": "Reezpon pleac raduz", + "gamerule.spectatorsGenerateChunks": "Alow spectatwor kittehs to generat terainz", + "gamerule.universalAnger": "Big Angery!", + "gamerule.universalAnger.description": "Angerd neutrl mobz attacc ani neerbai playr, nut juzt teh playr dat angrd dem. Workz bezt if forgievDedKittehz iz dizabld.", + "generator.custom": "Kustom", + "generator.customized": "Cuztom frum da past", + "generator.minecraft.amplified": "BIGGUR", + "generator.minecraft.amplified.info": "Notis: Just 4 fun! Rekwirz a muscular compootr.", + "generator.minecraft.debug_all_block_states": "DBUG MOD", + "generator.minecraft.flat": "2 flatz 4 u", + "generator.minecraft.large_biomes": "bigur baiums", + "generator.minecraft.normal": "Nermal", + "generator.minecraft.single_biome_surface": "Onli 1 biomz", + "generator.single_biome_caves": "Caevz", + "generator.single_biome_floating_islands": "Flyin stoenlandz", + "gui.abuseReport.error.title": "sendin repot EPIK FIAL", + "gui.abuseReport.reason.alcohol_tobacco_drugs": "drugz ORR alcohol (orr even SMOKING!!!11)", + "gui.abuseReport.reason.alcohol_tobacco_drugs.description": "sum1 is encoraegeing (or tryin 2 maek) othrr kats 2 hav BAD drugz orr BAD stuffz orr even underaeg drinccin!!!", + "gui.abuseReport.reason.child_sexual_exploitation_or_abuse": "kitteh sesual excploit orrr down bad aboos D:", + "gui.abuseReport.reason.child_sexual_exploitation_or_abuse.description": "Sumwan is talkin abaut, or prumotin bad thins ivlulvin little kittens.", + "gui.abuseReport.reason.defamation_impersonation_false_information": "defame, faking bein sum odrr kat orr FAMOUSE KAT orr wrog inphoues", + "gui.abuseReport.reason.defamation_impersonation_false_information.description": "Someone iz damagin someone elsez reputashun, pretendin 2 be someone theyre not, or sharin false informashun wif teh aim 2 exploit or mislead others.", + "gui.abuseReport.reason.description": "Dumed duwn:", + "gui.abuseReport.reason.false_reporting": "FAK REPORT!!!1!", + "gui.abuseReport.reason.harassment_or_bullying": "CRAPtalkin or maeking othr catz sad :'(", + "gui.abuseReport.reason.harassment_or_bullying.description": "sum kat is thrwoing SHAEM, ataccin ORR even BULLY u or some othr kat!!! dis incl.s wen sum1 is traying so hard 2 contac u orr sum1 eles wifout consentt (can b a blaccmail) orr posztingg stuffs u orr odrr kats no want evryone elss 2 see publikly wifout consentt (aka \"doxxxingggg\"!!!!!!!!)", + "gui.abuseReport.reason.hate_speech": "Hate speech", + "gui.abuseReport.reason.hate_speech.description": "Sum1 iz atackin u or anothr cat basd on characwhistics of thweir idwentitie, like bewiefs, race, or swexualitie.", + "gui.abuseReport.reason.imminent_harm": "imminnt harm (aka \"about 2 happn\" harms)", + "gui.abuseReport.reason.imminent_harm.description": "Sum1 iz threatenin 2 harm u or sum1 else in real lif.", + "gui.abuseReport.reason.narration": "%s: %s", + "gui.abuseReport.reason.non_consensual_intimate_imagery": "Non-consensual intimate imagez", + "gui.abuseReport.reason.non_consensual_intimate_imagery.description": "Someone iz talkin bout, sharin or otherwise promotin private an intimate images.", + "gui.abuseReport.reason.self_harm_or_suicide": "Dangr Dangr! - Self hawrm or suicwide", + "gui.abuseReport.reason.self_harm_or_suicide.description": "Sum1 iz threatenin 2 harm themselvez in real life or talkin bout harmin themselvez in real life.", + "gui.abuseReport.reason.terrorism_or_violent_extremism": "Destwoyin or being way 2 violwent", + "gui.abuseReport.reason.terrorism_or_violent_extremism.description": "Sum1 iz talkin bout promotin, or threatenin 2 commit acts ov terorism or violent extrism 4 political, religious, ideological, or othr reasons.", + "gui.abuseReport.reason.title": "Chuse why u tateling", + "gui.abuseReport.send.error_message": "An Error Wuz Returnd While Sendin Ur Report:\n%s", + "gui.abuseReport.send.generic_error": "sumting went wong whiel sendin u repot :/", + "gui.abuseReport.send.http_error": "O NOES!!! an unforeseened h t t p error happnd whiel we weer sendeing ur repot :(", + "gui.abuseReport.send.json_error": "Encountered malformed payload while sendin ur report.", + "gui.abuseReport.send.service_unavailable": "Unable 2 reach the Abuse Reportin Service. Plz make sure u r connected 2 teh internet an try again.", + "gui.abuseReport.sending.title": "Sendin ur report...", + "gui.abuseReport.sent.title": "repoted!!!", + "gui.acknowledge": "i understnad.", + "gui.advancements": "Advnzmnts", + "gui.all": "Gimme evrythin", + "gui.back": "Bak", + "gui.banned.description": "%s\n\n%s\n\nLern moar at dis link: %s", + "gui.banned.description.permanent": "UR KITTYCAT ACCONT IS BANNED 4 INFINIT KAT LIVES!!! dat meens u camt plae wif odrr kittycats orr do relms :(", + "gui.banned.description.reason": "We recently received a report 4 bad behavior by ur akownt. Our moderators hav now reviewed ur case an identified it as %s, which goes against teh Minecraft Community Standards.", + "gui.banned.description.reason_id": "da code: %s", + "gui.banned.description.reason_id_message": "da code: %s - %s", + "gui.banned.description.temporary": "%s for nao doe, joo camt do realms ORR EVEN PLAE WIF UR KITTY KAT FRENDS :(", + "gui.banned.description.temporary.duration": "bc of dis, ur akkwunt wil b BEANED n wil b unbeaned in %s.", + "gui.banned.description.unknownreason": "ourr epik mod teem haves founded a down bad momento by ur accont frm a repot! aftrr review, we hafe seened that ur unepik gamer moov broke da mincraf comuniti stndardz!!!", + "gui.banned.title.permanent": "accound iz ded inside!!!111! :(", + "gui.banned.title.temporary": "akownt tempory suspened", + "gui.cancel": "Nu", + "gui.chatReport.comments": "comends reduct boks", + "gui.chatReport.describe": "Shawing details will help teh cats make a EPIC DECISION.", + "gui.chatReport.discard.content": "If u leef, ull lose dis report and ur comments.\nR u sure u wants 2 leef?", + "gui.chatReport.discard.discard": "Thwo away repawrt", + "gui.chatReport.discard.return": "Kep writin", + "gui.chatReport.discard.title": "wans 2 thrwoe awae yroue repot n talky-talez???", + "gui.chatReport.more_comments": "Pwease descrwibe what happened:", + "gui.chatReport.observed_what": "Why reportwing a cat? :(", + "gui.chatReport.read_info": "Info bout reporwtin", + "gui.chatReport.report_sent_msg": "We got ur repawrt now!\n\nWe'll lok at it-aftr our milk break.", + "gui.chatReport.select_chat": "Slect da msgs to repowrt", + "gui.chatReport.select_reason": "selekd a riport CATegory", + "gui.chatReport.selected_chat": "%s mesage(z) chous tu reporwt", + "gui.chatReport.send": "SENDZ REPORT", + "gui.chatReport.send.comments_too_long": "Mek ur cmnt smol", + "gui.chatReport.send.no_reason": "Pwease sewect a repwort CATegory", + "gui.chatReport.send.no_reported_messages": "Pwease sewect at least ONE message to report", + "gui.chatReport.send.too_many_messages": "Tu many msgs in da rewporwt", + "gui.chatReport.title": "Report Playr", + "gui.chatSelection.context": "msgs n chitchats n funy mincraf montagez in dis selektun wil b incld 2 provied moar contexto!", + "gui.chatSelection.fold": "%s unrelatd mesagez hidden", + "gui.chatSelection.heading": "%s %s", + "gui.chatSelection.message.narrate": "%s meowed: %s at %s", + "gui.chatSelection.selected": "%s/%s mesage(z) selectd", + "gui.chatSelection.title": "Select Chat Mesagez 2 Report", + "gui.days": "%s dayz)", + "gui.done": "Dun", + "gui.down": "Dawn", + "gui.entity_tooltip.type": "Toipe: %s", + "gui.hours": "%s long time(s)", + "gui.minutes": "%s minute(z)", + "gui.multiLineEditBox.character_limit": "%s/%s", + "gui.narrate.button": "%s butonn", + "gui.narrate.editBox": "%s chaenj box: %s", + "gui.narrate.slider": "%s slydurr", + "gui.no": "Nah", + "gui.none": "Nan", + "gui.ok": "K", + "gui.proceed": "pruseed", + "gui.recipebook.moreRecipes": "Right PAW 4 moar", + "gui.recipebook.search_hint": "Surch...", + "gui.recipebook.toggleRecipes.all": "Showin' all", + "gui.recipebook.toggleRecipes.blastable": "Showin' blstble recips", + "gui.recipebook.toggleRecipes.craftable": "Showin' craftble recips", + "gui.recipebook.toggleRecipes.smeltable": "Showin' smeltble recips", + "gui.recipebook.toggleRecipes.smokable": "Showin' smokble recips", + "gui.socialInteractions.blocking_hint": "Manag wiv Mekrosoft akowant", + "gui.socialInteractions.empty_blocked": "No blukd katz in litter box", + "gui.socialInteractions.empty_hidden": "No katz hiddin in litter box", + "gui.socialInteractions.hidden_in_chat": "Lowd meow frem %s wil bee hiden", + "gui.socialInteractions.hide": "Hide in litter box", + "gui.socialInteractions.narration.hide": "Hid a murr moawks fom da cat %s", + "gui.socialInteractions.narration.report": "Repowrt %s", + "gui.socialInteractions.narration.show": "No hid murr meows from da cat %s", + "gui.socialInteractions.report": "Oh! Report no gud actshionz", + "gui.socialInteractions.search_empty": "No katz wis dis naem", + "gui.socialInteractions.search_hint": "Surch...", + "gui.socialInteractions.server_label.multiple": "%s - %s katz", + "gui.socialInteractions.server_label.single": "%s - %s kat", + "gui.socialInteractions.show": "Shaw in litter box", + "gui.socialInteractions.shown_in_chat": "Lowd meow frem %s wil bee not hide", + "gui.socialInteractions.status_blocked": "Blukd", + "gui.socialInteractions.status_blocked_offline": "Blukd - Uvlyne", + "gui.socialInteractions.status_hidden": "Hiddn", + "gui.socialInteractions.status_hidden_offline": "Hiddeh - Uvlyne", + "gui.socialInteractions.status_offline": "Uvlyne", + "gui.socialInteractions.tab_all": "Gimme evrythin", + "gui.socialInteractions.tab_blocked": "Blokd", + "gui.socialInteractions.tab_hidden": "Hiddn", + "gui.socialInteractions.title": "Soshul interacshuns", + "gui.socialInteractions.tooltip.hide": "no mesegs today >:(", + "gui.socialInteractions.tooltip.report": "Sum1 did bad thingz >:(", + "gui.socialInteractions.tooltip.report.disabled": "No report fo u", + "gui.socialInteractions.tooltip.report.no_messages": "Thers no msgs for riport from cat %s", + "gui.socialInteractions.tooltip.report.not_reportable": "Yo catnt rewportw thif cat, cus thirf cat msgs catnt verifid un survur", + "gui.socialInteractions.tooltip.show": "Wach msg", + "gui.stats": "Catistics", + "gui.toMenu": "Bacc to teh playing with othr kittehs", + "gui.toTitle": "Bacc to titl scrin", + "gui.up": "Ahp", + "gui.yes": "Yez", + "instrument.minecraft.admire_goat_horn": "Look", + "instrument.minecraft.call_goat_horn": "*AAAAhhhhhh*", + "instrument.minecraft.dream_goat_horn": "Mind filmz", + "instrument.minecraft.feel_goat_horn": "Ged somthen", + "instrument.minecraft.ponder_goat_horn": "Pondr", + "instrument.minecraft.seek_goat_horn": "Thindin", + "instrument.minecraft.sing_goat_horn": "Noize", + "instrument.minecraft.yearn_goat_horn": "Wantd U_U", + "inventory.binSlot": "Destroe itum", + "inventory.hotbarInfo": "Sev T00lbar w/ %1$s+%2$s", + "inventory.hotbarSaved": "Item t00lbar sevd (rEEstor w/ %1$s+%2$s)", + "item.canBreak": "CAN DESTROI:", + "item.canPlace": "Can b put awn:", + "item.color": "Colur: %s", + "item.durability": "brokn lvl: %s/%s", + "item.dyed": "Culurd", + "item.minecraft.acacia_boat": "Akacia Watr Car", + "item.minecraft.acacia_chest_boat": "Acashuh Watr Car wit Cat Box", + "item.minecraft.allay_spawn_egg": "flyin blu mob spon ec", + "item.minecraft.amethyst_shard": "Purpur shinee pice", + "item.minecraft.apple": "Mapple", + "item.minecraft.armor_stand": "Stick hooman", + "item.minecraft.arrow": "ERROW", + "item.minecraft.axolotl_bucket": "Bukkit wit KUTE PINK FISHH", + "item.minecraft.axolotl_spawn_egg": "KUTE PINK FISH spon ec", + "item.minecraft.baked_potato": "Bak'd Pootato", + "item.minecraft.bat_spawn_egg": "Bad spon ec", + "item.minecraft.bee_spawn_egg": "B spon ec", + "item.minecraft.beef": "Spotty meet", + "item.minecraft.beetroot": "Betrut", + "item.minecraft.beetroot_seeds": "Betrut seds", + "item.minecraft.beetroot_soup": "Betrut supe", + "item.minecraft.birch_boat": "Burch Watr Car", + "item.minecraft.birch_chest_boat": "Birtch Watr Car wit Cat Box", + "item.minecraft.black_dye": "Ender powder", + "item.minecraft.blaze_powder": "Blayz powder", + "item.minecraft.blaze_rod": "Blayz Rawd", + "item.minecraft.blaze_spawn_egg": "Bleze spon ec", + "item.minecraft.blue_dye": "Water powder", + "item.minecraft.bone": "Doggy treetz", + "item.minecraft.bone_meal": "Smashed Skeletun", + "item.minecraft.book": "Book", + "item.minecraft.bow": "Bowz", + "item.minecraft.bowl": "boul", + "item.minecraft.bread": "bred", + "item.minecraft.brewing_stand": "Bubbleh", + "item.minecraft.brick": "Burned Clay", + "item.minecraft.brown_dye": "Chocolate powder", + "item.minecraft.bucket": "Shiny sit-in cold thing", + "item.minecraft.bundle": "Cat powch", + "item.minecraft.bundle.fullness": "%s/%s", + "item.minecraft.carrot": "rebbit treetz", + "item.minecraft.carrot_on_a_stick": "YUMMY FOOD ON STIK", + "item.minecraft.cat_spawn_egg": "Kitty Cat spon ec", + "item.minecraft.cauldron": "Rly big pot", + "item.minecraft.cave_spider_spawn_egg": "Cavspaydur spon ec", + "item.minecraft.chainmail_boots": "cliky fast bootz1!", + "item.minecraft.chainmail_chestplate": "BLINNG CHEHST", + "item.minecraft.chainmail_helmet": "blinghat", + "item.minecraft.chainmail_leggings": "Bling pantz", + "item.minecraft.charcoal": "burned w00d", + "item.minecraft.chest_minecart": "Minecat wif Cat Box", + "item.minecraft.chicken": "raw cluck", + "item.minecraft.chicken_spawn_egg": "Nugget spon ec", + "item.minecraft.chorus_fruit": "Frute dat Duznt Sing", + "item.minecraft.clay_ball": "cley prom", + "item.minecraft.clock": "Tiem tellur", + "item.minecraft.coal": "ur present", + "item.minecraft.cocoa_beans": "itz poop", + "item.minecraft.cod": "Roh Cod", + "item.minecraft.cod_bucket": "Cot buket", + "item.minecraft.cod_spawn_egg": "Cot spon ec", + "item.minecraft.command_block_minecart": "Minecat wif Comnd Bluk", + "item.minecraft.compass": "Spinny thing", + "item.minecraft.cooked_beef": "Bad spotty meet", + "item.minecraft.cooked_chicken": "cooked cluck", + "item.minecraft.cooked_cod": "Cookd Cod", + "item.minecraft.cooked_mutton": "Warm Mutn", + "item.minecraft.cooked_porkchop": "Toasted Piggeh", + "item.minecraft.cooked_rabbit": "Warm Jumpin Foodz", + "item.minecraft.cooked_salmon": "Crisp Pink Nomz", + "item.minecraft.cookie": "aCookeh", + "item.minecraft.copper_ingot": "Copurr ingut", + "item.minecraft.cow_spawn_egg": "Milk-Maeker spon ec", + "item.minecraft.creeper_banner_pattern": "bannr paturn", + "item.minecraft.creeper_banner_pattern.desc": "Creeper churge", + "item.minecraft.creeper_spawn_egg": "Cwepuh spon ec", + "item.minecraft.crossbow": "Crosbowz", + "item.minecraft.crossbow.projectile": "Projektile:", + "item.minecraft.cyan_dye": "Sky powder", + "item.minecraft.dark_oak_boat": "Blak Oke Watr Car", + "item.minecraft.dark_oak_chest_boat": "Blak Oak Watr Car wit Cat Box", + "item.minecraft.debug_stick": "Magik stik", + "item.minecraft.debug_stick.empty": "%s hash nu pwopewties", + "item.minecraft.debug_stick.select": "shelekted \"%s\" (%s)", + "item.minecraft.debug_stick.update": "\"%s\" tu %s", + "item.minecraft.diamond": "Ooooh shineee!", + "item.minecraft.diamond_axe": "Dimand Aks", + "item.minecraft.diamond_boots": "awesome shoes", + "item.minecraft.diamond_chestplate": "super cool shirt", + "item.minecraft.diamond_helmet": "very shiny hat", + "item.minecraft.diamond_hoe": "Deemond Hoe", + "item.minecraft.diamond_horse_armor": "SUPAH shiny hoofy fur", + "item.minecraft.diamond_leggings": "amazing pants", + "item.minecraft.diamond_pickaxe": "Dimand Pikakse", + "item.minecraft.diamond_shovel": "Dimand Spoon", + "item.minecraft.diamond_sword": "shiny sord", + "item.minecraft.disc_fragment_5": "Loud thing but brokn", + "item.minecraft.disc_fragment_5.desc": "Round loud thing - 5", + "item.minecraft.dolphin_spawn_egg": "doolfin spon ec", + "item.minecraft.donkey_spawn_egg": "Danky spon ec", + "item.minecraft.dragon_breath": "Dragunish puff", + "item.minecraft.dried_kelp": "crunchy sea leaves", + "item.minecraft.drowned_spawn_egg": "Drawn spon ec", + "item.minecraft.echo_shard": "boomerang sund pice", + "item.minecraft.egg": "Eg", + "item.minecraft.elder_guardian_spawn_egg": "Ehldur Gardien spon ec", + "item.minecraft.elytra": "FLYYYYYYYY", + "item.minecraft.emerald": "shineh green stuff", + "item.minecraft.enchanted_book": "Shineh Magic Book", + "item.minecraft.enchanted_golden_apple": "Glowy power apl", + "item.minecraft.end_crystal": "Endur Cristal", + "item.minecraft.ender_eye": "teh evil eye", + "item.minecraft.ender_pearl": "magic ball", + "item.minecraft.enderman_spawn_egg": "Enderman spon ec", + "item.minecraft.endermite_spawn_egg": "Endermite spon ec", + "item.minecraft.evoker_spawn_egg": "Evokr spon ec", + "item.minecraft.experience_bottle": "Potion wif ur levlz", + "item.minecraft.feather": "Dether", + "item.minecraft.fermented_spider_eye": "Bad spider bal", + "item.minecraft.filled_map": "Direction papeh", + "item.minecraft.fire_charge": "Fire Punch!", + "item.minecraft.firework_rocket": "shiny 'splody thing", + "item.minecraft.firework_rocket.flight": "TIEM OF FLY:", + "item.minecraft.firework_star": "dis makes da rocket go BOOM BOOM", + "item.minecraft.firework_star.black": "Blak", + "item.minecraft.firework_star.blue": "Blew", + "item.minecraft.firework_star.brown": "Broun", + "item.minecraft.firework_star.custom_color": "Kustom", + "item.minecraft.firework_star.cyan": "Nyan", + "item.minecraft.firework_star.fade_to": "vanish to", + "item.minecraft.firework_star.flicker": "Sparklies!", + "item.minecraft.firework_star.gray": "Gray", + "item.minecraft.firework_star.green": "Grean", + "item.minecraft.firework_star.light_blue": "Lite Blew", + "item.minecraft.firework_star.light_gray": "Lite Gray", + "item.minecraft.firework_star.lime": "Lyem", + "item.minecraft.firework_star.magenta": "Majenta", + "item.minecraft.firework_star.orange": "Stampy Colour", + "item.minecraft.firework_star.pink": "Pynk", + "item.minecraft.firework_star.purple": "Purpel", + "item.minecraft.firework_star.red": "Red", + "item.minecraft.firework_star.shape": "Squiggy shape", + "item.minecraft.firework_star.shape.burst": "Boom", + "item.minecraft.firework_star.shape.creeper": "Creepery", + "item.minecraft.firework_star.shape.large_ball": "BIG ball", + "item.minecraft.firework_star.shape.small_ball": "Tine", + "item.minecraft.firework_star.shape.star": "pointi shaep", + "item.minecraft.firework_star.trail": "Liens", + "item.minecraft.firework_star.white": "Wite", + "item.minecraft.firework_star.yellow": "Yello", + "item.minecraft.fishing_rod": "kitteh feedin' device", + "item.minecraft.flint": "sharpy rock", + "item.minecraft.flint_and_steel": "frint und steal", + "item.minecraft.flower_banner_pattern": "bannr paturn", + "item.minecraft.flower_banner_pattern.desc": "Flowerpower in Charge", + "item.minecraft.flower_pot": "container for all the pretty plantz", + "item.minecraft.fox_spawn_egg": "Fuxe spon ec", + "item.minecraft.frog_spawn_egg": "toad spon ec", + "item.minecraft.furnace_minecart": "Minecat wif Hot Box", + "item.minecraft.ghast_spawn_egg": "Ghast spon ec", + "item.minecraft.ghast_tear": "Ghast Tear", + "item.minecraft.glass_bottle": "GLAS BOTUL", + "item.minecraft.glistering_melon_slice": "glistrin melooon sliz", + "item.minecraft.globe_banner_pattern": "bannr paturn", + "item.minecraft.globe_banner_pattern.desc": "Glolbe", + "item.minecraft.glow_berries": "shiny berriz", + "item.minecraft.glow_ink_sac": "Shiny ink sac", + "item.minecraft.glow_item_frame": "Brite item holdr", + "item.minecraft.glow_squid_spawn_egg": "Shiny skwid spon ec", + "item.minecraft.glowstone_dust": "Glowstone duzt", + "item.minecraft.goat_horn": "monten shep's sharp thingy", + "item.minecraft.goat_spawn_egg": "monten shep spon ec", + "item.minecraft.gold_ingot": "GULDEN INGUT", + "item.minecraft.gold_nugget": "Shineh bawl", + "item.minecraft.golden_apple": "GULD APEL", + "item.minecraft.golden_axe": "Goldan Aks", + "item.minecraft.golden_boots": "GULD BOOTZ", + "item.minecraft.golden_carrot": "GULDEN CARRUT", + "item.minecraft.golden_chestplate": "GOLDEN CHESPLAET", + "item.minecraft.golden_helmet": "GULDEN HAT", + "item.minecraft.golden_hoe": "Goldn Hoe", + "item.minecraft.golden_horse_armor": "Goden Horz Armar", + "item.minecraft.golden_leggings": "GOLD PATNZ", + "item.minecraft.golden_pickaxe": "Goldan Pikakse", + "item.minecraft.golden_shovel": "Goldan Shaval", + "item.minecraft.golden_sword": "Goldan Sord", + "item.minecraft.gray_dye": "Moar dull powder", + "item.minecraft.green_dye": "Grass powder", + "item.minecraft.guardian_spawn_egg": "Gardien spon ec", + "item.minecraft.gunpowder": "Ganpowder", + "item.minecraft.heart_of_the_sea": "Hart of da see", + "item.minecraft.hoglin_spawn_egg": "Hoglin span ec", + "item.minecraft.honey_bottle": "huny buttle", + "item.minecraft.honeycomb": "honyconb", + "item.minecraft.hopper_minecart": "Minecat wif hoppez", + "item.minecraft.horse_spawn_egg": "Hors spon ec", + "item.minecraft.husk_spawn_egg": "Hask spon ec", + "item.minecraft.ink_sac": "Squirty nasty stuff", + "item.minecraft.iron_axe": "Iron Aks", + "item.minecraft.iron_boots": "Irun Shoes", + "item.minecraft.iron_chestplate": "Irun Vesst", + "item.minecraft.iron_helmet": "IRUNHAT", + "item.minecraft.iron_hoe": "Irun Hoe", + "item.minecraft.iron_horse_armor": "Shiny hoofy fur", + "item.minecraft.iron_ingot": "Irun Ingot", + "item.minecraft.iron_leggings": "Irun Pantz", + "item.minecraft.iron_nugget": "Steely thingy", + "item.minecraft.iron_pickaxe": "Iron Pikakse", + "item.minecraft.iron_shovel": "Iron Shaval", + "item.minecraft.iron_sword": "Irun Sowrd", + "item.minecraft.item_frame": "Kitteh Fraem", + "item.minecraft.jungle_boat": "Jungo Watr Car", + "item.minecraft.jungle_chest_boat": "Junglz Watr Car wit Cat Box", + "item.minecraft.knowledge_book": "Buk of Knawledg", + "item.minecraft.lapis_lazuli": "blu stuffz", + "item.minecraft.lava_bucket": "bukkit full of HOT SAUCE", + "item.minecraft.lead": "Leesh", + "item.minecraft.leather": "Lethur", + "item.minecraft.leather_boots": "Lethur Butz", + "item.minecraft.leather_chestplate": "Lethur Jackett", + "item.minecraft.leather_helmet": "Lethur Kap", + "item.minecraft.leather_horse_armor": "Leathr Horse Armor", + "item.minecraft.leather_leggings": "Lethur Pantz", + "item.minecraft.light_blue_dye": "Wet powder", + "item.minecraft.light_gray_dye": "Dull powder", + "item.minecraft.lime_dye": "Nasty powder", + "item.minecraft.lingering_potion": "Lingerin Poshun", + "item.minecraft.lingering_potion.effect.awkward": "Linnerin Poshun of weird", + "item.minecraft.lingering_potion.effect.empty": "Linnerin Poshun u Cann Onli Gat in HAX MODE", + "item.minecraft.lingering_potion.effect.fire_resistance": "Linnerin Poshun ov Fire Rezistance", + "item.minecraft.lingering_potion.effect.harming": "Linnerin Poshun ov Ouch", + "item.minecraft.lingering_potion.effect.healing": "Linnerin Poshun ov Healin", + "item.minecraft.lingering_potion.effect.invisibility": "Linnerin Poshun ov Hiding", + "item.minecraft.lingering_potion.effect.leaping": "Linnerin Poshun ov Leapin", + "item.minecraft.lingering_potion.effect.levitation": "Linnerin Poshun ov Levitashun", + "item.minecraft.lingering_potion.effect.luck": "Linnerin Poshun ov LOL", + "item.minecraft.lingering_potion.effect.mundane": "Linnerin Poshun ov Boringnes", + "item.minecraft.lingering_potion.effect.night_vision": "Linnerin Poshun ov Cat Vishun", + "item.minecraft.lingering_potion.effect.poison": "Linnerin Poshun ov Poizzon", + "item.minecraft.lingering_potion.effect.regeneration": "Linnerin Poshun ov Regenerashun", + "item.minecraft.lingering_potion.effect.slow_falling": "linnerin poshun uf slowmo fall", + "item.minecraft.lingering_potion.effect.slowness": "Linnerin Poshun ov Slownez", + "item.minecraft.lingering_potion.effect.strength": "Linnerin Poshun ov Strength", + "item.minecraft.lingering_potion.effect.swiftness": "Linnerin Poshun ov Spedz", + "item.minecraft.lingering_potion.effect.thick": "Linnerin Thig Poshun", + "item.minecraft.lingering_potion.effect.turtle_master": "Linnerin Poshun of TurTl Boss", + "item.minecraft.lingering_potion.effect.water": "Linnerin Watr Buttl", + "item.minecraft.lingering_potion.effect.water_breathing": "Linnerin Poshun ov Watr Breathin", + "item.minecraft.lingering_potion.effect.weakness": "Linnerin Poshun ov Weaknes", + "item.minecraft.llama_spawn_egg": "Lahmuh spon ec", + "item.minecraft.lodestone_compass": "loserstone compas", + "item.minecraft.magenta_dye": "Warmish powder", + "item.minecraft.magma_cream": "Flamin creem", + "item.minecraft.magma_cube_spawn_egg": "Magmuh cewb spon ec", + "item.minecraft.mangrove_boat": "Mangroff watr car", + "item.minecraft.mangrove_chest_boat": "Mangroff Watr Car wif Cat Box", + "item.minecraft.map": "cleen map", + "item.minecraft.melon_seeds": "Melan Seds", + "item.minecraft.melon_slice": "melon sliz", + "item.minecraft.milk_bucket": "mikk buket!!!", + "item.minecraft.minecart": "Minecat", + "item.minecraft.mojang_banner_pattern": "bannr paturn", + "item.minecraft.mojang_banner_pattern.desc": "Ting", + "item.minecraft.mooshroom_spawn_egg": "Mooshroom spon ec", + "item.minecraft.mule_spawn_egg": "Mewl spon ec", + "item.minecraft.mushroom_stew": "A supe of funges", + "item.minecraft.music_disc_11": "Round loud thing", + "item.minecraft.music_disc_11.desc": "C418 - 11", + "item.minecraft.music_disc_13": "Round loud thing", + "item.minecraft.music_disc_13.desc": "C418 - 13", + "item.minecraft.music_disc_5": "Round loud thing", + "item.minecraft.music_disc_5.desc": "Samuel \u00c5berg - 5", + "item.minecraft.music_disc_blocks": "Round loud thing", + "item.minecraft.music_disc_blocks.desc": "C418 - blocks", + "item.minecraft.music_disc_cat": "Round loud thing", + "item.minecraft.music_disc_cat.desc": "C418 - cat", + "item.minecraft.music_disc_chirp": "Round loud thing", + "item.minecraft.music_disc_chirp.desc": "C418 - chirp", + "item.minecraft.music_disc_far": "Round loud thing", + "item.minecraft.music_disc_far.desc": "C418 - far", + "item.minecraft.music_disc_mall": "Round loud thing", + "item.minecraft.music_disc_mall.desc": "C418 - mall", + "item.minecraft.music_disc_mellohi": "Round loud thing", + "item.minecraft.music_disc_mellohi.desc": "C418 - mellohi", + "item.minecraft.music_disc_otherside": "Round loud thing", + "item.minecraft.music_disc_otherside.desc": "Lena Raine - otherside", + "item.minecraft.music_disc_pigstep": "Round loud thing", + "item.minecraft.music_disc_pigstep.desc": "Lena Raine - Pigstep", + "item.minecraft.music_disc_stal": "Round loud thing", + "item.minecraft.music_disc_stal.desc": "C418 - stal", + "item.minecraft.music_disc_strad": "Round loud thing", + "item.minecraft.music_disc_strad.desc": "C418 - strad", + "item.minecraft.music_disc_wait": "Round loud thing", + "item.minecraft.music_disc_wait.desc": "C418 - wait", + "item.minecraft.music_disc_ward": "Round loud thing", + "item.minecraft.music_disc_ward.desc": "C418 - ward", + "item.minecraft.mutton": "Bloody Mutn", + "item.minecraft.name_tag": "Renaemer", + "item.minecraft.nautilus_shell": "Naughty shell", + "item.minecraft.nether_brick": "Nether brik", + "item.minecraft.nether_star": "Nether Asterisk", + "item.minecraft.nether_wart": "Icky Nether plant", + "item.minecraft.netherite_axe": "Netherite ax", + "item.minecraft.netherite_boots": "Netherite shoez", + "item.minecraft.netherite_chestplate": "Netherite sweatur", + "item.minecraft.netherite_helmet": "Netherite hat", + "item.minecraft.netherite_hoe": "Netherite Hoe", + "item.minecraft.netherite_ingot": "Netherite ingut", + "item.minecraft.netherite_leggings": "Netherite pantz", + "item.minecraft.netherite_pickaxe": "Netherite Pikax", + "item.minecraft.netherite_scrap": "Netherit skrapz", + "item.minecraft.netherite_shovel": "Netherite shuvl", + "item.minecraft.netherite_sword": "Netherite swurd", + "item.minecraft.oak_boat": "Ouk Watr Car", + "item.minecraft.oak_chest_boat": "Oak Boat wif Chest", + "item.minecraft.ocelot_spawn_egg": "Oslot spon ec", + "item.minecraft.orange_dye": "Bright powder", + "item.minecraft.painting": "Art on a paper", + "item.minecraft.panda_spawn_egg": "Green Stick Eatar spon ec", + "item.minecraft.paper": "Papyrus", + "item.minecraft.parrot_spawn_egg": "Pawet spon ec", + "item.minecraft.phantom_membrane": "creepy flyin ting mimbrain", + "item.minecraft.phantom_spawn_egg": "Fantum spon ec", + "item.minecraft.pig_spawn_egg": "Pic spon ec", + "item.minecraft.piglin_banner_pattern": "bannr paturn", + "item.minecraft.piglin_banner_pattern.desc": "Nouze", + "item.minecraft.piglin_brute_spawn_egg": "Piglin Brut spon ec", + "item.minecraft.piglin_spawn_egg": "Piglin spon ec", + "item.minecraft.pillager_spawn_egg": "Pilagur spon ec", + "item.minecraft.pink_dye": "Less warmy powder", + "item.minecraft.poisonous_potato": "no eat iz yukky", + "item.minecraft.polar_bear_spawn_egg": "Polah bar spon ec", + "item.minecraft.popped_chorus_fruit": "Popped Frut dat Duznt Sing", + "item.minecraft.porkchop": "rawr pig", + "item.minecraft.potato": "Pootato", + "item.minecraft.potion": "Poshun", + "item.minecraft.potion.effect.awkward": "Poshun of weird", + "item.minecraft.potion.effect.empty": "Poshun u Cann Onli Gat in HAX MODE", + "item.minecraft.potion.effect.fire_resistance": "Poshun ov Fire Rezistance", + "item.minecraft.potion.effect.harming": "Poshun ov Ouch", + "item.minecraft.potion.effect.healing": "Poshun ov Healin", + "item.minecraft.potion.effect.invisibility": "Poshun ov Hiding", + "item.minecraft.potion.effect.leaping": "Poshun ov Leapin", + "item.minecraft.potion.effect.levitation": "bad flyn", + "item.minecraft.potion.effect.luck": "Poshun ov LOL", + "item.minecraft.potion.effect.mundane": "Poshun ov Boringnes", + "item.minecraft.potion.effect.night_vision": "Poshun ov Cat Vishun", + "item.minecraft.potion.effect.poison": "Poshun ov Poizzon", + "item.minecraft.potion.effect.regeneration": "Poshun ov Regenerashun", + "item.minecraft.potion.effect.slow_falling": "Poshun of slowmo fall", + "item.minecraft.potion.effect.slowness": "Poshun ov Slownez", + "item.minecraft.potion.effect.strength": "chuckz noris pushun", + "item.minecraft.potion.effect.swiftness": "Poshun ov Spedz", + "item.minecraft.potion.effect.thick": "Fat Poshun", + "item.minecraft.potion.effect.turtle_master": "Potiun of TurTl Boss", + "item.minecraft.potion.effect.water": "Not for katz", + "item.minecraft.potion.effect.water_breathing": "Poshun ov Watr Breathing", + "item.minecraft.potion.effect.weakness": "Poshun ov Weaknes", + "item.minecraft.powder_snow_bucket": "Bukkit wit Powdr Sno", + "item.minecraft.prismarine_crystals": "Prizmarine pebblez", + "item.minecraft.prismarine_shard": "Prizmarine thingy", + "item.minecraft.pufferfish": "very yukky fishy", + "item.minecraft.pufferfish_bucket": "Pafforfosh buket!!!", + "item.minecraft.pufferfish_spawn_egg": "Pufahfis spon ec", + "item.minecraft.pumpkin_pie": "pie with squash in it", + "item.minecraft.pumpkin_seeds": "Pumpkez Sedz", + "item.minecraft.purple_dye": "Sorta-in-between powder", + "item.minecraft.quartz": "Nether cloudz", + "item.minecraft.rabbit": "Bloody Jumpin Foodz", + "item.minecraft.rabbit_foot": "Jumpin Foodz Fut", + "item.minecraft.rabbit_hide": "Jumpin Foodz Rag", + "item.minecraft.rabbit_spawn_egg": "Wabit spon ec", + "item.minecraft.rabbit_stew": "Warm Jumpin Foodz in Bawl", + "item.minecraft.ravager_spawn_egg": "Rivagur spon ec", + "item.minecraft.raw_copper": "moldy wurst", + "item.minecraft.raw_gold": "shiny coal", + "item.minecraft.raw_iron": "RAWWWW irun", + "item.minecraft.recovery_compass": "Deth findr v1.0\u2122\ufe0f", + "item.minecraft.red_dye": "Mojang powder", + "item.minecraft.redstone": "Redstone Dust", + "item.minecraft.rotten_flesh": "Taestz Laik Brokali", + "item.minecraft.saddle": "Sad-le :c", + "item.minecraft.salmon": "Rawr Pink Nomz", + "item.minecraft.salmon_bucket": "Salmon buket!!!", + "item.minecraft.salmon_spawn_egg": "Samin spon ec", + "item.minecraft.scute": "pice ov tutrl shell", + "item.minecraft.shears": "Skizzors", + "item.minecraft.sheep_spawn_egg": "Shep spon ec", + "item.minecraft.shield": "Cat protecshun", + "item.minecraft.shield.black": "Blak cat protecshun", + "item.minecraft.shield.blue": "Bloo cat protecshun", + "item.minecraft.shield.brown": "Broun cat protecshun", + "item.minecraft.shield.cyan": "Sighun cat protecshun", + "item.minecraft.shield.gray": "Moar dull cat protecshun", + "item.minecraft.shield.green": "Greenish cat protecshun", + "item.minecraft.shield.light_blue": "Lite bloo cat protecshun", + "item.minecraft.shield.light_gray": "Dull cat protecshun", + "item.minecraft.shield.lime": "Limd cat protecshun", + "item.minecraft.shield.magenta": "Majenta cat protecshun", + "item.minecraft.shield.orange": "Ornge cat protecshun", + "item.minecraft.shield.pink": "Pinky cat protecshun", + "item.minecraft.shield.purple": "Parpal cat protecshun", + "item.minecraft.shield.red": "Redish cat protecshun", + "item.minecraft.shield.white": "Wite cat protecshun", + "item.minecraft.shield.yellow": "Yello cat protecshun", + "item.minecraft.shulker_shell": "Shulker Shell", + "item.minecraft.shulker_spawn_egg": "Shuker spon eg", + "item.minecraft.sign": "Put najm", + "item.minecraft.silverfish_spawn_egg": "Sivahfish spon eg", + "item.minecraft.skeleton_horse_spawn_egg": "Skehlehten hors span eg", + "item.minecraft.skeleton_spawn_egg": "Skelehten spon ec", + "item.minecraft.skull_banner_pattern": "bannr paturn", + "item.minecraft.skull_banner_pattern.desc": "Skullz churge", + "item.minecraft.slime_ball": "boogerz", + "item.minecraft.slime_spawn_egg": "Sliem spon ec", + "item.minecraft.snowball": "Cold wet", + "item.minecraft.spectral_arrow": "Shini Errow", + "item.minecraft.spider_eye": "Spider bal", + "item.minecraft.spider_spawn_egg": "Spaydur spon ec", + "item.minecraft.splash_potion": "Throw Poshun", + "item.minecraft.splash_potion.effect.awkward": "Spleshy Poshun of weird", + "item.minecraft.splash_potion.effect.empty": "Spleshy Poshun u Cann Onli Gat in HAX MODE", + "item.minecraft.splash_potion.effect.fire_resistance": "Spleshy Poshun ov Fire Rezistance", + "item.minecraft.splash_potion.effect.harming": "Spleshy Poshun ov Ouch", + "item.minecraft.splash_potion.effect.healing": "Spleshy Poshun ov Healin", + "item.minecraft.splash_potion.effect.invisibility": "Spleshy Poshun ov Hiding", + "item.minecraft.splash_potion.effect.leaping": "Spleshy Poshun ov Leapin", + "item.minecraft.splash_potion.effect.levitation": "Spleshy Poshun ov Levitashun", + "item.minecraft.splash_potion.effect.luck": "Spleshy Poshun ov LOL", + "item.minecraft.splash_potion.effect.mundane": "Spleshy Poshun ov Boringnes", + "item.minecraft.splash_potion.effect.night_vision": "Spleshy Poshun ov Cat Vishun", + "item.minecraft.splash_potion.effect.poison": "Spleshy Poshun ov Poizzon", + "item.minecraft.splash_potion.effect.regeneration": "Spleshy Poshun ov Regenerashun", + "item.minecraft.splash_potion.effect.slow_falling": "Splashie poshun uf slowmo fall", + "item.minecraft.splash_potion.effect.slowness": "Spleshy Poshun ov Slownez", + "item.minecraft.splash_potion.effect.strength": "Spleshy Poshun ov Strength", + "item.minecraft.splash_potion.effect.swiftness": "Spleshy Poshun ov Spedz", + "item.minecraft.splash_potion.effect.thick": "Spleshy Thig Poshun", + "item.minecraft.splash_potion.effect.turtle_master": "Splashie poshun uf TurTl Boss", + "item.minecraft.splash_potion.effect.water": "Spleshy Watr Buttl", + "item.minecraft.splash_potion.effect.water_breathing": "Spleshy Poshun ov Watr Breathin", + "item.minecraft.splash_potion.effect.weakness": "Spleshy Poshun ov Weaknes", + "item.minecraft.spruce_boat": "Sproos Watr Car", + "item.minecraft.spruce_chest_boat": "Spruce Bot wif Chest", + "item.minecraft.spyglass": "I C U", + "item.minecraft.squid_spawn_egg": "Sqwid spon ec", + "item.minecraft.stick": "stik", + "item.minecraft.stone_axe": "Ston Akx", + "item.minecraft.stone_hoe": "Ston Hoe", + "item.minecraft.stone_pickaxe": "Ston Pikkatt", + "item.minecraft.stone_shovel": "stone spoon", + "item.minecraft.stone_sword": "Pointy rock", + "item.minecraft.stray_spawn_egg": "Strey spon ec", + "item.minecraft.strider_spawn_egg": "Straydur spon ec", + "item.minecraft.string": "CAN I HAZ TEH TAIL THING", + "item.minecraft.sugar": "Switz", + "item.minecraft.suspicious_stew": "IDK dont eat dat", + "item.minecraft.sweet_berries": "Sweet Beries", + "item.minecraft.tadpole_bucket": "buket wit toadpol", + "item.minecraft.tadpole_spawn_egg": "mini frog spon ec", + "item.minecraft.tipped_arrow": "Shooty Tihng", + "item.minecraft.tipped_arrow.effect.awkward": "Shooty Tihng", + "item.minecraft.tipped_arrow.effect.empty": "Shooty Tihng u Cann Onli Gat in HAX MODE", + "item.minecraft.tipped_arrow.effect.fire_resistance": "Speshul Shooty Tignh Dat Makez u Fire Rezistant", + "item.minecraft.tipped_arrow.effect.harming": "Speshul Shooty Tignh Dat Makez u Ouch", + "item.minecraft.tipped_arrow.effect.healing": "Speshul Shooty Tignh Dat Makez u Heal", + "item.minecraft.tipped_arrow.effect.invisibility": "Speshul Shooty Tignh Dat Makez u Invizibul", + "item.minecraft.tipped_arrow.effect.leaping": "Speshul Shooty Tignh Dat Makez u Bunny Cat", + "item.minecraft.tipped_arrow.effect.levitation": "Speshul Shooty Tignh Dat Makez u Flai", + "item.minecraft.tipped_arrow.effect.luck": "Speshul Shooty Tignh Dat Makez u LOL", + "item.minecraft.tipped_arrow.effect.mundane": "Shooty Tihng", + "item.minecraft.tipped_arrow.effect.night_vision": "Speshul Shooty Tignh Dat Makez u Cat Vishun", + "item.minecraft.tipped_arrow.effect.poison": "Speshul Shooty Tignh Dat Makez u Puiznd", + "item.minecraft.tipped_arrow.effect.regeneration": "Speshul Shooty Tignh Dat Makez u Reg", + "item.minecraft.tipped_arrow.effect.slow_falling": "Arruz uf slowmo fall", + "item.minecraft.tipped_arrow.effect.slowness": "Speshul Shooty Tignh Dat Makez u Slo", + "item.minecraft.tipped_arrow.effect.strength": "Speshul Shooty Tignh Dat Makez u Powahful", + "item.minecraft.tipped_arrow.effect.swiftness": "Speshul Shooty Tignh Dat Makez u Fazt", + "item.minecraft.tipped_arrow.effect.thick": "Shooty Tihng", + "item.minecraft.tipped_arrow.effect.turtle_master": "Arruwz of TurTl Boss", + "item.minecraft.tipped_arrow.effect.water": "Speshul Shooty Tignh Dat Splashes", + "item.minecraft.tipped_arrow.effect.water_breathing": "Speshul Shooty Tignh Dat Makez u Breathin undr Watr", + "item.minecraft.tipped_arrow.effect.weakness": "Speshul Shooty Tignh Dat Makez u Week", + "item.minecraft.tnt_minecart": "Boomy Minecat", + "item.minecraft.totem_of_undying": "Anti-dyin' Totum ", + "item.minecraft.trader_llama_spawn_egg": "Givr Camel spon ec", + "item.minecraft.trident": "Dinglehopper", + "item.minecraft.tropical_fish": "Weird water thing", + "item.minecraft.tropical_fish_bucket": "Weird water thing buket!!!", + "item.minecraft.tropical_fish_spawn_egg": "Trahpicul fish spon ec", + "item.minecraft.turtle_helmet": "TortL head", + "item.minecraft.turtle_spawn_egg": "TortL spon ec", + "item.minecraft.vex_spawn_egg": "Vax spon ec", + "item.minecraft.villager_spawn_egg": "Vilagur spon ec", + "item.minecraft.vindicator_spawn_egg": "Vindahcaytur spon ec", + "item.minecraft.wandering_trader_spawn_egg": "Wubterng Truder spon ec", + "item.minecraft.warden_spawn_egg": "Blu shrek spon ec", + "item.minecraft.warped_fungus_on_a_stick": "Warpt Foongis on a stick", + "item.minecraft.water_bucket": "WatR Buket", + "item.minecraft.wheat": "Weet", + "item.minecraft.wheat_seeds": "wit seeds", + "item.minecraft.white_dye": "Blank powder", + "item.minecraft.witch_spawn_egg": "Wetch spon ec", + "item.minecraft.wither_skeleton_spawn_egg": "Wither skelehten spon ec", + "item.minecraft.wolf_spawn_egg": "Wuf spon ec", + "item.minecraft.wooden_axe": "teh furst chopper", + "item.minecraft.wooden_hoe": "Wuddn Hoe", + "item.minecraft.wooden_pickaxe": "Wuddn Pikkatt", + "item.minecraft.wooden_shovel": "Wuddn Shuvl", + "item.minecraft.wooden_sword": "Wuddn Sord", + "item.minecraft.writable_book": "NeRd!", + "item.minecraft.written_book": "Book 4 Reeding", + "item.minecraft.yellow_dye": "Banana powder", + "item.minecraft.zoglin_spawn_egg": "Zoglin spwn eg", + "item.minecraft.zombie_horse_spawn_egg": "Zobi horz spon ec", + "item.minecraft.zombie_spawn_egg": "Zobi spon ec", + "item.minecraft.zombie_villager_spawn_egg": "Unded villaguur spon ec", + "item.minecraft.zombified_piglin_spawn_egg": "Zobifyed Piglin spon ec", + "item.modifiers.chest": "Wen un kit-cat bodi:", + "item.modifiers.feet": "Wehn un bak pawz:", + "item.modifiers.head": "Wen unn kit-cat hed:", + "item.modifiers.legs": "Wen un paws:", + "item.modifiers.mainhand": "Wehn in Maen Paw:", + "item.modifiers.offhand": "Wehn in Bad Paw:", + "item.nbt_tags": "NbT: %s stuf(z)", + "item.unbreakable": "no breakz", + "itemGroup.brewing": "Brwing", + "itemGroup.buildingBlocks": "Build Blukz", + "itemGroup.combat": "Combawt", + "itemGroup.decorations": "Decorashun Blukz", + "itemGroup.food": "Cheezburgers", + "itemGroup.hotbar": "Savd warmbras", + "itemGroup.inventory": "Sirvivl Stuff", + "itemGroup.materials": "Materialz", + "itemGroup.misc": "Miscelaneus", + "itemGroup.redstone": "Redstone", + "itemGroup.search": "Saerhc Itmz", + "itemGroup.tools": "Toolz", + "itemGroup.transportation": "Transportashun", + "item_modifier.unknown": "know'nt item mudifyer: %s", + "jigsaw_block.final_state": "Transforms to:", + "jigsaw_block.generate": "Crete!!", + "jigsaw_block.joint.aligned": "alyned", + "jigsaw_block.joint.rollable": "Hairballable", + "jigsaw_block.joint_label": "joynt typ:", + "jigsaw_block.keep_jigsaws": "Keep Jig saw", + "jigsaw_block.levels": "lvlz: %s", + "jigsaw_block.name": "Naem:", + "jigsaw_block.pool": "Taaget Pul:", + "jigsaw_block.target": "Walmart naem:", + "key.advancements": "Atfancemends", + "key.attack": "HYAHHH", + "key.back": "Roll Bakwordz", + "key.categories.creative": "Cat-gOd moDe", + "key.categories.gameplay": "Gaemply", + "key.categories.inventory": "Mah stuff", + "key.categories.misc": "Miscelanus", + "key.categories.movement": "hopz and bouncez", + "key.categories.multiplayer": "Moar Kittehz", + "key.categories.ui": "Teh buttonz", + "key.chat": "Opn Chatz", + "key.command": "Opn Cmds", + "key.drop": "Throw teh yarn away", + "key.forward": "Roll Forwardz", + "key.fullscreen": "turn on nd off teh fullzcrin", + "key.hotbar.1": "Front Pocket 1", + "key.hotbar.2": "Front Pocket 2", + "key.hotbar.3": "Front Pocket 3", + "key.hotbar.4": "Front Pocket 4", + "key.hotbar.5": "Front Pocket 5", + "key.hotbar.6": "Front Pocket 6", + "key.hotbar.7": "Front Pocket 7", + "key.hotbar.8": "Front Pocket 8", + "key.hotbar.9": "Front Pocket 9", + "key.inventory": "Opun/Cloze Secret fur pouch", + "key.jump": "Jumpy jumpy jumpy", + "key.keyboard.apostrophe": "'", + "key.keyboard.backslash": "\\", + "key.keyboard.backspace": "oops no", + "key.keyboard.caps.lock": "CAPZ", + "key.keyboard.comma": ",", + "key.keyboard.delete": "Deleet", + "key.keyboard.down": "Deown Arrowz", + "key.keyboard.end": "End", + "key.keyboard.enter": "Entr", + "key.keyboard.equal": "=", + "key.keyboard.escape": "escap", + "key.keyboard.f1": "F1", + "key.keyboard.f10": "F10", + "key.keyboard.f11": "F11", + "key.keyboard.f12": "F12", + "key.keyboard.f13": "F13", + "key.keyboard.f14": "F14", + "key.keyboard.f15": "F15", + "key.keyboard.f16": "F16", + "key.keyboard.f17": "F17", + "key.keyboard.f18": "F18", + "key.keyboard.f19": "F19", + "key.keyboard.f2": "F2", + "key.keyboard.f20": "F20", + "key.keyboard.f21": "F21", + "key.keyboard.f22": "F22", + "key.keyboard.f23": "F23", + "key.keyboard.f24": "F24", + "key.keyboard.f25": "F25", + "key.keyboard.f3": "F3", + "key.keyboard.f4": "F4", + "key.keyboard.f5": "F5", + "key.keyboard.f6": "F6", + "key.keyboard.f7": "F7", + "key.keyboard.f8": "F8", + "key.keyboard.f9": "F9", + "key.keyboard.grave.accent": "`", + "key.keyboard.home": "Kittybox", + "key.keyboard.insert": "Insurrt", + "key.keyboard.keypad.0": "Numbur 0", + "key.keyboard.keypad.1": "Numbur 1", + "key.keyboard.keypad.2": "Numbur 2", + "key.keyboard.keypad.3": "Numbur 3", + "key.keyboard.keypad.4": "Numbur 4", + "key.keyboard.keypad.5": "Numbur 5", + "key.keyboard.keypad.6": "Numbur 6", + "key.keyboard.keypad.7": "Numbur 7", + "key.keyboard.keypad.8": "Numbur 8", + "key.keyboard.keypad.9": "Numbur 9", + "key.keyboard.keypad.add": "Numbur +", + "key.keyboard.keypad.decimal": "Numbur '.'", + "key.keyboard.keypad.divide": "Keypad /", + "key.keyboard.keypad.enter": "Keypad Dun", + "key.keyboard.keypad.equal": "Keypad =", + "key.keyboard.keypad.multiply": "Keypad *", + "key.keyboard.keypad.subtract": "Keypad -", + "key.keyboard.left": "Lefty Arrowz", + "key.keyboard.left.alt": "Lefty Alt", + "key.keyboard.left.bracket": "[", + "key.keyboard.left.control": "Lefty Control", + "key.keyboard.left.shift": "Lefty Shiftz", + "key.keyboard.left.win": "Lefty Win", + "key.keyboard.menu": "Meneow", + "key.keyboard.minus": "-", + "key.keyboard.num.lock": "Numbz Lockz", + "key.keyboard.page.down": "Pagez Deown", + "key.keyboard.page.up": "Pagez Up", + "key.keyboard.pause": "Pawz", + "key.keyboard.period": ".", + "key.keyboard.print.screen": "Prnt Screenz", + "key.keyboard.right": "Righty Arrowz", + "key.keyboard.right.alt": "Righty Alt", + "key.keyboard.right.bracket": "]", + "key.keyboard.right.control": "Righty Control", + "key.keyboard.right.shift": "Righty Shiftz", + "key.keyboard.right.win": "Righty Win", + "key.keyboard.scroll.lock": "Scrolls Lockz", + "key.keyboard.semicolon": ";", + "key.keyboard.slash": "/", + "key.keyboard.space": "Spacez", + "key.keyboard.tab": "Tabz", + "key.keyboard.unknown": "nO key hEre", + "key.keyboard.up": "Up Arrowz", + "key.keyboard.world.1": "Wurld 1", + "key.keyboard.world.2": "Wurld 2", + "key.left": "Roll Left", + "key.loadToolbarActivator": "Lowd Hawtbar Ektivator", + "key.mouse": "Button %1$s", + "key.mouse.left": "Left Paw", + "key.mouse.middle": "Middl Paw", + "key.mouse.right": "Right Paw", + "key.pickItem": "Pick blukz", + "key.playerlist": "Show utur Kittehz", + "key.right": "Roll Right", + "key.saveToolbarActivator": "Sarv Hawtbar Ektivetor", + "key.screenshot": "makin funny picz fer interwebz", + "key.smoothCamera": "switch teh fanceh (feast) camera on nd off", + "key.sneak": "Tiptoe", + "key.socialInteractions": "Soshul interacshuns screen", + "key.spectatorOutlines": "Mak teh catz shinies (Spectorz)", + "key.sprint": "Sprint", + "key.swapOffhand": "Swap itemz in pawz", + "key.togglePerspective": "chang teh way kitteh lookzez", + "key.use": "Uze Item/Plac blukz", + "lanServer.otherPlayers": "Setinz 4 ohtr kittenz", + "lanServer.scanning": "Scannin for nearby kittenz", + "lanServer.start": "Start LAN Wurld", + "lanServer.title": "LAN Wurld", + "language.code": "qll", + "language.name": "LOLCAT", + "language.region": "Kingdom of Cats", + "lectern.take_book": "Taek Book", + "menu.convertingLevel": "Konverting wurld", + "menu.disconnect": "imma go now", + "menu.game": "Gameh menyu", + "menu.generatingLevel": "Generating Lols", + "menu.generatingTerrain": "initiatin cheezburgerz", + "menu.loadingForcedChunks": "Lowdin forcd chunkz fur dimenshun %s", + "menu.loadingLevel": "Lodin wurld", + "menu.modded": " (Moaddded!)", + "menu.multiplayer": "I can haz friendz", + "menu.online": "Minecraft Realms", + "menu.options": "Opshuns...", + "menu.paused": "gaem stopd", + "menu.playdemo": "Pluay Demo Wurld", + "menu.playerReporting": "Kat Repworting", + "menu.preparingSpawn": "Preepayrin spawn ayyrea: %s%%", + "menu.quit": "kthxbai", + "menu.reportBugs": "Catch Bugz", + "menu.resetdemo": "Rezet Demo Wurld", + "menu.respawning": "RE-PAW-NING", + "menu.returnToGame": "kk im back", + "menu.returnToMenu": "Sayv and cwit tu titel", + "menu.savingChunks": "Scratching the disk", + "menu.savingLevel": "Savin wurld", + "menu.sendFeedback": "Feed Us", + "menu.shareToLan": "Opn teh netwurks", + "menu.singleplayer": "Loneleh kitteh", + "menu.working": "Cat too lazy to work...", + "merchant.current_level": "Gift Kitteh curent levl", + "merchant.deprecated": "Vilaagurz restoc ahp two to tiemz purrr dai.", + "merchant.level.1": "Noviec", + "merchant.level.2": "Aprentis", + "merchant.level.3": "Jurneyman", + "merchant.level.4": "Ekspurt", + "merchant.level.5": "MasTr", + "merchant.next_level": "Gift Kitteh next levl", + "merchant.trades": "Tradez", + "mirror.front_back": "\u2191 \u2193", + "mirror.left_right": "\u2190 \u2192", + "mirror.none": "|", + "mount.onboard": "Prezz %1$s tu Dizmount", + "multiplayer.applyingPack": "Apllyinn resorce pak", + "multiplayer.disconnect.authservers_down": "Authenticashun srvrs r down. Pls com bak latr, sry!1", + "multiplayer.disconnect.banned": "ur bannd from dis sever", + "multiplayer.disconnect.banned.expiration": "ur ban wil be rmvd on %s", + "multiplayer.disconnect.banned.reason": "Supreem cat bannd u from dis srvr. Resun: %s", + "multiplayer.disconnect.banned_ip.expiration": "\nUr ban wil be rmvd on %s", + "multiplayer.disconnect.banned_ip.reason": "Supreem cat bannd u from dis srvr. Resun: %s", + "multiplayer.disconnect.chat_validation_failed": "Chat meow validashun faild", + "multiplayer.disconnect.duplicate_login": "U logd in frum another locashun", + "multiplayer.disconnect.expired_public_key": "Eggsfire plofill pabllick kee. chek dat uar sistemm tim iz sinklonyzd, end toy restating ur gam ", + "multiplayer.disconnect.flying": "Flyin iz nawt enabld on dis srvr", + "multiplayer.disconnect.generic": "CYA", + "multiplayer.disconnect.idling": "U hav ben idle 4 2 long!", + "multiplayer.disconnect.illegal_characters": "Not OK characterz in c(h)at", + "multiplayer.disconnect.incompatible": "Incmpatibl clynt! Plz uze %s", + "multiplayer.disconnect.invalid_entity_attacked": "Attemptin 2 attack an not valid entity", + "multiplayer.disconnect.invalid_packet": "Servr sent ey weird paket", + "multiplayer.disconnect.invalid_player_data": "Weird cat dataz", + "multiplayer.disconnect.invalid_player_movement": "Weird move player paket receivd", + "multiplayer.disconnect.invalid_public_key_signature": "Dis signatur 4 profil publik ki cant use. :(\nTry 2 restart ur game.", + "multiplayer.disconnect.invalid_vehicle_movement": "Weird moov vehicl paket receivd", + "multiplayer.disconnect.ip_banned": "Cat iz banned from ip from dis server", + "multiplayer.disconnect.kicked": "kikk ez by oprt9r", + "multiplayer.disconnect.missing_public_key": "I misd ur ke. \ngiv secur profilez.", + "multiplayer.disconnect.missing_tags": "Incomplat sec of tehs recived fom servah.\nPlez contac servah oporota.", + "multiplayer.disconnect.name_taken": "dat nam is taken, try cat100 or catcat", + "multiplayer.disconnect.not_whitelisted": "ur not part of th trulolcatclub100!d!&1", + "multiplayer.disconnect.out_of_order_chat": "Rong chatpacket gotten. much sistm timechange?", + "multiplayer.disconnect.outdated_client": "Incmpatibl clynt! Plz uze %s", + "multiplayer.disconnect.outdated_server": "Incmpatibl clyunt! Plz uze %s", + "multiplayer.disconnect.server_full": "Dat servR is compleet!!!!!", + "multiplayer.disconnect.server_shutdown": "Servur iz ded", + "multiplayer.disconnect.slow_login": "Took 2 long 2 login", + "multiplayer.disconnect.too_many_pending_chats": "2 many unacknowledged chat mesagez", + "multiplayer.disconnect.unexpected_query_response": "UniCZpektet cuztum deeta frum CLAINT!!!", + "multiplayer.disconnect.unsigned_chat": "Received chat packet wif missing or invalid signature.", + "multiplayer.disconnect.unverified_username": "Fail'd 2 verifi uszrnaem!", + "multiplayer.downloadingStats": "getting catistics...", + "multiplayer.downloadingTerrain": "Lodin cheezburgerz...", + "multiplayer.message_not_delivered": "Can nawt dilivr meow mesadg, check srvr lugs: %s", + "multiplayer.player.joined": "%s joind teh gaem", + "multiplayer.player.joined.renamed": "%s (used 2 b %s) joind teh gaem", + "multiplayer.player.left": "%s leeft teh gaem", + "multiplayer.requiredTexturePrompt.disconnect": "Survur nedz a vizyual", + "multiplayer.requiredTexturePrompt.line1": "Dis survur nedz u 2 use a cuztm vishul.", + "multiplayer.requiredTexturePrompt.line2": "Sayin no 2 thiz vizyual wil nope u from dis survur.", + "multiplayer.socialInteractions.not_available": "Soshul interacshuns r ownly avalible in utur kittehz werlds", + "multiplayer.status.and_more": "... & %s moar ...", + "multiplayer.status.cancelled": "Staphd", + "multiplayer.status.cannot_connect": "Cant conect 2 servr", + "multiplayer.status.cannot_resolve": "Cant reshulf hoznaym", + "multiplayer.status.finished": "Dun", + "multiplayer.status.incompatible": "Incompatible vershun!", + "multiplayer.status.no_connection": "(naw konecticon)", + "multiplayer.status.old": "Old", + "multiplayer.status.ping": "%s millisecndz", + "multiplayer.status.pinging": "Scratchin...", + "multiplayer.status.quitting": "KTHXBYE", + "multiplayer.status.request_handled": "Staeduz rekwesst haz bin haendlt", + "multiplayer.status.unknown": "???", + "multiplayer.status.unrequested": "Receivd unreqstd statuz", + "multiplayer.stopSleeping": "geuts upsi", + "multiplayer.texturePrompt.failure.line1": "Survur vizyual cotton't b applid", + "multiplayer.texturePrompt.failure.line2": "Eni functshunliy dis requiz vizyua mait no werk cuz ekspectd", + "multiplayer.texturePrompt.line1": "Dis servr recommendz teh use ov custom resource pack.", + "multiplayer.texturePrompt.line2": "You wantz DL and installz 'em magic?", + "multiplayer.texturePrompt.serverPrompt": "%s\n\nDa servr kitteh sayz:\n%s", + "multiplayer.title": "Pley with utur kittehz", + "multiplayer.unsecureserver.toast": "Mesagez sent on this servr may be modified an might not reflect teh original mesage", + "multiplayer.unsecureserver.toast.title": "Chat meow can't be verifed", + "multiplayerWarning.check": "Do not shw dis scren agin >:(", + "multiplayerWarning.header": "Caushun: Thurd-Parteh Onlien Plae", + "multiplayerWarning.message": "Coushn: Onlain pley is offerd bah therd-porty servrs that not be ownd, oprtd, or suprvisd by M0jang\nStuds or micrsft. durin' onlain pley, yu mey be expsed to unmdrated chat messges or othr typs\nof usr-generatd content tht may not be suitable for othr kitty-cats.", + "narration.button": "Buhton: %s", + "narration.button.usage.focused": "Prez Enter two aktiwait", + "narration.button.usage.hovered": "Lefft clck to aktivate", + "narration.checkbox": "Box: %s", + "narration.checkbox.usage.focused": "Prez Intr 2 toggl", + "narration.checkbox.usage.hovered": "Leaf clik 2 toggl", + "narration.component_list.usage": "Prez tab 2 nevigmicate 2 next elemnt plz", + "narration.cycle_button.usage.focused": "Press Entr to svitch to %s", + "narration.cycle_button.usage.hovered": "Leaf clik 2 swich 2 %s", + "narration.edit_box": "Edti boks: %s", + "narration.recipe": "how 2 meak %s", + "narration.recipe.usage": "Levvt clck to selekt", + "narration.recipe.usage.more": "Rite clik 2 show moar recipez", + "narration.selection.usage": "Prez up an down buttonz to muv 2 anothr intry", + "narration.slider.usage.focused": "Prez leaf or rite keyboord buttonz 2 change value", + "narration.slider.usage.hovered": "Draaaaag slidahr two chang value", + "narration.suggestion": "Chozun sugesston %s ut uf %s: %s", + "narration.suggestion.tooltip": "Chozun sugesston %s ut uf %s: %s (%s)", + "narrator.button.accessibility": "Aczessbilty", + "narrator.button.difficulty_lock": "Hardnez lock", + "narrator.button.difficulty_lock.locked": "Lockd", + "narrator.button.difficulty_lock.unlocked": "Unloked", + "narrator.button.language": "Wat u re speek", + "narrator.controls.bound": "%s iz bound 2 %s", + "narrator.controls.reset": "Rezet %s butonn", + "narrator.controls.unbound": "%s iz no bound", + "narrator.joining": "Joinin", + "narrator.loading": "Lodin: %s", + "narrator.loading.done": "Dun", + "narrator.position.list": "Selectd list rwo %s otu of %s", + "narrator.position.object_list": "Selectd row elemnt %s owt of %s", + "narrator.position.screen": "Scrin elemnt %s owt of %s", + "narrator.screen.title": "Teh Big Menu", + "narrator.screen.usage": "Uze Mickey mouse cursr or tab bttn 2 slct kitteh", + "narrator.select": "Selectd: %s", + "narrator.select.world": "Selectd %s, last playd: %s, %s, %s, vershun: %s", + "narrator.toast.disabled": "Sp00knator ded", + "narrator.toast.enabled": "Sp00knator ded", + "optimizeWorld.confirm.description": "Do u want to upgrade ur world? Cat dont love to do this. If u upgrade ur world, the world may play faster! But cat says u cant do that, because will no longer be compatible with older versions of the game. THAT IS NOT FUN BUT TERRIBLE!! R u sure you wish to proceed?", + "optimizeWorld.confirm.title": "Optimaiz kitteh land", + "optimizeWorld.info.converted": "Upgraeded pieces: %s", + "optimizeWorld.info.skipped": "Skipped pieces: %s", + "optimizeWorld.info.total": "Total pieces: %s", + "optimizeWorld.stage.counting": "Cowntin pieces...", + "optimizeWorld.stage.failed": "Oopsie doopsie! :(", + "optimizeWorld.stage.finished": "Finishin up...", + "optimizeWorld.stage.upgrading": "Upgraedin evry piece...", + "optimizeWorld.title": "Optimaiziin kitteh land '%s'", + "options.accessibility.link": "Aksesibilty Gaid", + "options.accessibility.text_background": "Tekst Bakround", + "options.accessibility.text_background.chat": "Chatz", + "options.accessibility.text_background.everywhere": "Evvywere", + "options.accessibility.text_background_opacity": "Tekt Bakrund 'pacty", + "options.accessibility.title": "Aksessibiwity Settinz...", + "options.allowServerListing": "Alluw Zerverz Listins", + "options.allowServerListing.tooltip": "Plz Dunt Shuw Myz Multiplar Namez Plz Minraft! Plzzzz.", + "options.ao": "Nize Shadoes", + "options.ao.max": "BIGGERER!!!!!!!", + "options.ao.min": "ittiest bittiest", + "options.ao.off": "Not activatez", + "options.attack.crosshair": "LAZR POINTR!", + "options.attack.hotbar": "HAWTBAR!", + "options.attackIndicator": "Scratch helpr", + "options.audioDevice": "Technowogy", + "options.audioDevice.default": "Sisten defolt", + "options.autoJump": "Cat-o-Jumpah", + "options.autoSuggestCommands": "Magic Stuff Suggestions", + "options.autosaveIndicator": "autosaev indiCATor", + "options.biomeBlendRadius": "mix baium", + "options.biomeBlendRadius.1": "NOT (best for potato)", + "options.biomeBlendRadius.11": "11x11 (not kul for pc)", + "options.biomeBlendRadius.13": "13x13 (fur shaww)", + "options.biomeBlendRadius.15": "15x15 (hypermegasupah hi')", + "options.biomeBlendRadius.3": "3x3 (fazt)", + "options.biomeBlendRadius.5": "fivx5 (normie)", + "options.biomeBlendRadius.7": "7w7 (hi')", + "options.biomeBlendRadius.9": "9x9 (supah hi')", + "options.chat.color": "Colurz", + "options.chat.delay": "Delayyyyy: %s sec;)", + "options.chat.delay_none": "Delayyyyy: no:(", + "options.chat.height.focused": "Focushened Tallnes", + "options.chat.height.unfocused": "Unfocushened Tallnes", + "options.chat.line_spacing": "Lime spasin", + "options.chat.links": "Web Links", + "options.chat.links.prompt": "Prompt on Linkz", + "options.chat.opacity": "Persuntage Of Ninja text", + "options.chat.scale": "Chata saiz", + "options.chat.title": "Chatz Opshuns...", + "options.chat.visibility": "Chatz", + "options.chat.visibility.full": "Showed", + "options.chat.visibility.hidden": "Hiddn", + "options.chat.visibility.system": "Cmds only", + "options.chat.width": "Waidnez", + "options.chatPreview": "luk at chat\n", + "options.chatPreview.confirm": "Wen screaming", + "options.chatPreview.live": "While Press Buttonz", + "options.chatPreview.tooltip.confirm": "If a servr usez Chat Previws: A chat preview iz only generatd wen attemptin 2 send a mesage dat does not hav a preview or is waitin 4 a preview. Sendin teh mesage requires confirmashun.", + "options.chatPreview.tooltip.live": "If a servr usez Chat Previews: Any modificashuns applied 2 ur chat mesagez by a servr will be dynamically sent 4 previewin as teh chat mesage iz typed.", + "options.chatPreview.tooltip.off": "Any midificashuns applied 2 ur chat mesagez by a servr will not be previewed an will be treated as insecure.", + "options.chunks": "%s pieces", + "options.clouds.fancy": "Fanceh", + "options.clouds.fast": "WEEEE!!!!", + "options.controls": "Controlz...", + "options.customizeTitle": "Custumiez Wurld Setinz", + "options.darkMojangStudiosBackgroundColor": "oone culur lugo", + "options.darkMojangStudiosBackgroundColor.tooltip": "Dis wil change da Mojang Studios loding skreen baccground kolor two blakk.", + "options.darknessEffectScale": "Sussy fog", + "options.darknessEffectScale.tooltip": "Cultrul hao much da Black Efek pulses wen a Blu shrek or Kat Yeller giv it 2 u.", + "options.difficulty": "hardnez", + "options.difficulty.easy": "Meh", + "options.difficulty.hard": "Double Cheezburger", + "options.difficulty.hardcore": "YOLO", + "options.difficulty.normal": "Regulr", + "options.difficulty.online": "Kittenz Zerverz Difcult", + "options.difficulty.peaceful": "Cake", + "options.directionalAudio": "where daz sound com frum", + "options.directionalAudio.off.tooltip": "Ztereo madness do be vibin", + "options.directionalAudio.on.tooltip": "Usez HRTF-based direcshunal audio 2 improve teh simulashuj ov 3D sound. Requires HRRR compatible audio hardware, and iz best experienced wif headphones.", + "options.discrete_mouse_scroll": "Dicrete Scrolin'", + "options.entityDistanceScaling": "Nenity distance", + "options.entityShadows": "Nenity Shddows", + "options.forceUnicodeFont": "FORS UNICAT FONT", + "options.fov": "FOV", + "options.fov.max": "CATNIP", + "options.fov.min": "Regulr", + "options.fovEffectScale": "No kitty-cat eye effect", + "options.fovEffectScale.tooltip": "Controls how much teh field ov view can change wif gameplay effects.", + "options.framerate": "%s mps (meows/s)", + "options.framerateLimit": "max mps", + "options.framerateLimit.max": "Omglimited", + "options.fullscreen": "Whole screne", + "options.fullscreen.current": "Currnt", + "options.fullscreen.resolution": "Fullscreen resolushun", + "options.fullscreen.unavailable": "Missin Ferradas", + "options.gamma": "shinies settin", + "options.gamma.default": "Nermal", + "options.gamma.max": "2 brite 4 me", + "options.gamma.min": "y so mudy", + "options.generic_value": "%s: %s", + "options.graphics": "Grafikz", + "options.graphics.fabulous": "Fabuliss!", + "options.graphics.fabulous.tooltip": "%s gwaphis usez zadars far doodling wethar, cottun candie and paticlez behind da fuzzy blobs aund slush-slush!\nPorthabal thewices aund 4Kat diwplayz may bee sevely imawted inm perwomans.", + "options.graphics.fancy": "Fanceh", + "options.graphics.fancy.tooltip": "Fansee grafiks baylanses performans aand qwlity four majoiti oof taxis.\nWeawher, cotton candi, aund bobs may nout apeeaar when hiding behwind thransluwant bwacks aund slosh-slosh.", + "options.graphics.fast": "WEEEE!!!!", + "options.graphics.fast.tooltip": "Spweed gwafics weduces da amoount oof seeable chum-chum and bum-bum.\nTwanspawancy ewfacts aren stanky forw loth of bwokz lwike lllleeeeaavveesssss.", + "options.graphics.warning.accept": "Hoopitie wiwout pillarz", + "options.graphics.warning.cancel": "Pwease letz me returnn", + "options.graphics.warning.message": "Graphikz thingy no supurt fer dis %s gwaphics popshon\n\nkat can igner dis but supurt no happen fer ur thingy if kat choze %s graphikz wowption.", + "options.graphics.warning.renderer": "Doodler thetecthed: [%s]", + "options.graphics.warning.title": "Graphikz thingy go bboom", + "options.graphics.warning.vendor": "Tha goodz stuf detec: [%s]", + "options.graphics.warning.version": "u haz oopneGL", + "options.guiScale": "gooey scalez", + "options.guiScale.auto": "liek magicz", + "options.hidden": "Hiddn", + "options.hideLightningFlashes": "Hied litening flashz (too scary)", + "options.hideLightningFlashes.tooltip": "Stopz laightnang flasherr from hurting ya eyez. Da bolts will still be vizible.", + "options.hideMatchedNames": "Hide macht naems", + "options.hideMatchedNames.tooltip": "udur katz can givez u presunts in werd wrappur.\nWif dis enabl: hidun katz vil be faund wif presunt sendur naems.", + "options.invertMouse": "esuoM trevnI", + "options.key.hold": "Prezz", + "options.key.toggle": "Togel", + "options.language": "Wat u re speek...", + "options.languageWarning": "Tranzlashuns cud not be 100%% akkurit", + "options.mainHand": "Maen hand", + "options.mainHand.left": "Left Paw", + "options.mainHand.right": "Rite Paw", + "options.mipmapLevels": "Mepmop lvls", + "options.modelPart.cape": "Flappy-thing", + "options.modelPart.hat": "Thing-On-Head", + "options.modelPart.jacket": "Jackett", + "options.modelPart.left_pants_leg": "Let Pantz Leg", + "options.modelPart.left_sleeve": "Left Slev", + "options.modelPart.right_pants_leg": "Right Pantz Leg", + "options.modelPart.right_sleeve": "Right Slev", + "options.mouseWheelSensitivity": "Scrawl Senzitivity", + "options.mouse_settings": "Mouz Settinz...", + "options.mouse_settings.title": "Mouz Settinz", + "options.multiplayer.title": "Utur kittehz setinz...", + "options.narrator": "Sp00knator", + "options.narrator.all": "Meowz Evrythin", + "options.narrator.chat": "Meowz Le Chat", + "options.narrator.notavailable": "Kitteh cant has", + "options.narrator.off": "naw", + "options.narrator.system": "Meowz sistem", + "options.off": "naw", + "options.off.composed": "%s: NAW", + "options.on": "yiss", + "options.on.composed": "%s: YISS", + "options.online": "Onlain kittnz...", + "options.online.title": "Onlin Optinz", + "options.onlyShowSecureChat": "Protektd chats only", + "options.onlyShowSecureChat.tooltip": "Only display mesagez frun other playrs dat can be verified 2 hav been sent by dat playr, an hav not been modified.", + "options.particles": "LITUL BITS", + "options.particles.all": "EvriTHiNg", + "options.particles.decreased": "Smallerz", + "options.particles.minimal": "Smallersist", + "options.percent_add_value": "%s: +%s%%", + "options.percent_value": "%s: %s%%", + "options.pixel_value": "%s: %spx", + "options.prioritizeChunkUpdates": "Chukn buildr", + "options.prioritizeChunkUpdates.byPlayer": "blocking but not like completely", + "options.prioritizeChunkUpdates.byPlayer.tooltip": "Sum actionz inzid a chunk wiwl remakd da chunk imediatly!! Dis incwudz blok placin & destwoyin.", + "options.prioritizeChunkUpdates.nearby": "One hundrd parcent bloccing", + "options.prioritizeChunkUpdates.nearby.tooltip": "Chuckns near bye is always compild IMEDIATLYy!!! Dis may mess wit gaem performace when blocks broken, destroyed, etc etc etc", + "options.prioritizeChunkUpdates.none": "threddit", + "options.prioritizeChunkUpdates.none.tooltip": "Neawby chunkz awre maekd in matchn thredz. Dis mai wesolt in bref cheezey vizion wen u brek blocz.", + "options.rawMouseInput": "Uncooked input", + "options.realmsNotifications": "Realms Notyficashuns", + "options.reducedDebugInfo": "Less debugz infoz", + "options.renderClouds": "Cottn Candi", + "options.renderDistance": "rendur far away thingy", + "options.resourcepack": "Resource Packz...", + "options.screenEffectScale": "Cat-mint effcts", + "options.screenEffectScale.tooltip": "Da strengt of nousea and Nether portal scrin cat mint effects.\nAt da lowr values, the nousea effct is replaced wit a grin ovrlay.", + "options.sensitivity": "Senzitivity", + "options.sensitivity.max": "WEEEEEEEE!!!", + "options.sensitivity.min": "*zzz*", + "options.showSubtitles": "Shew saund textz", + "options.simulationDistance": "Seamulation Distanz", + "options.skinCustomisation": "How ur skin look liek...", + "options.skinCustomisation.title": "How ur skin look liek", + "options.sounds": "Musik & Soundz...", + "options.sounds.title": "Musik & Sund Opshuns", + "options.title": "Opshuns", + "options.touchscreen": "Paw Pressing Power", + "options.video": "Grefix Setinz...", + "options.videoTitle": "Grefix setinz", + "options.viewBobbing": "Bouncey Hed", + "options.visible": "Shawn", + "options.vsync": "VSink", + "outOfMemory.message": "Minecraft has ran out inman.\n\nDis could be causd bai a bug in the game or by the JVM not being allokatd enough inman.\n\n2 prevent lvl corruption, da current game has quit. We've trid 2 free up enouf inman 2 let 2 go back 2 the main menyu and back to playin, but dis may not have workd.\n\nPls restart da game if u see dis msg again.", + "outOfMemory.title": "Memary noo ehough!", + "pack.available.title": "Avaylabl", + "pack.copyFailure": "Faild 2 copeh packz", + "pack.dropConfirm": "U wantz 2 add followin packz 2 Minceraft?", + "pack.dropInfo": "Dragz an dropz fylez in2 dis windw 2 add packz", + "pack.folderInfo": "(plaec visualz heer)", + "pack.incompatible": "LOLcatz cant uze dis to mak memes!", + "pack.incompatible.confirm.new": "Diz eyz wur maded 4 a new generashun ov kittehz an ur literbox mae lookz wierd.", + "pack.incompatible.confirm.old": "Diz eyes wur maded 4 eld r vershuns ov Minceraft an mae nut maek epik meemz.", + "pack.incompatible.confirm.title": "R u sur u wantz to lud dis new pair uf eyes?", + "pack.incompatible.new": "(Myade for a newerborn verzhun of Minceraftr)", + "pack.incompatible.old": "(Myade fur an elder verzhun of Minceraftr)", + "pack.nameAndSource": "%s (%s)", + "pack.openFolder": "Opn pac foldr", + "pack.selected.title": "Dis 1", + "pack.source.builtin": "bulded-in", + "pack.source.local": "lolcal", + "pack.source.server": "survr", + "pack.source.world": "world", + "parsing.bool.expected": "Expectd boolean", + "parsing.bool.invalid": "Invalid boolean, expectd true or false but findz %s", + "parsing.double.expected": "expectd double", + "parsing.double.invalid": "Invalid double %s", + "parsing.expected": "Expectd %s", + "parsing.float.expected": "Expectd float", + "parsing.float.invalid": "Invalid float %s", + "parsing.int.expected": "Expectd integr", + "parsing.int.invalid": "Invalid integr %s", + "parsing.long.expected": "Eggspected lounge", + "parsing.long.invalid": "Invalid lounge '%s'", + "parsing.quote.escape": "Invalid escape sequence \\%s in quotd strin", + "parsing.quote.expected.end": "Unclosd quotd strin", + "parsing.quote.expected.start": "Expectd quote 2 start strin", + "particle.notFound": "Unknewwn particle: %s", + "permissions.requires.entity": "An entwity is reqwayured tew run dis cumand heyre", + "permissions.requires.player": "A playur iz reqwiyured tew run dis cumand heyer", + "potion.potency.1": "II", + "potion.potency.2": "III", + "potion.potency.3": "IV", + "potion.potency.4": "V", + "potion.potency.5": "VI", + "potion.whenDrank": "When Applid:", + "potion.withAmplifier": "%s %s", + "potion.withDuration": "%s (%s)", + "predicate.unknown": "Idk whet predikate is dat: %s", + "realms.missing.module.error.text": "Realm culd no be opend rigt noew, plz try agin leter", + "realms.missing.snapshot.error.text": "realms is cuwantly not supprotd in snapshots", + "recipe.notFound": "Unknew recipi: %s", + "recipe.toast.description": "Chek ur resip beek", + "recipe.toast.title": "Nu Resipees Unlokt!", + "record.nowPlaying": "Naw plaing: %s", + "resourcePack.broken_assets": "BROKD ASSETZ DETECTED", + "resourcePack.load_fail": "Resourecpac failz @ relod", + "resourcePack.server.name": "Kitteh Specefik Resourcez", + "resourcePack.title": "Chooz Vizyualz", + "resourcePack.vanilla.description": "Teh uzual vizyual", + "resourcepack.downloading": "Duwnluzinz vizualz", + "resourcepack.progress": "Downloadin filez (%s MB)...", + "resourcepack.requesting": "Makin' requestz...", + "screenshot.failure": "coodent sayv scrienshot: %s", + "screenshot.success": "savd skreehnshot az %s", + "selectServer.add": "Ad Servr", + "selectServer.defaultName": "Minecraft Servr", + "selectServer.delete": "Deleet", + "selectServer.deleteButton": "Deleet", + "selectServer.deleteQuestion": "R u sur 2 remuv dis servr??", + "selectServer.deleteWarning": "'%s' wil b lozt for lotz of eternityz (longir den kitteh napz)", + "selectServer.direct": "GOIN TO SERVER......", + "selectServer.edit": "Edetit", + "selectServer.hiddenAddress": "(NO LOOKY)", + "selectServer.refresh": "Refursh", + "selectServer.select": "Plaey wif othr catz", + "selectServer.title": "Chooz Servr", + "selectWorld.access_failure": "Nu kan acsez levl", + "selectWorld.allowCommands": "K DO HAKS", + "selectWorld.allowCommands.info": "Cmds liek /geimoud or /ex pi", + "selectWorld.backupEraseCache": "Erais cachd deta", + "selectWorld.backupJoinConfirmButton": "saev stuffz n' lode", + "selectWorld.backupJoinSkipButton": "Cat go.", + "selectWorld.backupQuestion.customized": "Weird woldz are no lonjer suported", + "selectWorld.backupQuestion.downgrade": "Wurld downgradin iz not suported!", + "selectWorld.backupQuestion.experimental": "Wurld usin Experimental setinz is nu acceptablz", + "selectWorld.backupQuestion.snapshot": "Rlly want to lud dis litterbox?", + "selectWorld.backupWarning.customized": "Sowy, i dont doo custumizd world In dis tiep of minecraf. I can play world and everyting will be ok but new land will not be fancy and cusstumb no more. Plz forgive!", + "selectWorld.backupWarning.downgrade": "Dis wurld waz last playd in like version %s idk an ur usig %s, downgradin wurldz may corrupt or somethin and we cant guarantea if it will load n' work so maek backup plz if you still want two continue!", + "selectWorld.backupWarning.experimental": "Dis wurld uziz da expurrimentul settinz dat mabeh stahp workin sumtiem. It mite no wurk! Da spooky lizord liv here!", + "selectWorld.backupWarning.snapshot": "Dis wurld wuz last playd in vershun %s; u r on vershun %s. Srsly plz mak bakup in caes u experienec wurld curuptshuns!", + "selectWorld.bonusItems": "Bonuz Kat Box", + "selectWorld.cheats": "HAX", + "selectWorld.conversion": "IS OUTDATTED!", + "selectWorld.conversion.tooltip": "Dis wrld must open first in da super ultra old version (lyke 1.6.4) to be converted safe", + "selectWorld.create": "Maek new Wurld", + "selectWorld.createDemo": "Play new demu wurld", + "selectWorld.customizeType": "UR OWN WURLD SETNGS", + "selectWorld.dataPacks": "Nerdz stwuff", + "selectWorld.data_read": "Reeding wurld stuffz...", + "selectWorld.delete": "Deleet", + "selectWorld.deleteButton": "Deleet", + "selectWorld.deleteQuestion": "U SHUR U WANT TO DELET?!", + "selectWorld.deleteWarning": "'%s' wial beh lozt forevr (longir than kittehz napz)", + "selectWorld.delete_failure": "Nu can removz levl", + "selectWorld.edit": "Chaenj", + "selectWorld.edit.backup": "Meow a bakup", + "selectWorld.edit.backupCreated": "Baekt'up: %s", + "selectWorld.edit.backupFailed": "Bakupz faild", + "selectWorld.edit.backupFolder": "Owpen bakup foldr", + "selectWorld.edit.backupSize": "SizE: %s MB", + "selectWorld.edit.export_worldgen_settings": "Eckspurt wurld genaraishun settinz", + "selectWorld.edit.export_worldgen_settings.failure": "Expurrt iz no", + "selectWorld.edit.export_worldgen_settings.success": "Expurrted", + "selectWorld.edit.openFolder": "Open ze litter foldah", + "selectWorld.edit.optimize": "Optimaiz kitteh land", + "selectWorld.edit.resetIcon": "Reset ur iconz", + "selectWorld.edit.save": "Saev", + "selectWorld.edit.title": "Edidet Litterbox", + "selectWorld.enterName": "Wurld naem", + "selectWorld.enterSeed": "RANDOM NUMBER 4 WURLD GENRASUR", + "selectWorld.futureworld.error.text": "A kat died wile tryng 2 load 1 wurld fromm 1 footshure vershn. Dis waz 1 riskee operashn 2 begn wiz; srry your kat iz ded.", + "selectWorld.futureworld.error.title": "Tingz no workz!", + "selectWorld.gameMode": "Gaem moed", + "selectWorld.gameMode.adventure": "Catventure", + "selectWorld.gameMode.adventure.line1": "Saem az Survivl Moed, but bloxx caen't", + "selectWorld.gameMode.adventure.line2": "b addd r remvd", + "selectWorld.gameMode.creative": "HAX", + "selectWorld.gameMode.creative.line1": "Unlimitd resourcez, free flyin an", + "selectWorld.gameMode.creative.line2": "make da blukz go bye quick", + "selectWorld.gameMode.hardcore": "YOLO", + "selectWorld.gameMode.hardcore.line1": "Saem az Srvival Moed, lokkt at hardzt", + "selectWorld.gameMode.hardcore.line2": "difficulty, and u haz ony one lives (u ded 8 times alredu)", + "selectWorld.gameMode.spectator": "Spector", + "selectWorld.gameMode.spectator.line1": "U can looks but u cant touch lol", + "selectWorld.gameMode.survival": "SIRVIVL", + "selectWorld.gameMode.survival.line1": "Luk 4 resoorcz, kraeft, gaen", + "selectWorld.gameMode.survival.line2": "lvls, helth an hungrr", + "selectWorld.gameRules": "Lvl roolz", + "selectWorld.import_worldgen_settings": "Impurrt settinz", + "selectWorld.import_worldgen_settings.deprecated.question": "Sum tingz are nu longr wurk in da fushur, u surr u wana do dis?", + "selectWorld.import_worldgen_settings.deprecated.title": "WARNIN! Dis settinz iz usin veri anshien tingz", + "selectWorld.import_worldgen_settings.experimental.question": "Dis settinz iz expurrimentul, mabeh no wurk! U sur u wana do dis?", + "selectWorld.import_worldgen_settings.experimental.title": "WARNIN! Dis settinz iz usin expurrimentul tingz", + "selectWorld.import_worldgen_settings.failure": "Ehror impurrtin settinz", + "selectWorld.import_worldgen_settings.select_file": "Chooz opshun filez (.jason)", + "selectWorld.incompatible_series": "Maed in bad vershun", + "selectWorld.load_folder_access": "Oh noes! Da folder where da game worldz r savd can't b read or accessed!", + "selectWorld.loading_list": "Loadin world list", + "selectWorld.locked": "Lokd by anothr runnin instanz ov Minekraft", + "selectWorld.mapFeatures": "Maek structrs", + "selectWorld.mapFeatures.info": "strange peepl houses nd stuffz", + "selectWorld.mapType": "Wurld Typ", + "selectWorld.mapType.normal": "Meh", + "selectWorld.moreWorldOptions": "Moar Opshuns...", + "selectWorld.newWorld": "New Wurld", + "selectWorld.recreate": "Copy-paste", + "selectWorld.recreate.customized.text": "Customized wurlds r no longr supportd in dis vershun ov Minecraft. We can twee 2 recreaet it wif teh saem seed an propertiez, but any terraen kustemizaeshuns will b lost. wuz swee 4 teh inconvenienec!", + "selectWorld.recreate.customized.title": "You catn cuztomez worldz naw >:c , pls go bak", + "selectWorld.recreate.error.text": "Uh oh!!! Someting went rong when remakin world. Not my fallt tho.", + "selectWorld.recreate.error.title": "N errur okkuret!", + "selectWorld.resultFolder": "Wil b saevd in:", + "selectWorld.search": "surtch 4 werlds", + "selectWorld.seedInfo": "DUNNO ENTER 4 100%% RANDUM", + "selectWorld.select": "Pley slectd wurld", + "selectWorld.title": "Select wurld", + "selectWorld.tooltip.fromNewerVersion1": "Litterbox wuz svaed in eh nwer verzhun,", + "selectWorld.tooltip.fromNewerVersion2": "entreing dis litterbox culd caz prebblls!", + "selectWorld.tooltip.snapshot1": "Renimdr 2 not frget 2 bkuop da wordl", + "selectWorld.tooltip.snapshot2": "bifor u lowd it in dis snapshat.", + "selectWorld.unable_to_load": "Oh NOeS! Worldz DiD NOt LOaD!", + "selectWorld.version": "Vershun:", + "selectWorld.versionJoinButton": "lod aniwi", + "selectWorld.versionQuestion": "Rlly want to lud dis litterbox?", + "selectWorld.versionUnknown": "kat dosnt knoe", + "selectWorld.versionWarning": "Dis litterbox wuz last pleyed in verzhun '%s' and ludding it in dis verzhun culd make ur litterbox smell funny!", + "selectWorld.world": "Wurld", + "sign.edit": "Chaenj sein mesag", + "sleep.not_possible": "Neh sleeps can makez dark go away", + "sleep.players_sleeping": "%s/%s kats sleepin", + "sleep.skipping_night": "Sleepink thru dis nite", + "slot.unknown": "Cat doezn't know da eslot '%s'", + "soundCategory.ambient": "Saundz 4 nawt-haus kittehz", + "soundCategory.block": "Blukz", + "soundCategory.hostile": "bad thingz", + "soundCategory.master": "MOAR SOUND", + "soundCategory.music": "Musik", + "soundCategory.neutral": "nise thingz", + "soundCategory.player": "Catz", + "soundCategory.record": "Music Stashun/Beetbox", + "soundCategory.voice": "Voize/Spech", + "soundCategory.weather": "Wedar", + "spectatorMenu.close": "Cloze der menu", + "spectatorMenu.next_page": "De Page After Dis One", + "spectatorMenu.previous_page": "De OThER WAy", + "spectatorMenu.root.prompt": "Push any key 2 chooze a command and do it agen 2 use it.", + "spectatorMenu.team_teleport": "Movz fast 2 guy on ya teem", + "spectatorMenu.team_teleport.prompt": "Team 2 fast move 2", + "spectatorMenu.teleport": "Move to da player", + "spectatorMenu.teleport.prompt": "Choose da player yew want 2 move 2", + "stat.generalButton": "Generul", + "stat.itemsButton": "Itemz", + "stat.minecraft.animals_bred": "Animuulz made bbyz", + "stat.minecraft.aviate_one_cm": "Haw mach u fly", + "stat.minecraft.bell_ring": "belly wrung", + "stat.minecraft.boat_one_cm": "Linkth by water car", + "stat.minecraft.clean_armor": "Armur washd", + "stat.minecraft.clean_banner": "Bahnorz made kleen", + "stat.minecraft.clean_shulker_box": "Shulker Boxez Cleand", + "stat.minecraft.climb_one_cm": "Distince Climed", + "stat.minecraft.crouch_one_cm": "Distince Crouchd", + "stat.minecraft.damage_absorbed": "Dmg Sponged", + "stat.minecraft.damage_blocked_by_shield": "wat de shild sav u 4 pain", + "stat.minecraft.damage_dealt": "Fists Punched", + "stat.minecraft.damage_dealt_absorbed": "Dmg Delt (Sponged)", + "stat.minecraft.damage_dealt_resisted": "Dmg Delt (Shielded)", + "stat.minecraft.damage_resisted": "Dmg Shielded", + "stat.minecraft.damage_taken": "Damige Takin", + "stat.minecraft.deaths": "Numbr ov deaths", + "stat.minecraft.drop": "stuffs dropped", + "stat.minecraft.eat_cake_slice": "Piezes ov lie eatn", + "stat.minecraft.enchant_item": "Stuff madeh shineh", + "stat.minecraft.fall_one_cm": "Distince Fallun", + "stat.minecraft.fill_cauldron": "Rly big pots filld", + "stat.minecraft.fish_caught": "Cat fud caught", + "stat.minecraft.fly_one_cm": "Distince birdid\n", + "stat.minecraft.horse_one_cm": "Distance by Horseh", + "stat.minecraft.inspect_dispenser": "Dizpnzur intacshunz", + "stat.minecraft.inspect_dropper": "Drupper intacshunz", + "stat.minecraft.inspect_hopper": "Huperr intacshunz", + "stat.minecraft.interact_with_anvil": "Intacshunz wif Anvehl", + "stat.minecraft.interact_with_beacon": "Bacon intacshunz", + "stat.minecraft.interact_with_blast_furnace": "Interacshuns wif BlAsT FuRnAcE", + "stat.minecraft.interact_with_brewingstand": "Bubbleh intacshunz", + "stat.minecraft.interact_with_campfire": "Interacshuns wif Campfireh", + "stat.minecraft.interact_with_cartography_table": "Interacshuns wif cartogrophy table", + "stat.minecraft.interact_with_crafting_table": "Krafting Tabal intacshunz", + "stat.minecraft.interact_with_furnace": "Hot Stone Blok intacshunz", + "stat.minecraft.interact_with_grindstone": "Intacshunz wif Removezstone", + "stat.minecraft.interact_with_lectern": "Interacshuns wif Lectrn", + "stat.minecraft.interact_with_loom": "Interacshuns wif L\u00f6\u00f6m", + "stat.minecraft.interact_with_smithing_table": "interwachszions wif smif tabel", + "stat.minecraft.interact_with_smoker": "Interacshuns wif Za Smoker", + "stat.minecraft.interact_with_stonecutter": "Interacshuns wif shrpy movin thingy", + "stat.minecraft.jump": "Jumpz", + "stat.minecraft.junk_fished": "Junk Fyshd", + "stat.minecraft.leave_game": "RAGE quitted", + "stat.minecraft.minecart_one_cm": "Distince bi Minecat", + "stat.minecraft.mob_kills": "mowz killz", + "stat.minecraft.open_barrel": "Fish box opnd", + "stat.minecraft.open_chest": "Cat Boxez opnd", + "stat.minecraft.open_enderchest": "Endur Chestz opnd", + "stat.minecraft.open_shulker_box": "SHuLKeR BOxz opnd", + "stat.minecraft.pig_one_cm": "Distance by Piggeh", + "stat.minecraft.play_noteblock": "Nowht blohkz plaid", + "stat.minecraft.play_record": "zic dissc playd!!", + "stat.minecraft.play_time": "Tiem playd", + "stat.minecraft.player_kills": "Playr Kills", + "stat.minecraft.pot_flower": "Plantz potd", + "stat.minecraft.raid_trigger": "Raidz Tiggerd", + "stat.minecraft.raid_win": "Raidz Won", + "stat.minecraft.ring_bell": "belly wrung", + "stat.minecraft.sleep_in_bed": "Sleeper intacshunz", + "stat.minecraft.sneak_time": "snek tiem", + "stat.minecraft.sprint_one_cm": "Distince Sprintid", + "stat.minecraft.strider_one_cm": "Distance by laava walkr", + "stat.minecraft.swim_one_cm": "Diztanze in anty-kitteh lickwid", + "stat.minecraft.talked_to_villager": "Talkd tu Hoomanz", + "stat.minecraft.target_hit": "Tawgets Hitt", + "stat.minecraft.time_since_death": "time sins last rip", + "stat.minecraft.time_since_rest": "Sinz last time kitteh slep", + "stat.minecraft.total_world_time": "Tiem wif Wurld Opan", + "stat.minecraft.traded_with_villager": "Tradid wif hoomuns", + "stat.minecraft.treasure_fished": "Treasure Fishd", + "stat.minecraft.trigger_trapped_chest": "Rigged Cat Boxez triggrd", + "stat.minecraft.tune_noteblock": "Nowht blohkz made sund niz", + "stat.minecraft.use_cauldron": "Watr takn vrum rly big pots", + "stat.minecraft.walk_on_water_one_cm": "Distanse Welked on Wter", + "stat.minecraft.walk_one_cm": "Distince Walkd", + "stat.minecraft.walk_under_water_one_cm": "Distanse Welked uder Wter", + "stat.mobsButton": "Mahbs", + "stat_type.minecraft.broken": "Tims brokn", + "stat_type.minecraft.crafted": "Tiems Craftd", + "stat_type.minecraft.dropped": "Droppd", + "stat_type.minecraft.killed": "U KILLD %s %s", + "stat_type.minecraft.killed.none": "U HAS NEVR KILLD %s", + "stat_type.minecraft.killed_by": "%s killd u %s tiem(s)", + "stat_type.minecraft.killed_by.none": "U has never been killd by %s", + "stat_type.minecraft.mined": "Tiems Mind", + "stat_type.minecraft.picked_up": "Pikd up", + "stat_type.minecraft.used": "Tiems usd", + "stats.tooltip.type.statistic": "Catistic", + "structure_block.button.detect_size": "FINED", + "structure_block.button.load": "LOED", + "structure_block.button.save": "SAYV", + "structure_block.custom_data": "Castum Deta Teg Neim", + "structure_block.detect_size": "Detekt da siez and pozition:", + "structure_block.hover.corner": "Croner: %s", + "structure_block.hover.data": "Deta: %s", + "structure_block.hover.load": "Lood: %s", + "structure_block.hover.save": "Seiv: %s", + "structure_block.include_entities": "Inklud entitiz:", + "structure_block.integrity": "Stractur brokenes and random nambur", + "structure_block.integrity.integrity": "stractur brokenes", + "structure_block.integrity.seed": "stractur random nambur", + "structure_block.invalid_structure_name": "invlid scturur nam '%s'", + "structure_block.load_not_found": "Sretcur %s nott xist ", + "structure_block.load_prepare": "Structure %s posishun redi", + "structure_block.load_success": "Loudded stercur frum %s", + "structure_block.mode.corner": "Cornr", + "structure_block.mode.data": "Deta", + "structure_block.mode.load": "Lood", + "structure_block.mode.save": "Saev", + "structure_block.mode_info.corner": "Cernur Modz - Markz Lokatiun and Bignes", + "structure_block.mode_info.data": "Data moed - gaem logik markr", + "structure_block.mode_info.load": "Leud modz - Laod frum Feil", + "structure_block.mode_info.save": "Saiv mod - wrait to file", + "structure_block.position": "Wot pozishun tu put?", + "structure_block.position.x": "relativ pozishun x", + "structure_block.position.y": "relativ pozishun y", + "structure_block.position.z": "relativ pozishun z", + "structure_block.save_failure": "Cudnt saiv strecur %s", + "structure_block.save_success": "Strectyr saivd as %s", + "structure_block.show_air": "Shuw bleks w/ invis:", + "structure_block.show_boundingbox": "Shaw Cat Box:", + "structure_block.size": "Strecur Seiz", + "structure_block.size.x": "strecur seiz x", + "structure_block.size.y": "strecur seiz y", + "structure_block.size.z": "strecur seiz z", + "structure_block.size_failure": "Cudnt fined seiz, meik cernurs dat kan meow 2 eichotha", + "structure_block.size_success": "Seiz finded 4 %s", + "structure_block.structure_name": "Strecur Neym", + "subtitles.ambient.cave": "Spooky sound", + "subtitles.block.amethyst_block.chime": "Shiny purpel blok makez sound", + "subtitles.block.anvil.destroy": "Anvehl go bye", + "subtitles.block.anvil.land": "Anvehl landed", + "subtitles.block.anvil.use": "Anvehl usd", + "subtitles.block.barrel.close": "Fish box closez", + "subtitles.block.barrel.open": "Fish box opnz", + "subtitles.block.beacon.activate": "Bacon startz purrrng", + "subtitles.block.beacon.ambient": "Bacon purrzzz", + "subtitles.block.beacon.deactivate": "Bacon purzzzz no more", + "subtitles.block.beacon.power_select": "Bacon soopa powurzzz", + "subtitles.block.beehive.drip": "hony plops from bloc", + "subtitles.block.beehive.enter": "B aboard hive", + "subtitles.block.beehive.exit": "BEEZ GONE", + "subtitles.block.beehive.shear": "sherz crunch surfase", + "subtitles.block.beehive.work": "B mop yer deck", + "subtitles.block.bell.resonate": "Belly resonates", + "subtitles.block.bell.use": "Belly rings", + "subtitles.block.big_dripleaf.tilt_down": "fall thru plantt tildz doun", + "subtitles.block.big_dripleaf.tilt_up": "fall thru plantt tildz up", + "subtitles.block.blastfurnace.fire_crackle": "Veri hot box cracklz", + "subtitles.block.brewing_stand.brew": "Bubbleh bubblehz", + "subtitles.block.bubble_column.bubble_pop": "Bublz pop", + "subtitles.block.bubble_column.upwards_ambient": "Bublz flw", + "subtitles.block.bubble_column.upwards_inside": "POP POP Shwizoom", + "subtitles.block.bubble_column.whirlpool_ambient": "Bublz wirly", + "subtitles.block.bubble_column.whirlpool_inside": "Bublz ZOom", + "subtitles.block.button.click": "Bttn clicz", + "subtitles.block.cake.add_candle": "SqUiSh", + "subtitles.block.campfire.crackle": "Campfireh cracklez", + "subtitles.block.candle.crackle": "Land pikl cracklez", + "subtitles.block.chest.close": "Cat Box closez", + "subtitles.block.chest.locked": "no acces noob", + "subtitles.block.chest.open": "Cat Box opnz", + "subtitles.block.chorus_flower.death": "Purply-Whity Thing withrz", + "subtitles.block.chorus_flower.grow": "Purply-Whity Thing growz", + "subtitles.block.comparator.click": "Redstuff thingy clicz", + "subtitles.block.composter.empty": "taekd out compostr stuffs", + "subtitles.block.composter.fill": "stuffd compostr", + "subtitles.block.composter.ready": "compostr maeking new stuffs", + "subtitles.block.conduit.activate": "Strange box startz purrrrring", + "subtitles.block.conduit.ambient": "Strange box ba-boomzzz", + "subtitles.block.conduit.attack.target": "Strange box scratchs", + "subtitles.block.conduit.deactivate": "Strange box stopz purrng", + "subtitles.block.dispenser.dispense": "Dizpnzd itum", + "subtitles.block.dispenser.fail": "Dizpnzur faild", + "subtitles.block.door.toggle": "Dor creegz", + "subtitles.block.enchantment_table.use": "Kwel Tabel usd", + "subtitles.block.end_portal.spawn": "Finish portel opnz", + "subtitles.block.end_portal_frame.fill": "Teh evil eye klingz", + "subtitles.block.fence_gate.toggle": "Fenc Gaet creegz", + "subtitles.block.fire.ambient": "Fier cracklz", + "subtitles.block.fire.extinguish": "Fier ekztinquishd", + "subtitles.block.frogspawn.hatch": "mini frog apers", + "subtitles.block.furnace.fire_crackle": "Hot box cracklz", + "subtitles.block.generic.break": "Blok brokn", + "subtitles.block.generic.footsteps": "Futstapz", + "subtitles.block.generic.hit": "Blok brkin", + "subtitles.block.generic.place": "Blok plazd", + "subtitles.block.grindstone.use": "Removezstone usd", + "subtitles.block.growing_plant.crop": "Plahnt cropp'd", + "subtitles.block.honey_block.slide": "Slidin in da honi", + "subtitles.block.iron_trapdoor.close": "Trappy Irun Kitty Dor closez", + "subtitles.block.iron_trapdoor.open": "Trappy Irun Kitty Dor opnz", + "subtitles.block.lava.ambient": "hot sauce pubz", + "subtitles.block.lava.extinguish": "Hot sauce makes snaek sound", + "subtitles.block.lever.click": "Flipurr clicz", + "subtitles.block.note_block.note": "Nowht blohk plaiz", + "subtitles.block.piston.move": "Pushur muvez", + "subtitles.block.pointed_dripstone.drip_lava": "hot sauce fallz", + "subtitles.block.pointed_dripstone.drip_lava_into_cauldron": "hot sause fals intwo huge iron pot", + "subtitles.block.pointed_dripstone.drip_water": "Watr fols", + "subtitles.block.pointed_dripstone.drip_water_into_cauldron": "Woter dreepz int irony pot", + "subtitles.block.pointed_dripstone.land": "inverted sharp cave rok brakez", + "subtitles.block.portal.ambient": "Portl annoyz", + "subtitles.block.portal.travel": "Purrtl noiz iz smol", + "subtitles.block.portal.trigger": "[portl noiz intensifiez]", + "subtitles.block.pressure_plate.click": "Prseure Pleitz clicz", + "subtitles.block.pumpkin.carve": "Skizzors grave", + "subtitles.block.redstone_torch.burnout": "Burny stick fizzs", + "subtitles.block.respawn_anchor.ambient": "Portl annoyz", + "subtitles.block.respawn_anchor.charge": "respoon stuffzz lodded", + "subtitles.block.respawn_anchor.deplete": "rezpaw ankoor out o juicz", + "subtitles.block.respawn_anchor.set_spawn": "reezpaw fing set spown", + "subtitles.block.sculk.charge": "Kat thin bublz", + "subtitles.block.sculk.spread": "Kat thing spredz", + "subtitles.block.sculk_catalyst.bloom": "Weird blu Cat-alist spredz", + "subtitles.block.sculk_sensor.clicking": "Sculk detektor sart clikning", + "subtitles.block.sculk_sensor.clicking_stop": "Sculk detektor stop clikning", + "subtitles.block.sculk_shrieker.shriek": "Weird blue thing ahhhh", + "subtitles.block.shulker_box.close": "Shulker closez", + "subtitles.block.shulker_box.open": "Shulker opnz", + "subtitles.block.smithing_table.use": "Smissing Table usd", + "subtitles.block.smoker.smoke": "Za Smoker smoks", + "subtitles.block.sweet_berry_bush.pick_berries": "Beriez pop", + "subtitles.block.trapdoor.toggle": "Secret wuud dor creegz", + "subtitles.block.tripwire.attach": "trap criatud", + "subtitles.block.tripwire.click": "String clicz", + "subtitles.block.tripwire.detach": "trap destroid", + "subtitles.block.water.ambient": "Watr flohz", + "subtitles.enchant.thorns.hit": "Spikz spike", + "subtitles.entity.allay.ambient_with_item": "blu boi with wingz faindz", + "subtitles.entity.allay.ambient_without_item": "blu boi with wingz yearnz", + "subtitles.entity.allay.death": "Floating Budd di's", + "subtitles.entity.allay.hurt": "blu boi with wingz haz a bed taim", + "subtitles.entity.allay.item_given": "blu boi with wingz's \"AHHAHAHAHAHHAH\"", + "subtitles.entity.allay.item_taken": "blu boi goes brr......", + "subtitles.entity.allay.item_thrown": "blu boi with wingz thonkz u ar a bin", + "subtitles.entity.armor_stand.fall": "Sumthign fell", + "subtitles.entity.arrow.hit": "Errow hits", + "subtitles.entity.arrow.hit_player": "Kat hit", + "subtitles.entity.arrow.shoot": "Shutz feird", + "subtitles.entity.axolotl.attack": "KUTE PINK FISHH atakz", + "subtitles.entity.axolotl.death": "KUTE PINK FISHH ded :(", + "subtitles.entity.axolotl.hurt": "KUTE PINK FISHH hurtz", + "subtitles.entity.axolotl.idle_air": "KUTE PINK FISH cheerpz", + "subtitles.entity.axolotl.idle_water": "KUTE PINK FISH cheerpz", + "subtitles.entity.axolotl.splash": "KUTE PINK FISHH splashz", + "subtitles.entity.axolotl.swim": "KUTE PINK FISHH sweemz", + "subtitles.entity.bat.ambient": "Flyig rat criez", + "subtitles.entity.bat.death": "Batman ded", + "subtitles.entity.bat.hurt": "Batman hurz", + "subtitles.entity.bat.takeoff": "Batman flize awey", + "subtitles.entity.bee.ambient": "BEEZ MEIKS NOIZ!!", + "subtitles.entity.bee.death": "B ded", + "subtitles.entity.bee.hurt": "BEEZ OUCH", + "subtitles.entity.bee.loop": "BEEZ MEIKS NOIZ!!", + "subtitles.entity.bee.loop_aggressive": "BEEZ MAD!!", + "subtitles.entity.bee.pollinate": "BEEZ HAPPYY!!!!", + "subtitles.entity.bee.sting": "B attac", + "subtitles.entity.blaze.ambient": "Blayz breehtz", + "subtitles.entity.blaze.burn": "Fierman craklez", + "subtitles.entity.blaze.death": "Blayz ded", + "subtitles.entity.blaze.hurt": "Blayz hurz", + "subtitles.entity.blaze.shoot": "Blayz shooz", + "subtitles.entity.boat.paddle_land": "Watr car usd in land", + "subtitles.entity.boat.paddle_water": "Watr car splashez", + "subtitles.entity.cat.ambient": "Kitteh speekz", + "subtitles.entity.cat.beg_for_food": "KAT WANTZ", + "subtitles.entity.cat.death": "Kitteh ded", + "subtitles.entity.cat.eat": "Kitty cat noms", + "subtitles.entity.cat.hiss": "Kitty cat hizzs", + "subtitles.entity.cat.hurt": "Kitteh hurz", + "subtitles.entity.cat.purr": "Gime morrrrr", + "subtitles.entity.chicken.ambient": "Bawk Bawk!", + "subtitles.entity.chicken.death": "Bawk Bawk ded", + "subtitles.entity.chicken.egg": "Bawk Bawk plubz", + "subtitles.entity.chicken.hurt": "Bawk Bawk hurz", + "subtitles.entity.cod.death": "Cot ded", + "subtitles.entity.cod.flop": "Cot flopz", + "subtitles.entity.cod.hurt": "Cot hurtz", + "subtitles.entity.cow.ambient": "Milk-Maeker mooz", + "subtitles.entity.cow.death": "Milk-Maeker ded", + "subtitles.entity.cow.hurt": "Milk-Maeker hurz", + "subtitles.entity.cow.milk": "Milk-Maeker makez milk", + "subtitles.entity.creeper.death": "Creeper ded", + "subtitles.entity.creeper.hurt": "Creeper hurz", + "subtitles.entity.creeper.primed": "Creeper hizzs", + "subtitles.entity.dolphin.ambient": "doolfin cherpz", + "subtitles.entity.dolphin.ambient_water": "doolfin wislz", + "subtitles.entity.dolphin.attack": "doolfin attaks", + "subtitles.entity.dolphin.death": "doolfin ded", + "subtitles.entity.dolphin.eat": "doolfin eatz", + "subtitles.entity.dolphin.hurt": "doolfin hurtz", + "subtitles.entity.dolphin.jump": "doolfin jumpz", + "subtitles.entity.dolphin.play": "doolfin plaez", + "subtitles.entity.dolphin.splash": "doolfin splashz", + "subtitles.entity.dolphin.swim": "doolfin swimz", + "subtitles.entity.donkey.ambient": "Dunky he-hawz", + "subtitles.entity.donkey.angry": "Dunky neiz", + "subtitles.entity.donkey.chest": "Dunky box soundz", + "subtitles.entity.donkey.death": "Dunky ded", + "subtitles.entity.donkey.eat": "Donkey goes nom nom", + "subtitles.entity.donkey.hurt": "Dunky hurz", + "subtitles.entity.drowned.ambient": "watuur thing groans underwater", + "subtitles.entity.drowned.ambient_water": "watuur thing groans underwater", + "subtitles.entity.drowned.death": "watuur thing ded", + "subtitles.entity.drowned.hurt": "watuur thing huurtz", + "subtitles.entity.drowned.shoot": "watuur thing launches fork", + "subtitles.entity.drowned.step": "watuur thing walk", + "subtitles.entity.drowned.swim": "watuur thing bobs up and down", + "subtitles.entity.egg.throw": "Eg fliez", + "subtitles.entity.elder_guardian.ambient": "big lazur shark monz", + "subtitles.entity.elder_guardian.ambient_land": "big lazur shark flapz", + "subtitles.entity.elder_guardian.curse": "big lazur shark cursz", + "subtitles.entity.elder_guardian.death": "big lazur shark gets rekt", + "subtitles.entity.elder_guardian.flop": "big lazur shark flopz", + "subtitles.entity.elder_guardian.hurt": "big lazur shark hurz", + "subtitles.entity.ender_dragon.ambient": "Dwagon roarz", + "subtitles.entity.ender_dragon.death": "Dwagon ded", + "subtitles.entity.ender_dragon.flap": "Dwagon flapz", + "subtitles.entity.ender_dragon.growl": "Dwagon gwaulz", + "subtitles.entity.ender_dragon.hurt": "Dwagon hurz", + "subtitles.entity.ender_dragon.shoot": "Dwagon shooz", + "subtitles.entity.ender_eye.death": "teh evil eye fallz", + "subtitles.entity.ender_eye.launch": "Teh evil eye shooz", + "subtitles.entity.ender_pearl.throw": "Magic ball fliez", + "subtitles.entity.enderman.ambient": "Enderman scarz", + "subtitles.entity.enderman.death": "Enderman ded", + "subtitles.entity.enderman.hurt": "Enderman hurz", + "subtitles.entity.enderman.stare": "Enderman makez sum skary noisez", + "subtitles.entity.enderman.teleport": "Enderman warpz", + "subtitles.entity.endermite.ambient": "Endermite skutlz", + "subtitles.entity.endermite.death": "Endermite ded", + "subtitles.entity.endermite.hurt": "Endermite hurz", + "subtitles.entity.evoker.ambient": "ghust makr guy speeks", + "subtitles.entity.evoker.cast_spell": "ghust makr guy duz magic", + "subtitles.entity.evoker.celebrate": "Wizrd cheerz", + "subtitles.entity.evoker.death": "ghust makr guy gets rekt", + "subtitles.entity.evoker.hurt": "ghust makr guy hurz", + "subtitles.entity.evoker.prepare_attack": "Ghost makr guy preparz atak", + "subtitles.entity.evoker.prepare_summon": "Ghust makr guy preparez makin ghosts", + "subtitles.entity.evoker.prepare_wololo": "Ghust makr guy getz da magic redy", + "subtitles.entity.evoker_fangs.attack": "Bear trapz bite", + "subtitles.entity.experience_orb.pickup": "Experienz geind", + "subtitles.entity.firework_rocket.blast": "Fierwurk blastz", + "subtitles.entity.firework_rocket.launch": "Fierwurk launshz", + "subtitles.entity.firework_rocket.twinkle": "Fierwurk twinklz", + "subtitles.entity.fishing_bobber.retrieve": "Watuur toy cam bacc", + "subtitles.entity.fishing_bobber.splash": "Fishin boober splashez", + "subtitles.entity.fishing_bobber.throw": "flye fliez", + "subtitles.entity.fox.aggro": "Fuxe veri angri", + "subtitles.entity.fox.ambient": "Fuxe skveks", + "subtitles.entity.fox.bite": "Fuxe bites!", + "subtitles.entity.fox.death": "Fuxe ded", + "subtitles.entity.fox.eat": "Fuxe omnomnom's", + "subtitles.entity.fox.hurt": "Fuxe hurtz", + "subtitles.entity.fox.screech": "Fuxe criez LOUD", + "subtitles.entity.fox.sleep": "Fuxe zzz", + "subtitles.entity.fox.sniff": "Fuxe smel", + "subtitles.entity.fox.spit": "Fuxe spits", + "subtitles.entity.fox.teleport": "Fox becomz endrman", + "subtitles.entity.frog.ambient": "toad krocks", + "subtitles.entity.frog.death": "toad ded", + "subtitles.entity.frog.eat": "toad uze its tengue 2 eet", + "subtitles.entity.frog.hurt": "toad hurtz", + "subtitles.entity.frog.lay_spawn": "toad maeks eggz", + "subtitles.entity.frog.long_jump": "toad jumpin", + "subtitles.entity.generic.big_fall": "Sumthign fell", + "subtitles.entity.generic.burn": "fier!", + "subtitles.entity.generic.death": "RIP KAT", + "subtitles.entity.generic.drink": "Sippin", + "subtitles.entity.generic.eat": "NOM NOM NOM", + "subtitles.entity.generic.explode": "BOOM", + "subtitles.entity.generic.extinguish_fire": "u r no longer hot", + "subtitles.entity.generic.hurt": "Sumthign hurz", + "subtitles.entity.generic.small_fall": "smthinn tripz!!", + "subtitles.entity.generic.splash": "Spleshin", + "subtitles.entity.generic.swim": "Swimmin", + "subtitles.entity.ghast.ambient": "Ghast criez", + "subtitles.entity.ghast.death": "Ghast ded", + "subtitles.entity.ghast.hurt": "Ghast hurz", + "subtitles.entity.ghast.shoot": "Ghast shooz", + "subtitles.entity.glow_item_frame.add_item": "Brite item holdr filz", + "subtitles.entity.glow_item_frame.break": "Brite item holdr breakz", + "subtitles.entity.glow_item_frame.place": "Brite item holdr plazd", + "subtitles.entity.glow_item_frame.remove_item": "Brite item holdr getz empteed", + "subtitles.entity.glow_item_frame.rotate_item": "Brite item holdr clikz", + "subtitles.entity.glow_squid.ambient": "Shiny skwid sweemz", + "subtitles.entity.glow_squid.death": "F fur GLO skwid", + "subtitles.entity.glow_squid.hurt": "Shiny skwid iz in pain", + "subtitles.entity.glow_squid.squirt": "Glo skwid shootz writy liquid", + "subtitles.entity.goat.ambient": "monten shep bleetz", + "subtitles.entity.goat.death": "monten shep ded", + "subtitles.entity.goat.eat": "monten shep eetz", + "subtitles.entity.goat.horn_break": "monten shep's shap thing becom thingy", + "subtitles.entity.goat.hurt": "monten shep hurz", + "subtitles.entity.goat.long_jump": "monten shep jumpz", + "subtitles.entity.goat.milk": "monten shep gotz milkd", + "subtitles.entity.goat.prepare_ram": "monten shep STOMP", + "subtitles.entity.goat.ram_impact": "monten shep RAMZ", + "subtitles.entity.goat.screaming.ambient": "monten shep SCREM", + "subtitles.entity.goat.step": "monten shep stepz", + "subtitles.entity.guardian.ambient": "Shark-thingy monz", + "subtitles.entity.guardian.ambient_land": "Shark-thingy flapz", + "subtitles.entity.guardian.attack": "Shark-thingy shooz", + "subtitles.entity.guardian.death": "Shark-thingy ded", + "subtitles.entity.guardian.flop": "Shark-thingy flopz", + "subtitles.entity.guardian.hurt": "Shark-thingy hurz", + "subtitles.entity.hoglin.ambient": "Hoglin grwls", + "subtitles.entity.hoglin.angry": "Hoglin grwlz wit disapprevel", + "subtitles.entity.hoglin.attack": "Hoglin attaks", + "subtitles.entity.hoglin.converted_to_zombified": "Hoglin evolves to Zoglin", + "subtitles.entity.hoglin.death": "F fur Hoglin", + "subtitles.entity.hoglin.hurt": "Hoglin waz hurt", + "subtitles.entity.hoglin.retreat": "Hoglin dosnt want figt", + "subtitles.entity.hoglin.step": "Hoglin WALKZ", + "subtitles.entity.horse.ambient": "Hoers naiz", + "subtitles.entity.horse.angry": "Horse angreh", + "subtitles.entity.horse.armor": "Hors gets protecshuun", + "subtitles.entity.horse.breathe": "Hors breathz", + "subtitles.entity.horse.death": "Hoers ded", + "subtitles.entity.horse.eat": "Hoers eetz", + "subtitles.entity.horse.gallop": "Hoers galopz", + "subtitles.entity.horse.hurt": "Hoers hurz", + "subtitles.entity.horse.jump": "Hoers jumpz", + "subtitles.entity.horse.saddle": "saddel eqeeps", + "subtitles.entity.husk.ambient": "Warm hooman groonz", + "subtitles.entity.husk.converted_to_zombie": "Mummy ting turns into zombze", + "subtitles.entity.husk.death": "Warm hooman ded", + "subtitles.entity.husk.hurt": "Warm hooman hurz", + "subtitles.entity.illusioner.ambient": "Wiizardur moomoorz", + "subtitles.entity.illusioner.cast_spell": "Wiizardur duz magic", + "subtitles.entity.illusioner.death": "Wiizardur becomes dieded", + "subtitles.entity.illusioner.hurt": "Wiizardur ouches", + "subtitles.entity.illusioner.mirror_move": "Wiizardur maeks clonz", + "subtitles.entity.illusioner.prepare_blindness": "Wiizardur will make u no see", + "subtitles.entity.illusioner.prepare_mirror": "Illuzionr preparez miror imaig", + "subtitles.entity.iron_golem.attack": "Big irun guy attakz", + "subtitles.entity.iron_golem.damage": "Stel Guy brek", + "subtitles.entity.iron_golem.death": "Strange Irun Hooman ded", + "subtitles.entity.iron_golem.hurt": "Big irun guy hurz", + "subtitles.entity.iron_golem.repair": "Stel Guy fixd", + "subtitles.entity.item.break": "Itum breakz", + "subtitles.entity.item.pickup": "Itum plubz", + "subtitles.entity.item_frame.add_item": "Fraem filz", + "subtitles.entity.item_frame.break": "Fraem breakz", + "subtitles.entity.item_frame.place": "Fraem plazd", + "subtitles.entity.item_frame.remove_item": "Fraem emtyz", + "subtitles.entity.item_frame.rotate_item": "Fraem clicz", + "subtitles.entity.leash_knot.break": "Leesh not breakz", + "subtitles.entity.leash_knot.place": "Leesh not teid", + "subtitles.entity.lightning_bolt.impact": "Litin strikz", + "subtitles.entity.lightning_bolt.thunder": "O noez thundr", + "subtitles.entity.llama.ambient": "Camel sheep bleetz", + "subtitles.entity.llama.angry": "spitty boi blitz rajmod!!!", + "subtitles.entity.llama.chest": "Camel sheep box soundz", + "subtitles.entity.llama.death": "Camel sheep gets rekt", + "subtitles.entity.llama.eat": "Camel sheep eetz", + "subtitles.entity.llama.hurt": "Camel sheep hurz", + "subtitles.entity.llama.spit": "Camel sheep spitz", + "subtitles.entity.llama.step": "Camel sheep walkze", + "subtitles.entity.llama.swag": "Camel sheep getz embellishd", + "subtitles.entity.magma_cube.death": "Fier sliem ded", + "subtitles.entity.magma_cube.hurt": "Fier sliem hurz", + "subtitles.entity.magma_cube.squish": "eww magmy squishy", + "subtitles.entity.minecart.riding": "Minecat ROFLz", + "subtitles.entity.mooshroom.convert": "Mooshroom transfomz", + "subtitles.entity.mooshroom.eat": "Mooshroom eatz", + "subtitles.entity.mooshroom.milk": "Mooshroom makez milk", + "subtitles.entity.mooshroom.suspicious_milk": "Mooshroom makez milk werdly", + "subtitles.entity.mule.ambient": "Mual he-hawz", + "subtitles.entity.mule.angry": "Mewl maek mewl soundz", + "subtitles.entity.mule.chest": "Mual box soundz", + "subtitles.entity.mule.death": "Mual ded", + "subtitles.entity.mule.eat": "Mewl go nom nom", + "subtitles.entity.mule.hurt": "Mual hurz", + "subtitles.entity.painting.break": "Art on a paper breakz", + "subtitles.entity.painting.place": "Art on a paper plazd", + "subtitles.entity.panda.aggressive_ambient": "Green Stick Eatar huffs", + "subtitles.entity.panda.ambient": "Green Stick Eatar panz", + "subtitles.entity.panda.bite": "Green Stick Eatar bitez", + "subtitles.entity.panda.cant_breed": "Green Stick Eatar bleatz", + "subtitles.entity.panda.death": "Green Stick Eatar ded", + "subtitles.entity.panda.eat": "Green Stick Eatar eatin", + "subtitles.entity.panda.hurt": "Green Stick Eatar hurtz", + "subtitles.entity.panda.pre_sneeze": "Green Stick Eatars nose is ticklin'", + "subtitles.entity.panda.sneeze": "Green Stick Eatar goes ''ACHOO!''", + "subtitles.entity.panda.step": "Green Stick Eatar stepz", + "subtitles.entity.panda.worried_ambient": "Green Stick Eatar whimpars", + "subtitles.entity.parrot.ambient": "Rainbow Bird speeks", + "subtitles.entity.parrot.death": "Rainbow Bird ded", + "subtitles.entity.parrot.eats": "Rainbow Bird eeting", + "subtitles.entity.parrot.fly": "renbo berd flapz", + "subtitles.entity.parrot.hurts": "Rainbow Bird hurz", + "subtitles.entity.parrot.imitate.blaze": "Purrot breethz", + "subtitles.entity.parrot.imitate.creeper": "Rainbow Bird hiss", + "subtitles.entity.parrot.imitate.drowned": "purot gurglze", + "subtitles.entity.parrot.imitate.elder_guardian": "Patriot moans", + "subtitles.entity.parrot.imitate.ender_dragon": "Rainbow Bird roooring", + "subtitles.entity.parrot.imitate.endermite": "Purrot skutlz", + "subtitles.entity.parrot.imitate.evoker": "Purrot moomoorz", + "subtitles.entity.parrot.imitate.ghast": "Rainbow Bird kraing", + "subtitles.entity.parrot.imitate.guardian": "Patriot moans", + "subtitles.entity.parrot.imitate.hoglin": "Parrot anmgry soundz", + "subtitles.entity.parrot.imitate.husk": "Rainbow Bird groonz", + "subtitles.entity.parrot.imitate.illusioner": "Purrot moomoorz", + "subtitles.entity.parrot.imitate.magma_cube": "Purrot squishy", + "subtitles.entity.parrot.imitate.phantom": "Rainbow Bird Screechz", + "subtitles.entity.parrot.imitate.piglin": "Parrot noze", + "subtitles.entity.parrot.imitate.piglin_brute": "Parrot noze", + "subtitles.entity.parrot.imitate.pillager": "Purrot moomoorz", + "subtitles.entity.parrot.imitate.ravager": "purot doin' nut nut loudly", + "subtitles.entity.parrot.imitate.shulker": "Rainbow Bird lurkz", + "subtitles.entity.parrot.imitate.silverfish": "Rainbow Bird hiss", + "subtitles.entity.parrot.imitate.skeleton": "Rainbow Bird b spo0ky", + "subtitles.entity.parrot.imitate.slime": "Rainbow Bird squishehs", + "subtitles.entity.parrot.imitate.spider": "Rainbow Bird hiss", + "subtitles.entity.parrot.imitate.stray": "Rainbow Bird b spo0ky", + "subtitles.entity.parrot.imitate.vex": "purrot nut hapy", + "subtitles.entity.parrot.imitate.vindicator": "purot is charging atackzz", + "subtitles.entity.parrot.imitate.warden": "Pwrrwt whwnws", + "subtitles.entity.parrot.imitate.witch": "purot iz laufing", + "subtitles.entity.parrot.imitate.wither": "Purrot b angreh", + "subtitles.entity.parrot.imitate.wither_skeleton": "Rainbow Bird b spo0ky", + "subtitles.entity.parrot.imitate.zoglin": "Parrot anmgry soundz", + "subtitles.entity.parrot.imitate.zombie": "Rainbow Bird groonz", + "subtitles.entity.parrot.imitate.zombie_villager": "Rainbow Bird groonz", + "subtitles.entity.phantom.ambient": "creepy flyin ting screechz", + "subtitles.entity.phantom.bite": "creepy flyin ting bitez", + "subtitles.entity.phantom.death": "creepy flyin ting ded", + "subtitles.entity.phantom.flap": "creepy flyin ting flapz", + "subtitles.entity.phantom.hurt": "creepy flyin ting hurtz", + "subtitles.entity.phantom.swoop": "Fart0m swoops", + "subtitles.entity.pig.ambient": "Oinkey oinkz", + "subtitles.entity.pig.death": "Oinkey ded", + "subtitles.entity.pig.hurt": "Oinkey hurz", + "subtitles.entity.pig.saddle": "Saddle eqeeeps", + "subtitles.entity.piglin.admiring_item": "Piglin likz da STUFF", + "subtitles.entity.piglin.ambient": "Piglin doez da werd pig thing", + "subtitles.entity.piglin.angry": "Piglin doez da wird pig noiz wit passion", + "subtitles.entity.piglin.celebrate": "Piglin is happeh", + "subtitles.entity.piglin.converted_to_zombified": "Piglin is gren", + "subtitles.entity.piglin.death": "Piglin is ded f in chat", + "subtitles.entity.piglin.hurt": "Piglin waz hurt", + "subtitles.entity.piglin.jealous": "Piglin snoirz wit passion", + "subtitles.entity.piglin.retreat": "Piglin dosnt want figt", + "subtitles.entity.piglin.step": "Piglin WALKZ", + "subtitles.entity.piglin_brute.ambient": "Piglin Brut snorts", + "subtitles.entity.piglin_brute.angry": "Piglin doez da wird pig noiz wit passion", + "subtitles.entity.piglin_brute.converted_to_zombified": "Piglin Brut is convarted to gren", + "subtitles.entity.piglin_brute.death": "Piglin Brut daiz", + "subtitles.entity.piglin_brute.hurt": "Piglin Brut hurets", + "subtitles.entity.piglin_brute.step": "Piglin Brut stepz", + "subtitles.entity.pillager.ambient": "Pilagur mumblz", + "subtitles.entity.pillager.celebrate": "Pilagur cheerz", + "subtitles.entity.pillager.death": "Pilagur gets rekt", + "subtitles.entity.pillager.hurt": "Pilagur hurz", + "subtitles.entity.player.attack.crit": "A critical scratch!", + "subtitles.entity.player.attack.knockback": "Nockback scratch", + "subtitles.entity.player.attack.strong": "Powah scratch", + "subtitles.entity.player.attack.sweep": "Sweepeh scratch", + "subtitles.entity.player.attack.weak": "week scratch", + "subtitles.entity.player.burp": "Boorp", + "subtitles.entity.player.death": "Kat ded", + "subtitles.entity.player.freeze_hurt": "Kat iz veri kold now", + "subtitles.entity.player.hurt": "Kat hurz", + "subtitles.entity.player.hurt_drown": "kitteh cant swim!", + "subtitles.entity.player.hurt_on_fire": "Yoo fierz", + "subtitles.entity.player.levelup": "Kat dingz", + "subtitles.entity.polar_bear.ambient": "Wite beer groons", + "subtitles.entity.polar_bear.ambient_baby": "Wite Beer humz", + "subtitles.entity.polar_bear.death": "Wite Beer ded", + "subtitles.entity.polar_bear.hurt": "Wite beer hurz", + "subtitles.entity.polar_bear.warning": "Wite beer roarz", + "subtitles.entity.potion.splash": "Buttl smeshs", + "subtitles.entity.potion.throw": "Buttl thraun", + "subtitles.entity.puffer_fish.blow_out": "pufferfish deflatez", + "subtitles.entity.puffer_fish.blow_up": "pufferfish inflatez", + "subtitles.entity.puffer_fish.death": "pufferfish diez", + "subtitles.entity.puffer_fish.flop": "Pufferfish flops", + "subtitles.entity.puffer_fish.hurt": "pufferfish hurts", + "subtitles.entity.puffer_fish.sting": "pufferfish stings", + "subtitles.entity.rabbit.ambient": "Jumpin Foodz skweekz", + "subtitles.entity.rabbit.attack": "Jumpin Foodz atakz", + "subtitles.entity.rabbit.death": "Jumpin Foodz ded", + "subtitles.entity.rabbit.hurt": "Jumpin Foodz hurz", + "subtitles.entity.rabbit.jump": "Jumpin Foodz jumpz", + "subtitles.entity.ravager.ambient": "Rivagur sayz grrrr", + "subtitles.entity.ravager.attack": "Rivagur noms", + "subtitles.entity.ravager.celebrate": "Rivagur cheerz", + "subtitles.entity.ravager.death": "Rivagur be ded", + "subtitles.entity.ravager.hurt": "Rivagur owwie", + "subtitles.entity.ravager.roar": "Rivagur iz LOUD", + "subtitles.entity.ravager.step": "Rivagur hooves", + "subtitles.entity.ravager.stunned": "Rivagur slep", + "subtitles.entity.salmon.death": "salmon diez", + "subtitles.entity.salmon.flop": "salmon flops", + "subtitles.entity.salmon.hurt": "salmon hurts", + "subtitles.entity.sheep.ambient": "Baa Baa baahz", + "subtitles.entity.sheep.death": "Baa Baa ded", + "subtitles.entity.sheep.hurt": "Baa Baa hurz", + "subtitles.entity.shulker.ambient": "Shulker lurkz", + "subtitles.entity.shulker.close": "Shell Bux clusez", + "subtitles.entity.shulker.death": "Shulker diez", + "subtitles.entity.shulker.hurt": "Shulker hurz", + "subtitles.entity.shulker.open": "Shell Bux opanz", + "subtitles.entity.shulker.shoot": "Shulker shooz", + "subtitles.entity.shulker.teleport": "Shulker wrapz", + "subtitles.entity.shulker_bullet.hit": "Shulker ball makez boom", + "subtitles.entity.shulker_bullet.hurt": "Shulker shooty thingy brekz", + "subtitles.entity.silverfish.ambient": "Grae fish hizzs", + "subtitles.entity.silverfish.death": "Grae fish ded", + "subtitles.entity.silverfish.hurt": "Grae fish hurz", + "subtitles.entity.skeleton.ambient": "ooooo im spoooooooky", + "subtitles.entity.skeleton.converted_to_stray": "Spooke scury Skeletun getz cold n' frozn", + "subtitles.entity.skeleton.death": "Spooke scury Skeletun ded", + "subtitles.entity.skeleton.hurt": "Spooke scury Skeletun hurz", + "subtitles.entity.skeleton.shoot": "Spooke scury Skeletun shooz", + "subtitles.entity.skeleton_horse.ambient": "Skeletun hoers criez", + "subtitles.entity.skeleton_horse.death": "Skeletun hoers ded", + "subtitles.entity.skeleton_horse.hurt": "Skeletun hoers hurz", + "subtitles.entity.skeleton_horse.swim": "boni boi horz swizm in h0t sauc!", + "subtitles.entity.slime.attack": "Sliem atakz", + "subtitles.entity.slime.death": "Sliem ded", + "subtitles.entity.slime.hurt": "Sliem hurz", + "subtitles.entity.slime.squish": "ew slimy squishy", + "subtitles.entity.snow_golem.death": "Cold Watr Hooman diez", + "subtitles.entity.snow_golem.hurt": "Snowy Man hurtz", + "subtitles.entity.snowball.throw": "Cold wet fliez", + "subtitles.entity.spider.ambient": "Spidur hizzs", + "subtitles.entity.spider.death": "Spidur ded", + "subtitles.entity.spider.hurt": "Spidur hurz", + "subtitles.entity.squid.ambient": "Sqyd swimz", + "subtitles.entity.squid.death": "Sqyd ded", + "subtitles.entity.squid.hurt": "Sqyd hurz", + "subtitles.entity.squid.squirt": "Sqyd shooz inc", + "subtitles.entity.stray.ambient": "Frozen Skeletun spoooooooky", + "subtitles.entity.stray.death": "Frozen Skeletun ded", + "subtitles.entity.stray.hurt": "Frozen Skeletun hurz", + "subtitles.entity.strider.death": "laava walkr ded", + "subtitles.entity.strider.eat": "lava walkr nomz", + "subtitles.entity.strider.happy": "laava walkr hapi", + "subtitles.entity.strider.hurt": "laava walkr ouchi", + "subtitles.entity.strider.idle": "lava walkr chrpz", + "subtitles.entity.strider.retreat": "lava walkr fleez", + "subtitles.entity.tadpole.death": "kute smol toad ded :(", + "subtitles.entity.tadpole.flop": "kute smol toad jumpes", + "subtitles.entity.tadpole.hurt": "kute smol toad hurtz", + "subtitles.entity.tnt.primed": "Thatll maek BOOM", + "subtitles.entity.tropical_fish.death": "Trpicl fysh ded", + "subtitles.entity.tropical_fish.flop": "Trpicl fysh flopz", + "subtitles.entity.tropical_fish.hurt": "Trpicl fysh hrtz", + "subtitles.entity.turtle.ambient_land": "TortL chirpz", + "subtitles.entity.turtle.death": "TortL ded", + "subtitles.entity.turtle.death_baby": "Smol tortL ded", + "subtitles.entity.turtle.egg_break": "TortL sphere BREAK :(", + "subtitles.entity.turtle.egg_crack": "TortL ball crakz", + "subtitles.entity.turtle.egg_hatch": "TortL sphere openz", + "subtitles.entity.turtle.hurt": "TortL hurtz", + "subtitles.entity.turtle.hurt_baby": "Smol tortL hurtz", + "subtitles.entity.turtle.lay_egg": "TortL lies egg", + "subtitles.entity.turtle.shamble": "TortL do a litter", + "subtitles.entity.turtle.shamble_baby": "Smol tortL do a litter", + "subtitles.entity.turtle.swim": "TortL does yoohoo in watR", + "subtitles.entity.vex.ambient": "Ghosty thingy iz ghostin", + "subtitles.entity.vex.charge": "Ghosty thingy iz mad at u", + "subtitles.entity.vex.death": "ghosty thingy gets rekt", + "subtitles.entity.vex.hurt": "ghosty thingy hurz", + "subtitles.entity.villager.ambient": "Vilaagur mumblz", + "subtitles.entity.villager.celebrate": "Vilaagur cheerz", + "subtitles.entity.villager.death": "Vilaagur ded", + "subtitles.entity.villager.hurt": "Vilaagur hurz", + "subtitles.entity.villager.no": "Vilaagur nays", + "subtitles.entity.villager.trade": "Vilaagur tradez", + "subtitles.entity.villager.work_armorer": "Armorer workz", + "subtitles.entity.villager.work_butcher": "Butcher workz", + "subtitles.entity.villager.work_cartographer": "Cartographer workz", + "subtitles.entity.villager.work_cleric": "Cleric workz", + "subtitles.entity.villager.work_farmer": "Farmer workz", + "subtitles.entity.villager.work_fisherman": "Fisherman workz", + "subtitles.entity.villager.work_fletcher": "Fletcher workz", + "subtitles.entity.villager.work_leatherworker": "Leatherworker workss", + "subtitles.entity.villager.work_librarian": "Librarian workss", + "subtitles.entity.villager.work_mason": "Masun workss", + "subtitles.entity.villager.work_shepherd": "Sheephird workss", + "subtitles.entity.villager.work_toolsmith": "Toolsmif workss", + "subtitles.entity.villager.work_weaponsmith": "Weeponsmith workss", + "subtitles.entity.villager.yes": "Vilaagur nods", + "subtitles.entity.vindicator.ambient": "Bad Guy mumblz", + "subtitles.entity.vindicator.celebrate": "Bad Guy cheerz", + "subtitles.entity.vindicator.death": "Bad Guy gets rekt", + "subtitles.entity.vindicator.hurt": "Bad Guy hurz", + "subtitles.entity.wandering_trader.ambient": "Wubterng Truder mumblz", + "subtitles.entity.wandering_trader.death": "Wubterng Truder ded", + "subtitles.entity.wandering_trader.disappeared": "wubterng truder disapers", + "subtitles.entity.wandering_trader.drink_milk": "Wander tredr drinkin mylk", + "subtitles.entity.wandering_trader.drink_potion": "wubterng troder sip magik", + "subtitles.entity.wandering_trader.hurt": "Wubterng Truder hurz", + "subtitles.entity.wandering_trader.no": "Wubterng Truder nays", + "subtitles.entity.wandering_trader.reappeared": "Strnga troder apers", + "subtitles.entity.wandering_trader.trade": "Wubterng Truder tradez", + "subtitles.entity.wandering_trader.yes": "Wubterng Truder nods", + "subtitles.entity.warden.agitated": "Wwrdwn grwwns wngrwly", + "subtitles.entity.warden.ambient": "Blu shrek iz sad :(", + "subtitles.entity.warden.angry": "Blu shrek whant too kilz u", + "subtitles.entity.warden.attack_impact": "Blu shrek wont sumfin ded ;(", + "subtitles.entity.warden.death": "Blu shrek iz ded :)", + "subtitles.entity.warden.dig": "Blu shrek meakz a hol", + "subtitles.entity.warden.emerge": "Blu shrek tryngz 2 be a tree", + "subtitles.entity.warden.heartbeat": "Blu shrek demon-strat it iz alive", + "subtitles.entity.warden.hurt": "Blu shrek hurz", + "subtitles.entity.warden.listening": "Blu shrek filz sumtin", + "subtitles.entity.warden.listening_angry": "Blu shrek filz sumtin (and gos MAD!!!!!!111)", + "subtitles.entity.warden.nearby_close": "Blu shrek iz near u <:(", + "subtitles.entity.warden.nearby_closer": "Blu shrek maks addvancis", + "subtitles.entity.warden.nearby_closest": "Blu shrek iz mooving-", + "subtitles.entity.warden.roar": "Blu shrek fink iz big lowd fur kat", + "subtitles.entity.warden.sniff": "Blu shrek sniiiiiiiiiiiiiiiffz", + "subtitles.entity.warden.sonic_boom": "Kamehameha!", + "subtitles.entity.warden.sonic_charge": "Blu shrek iz keepin energy", + "subtitles.entity.warden.step": "Blu shrek tryngz 2 be Slender", + "subtitles.entity.warden.tendril_clicks": "wardufn tenzyl clik", + "subtitles.entity.witch.ambient": "Crazy Kitteh Ownr giglz", + "subtitles.entity.witch.celebrate": "Crazy Kitteh Ownr cheerz", + "subtitles.entity.witch.death": "Crazy Kitteh Ownr ded", + "subtitles.entity.witch.drink": "Crazy Kitteh Ownr drinkz", + "subtitles.entity.witch.hurt": "Crazy Kitteh Ownr hurz", + "subtitles.entity.witch.throw": "Crazy Kitteh Ownr drowz", + "subtitles.entity.wither.ambient": "Wither angrz", + "subtitles.entity.wither.death": "Wither ded", + "subtitles.entity.wither.hurt": "Wither hurz", + "subtitles.entity.wither.shoot": "Wither atakz", + "subtitles.entity.wither.spawn": "Wither relizd", + "subtitles.entity.wither_skeleton.ambient": "Spooke Wither Skeletun is spooooooky", + "subtitles.entity.wither_skeleton.death": "Spooke Wither Skeletun ded", + "subtitles.entity.wither_skeleton.hurt": "Spooke Wither Skeletun hurz", + "subtitles.entity.wolf.ambient": "Woof Woof panz", + "subtitles.entity.wolf.death": "Woof Woof ded", + "subtitles.entity.wolf.growl": "Woof Woof gwaulz", + "subtitles.entity.wolf.hurt": "Woof Woof hurz", + "subtitles.entity.wolf.shake": "Woof Woof shakez", + "subtitles.entity.zoglin.ambient": "Zoglin grrr", + "subtitles.entity.zoglin.angry": "Zoglin grrrrrr", + "subtitles.entity.zoglin.attack": "Zoglin scartchs", + "subtitles.entity.zoglin.death": "Zoglin nov ded", + "subtitles.entity.zoglin.hurt": "Zoglin ouchs", + "subtitles.entity.zoglin.step": "Zoglin wlkz", + "subtitles.entity.zombie.ambient": "Bad Hooman groonz", + "subtitles.entity.zombie.attack_wooden_door": "Kitteh dor iz attac!", + "subtitles.entity.zombie.break_wooden_door": "Kitteh dor iz breks!", + "subtitles.entity.zombie.converted_to_drowned": "Ded guy evolvez into de watuur tingy", + "subtitles.entity.zombie.death": "Bad Hooman ded", + "subtitles.entity.zombie.destroy_egg": "Tortl ec stumpt", + "subtitles.entity.zombie.hurt": "Bad Hooman hurz", + "subtitles.entity.zombie.infect": "Slow baddie infectz", + "subtitles.entity.zombie_horse.ambient": "Zombee hoers criez", + "subtitles.entity.zombie_horse.death": "Zombee hoers ded", + "subtitles.entity.zombie_horse.hurt": "Zombee hoers hurz", + "subtitles.entity.zombie_villager.ambient": "Unded Villaguur groonz", + "subtitles.entity.zombie_villager.converted": "Unded Villager Cryz", + "subtitles.entity.zombie_villager.cure": "Undead villager Sniffz", + "subtitles.entity.zombie_villager.death": "Unded Villaguur gets rekt", + "subtitles.entity.zombie_villager.hurt": "Unded Villaguur hurz", + "subtitles.entity.zombified_piglin.ambient": "Zombefyed Piglin grontz", + "subtitles.entity.zombified_piglin.angry": "Zombefyed Piglin grontz grrrr", + "subtitles.entity.zombified_piglin.death": "Zonbifid Piglin dyez", + "subtitles.entity.zombified_piglin.hurt": "Zumbefid Piglin hrtz", + "subtitles.event.raid.horn": "Ominous horn blares", + "subtitles.item.armor.equip": "girrs eqip", + "subtitles.item.armor.equip_chain": "jingly katsuit jinglez", + "subtitles.item.armor.equip_diamond": "shiny katsuit pings", + "subtitles.item.armor.equip_elytra": "FLYY tiny doin noiz", + "subtitles.item.armor.equip_gold": "shiny katsuit chinks", + "subtitles.item.armor.equip_iron": "cheap katsuit bangs", + "subtitles.item.armor.equip_leather": "katsuit ruztlez", + "subtitles.item.armor.equip_netherite": "Netherite armur meows", + "subtitles.item.armor.equip_turtle": "TortL Shell funks", + "subtitles.item.axe.scrape": "Akss scratchez", + "subtitles.item.axe.strip": "Akss streepz", + "subtitles.item.axe.wax_off": "Wakz off", + "subtitles.item.bone_meal.use": "Smashed Skeletun go prrrrr", + "subtitles.item.book.page_turn": "Paeg rustlez", + "subtitles.item.book.put": "Book thump", + "subtitles.item.bottle.empty": "no moar sippy", + "subtitles.item.bottle.fill": "Buttl filz", + "subtitles.item.bucket.empty": "Buket empteiz", + "subtitles.item.bucket.fill": "Buket filz", + "subtitles.item.bucket.fill_axolotl": "KUTE PINK FISHH pickd up", + "subtitles.item.bucket.fill_fish": "fishi got", + "subtitles.item.bucket.fill_tadpole": "Kut smol toad capturez", + "subtitles.item.bundle.drop_contents": "Budnl emptied naww catrzzz", + "subtitles.item.bundle.insert": "Itaem packd", + "subtitles.item.bundle.remove_one": "Itaem unpackd", + "subtitles.item.chorus_fruit.teleport": "Cat wrapz", + "subtitles.item.crop.plant": "Crop plantd", + "subtitles.item.crossbow.charge": "Crosbowz is getting redy", + "subtitles.item.crossbow.hit": "Errow hits", + "subtitles.item.crossbow.load": "Crosbowz be loadin'", + "subtitles.item.crossbow.shoot": "Crosbowz is firin'", + "subtitles.item.dye.use": "Colurer thing staanz", + "subtitles.item.firecharge.use": "Fierbal wushez", + "subtitles.item.flintandsteel.use": "Frint und steal clic", + "subtitles.item.glow_ink_sac.use": "Shiny ink sac does sploosh", + "subtitles.item.goat_horn.play": "monten shep's shap thingy becom catbox", + "subtitles.item.hoe.till": "Hoe tilz", + "subtitles.item.honey_bottle.drink": "kitteh stuffd", + "subtitles.item.honeycomb.wax_on": "Wakz on", + "subtitles.item.ink_sac.use": "Writy likwid does sploosh", + "subtitles.item.lodestone_compass.lock": "loserstone spinny thing lockd onto loserstone", + "subtitles.item.nether_wart.plant": "Crop plantd", + "subtitles.item.shears.shear": "shers clic", + "subtitles.item.shield.block": "sheild blocz", + "subtitles.item.shovel.flatten": "Shuvl flatnz", + "subtitles.item.spyglass.stop_using": "i cnt c u anymoar", + "subtitles.item.spyglass.use": "Now i can c u", + "subtitles.item.totem.use": "Totuem iz revivin u", + "subtitles.item.trident.hit": "Dinglehopper zticks", + "subtitles.item.trident.hit_ground": "Dinglehopper goez brr brr", + "subtitles.item.trident.return": "Dinglehopper come back to kitteh", + "subtitles.item.trident.riptide": "Dinglehopper zmmz", + "subtitles.item.trident.throw": "Dinglehopper clengz", + "subtitles.item.trident.thunder": "Dinglehopper thundr crackz", + "subtitles.particle.soul_escape": "cya sol", + "subtitles.ui.cartography_table.take_result": "Direcshun papeh drohn", + "subtitles.ui.loom.take_result": "Looom iz looomin", + "subtitles.ui.stonecutter.take_result": "Stun chopprs uzed", + "subtitles.weather.rain": "Rein fallz", + "team.collision.always": "4 evr", + "team.collision.never": "Nevr", + "team.collision.pushOtherTeams": "Push othr kities", + "team.collision.pushOwnTeam": "Push own kities", + "team.notFound": "Cat doezn't know da team '%s'", + "team.visibility.always": "4 evr", + "team.visibility.hideForOtherTeams": "Hid for othr kitty", + "team.visibility.hideForOwnTeam": "Hid for herd", + "team.visibility.never": "Nevr", + "title.32bit.deprecation": "BEEP BOOP 32-bit sistem detekted: dis mai prvent ya form playin in da future cuz 64-bit sistem will be REQUIRED!!", + "title.32bit.deprecation.realms": "Minecraft'll soon need da 64-bit sistem wich will prevnt ya from playin or usin Realms on dis devic. Yall need two manualy kancel any Realms subskripshin.", + "title.32bit.deprecation.realms.check": "Do not shw dis scren agin >:(", + "title.32bit.deprecation.realms.header": "32-bit sistm detektd", + "title.multiplayer.disabled": "Utur kittehz is dizabl, pwease chek ur Mekrosoft akowant setinz.", + "title.multiplayer.disabled.banned.permanent": "Ur akownt iz permanently suspended drum online pulay", + "title.multiplayer.disabled.banned.temporary": "Ur akownt iz temporarily suspended from online pulay", + "title.multiplayer.lan": "Multiplayr (LAL)", + "title.multiplayer.other": "NAT LONELEY (3rd-kitteh servurr)", + "title.multiplayer.realms": "Multiplayr (Reelms) k?", + "title.singleplayer": "Loneleh kitteh", + "translation.test.args": "%s %s", + "translation.test.complex": "Prefix, %s%2$s again %s and %1$s lastly %s and also %1$s again!", + "translation.test.escape": "%%s %%%s %%%%s %%%%%s", + "translation.test.invalid": "hi %", + "translation.test.invalid2": "hi %s", + "translation.test.none": "Hi, wurld!", + "translation.test.world": "world", + "tutorial.bundleInsert.description": "Rite clck t0 add itamz", + "tutorial.bundleInsert.title": "Use cat powch", + "tutorial.craft_planks.description": "The recipe buk thingy can halp", + "tutorial.craft_planks.title": "Mak wuddn plankz", + "tutorial.find_tree.description": "Beet it up 2 collecz w00d", + "tutorial.find_tree.title": "Find 1 scratchr", + "tutorial.look.description": "Uss ur rat 2 see da w0rld", + "tutorial.look.title": "See da wor1d", + "tutorial.move.description": "Jump wit %s", + "tutorial.move.title": "Expl0r wid %s, %s, %s, & %s", + "tutorial.open_inventory.description": "Prez %s", + "tutorial.open_inventory.title": "Opn ur stuffz containr", + "tutorial.punch_tree.description": "Prez %s @ lengthz", + "tutorial.punch_tree.title": "Demolish ur scratcher lul", + "tutorial.socialInteractions.description": "Pres %s 2 opun", + "tutorial.socialInteractions.title": "Soshul interacshuns" +} \ No newline at end of file diff --git a/modules/chat.js b/modules/chat.js new file mode 100644 index 0000000..8364011 --- /dev/null +++ b/modules/chat.js @@ -0,0 +1,134 @@ +const loadPrismarineChat = require('prismarine-chat') +const kaboomChatParser = require('../chat/kaboom') +const chipmunkmodChatParser = require('../chat/chipmunkmod') +const chipmunkmodblackilykatverChatParser = require('../chat/chipmunkmodBlackilyKatVer') +const lang = require('../lolus.json') + +function tryParse (json) { + try { + return JSON.parse(json) + } catch (error) { + return { text: '' } + } +} +//what was changed?? +function inject (bot) { + let ChatMessage + bot.on('registry_ready', registry => { + ChatMessage = loadPrismarineChat(registry) + }) + + bot.chatParsers = [kaboomChatParser, chipmunkmodChatParser, chipmunkmodblackilykatverChatParser] + + bot.on('packet.profileless_chat', packet => { + const message = tryParse(packet.message) + const sender = tryParse(packet.name) + + bot.emit('profileless_chat', { + message, + type: packet.type, + sender + }) + + bot.emit('message', message) + + tryParsingMessage(message, { senderName: sender, players: bot.players, getMessageAsPrismarine: bot.getMessageAsPrismarine }) + }) + // Ignores command set messages +//chat.type.text +//chat.type.announcement +//chat.type.emote + //packet.chatType_ + bot.on('packet.player_chat', packet => { + const unsigned = tryParse(packet.unsignedChatContent) + + bot.emit('player_chat', { plain: packet.plainMessage, unsigned, senderUuid: packet.senderUuid}) + + bot.emit('message', unsigned) + + tryParsingMessage(unsigned, { senderUuid: packet.senderUuid, players: bot.players, getMessageAsPrismarine: bot.getMessageAsPrismarine}) + // const message = tryParse(packet.content) + + // const msg = { + // translate: 'chat.type.announcement', + // "with": [ + //`${JSON.stringify(' ')}` + //] + // }; +//bot.on('message', message => { bot.command(`tellraw @a ${JSON.stringify(msg)}`)}) + }) + + bot.on('packet.system_chat', packet => { + const message = tryParse(packet.content) + + if (message.translate === 'advMode.setCommand.success') return // Ignores command set messages + + bot.emit('system_chat', { message, actionbar: packet.isActionBar }) + + if (packet.isActionBar) { + return + } + + bot.emit('message', message) + + tryParsingMessage(message, { players: bot.players, getMessageAsPrismarine: bot.getMessageAsPrismarine }) + }) + + function tryParsingMessage (message, data) { + let parsed + for (const parser of bot.chatParsers) { + parsed = parser(message, data) + if (parsed) break + } + + if (!parsed) return + bot.emit('parsed_message', parsed) + } + + bot.getMessageAsPrismarine = message => { + try { + if (ChatMessage !== undefined) { + return new ChatMessage(message) + } + } catch {} + + return undefined + } + + bot.chat = message => { + const acc = 0 + const bitset = Buffer.allocUnsafe(3) + + bitset[0] = acc & 0xFF + bitset[1] = (acc >> 8) & 0xFF + bitset[2] = (acc >> 16) & 0xFF + + bot._client.write('chat_message', { + message, + timestamp: BigInt(Date.now()), + salt: 0n, + offset: 0, + acknowledged: bitset + + }) + + } + + + bot.command = command => { + bot._client.write('chat_command', { + command, + timestamp: BigInt(Date.now()), + salt: 0n, + argumentSignatures: [], + signedPreview: false, + messageCount: 0, + acknowledged: Buffer.alloc(3), + previousMessages: [] + }) + } + + bot.tellraw = (message, selector = '@a') => bot.core.run('minecraft:tellraw @a ' + JSON.stringify(message)) // ? Should this be here? +} + +module.exports = inject diff --git a/modules/chat_command_handler.js b/modules/chat_command_handler.js new file mode 100644 index 0000000..55b59c6 --- /dev/null +++ b/modules/chat_command_handler.js @@ -0,0 +1,35 @@ +const CommandSource = require('../CommandModules/command_source') +const CommandError = require('../CommandModules/command_error') + +function inject (bot) { + bot.on('parsed_message', data => { + if (data.type !== 'minecraft:chat') return + + const plainMessage = bot.getMessageAsPrismarine(data.contents)?.toString() + if (!plainMessage.startsWith(bot.commandManager.prefix)) return + const command = plainMessage.substring(bot.commandManager.prefix.length) + + const source = new CommandSource(data.sender, { discord: false, console: false }, true) + source.sendFeedback = message => { + const prefix = { + translate: '[%s%s%s] \u203a ', + bold: false, + color: 'white', + with: [ + { color: 'dark_purple', text: 'FNF', bold:true }, + { color: 'aqua', text: 'Boyfriend', bold:true }, + { color: 'dark_red', text: 'Bot', bold:true}, + + { color: 'green', text: command.split(' ')[0] } + ] + } + + bot.tellraw(['', prefix, message]) + } + + bot.commandManager.executeString(source, command) + + }) +} + +module.exports = inject \ No newline at end of file diff --git a/modules/command_core.js b/modules/command_core.js new file mode 100644 index 0000000..acaec5d --- /dev/null +++ b/modules/command_core.js @@ -0,0 +1,75 @@ +function inject (bot, options) { + bot.core = { + // what you think im doing? look at line 17 + area: { + start: options.core?.area.start ?? { x: 0, y: 0, z: 0 }, + end: options.core?.area.end ?? { x: 15, y: 0, z: 15 } + }, + position: -1, + currentBlockRelative: { x: 0, y: 0, z: 0 }, + + refill () { + const pos = bot.core.position + const { start, end } = bot.core.area + + if (!pos) return + + bot.command(`fill ${pos.x + start.x} ${pos.y + start.y} ${pos.z + start.z} ${pos.x + end.x} ${pos.y + end.y} ${pos.z + end.z} repeating_command_block{CustomName: '{"text":"${bot.options.Core.customName}","color":"dark_red","clickEvent":{"action":"open_url","value":"${bot.options.Core.customName}"}}'} destroy`) + }, + + move (pos = bot.position) { + bot.core.position = { + x: Math.floor(pos.x / 16) * 16, + y: 0, + z: Math.floor(pos.z / 16) * 16 + } + bot.core.refill() + }, + + currentBlock () { + const relativePosition = bot.core.currentBlockRelative + const corePosition = bot.core.position + if (!corePosition) return -1 + return { x: relativePosition.x + corePosition.x, y: relativePosition.y + corePosition.y, z: relativePosition.z + corePosition.z } + }, + + incrementCurrentBlock () { + const relativePosition = bot.core.currentBlockRelative + const { start, end } = bot.core.area + + relativePosition.x++ + + if (relativePosition.x > end.x) { + relativePosition.x = start.x + relativePosition.z++ + } + + if (relativePosition.z > end.z) { + relativePosition.z = start.z + relativePosition.y++ + } + + if (relativePosition.y > end.y) { + relativePosition.x = start.x + relativePosition.y = start.y + relativePosition.z = start.z + } + }, + + run (command) { + const location = bot.core.currentBlock() + if (!location) return + + bot._client.write('update_command_block', { command, location, mode: 1, flags: 0b100 }) + + bot.core.incrementCurrentBlock() + } + } + + bot.on('move', () => { + bot.core.move(bot.position) + //setTimeout(() => bot.core.run('say hi'), 100) + }) +} + +module.exports = inject diff --git a/modules/command_loop_manager.js b/modules/command_loop_manager.js new file mode 100644 index 0000000..cd30080 --- /dev/null +++ b/modules/command_loop_manager.js @@ -0,0 +1,21 @@ +function inject (bot, options) { + bot.cloop = { + list: [""], + + add (command, interval) { + this.list.push({ timer: setInterval(() => bot.core.run(command), interval), command, interval }) + }, + + remove (index) { + clearInterval(this.list[index].timer) + }, + + clear () { + for (const cloop of this.list) clearInterval(cloop.timer) + + this.list = [""] + } + } +} + +module.exports = inject diff --git a/modules/command_manager.js b/modules/command_manager.js new file mode 100644 index 0000000..f3f9829 --- /dev/null +++ b/modules/command_manager.js @@ -0,0 +1,96 @@ +const fs = require('fs') +const path = require('path') +const CommandError = require('../CommandModules/command_error.js') + +function inject (bot, options) { + bot.commandManager = { + prefix: options.commands?.prefix ?? 'default', + commands: {}, + amogus: [], +//ohio + execute (source, commandName, args) { + const command = this.getCommand(commandName.toLowerCase()) +//Unknown command. Type "/help" for help + try { + if (!command || !command.execute) throw new CommandError({ translate: 'Unknown command %s. Type "~help" for help', with: [commandName]}) +//command.unknown.argument command.unknown.command + //command.context.here + let hash = 1 + let owner = 2 + if (command.consoleOnly && !source.sources.console) throw new CommandError({ translate: 'This command can only be executed via console', color: 'dark_red' }) + if (command.hash && args.length === 0 && source.hash) throw new CommandError({ translate: 'Please provide a hash', color: 'red' }) + if (command.owner && args.length === 0 && source.owner) throw new CommandError({ translate: 'Please provide a OwnerHash', color: 'dark_red' }) + if (command.hashOnly && source.hash) { + // debug + // console.log(`${args} args0 ${args[0]}`) //too sus + const hash = `${args[0]}` // this is undefined + console.log(hash) // input hash + console.log(bot.hash) // actual hash +//but look in hashing.js + if (hash !== bot.hash) throw new CommandError({ translate: 'Invalid hash', color: 'dark_red' }) // so true +//im guessing its smh in hashing.js + bot.updatehash + } else if (command.hashOnly && source.sources.discord) { + const event = source.discordMessageEvent +//message?.member?.displayName + const roles = event.member?.roles?.cache + bot.tellraw(`${roles}`) + const hasRole = roles.some(role => role.name === 'trusted') +console.debug(hasRole) + if (!hasRole) throw new CommandError({ translate: 'You are not trusted!' }) + }//source.discordMessageEvent.event.member.roles?.cache + /* + for (const filename of fs.readdirSync(path.join(__dirname, '../commands'))) { + try { + const command = require(path.join(__dirname, '../commands', filename)) + bot.commandManager.register(command) + } catch (error) { + console.error('Failed to load command', filename, ':', error) + } + */ + return command.execute({ bot, source, arguments: args }) + } catch (error) { + console.error(error)//const filename of fs.readdirSync(path.join(__dirname, '../commands' +//console.error('Failed to load command', filename, ':', error) + +if (error instanceof CommandError) source.sendError(error._message) + + else source.sendError({ text:String(error.stack), color:'red' }) + } + }, +// + executeString (source, command) { + const [commandName, ...args] = command.split(' ') + return this.execute(source, commandName, args) + }, + + register (command) { + this.commands[command.name] = command + }, + + getCommand (name) { + return this.commands[name] + }, + + getCommands () { + return Object.values(this.commands) + } + } +// +amogus = [] +for (const filename of fs.readdirSync(path.join(__dirname, '../commands'))) { + try { + const command = require(path.join(__dirname, '../commands', filename)) + bot.commandManager.register(command) + bot.commandManager.amogus.push(command) + } catch (error) { + console.error('Failed to load command', filename, ':', error) + } + if (process.env['anti-skid'] !== 'amogus is sus') { + console.log('just no') + process.exit(0) + } +} +} + +module.exports = inject diff --git a/modules/console.js b/modules/console.js new file mode 100644 index 0000000..1562d41 --- /dev/null +++ b/modules/console.js @@ -0,0 +1,53 @@ +const CommandSource = require('../CommandModules/command_source') +//const log = require('../logger') + +function inject (bot, options) { + + bot.console = { + readline: null, + + consoleServer: 'all', + + useReadlineInterface (rl) { + this.readline = rl + + rl.on('line', line => { + if (bot.options.host !== this.consoleServer && this.consoleServer !== 'all') return + + bot.commandManager.executeString(bot.console.source, line) + }) + + rl.on('close', () => { + this.readline = null + }) + + + const originalConsole = console + this.log = (...args) => { + rl.output.write('\x1b[2K\r') + originalConsole.log(args.toString()) + rl._refreshLine() + } + } + } + + bot.console.source = new CommandSource(null, { console: true, discord: false }); + bot.console.source.sendFeedback = message => { + const lang = require('../lolus.json') + const ansi = bot.getMessageAsPrismarine(message)?.toAnsi() + bot.console.log(ansi) + } + bot.on('message', message => { + const lang = require('../lolus.json')//idk Parker I can help + const ansi = bot.getMessageAsPrismarine(message)?.toAnsi() + const string = bot.getMessageAsPrismarine(message)?.toString() + + const now = new Date().toLocaleString("en-US",{timeZone:"America/CHICAGO"}) + //new Date().toLocaleString("en-US",{timeZone:"America/LOS_ANGELES"}) + bot.console.log(`[${now}] [${options.host}:${options.port}] ${ansi}`) +//`[${now}] [${options.host}${options.port !== 25565 ? `:${options.port}` : ''}] ${ansi}` + + // log(`[${now}] [${options.host}:${options.port}] ${string}`, true, false) + }) +} +module.exports = inject diff --git a/modules/discord.js b/modules/discord.js new file mode 100644 index 0000000..491e3c2 --- /dev/null +++ b/modules/discord.js @@ -0,0 +1,202 @@ +// TODO: Maybe move client creation elsewhere +const { escapeMarkdown } = require('../util/escapeMarkdown') +const { Client, GatewayIntentBits } = require('discord.js') +const { MessageContent, GuildMessages, Guilds } = GatewayIntentBits + +const CommandSource = require('../CommandModules/command_source') + +const client = new Client({ intents: [Guilds, GuildMessages, MessageContent] }) +const util = require('util') +client.login(process.env.discordtoken) + +function inject (bot, options) { + if (!options.discord?.channelId) { + bot.discord = { invite: options.discord?.invite } + return + } + + bot.discord = { + client, + channel: undefined, + invite: options.discord.invite || undefined, + commandPrefix: options.discord.commandPrefix + } + + client.on('ready', () => { + bot.discord.channel = client.channels.cache.get(options.discord.channelId) + + }) + + // I feel like this is a modified version of ChomeNS Bot's discord plugin (the js one ofc) lol - chayapak + + let discordQueue = '' // too lazy to make an array mabe + setInterval(async () => { + if (discordQueue === '') return + try { + await bot.discord.channel.send(discordQueue.substring(0, 2000)) + } catch (error) { + console.error(error) + } + //sus + discordQueue = '' + }, 1000) +//const ansi = bot.getMessageAsPrismarine(message).toAnsi(lang).replaceAll('``\`\`\u200b\ansi\n\`\`\u001b[9', '\u001b[3\n`\`\`') + /* bot.on('message', (message) => { + const cleanMessage = escapeMarkdown(message.toAnsi(), true) + const discordMsg = cleanMessage + .replaceAll('@', '@\u200b') + .replaceAll('http', 'http\u200b') + .replaceAll('\u001b[9', '\u001b[3') + + queue += '\n' + discordMsg + }) + */ + + function sendDiscordMessage (message) { + discordQueue += message + '\n' + } + + /* + const cleanMessage = escapeMarkdown(message.toAnsi(), true) + const discordMsg = cleanMessage + .replaceAll('@', '@\u200b') + .replaceAll('http', 'http\u200b') + .replaceAll('\u001b[9', '\u001b[3') + */ + function sendComponent (message) { + const lang = require('../lolus.json') + const ansi = bot.getMessageAsPrismarine(message).toAnsi().replaceAll('```\u001b[9```' + '```\u001b[3```') // I have a function to fix ansi :shrug: + + /* + would it be better to do + ``` + message1 + message2 + message3... + ``` + and not + ``` + message1 + ``` + ```` + message2 + ```` + ```` + message3... + ``` + */ + + + const now = new Date().toLocaleString("en-US",{timeZone:"America/CHICAGO"}) + try { + sendDiscordMessage('```ansi\n' + fixansi(ansi.replaceAll('\u200b`').substring(0, 1983)) + '\n```') + + } catch (e) { + //i was gonna try to get it to debug via console + console.error(`Error sending a message to Discord:\n${e.message}`) +//already tried ansi + }//send isnt defined + } // its still doing the ansi crap + //;/ +//wait a min it shows smh about unable to read properties of undefined (reading 'send') in the console or smh on startup +// its the messages it sending read lines 69 to 86 + // i see + bot.on('message', message => { + sendComponent(message) + }) + + function messageCreate (message) { + if (message.author.id === bot.discord.client.user.id) return + + if (message.channel.id !== bot.discord.channel.id) return + + if (message.content.startsWith(bot.discord.commandPrefix)) { // TODO: Don't hardcode this + const source = new CommandSource({ profile: { name: message?.member?.displayName } }, { discord: true, console: false }, false, message) + source.sendFeedback = message => { + sendComponent(message) + } + + bot.commandManager.executeString(source, message.content.substring(bot.discord.commandPrefix.length)) + return + } + + bot.tellraw({ + translate: '[%s] %s \u203a %s', + with: [ + { + translate: '%s%s%s %s', + bold:false, + with: [ + { + text: 'FNF', + bold: false, + color: 'dark_purple' + }, + { + text: 'Boyfriend', + bold: false, + color: 'aqua' + }, + { + text: 'Bot', + bold: false, + color: 'dark_red' + }, + + { + text: 'Discord', + bold: false, + color: 'blue' + } + ], + clickEvent: bot.discord.invite ? { action: 'open_url', value: bot.discord.invite } : undefined, + hoverEvent: { action: 'show_text', contents: 'Click to join the discord' } + }, + { text: message?.member?.displayName }, + message.content + ] + }) + } + client.on('messageCreate', messageCreate) +bot.on('error', (error) => { + console.log(error.stack) + sendDiscordMessage(`\`\`\`ansi\nDisconnected: ${util.inspect(error.stack)}\n\`\`\``) + + }) + + +} + /* bot.console.info( + `Disconnected from ${bot.server.host} (${event} event): ${util.inspect(reason)}` + ) + channel.send(`Disconnected: \`${util.inspect(reason)}\``) +*/ +function fixansi(message) { + const ansilist = { + "\x1B\[93m": "\x1B[33m", // Yellow + "\x1B\[96m": "\x1B[36m", // Blue + "\x1B\[94m": "\x1B[34m", // Discord Blue + "\x1B\[90m": "\x1B[30m", // Gray + "\x1B\[91m": "\x1B[31m", // Light Red + "\x1B\[95m": "\x1B\[35m", // Pink + "\x1B\[92m": "\x1B\[32m", // Green + "\x1B\[0m": "\x1B\[0m\x1B\[37m", // White + "\x1B\[97m": "\x1B\[0m\x1B\[37m", // White + }; + let i = message; + + for (const ansi in ansilist) { + if (ansilist.hasOwnProperty(ansi)) { + i = i.replace(new RegExp(escapeRegExpChars(ansi), 'g'), ansilist[ansi]); + + function escapeRegExpChars(text) { + return text.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } + } + } + + return i; +} + +// +module.exports = inject diff --git a/modules/hashing.js b/modules/hashing.js new file mode 100644 index 0000000..24d1fe7 --- /dev/null +++ b/modules/hashing.js @@ -0,0 +1,39 @@ +// * Not real hashing +const crypto = require('crypto') +const ownerkey = process.env['FNFBoyfriendBot_Owner_key'] +const key = process.env['FNFBoyfriendBot_key'] +function inject (bot) { + bot.hash = '' + bot.ownerhash = '' + bot.updatehashes = update + let hash + let owner + const interval = setInterval(() => { + hash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + key).digest('hex').substring(0, 16) + owner = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + ownerkey).digest('hex').substring(0, 16) + bot.hash = hash + bot.ownerhash = owner + }, 2000) + function update() { + hash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + key).digest('hex').substring(0, 16) + owner = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + ownerkey).digest('hex').substring(0, 16) + bot.hash = hash + bot.ownerhash = owner + } + //this should work right? + + // ok + bot.on('end', () => { + // clearInterval(interval) + }) + } +module.exports = inject +/* const interval = setInterval(() => { + const normalKey = process.env['chomensjs_key'] +const ownerHashKey = process.env['chomensjs_owner_key'] + bot.hash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + normalKey).digest('hex').substring(0, 16) + bot.ownerHash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + ownerHashKey).digest('hex').substring(0, 16) + }, 2000) + bot.on('end', () => { + clearInterval(interval) + */ \ No newline at end of file diff --git a/modules/player_list.js b/modules/player_list.js new file mode 100644 index 0000000..9aef729 --- /dev/null +++ b/modules/player_list.js @@ -0,0 +1,89 @@ +function inject (bot) { + bot.players = [] +//chayapak you mentally ok? + bot.on('packet.player_info', packet => { + const actions = [] + + if (packet.action & 0b000001) actions.push(addPlayer) + if (packet.action & 0b000010) actions.push(initializeChat) + if (packet.action & 0b000100) actions.push(updateGamemode) + if (packet.action & 0b001000) actions.push(updateListed) + if (packet.action & 0b010000) actions.push(updateLatency) + if (packet.action & 0b100000) actions.push(updateDisplayName) + + for (const entry of packet.data) { + for (const action of actions) { + action(entry) + } + } + }) + + /*bot.on('packet.player_remove', ({ players }) => { + for (const player of players) { + bot.players = bot.players.filter(entry => entry.uuid !== player) + + } + }) + */ + + function addPlayer (entry) { + bot.players = bot.players.filter(_entry => _entry.uuid !== entry.uuid) + bot.players.push({ + uuid: entry.uuid, + profile: { name: entry.player.name, properties: entry.player.properties }, + + chatSession: undefined, + gamemode: undefined, + listed: undefined, + latency: undefined, + displayName: undefined + }) + } + + function initializeChat (entry) { + // TODO: Handle chat sessions + } + + function updateGamemode (entry) { + const target = bot.players.find(_entry => _entry.uuid === entry.uuid) + if (!target) return + + target.gamemode = entry.gamemode + } + + function updateListed (entry) { + const target = bot.players.find(_entry => _entry.uuid === entry.uuid) + if (!target) return + + target.listed = entry.listed + } + + function updateLatency (entry) { + const target = bot.players.find(_entry => _entry.uuid === entry.uuid) + if (!target) return + + target.latency = entry.latency + } + + function updateDisplayName (entry) { + const target = bot.players.find(_entry => _entry.uuid === entry.uuid) + if (!target) return + + try { + target.displayName = JSON.parse(entry.displayName) + } catch { + // do nothing + } + } + + bot.on('end', () => (bot.players = [])) +} + +module.exports = inject +/*function addPlayer (player, packet) { + if (bot.players.getPlayer(player)) bot.emit('player_unvanished', player, packet) + else bot.emit('player_added', player, packet) + + bot.players.addPlayer(player) + } + */ \ No newline at end of file diff --git a/modules/position.js b/modules/position.js new file mode 100644 index 0000000..d447672 --- /dev/null +++ b/modules/position.js @@ -0,0 +1,19 @@ +function inject (bot) { + bot.position = -1 + + bot.on('packet.position', packet => { + bot.position = { + x: packet.flags & 1 ? (this.x + packet.x) : packet.x, + y: packet.flags & 2 ? (this.y + packet.y) : packet.y, + z: packet.flags & 4 ? (this.z + packet.z) : packet.z + }//this looks right? + + bot._client.write('teleport_confirm', { teleportId: packet.teleportId }) + + bot.emit('move') + }) + + bot.on('end', () => { bot.position = -1 }) +} + +module.exports = inject diff --git a/modules/reconnect.js b/modules/reconnect.js new file mode 100644 index 0000000..5fc26a0 --- /dev/null +++ b/modules/reconnect.js @@ -0,0 +1,17 @@ +const mc = require('minecraft-protocol') + +function reconnect (bot, options) { + bot.reconnectDelay = options.reconnectDelay ?? 5200 // Set from 1000 to 5200 - yfd + + bot.on('end', () => { + if (bot.reconnectDelay < 0) return + + setTimeout(() => { + bot._client = mc.createClient(options) + bot.emit('init_client', bot._client) + }, bot.reconnectDelay) + + }) +} + +module.exports = reconnect \ No newline at end of file diff --git a/modules/registry.js b/modules/registry.js new file mode 100644 index 0000000..17c9de4 --- /dev/null +++ b/modules/registry.js @@ -0,0 +1,11 @@ +const createRegistry = require('prismarine-registry') + +function inject (bot) { + bot.on('packet.login', packet => { + bot.registry = createRegistry(bot._client.version) + bot.registry.loadDimensionCodec(packet.dimensionCodec) + bot.emit('registry_ready', bot.registry) + }) +} + +module.exports = inject diff --git a/modules/selfcare.js b/modules/selfcare.js new file mode 100644 index 0000000..c87c4a9 --- /dev/null +++ b/modules/selfcare.js @@ -0,0 +1,97 @@ + +const util = require('util') + +const COMMANDSPY_ENABLED_MESSAGE = { text: 'Successfully enabled CommandSpy' } +const COMMANDSPY_DISABLED_MESSAGE = { text: 'Successfully disabled CommandSpy' } +//You now have the tag: &8[&bPrefix &4d~&8] +function inject (bot) { + let entityId + let gameMode + let permissionLevel = 2 +let muted = false + let commandSpyEnabled = false + let vanished = false + let prefix = false + let skin = false +/* if (data.toString().startsWith('You have been muted')) muted = true + if (data.toString() === 'You have been unmuted.') muted = false +*/ + //bot.on('message', (data) => { + bot.on('message', (message, data) => { + // Successfully removed your skin + const stringmessage = bot.getMessageAsPrismarine(message)?.toString() + if (stringmessage.startsWith('You have been muted')) muted = true + else if (stringmessage === "You have been unmuted.") muted = false + else if (util.isDeepStrictEqual(message, COMMANDSPY_ENABLED_MESSAGE)) commandSpyEnabled = true + else if (util.isDeepStrictEqual(message, COMMANDSPY_DISABLED_MESSAGE)) commandSpyEnabled = false + else if (stringmessage === `You now have the tag: &8[&bPrefix &4${bot.options.commands.prefix}&8]`) { + prefix = true + return + } + else if (stringmessage.startsWith("You now have the tag: ") || stringmessage === "You no longer have a tag") prefix = false + else if (stringmessage === `Successfully set your skin to Parker2991's`) { + skin = true + return + } + else if (stringmessage.startsWith("Successfully removed your skin") || stringmessage === "Successfully removed your skin") skin = false + if (message?.text !== '' || !Array.isArray(message.extra) || message.extra.length < 2 || !message.extra[0]?.text?.startsWith('Vanish for') || message.extra[0].color !== 'gold') return + + const suffix = message.extra[message.extra.length - 1] + + if (suffix?.color !== 'gold') return +//data.toString().startsWith + if (suffix.text?.endsWith(': enabled')) vanished = true + else if (suffix.text?.endsWith(': disabled')) vanished = false // Bruh what is this ohio code +// + + + }) + + bot.on('packet.entity_status', packet => { + if (packet.entityId !== entityId || packet.entityStatus < 24 || packet.entityStatus > 28) return + permissionLevel = packet.entityStatus - 24 + })// + //TO-DO create a array for nick, prefix, and mabe username in selfcare so that when it joins or has the nick/prefix changed it will change it back to the set nick and prefix in selfcare + + bot.on('packet.game_state_change', packet => { + if (packet.reason !== 3) return // Reason 3 = Change Game Mode + + gameMode = packet.gameMode + }) + + let timer + bot.on('packet.login', (packet) => { + entityId = packet.entityId + gameMode = packet.gameMode + + timer = setInterval(() => { + if (permissionLevel < 2) bot.command('op @s[type=player]') + else if (!commandSpyEnabled) bot.command('commandspy:commandspy on') + else if (!vanished) bot.command('essentials:vanish enable') + else if (muted) bot.core.run(`essentials:mute ${bot.uuid}`) + else if (!prefix) bot.command(`prefix &8[&bPrefix &4${bot.options.commands.prefix}&8]`) + else if (gameMode !== 1) bot.command('gamemode creative @s[type=player]') + else if (!skin) bot.command('skin Parker2991') + }, 500) + }) + + bot.on('end', () => { + if (timer) clearInterval(timer) + prefix = false + muted = false + commandSpyEnabled = false + vanished = false + skin = false + }) +} + +module.exports = inject +/*const buildstring = process.env['buildstring'] + bot.on('login', async () => { + console.log(`starting ${buildstring}`) +await bot.discord.channel.send(`Starting ${buildstring}`) + await sendChat('/prefix &8[&4Prefix ~ &8]') + await sendChat(buildstring) + await sendChat('Prefix ~') + }) +}*/ \ No newline at end of file diff --git a/modules/startup.js b/modules/startup.js new file mode 100644 index 0000000..322596a --- /dev/null +++ b/modules/startup.js @@ -0,0 +1,14 @@ +function inject (bot, context) { + + const buildstring = process.env['buildstring'] + const util = require('node:util') + const { EventEmitter } = require('events') +console.log(`Starting ${buildstring} .......`) +console.log(`Username: ${bot.options.username}`) +console.log(`Host: ${bot.options.host}:${bot.options.port}`) + console.log(`Minecraft java version: ${bot.options.version}`) + + +} + +module.exports = inject diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..ac28577 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,6866 @@ +{ + "name": "FNFBoyfriendBot-V40", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "@npmcli/arborist": "^7.2.0", + "@npmcli/metavuln-calculator": "^7.0.0", + "@tonejs/midi": "^2.0.28", + "@vitalets/google-translate-api": "^9.2.0", + "axios": "^1.5.1", + "chromium": "^3.0.3", + "color-convert": "^2.0.1", + "cowsay2": "^2.0.4", + "discord.js": "^14.11.0", + "dotenv": "^16.3.1", + "https": "^1.0.0", + "isolated-vm": "^4.6.0", + "minecraft-data": "^3.48.0", + "minecraft-protocol": "^1.44.0", + "minecraft-protocol-forge": "^1.0.0", + "mineflayer": "^4.14.0", + "mineflayer-cmd": "^1.1.3", + "moment-timezone": "^0.5.43", + "net": "^1.0.2", + "node_characterai": "^1.1.3", + "node_characterai_edited": "^1.1.5", + "node-weatherunderground": "^1.2.0", + "openweather-api-node": "^3.1.2", + "prismarine-chat": "^1.9.1", + "prismarine-nbt": "^2.2.1", + "prismarine-registry": "^1.7.0", + "randomstring": "^1.3.0", + "readline": "^1.3.0", + "sharp": "^0.32.6", + "urban-dictionary": "^3.0.2", + "uuid-1345": "^1.0.2", + "uuid-by-string": "^4.0.0", + "vec3": "^0.1.8", + "vm2": "^3.9.19", + "vm2-fixed": "^0.0.1", + "weather-js": "^2.0.0", + "wikipedia": "^2.1.1", + "wunderground-api": "^1.1.4", + "yo-mamma": "^1.3.0", + "zlib": "^1.0.5" + } + }, + "node_modules/@azure/msal-common": { + "version": "14.3.0", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-14.3.0.tgz", + "integrity": "sha512-nKwhWW7QbiziXG8lcebCqbyxiuJAdBik7SBu3vPdJJ+rUr8M2uigAIi5OY7FwddRahlYzLMGG8U1oMeEOulNqQ==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@azure/msal-node": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-2.4.0.tgz", + "integrity": "sha512-Le2UhUs+RhEoEQ+/BZxqrDw74yq1jlqUeovo43IE4clHEbtWaX+KdUFrdWxLe4RQemA4jPEZwBiODvKhbOxafg==", + "dependencies": { + "@azure/msal-common": "14.3.0", + "jsonwebtoken": "^9.0.0", + "uuid": "^8.3.0" + }, + "engines": { + "node": "18 || 20" + } + }, + "node_modules/@azure/msal-node/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "dependencies": { + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@discordjs/builders": { + "version": "1.6.5", + "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.6.5.tgz", + "integrity": "sha512-SdweyCs/+mHj+PNhGLLle7RrRFX9ZAhzynHahMCLqp5Zeq7np7XC6/mgzHc79QoVlQ1zZtOkTTiJpOZu5V8Ufg==", + "dependencies": { + "@discordjs/formatters": "^0.3.2", + "@discordjs/util": "^1.0.1", + "@sapphire/shapeshift": "^3.9.2", + "discord-api-types": "0.37.50", + "fast-deep-equal": "^3.1.3", + "ts-mixer": "^6.0.3", + "tslib": "^2.6.1" + }, + "engines": { + "node": ">=16.11.0" + } + }, + "node_modules/@discordjs/collection": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-1.5.3.tgz", + "integrity": "sha512-SVb428OMd3WO1paV3rm6tSjM4wC+Kecaa1EUGX7vc6/fddvw/6lg90z4QtCqm21zvVe92vMMDt9+DkIvjXImQQ==", + "engines": { + "node": ">=16.11.0" + } + }, + "node_modules/@discordjs/formatters": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@discordjs/formatters/-/formatters-0.3.2.tgz", + "integrity": "sha512-lE++JZK8LSSDRM5nLjhuvWhGuKiXqu+JZ/DsOR89DVVia3z9fdCJVcHF2W/1Zxgq0re7kCzmAJlCMMX3tetKpA==", + "dependencies": { + "discord-api-types": "0.37.50" + }, + "engines": { + "node": ">=16.11.0" + } + }, + "node_modules/@discordjs/rest": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@discordjs/rest/-/rest-2.0.1.tgz", + "integrity": "sha512-/eWAdDRvwX/rIE2tuQUmKaxmWeHmGealttIzGzlYfI4+a7y9b6ZoMp8BG/jaohs8D8iEnCNYaZiOFLVFLQb8Zg==", + "dependencies": { + "@discordjs/collection": "^1.5.3", + "@discordjs/util": "^1.0.1", + "@sapphire/async-queue": "^1.5.0", + "@sapphire/snowflake": "^3.5.1", + "@vladfrangu/async_event_emitter": "^2.2.2", + "discord-api-types": "0.37.50", + "magic-bytes.js": "^1.0.15", + "tslib": "^2.6.1", + "undici": "5.22.1" + }, + "engines": { + "node": ">=16.11.0" + } + }, + "node_modules/@discordjs/util": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@discordjs/util/-/util-1.0.1.tgz", + "integrity": "sha512-d0N2yCxB8r4bn00/hvFZwM7goDcUhtViC5un4hPj73Ba4yrChLSJD8fy7Ps5jpTLg1fE9n4K0xBLc1y9WGwSsA==", + "engines": { + "node": ">=16.11.0" + } + }, + "node_modules/@discordjs/ws": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@discordjs/ws/-/ws-1.0.1.tgz", + "integrity": "sha512-avvAolBqN3yrSvdBPcJ/0j2g42ABzrv3PEL76e3YTp2WYMGH7cuspkjfSyNWaqYl1J+669dlLp+YFMxSVQyS5g==", + "dependencies": { + "@discordjs/collection": "^1.5.3", + "@discordjs/rest": "^2.0.1", + "@discordjs/util": "^1.0.1", + "@sapphire/async-queue": "^1.5.0", + "@types/ws": "^8.5.5", + "@vladfrangu/async_event_emitter": "^2.2.2", + "discord-api-types": "0.37.50", + "tslib": "^2.6.1", + "ws": "^8.13.0" + }, + "engines": { + "node": ">=16.11.0" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/string-locale-compare": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz", + "integrity": "sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==" + }, + "node_modules/@jimp/bmp": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.22.10.tgz", + "integrity": "sha512-1UXRl1Nw1KptZ1r0ANqtXOst9vGH51dq7keVKQzyyTO2lz4dOaezS9StuSTNh+RmiHg/SVPaFRpPfB0S/ln4Kg==", + "dependencies": { + "@jimp/utils": "^0.22.10", + "bmp-js": "^0.1.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/core": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/core/-/core-0.22.10.tgz", + "integrity": "sha512-ZKyrehVy6wu1PnBXIUpn/fXmyMRQiVSbvHDubgXz4bfTOao3GiOurKHjByutQIgozuAN6ZHWiSge1dKA+dex3w==", + "dependencies": { + "@jimp/utils": "^0.22.10", + "any-base": "^1.1.0", + "buffer": "^5.2.0", + "exif-parser": "^0.1.12", + "file-type": "^16.5.4", + "isomorphic-fetch": "^3.0.0", + "pixelmatch": "^4.0.2", + "tinycolor2": "^1.6.0" + } + }, + "node_modules/@jimp/custom": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/custom/-/custom-0.22.10.tgz", + "integrity": "sha512-sPZkUYe1hu0iIgNisjizxPJqq2vaaKvkCkPoXq2U6UV3ZA1si/WVdrg25da3IcGIEV+83AoHgM8TvqlLgrCJsg==", + "dependencies": { + "@jimp/core": "^0.22.10" + } + }, + "node_modules/@jimp/gif": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/gif/-/gif-0.22.10.tgz", + "integrity": "sha512-yEX2dSpamvkSx1PPDWGnKeWDrBz0vrCKjVG/cn4Zr68MRRT75tbZIeOrBa+RiUpY3ho5ix7d36LkYvt3qfUIhQ==", + "dependencies": { + "@jimp/utils": "^0.22.10", + "gifwrap": "^0.10.1", + "omggif": "^1.0.9" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/jpeg": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.22.10.tgz", + "integrity": "sha512-6bu98pAcVN4DY2oiDLC4TOgieX/lZrLd1tombWZOFCN5PBmqaHQxm7IUmT+Wj4faEvh8QSHgVLSA+2JQQRJWVA==", + "dependencies": { + "@jimp/utils": "^0.22.10", + "jpeg-js": "^0.4.4" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-blit": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-0.22.10.tgz", + "integrity": "sha512-6EI8Sl+mxYHEIy6Yteh6eknD+EZguKpNdr3sCKxNezmLR0+vK99vHcllo6uGSjXXiwtwS67Xqxn8SsoatL+UJQ==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-blur": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-0.22.10.tgz", + "integrity": "sha512-4XRTWuPVdMXJeclJMisXPGizeHtTryVaVV5HnuQXpKqIZtzXReCCpNGH8q/i0kBQOQMXhGWS3mpqOEwtpPePKw==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-circle": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-circle/-/plugin-circle-0.22.10.tgz", + "integrity": "sha512-mhcwTO1ywRxiCgtLGge6tDDIDPlX6qkI3CY+BjgGG/XhVHccCddXgOGLdlf+5OuKIEF2Nqs0V01LQEQIJFTmEw==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-color": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-0.22.10.tgz", + "integrity": "sha512-e4t3L7Kedd96E0x1XjsTM6NcgulKUU66HdFTao7Tc9FYJRFSlttARZ/C6LEryGDm/i69R6bJEpo7BkNz0YL55Q==", + "dependencies": { + "@jimp/utils": "^0.22.10", + "tinycolor2": "^1.6.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-contain": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-0.22.10.tgz", + "integrity": "sha512-eP8KrzctuEoqibQAxi9WhbnoRosydhiwg+IYya3dKuKDBTrD9UHt+ERlPQ/lTNWHzV/l4S1ntV3r9s9saJgsXA==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blit": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5", + "@jimp/plugin-scale": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-cover": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-0.22.10.tgz", + "integrity": "sha512-kJCwL5T1igfa0InCfkE7bBeqg26m46aoRt10ug+rvm11P6RrvRMGrgINFyIKB+mnB7CiyBN/MOula1CvLhSInQ==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-crop": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5", + "@jimp/plugin-scale": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-crop": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-0.22.10.tgz", + "integrity": "sha512-BOZ+YGaZlhU7c5ye65RxikicXH0Ki0It6/XHISvipR5WZrfjLjL2Ke20G+AGnwBQc76gKenVcMXVUCnEjtZV+Q==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-displace": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-0.22.10.tgz", + "integrity": "sha512-llNiWWMTKISDXt5+cXI0GaFmZWAjlT+4fFLYf4eXquuL/9wZoQsEBhv2GdGd48mkiS8jZq1Nnb2Q4ehEPTvrzw==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-dither": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-0.22.10.tgz", + "integrity": "sha512-05WLmeV5M+P/0FS+bWf13hMew2X0oa8w9AtmevL2UyA/5GqiyvP2Xm5WfGQ8oFiiMvpnL6RFomJQOZtWca0C2w==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-fisheye": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-fisheye/-/plugin-fisheye-0.22.10.tgz", + "integrity": "sha512-InjiXvc7Gkzrx8VWtU97kDqV7ENnhHGPULymJWeZaF2aicud9Fpk4iCtd/DcZIrk7Cbe60A8RwNXN00HXIbSCg==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-flip": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-0.22.10.tgz", + "integrity": "sha512-42GkGtTHWnhnwTMPVK/kXObZbkYIpQWfuIfy5EMEMk6zRj05zpv4vsjkKWfuemweZINwfvD7wDJF7FVFNNcZZg==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-rotate": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-gaussian": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-gaussian/-/plugin-gaussian-0.22.10.tgz", + "integrity": "sha512-ykrG/6lTp9Q5YA8jS5XzwMHtRxb9HOFMgtmnrUZ8kU+BK8REecfy9Ic5BUEOjCYvS1a/xLsnrZQU07iiYxBxFg==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-invert": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-invert/-/plugin-invert-0.22.10.tgz", + "integrity": "sha512-d8j9BlUJYs/c994t4azUWSWmQq4LLPG4ecm8m6SSNqap+S/HlVQGqjYhJEBbY9EXkOTYB9vBL9bqwSM1Rr6paA==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-mask": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-0.22.10.tgz", + "integrity": "sha512-yRBs1230XZkz24uFTdTcSlZ0HXZpIWzM3iFQN56MzZ7USgdVZjPPDCQ8I9RpqfZ36nDflQkUO0wV7ucsi4ogow==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-normalize": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-normalize/-/plugin-normalize-0.22.10.tgz", + "integrity": "sha512-Wk9GX6eJMchX/ZAazVa70Fagu+OXMvHiPY+HrcEwcclL+p1wo8xAHEsf9iKno7Ja4EU9lLhbBRY5hYJyiKMEkg==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-print": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-0.22.10.tgz", + "integrity": "sha512-1U3VloIR+beE1kWPdGEJMiE2h1Do29iv3w8sBbvPyRP4qXxRFcDpmCGtctsrKmb1krlBFlj8ubyAY90xL+5n9w==", + "dependencies": { + "@jimp/utils": "^0.22.10", + "load-bmfont": "^1.4.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blit": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-resize": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.22.10.tgz", + "integrity": "sha512-ixomxVcnAONXDgaq0opvAx4UAOiEhOA/tipuhFFOvPKFd4yf1BAnEviB5maB0SBHHkJXPUSzDp/73xVTMGSe7g==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-rotate": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-0.22.10.tgz", + "integrity": "sha512-eeFX8dnRyf3LAdsdXWKWuN18hLRg8zy1cP0cP9rHzQVWRK7ck/QsLxK1vHq7MADGwQalNaNTJ9SQxH6c8mz6jw==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blit": ">=0.3.5", + "@jimp/plugin-crop": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-scale": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-scale/-/plugin-scale-0.22.10.tgz", + "integrity": "sha512-TG/H0oUN69C9ArBCZg4PmuoixFVKIiru8282KzSB/Tp1I0xwX0XLTv3dJ5pobPlIgPcB+TmD4xAIdkCT4rtWxg==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-shadow": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-shadow/-/plugin-shadow-0.22.10.tgz", + "integrity": "sha512-TN9xm6fI7XfxbMUQqFPZjv59Xdpf0tSiAQdINB4g6pJMWiVANR/74OtDONoy3KKpenu5Y38s+FkrtID/KcQAhw==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blur": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-threshold": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-0.22.10.tgz", + "integrity": "sha512-DA2lSnU0TgIRbAgmXaxroYw3Ad6J2DOFEoJp0NleSm2h3GWbZEE5yW9U2B6hD3iqn4AenG4E2b2WzHXZyzSutw==", + "dependencies": { + "@jimp/utils": "^0.22.10" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-color": ">=0.8.0", + "@jimp/plugin-resize": ">=0.8.0" + } + }, + "node_modules/@jimp/plugins": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/plugins/-/plugins-0.22.10.tgz", + "integrity": "sha512-KDMZyM6pmvS8freB+UBLko1TO/k4D7URS/nphCozuH+P7i3UMe7NdckXKJ8u+WD6sqN0YFYvBehpkpnUiw/91w==", + "dependencies": { + "@jimp/plugin-blit": "^0.22.10", + "@jimp/plugin-blur": "^0.22.10", + "@jimp/plugin-circle": "^0.22.10", + "@jimp/plugin-color": "^0.22.10", + "@jimp/plugin-contain": "^0.22.10", + "@jimp/plugin-cover": "^0.22.10", + "@jimp/plugin-crop": "^0.22.10", + "@jimp/plugin-displace": "^0.22.10", + "@jimp/plugin-dither": "^0.22.10", + "@jimp/plugin-fisheye": "^0.22.10", + "@jimp/plugin-flip": "^0.22.10", + "@jimp/plugin-gaussian": "^0.22.10", + "@jimp/plugin-invert": "^0.22.10", + "@jimp/plugin-mask": "^0.22.10", + "@jimp/plugin-normalize": "^0.22.10", + "@jimp/plugin-print": "^0.22.10", + "@jimp/plugin-resize": "^0.22.10", + "@jimp/plugin-rotate": "^0.22.10", + "@jimp/plugin-scale": "^0.22.10", + "@jimp/plugin-shadow": "^0.22.10", + "@jimp/plugin-threshold": "^0.22.10", + "timm": "^1.6.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/png": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/png/-/png-0.22.10.tgz", + "integrity": "sha512-RYinU7tZToeeR2g2qAMn42AU+8OUHjXPKZZ9RkmoL4bguA1xyZWaSdr22/FBkmnHhOERRlr02KPDN1OTOYHLDQ==", + "dependencies": { + "@jimp/utils": "^0.22.10", + "pngjs": "^6.0.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/tiff": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.22.10.tgz", + "integrity": "sha512-OaivlSYzpNTHyH/h7pEtl3A7F7TbsgytZs52GLX/xITW92ffgDgT6PkldIrMrET6ERh/hdijNQiew7IoEEr2og==", + "dependencies": { + "utif2": "^4.0.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/types": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/types/-/types-0.22.10.tgz", + "integrity": "sha512-u/r+XYzbCx4zZukDmxx8S0er3Yq3iDPI6+31WKX0N18i2qPPJYcn8qwIFurfupRumGvJ8SlGLCgt/T+Y8zzUIw==", + "dependencies": { + "@jimp/bmp": "^0.22.10", + "@jimp/gif": "^0.22.10", + "@jimp/jpeg": "^0.22.10", + "@jimp/png": "^0.22.10", + "@jimp/tiff": "^0.22.10", + "timm": "^1.6.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/utils": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-0.22.10.tgz", + "integrity": "sha512-ztlOK9Mm2iLG2AMoabzM4i3WZ/FtshcgsJCbZCRUs/DKoeS2tySRJTnQZ1b7Roq0M4Ce+FUAxnCAcBV0q7PH9w==", + "dependencies": { + "regenerator-runtime": "^0.13.3" + } + }, + "node_modules/@npmcli/agent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.0.tgz", + "integrity": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==", + "dependencies": { + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/arborist": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/@npmcli/arborist/-/arborist-7.2.1.tgz", + "integrity": "sha512-o1QIAX56FC8HEPF+Hf4V4/hck9j0a3UiLnMX4aDHPbtU4Po1tUOUSmc2GAx947VWT+acrdMYTDkqUt2CaSXt7A==", + "dependencies": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/fs": "^3.1.0", + "@npmcli/installed-package-contents": "^2.0.2", + "@npmcli/map-workspaces": "^3.0.2", + "@npmcli/metavuln-calculator": "^7.0.0", + "@npmcli/name-from-folder": "^2.0.0", + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/package-json": "^5.0.0", + "@npmcli/query": "^3.0.1", + "@npmcli/run-script": "^7.0.2", + "bin-links": "^4.0.1", + "cacache": "^18.0.0", + "common-ancestor-path": "^1.0.1", + "hosted-git-info": "^7.0.1", + "json-parse-even-better-errors": "^3.0.0", + "json-stringify-nice": "^1.1.4", + "minimatch": "^9.0.0", + "nopt": "^7.0.0", + "npm-install-checks": "^6.2.0", + "npm-package-arg": "^11.0.1", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "npmlog": "^7.0.1", + "pacote": "^17.0.4", + "parse-conflict-json": "^3.0.0", + "proc-log": "^3.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.2", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^10.0.5", + "treeverse": "^3.0.0", + "walk-up-path": "^3.0.1" + }, + "bin": { + "arborist": "bin/index.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/fs": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", + "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/git": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.3.tgz", + "integrity": "sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==", + "dependencies": { + "@npmcli/promise-spawn": "^7.0.0", + "lru-cache": "^10.0.1", + "npm-pick-manifest": "^9.0.0", + "proc-log": "^3.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^4.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/installed-package-contents": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", + "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", + "dependencies": { + "npm-bundled": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "bin": { + "installed-package-contents": "lib/index.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/map-workspaces": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-3.0.4.tgz", + "integrity": "sha512-Z0TbvXkRbacjFFLpVpV0e2mheCh+WzQpcqL+4xp49uNJOxOnIAPZyXtUxZ5Qn3QBTGKA11Exjd9a5411rBrhDg==", + "dependencies": { + "@npmcli/name-from-folder": "^2.0.0", + "glob": "^10.2.2", + "minimatch": "^9.0.0", + "read-package-json-fast": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/metavuln-calculator": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-7.0.0.tgz", + "integrity": "sha512-Pw0tyX02VkpqlIQlG2TeiJNsdrecYeUU0ubZZa9pi3N37GCsxI+en43u4hYFdq+eSx1A9a9vwFAUyqEtKFsbHQ==", + "dependencies": { + "cacache": "^18.0.0", + "json-parse-even-better-errors": "^3.0.0", + "pacote": "^17.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/name-from-folder": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/name-from-folder/-/name-from-folder-2.0.0.tgz", + "integrity": "sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/node-gyp": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", + "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/package-json": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.0.0.tgz", + "integrity": "sha512-OI2zdYBLhQ7kpNPaJxiflofYIpkNLi+lnGdzqUOfRmCF3r2l1nadcjtCYMJKv/Utm/ZtlffaUuTiAktPHbc17g==", + "dependencies": { + "@npmcli/git": "^5.0.0", + "glob": "^10.2.2", + "hosted-git-info": "^7.0.0", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/promise-spawn": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.0.tgz", + "integrity": "sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==", + "dependencies": { + "which": "^4.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/query": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/query/-/query-3.0.1.tgz", + "integrity": "sha512-0jE8iHBogf/+bFDj+ju6/UMLbJ39c8h6nSe6qile+dB7PJ0iV3gNqcb2vtt6WWCBrxv9uAjzUT/8vroluulidA==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/run-script": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.2.tgz", + "integrity": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==", + "dependencies": { + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "node-gyp": "^10.0.0", + "read-package-json-fast": "^3.0.0", + "which": "^4.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@puppeteer/browsers": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-0.5.0.tgz", + "integrity": "sha512-Uw6oB7VvmPRLE4iKsjuOh8zgDabhNX67dzo8U/BB0f9527qx+4eeUs+korU98OhG5C4ubg7ufBgVi63XYwS6TQ==", + "dependencies": { + "debug": "4.3.4", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "yargs": "17.7.1" + }, + "bin": { + "browsers": "lib/cjs/main-cli.js" + }, + "engines": { + "node": ">=14.1.0" + }, + "peerDependencies": { + "typescript": ">= 4.7.4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@puppeteer/browsers/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/@puppeteer/browsers/node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "node_modules/@puppeteer/browsers/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@sapphire/async-queue": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@sapphire/async-queue/-/async-queue-1.5.0.tgz", + "integrity": "sha512-JkLdIsP8fPAdh9ZZjrbHWR/+mZj0wvKS5ICibcLrRI1j84UmLMshx5n9QmL8b95d4onJ2xxiyugTgSAX7AalmA==", + "engines": { + "node": ">=v14.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@sapphire/shapeshift": { + "version": "3.9.3", + "resolved": "https://registry.npmjs.org/@sapphire/shapeshift/-/shapeshift-3.9.3.tgz", + "integrity": "sha512-WzKJSwDYloSkHoBbE8rkRW8UNKJiSRJ/P8NqJ5iVq7U2Yr/kriIBx2hW+wj2Z5e5EnXL1hgYomgaFsdK6b+zqQ==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "lodash": "^4.17.21" + }, + "engines": { + "node": ">=v14.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@sapphire/snowflake": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@sapphire/snowflake/-/snowflake-3.5.1.tgz", + "integrity": "sha512-BxcYGzgEsdlG0dKAyOm0ehLGm2CafIrfQTZGWgkfKYbj+pNNsorZ7EotuZukc2MT70E0UbppVbtpBrqpzVzjNA==", + "engines": { + "node": ">=v14.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@sigstore/bundle": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.1.0.tgz", + "integrity": "sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==", + "dependencies": { + "@sigstore/protobuf-specs": "^0.2.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@sigstore/protobuf-specs": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz", + "integrity": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@sigstore/sign": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.2.0.tgz", + "integrity": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==", + "dependencies": { + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "make-fetch-happen": "^13.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@sigstore/tuf": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.2.0.tgz", + "integrity": "sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==", + "dependencies": { + "@sigstore/protobuf-specs": "^0.2.1", + "tuf-js": "^2.1.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" + }, + "node_modules/@tonejs/midi": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/@tonejs/midi/-/midi-2.0.28.tgz", + "integrity": "sha512-RII6YpInPsOZ5t3Si/20QKpNqB1lZ2OCFJSOzJxz38YdY/3zqDr3uaml4JuCWkdixuPqP1/TBnXzhQ39csyoVg==", + "dependencies": { + "array-flatten": "^3.0.0", + "midi-file": "^1.2.2" + } + }, + "node_modules/@tufjs/canonical-json": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz", + "integrity": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==", + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@tufjs/models": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-2.0.0.tgz", + "integrity": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==", + "dependencies": { + "@tufjs/canonical-json": "2.0.0", + "minimatch": "^9.0.3" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "node_modules/@types/debug": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.10.tgz", + "integrity": "sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA==", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz", + "integrity": "sha512-V46MYLFp08Wf2mmaBhvgjStM3tPa+2GAdy/iqoX+noX1//zje2x4XmrIU0cAwyClATsTmahbtoQ2EwP7I5WSiA==" + }, + "node_modules/@types/http-errors": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-1.8.2.tgz", + "integrity": "sha512-EqX+YQxINb+MeXaIqYDASb6U6FCHbWjkj4a1CKDBks3d/QiB2+PqBLyO72vLDgAO1wUI4O+9gweRcQK11bTL/w==" + }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/ms": { + "version": "0.7.33", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.33.tgz", + "integrity": "sha512-AuHIyzR5Hea7ij0P9q7vx7xu4z0C28ucwjAZC0ja7JhINyCnOw8/DnvAPQQ9TfOlCtZAmCERKQX9+o1mgQhuOQ==" + }, + "node_modules/@types/node": { + "version": "20.8.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.10.tgz", + "integrity": "sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w==", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/readable-stream": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-4.0.4.tgz", + "integrity": "sha512-NSAiePj3Iq3kBArfpUWRNX/mRw8DibYD6YhNCIJDfUP/iIOQYsNJgtHyjpbuZlcbL7TxILS8qYjY/nXXvtcFQg==", + "dependencies": { + "@types/node": "*", + "safe-buffer": "~5.1.1" + } + }, + "node_modules/@types/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/4YQT5Kp6HxUDb4yhRkm0bJ7TbjvTddqX7PZ5hz6qV3pxSo72f/6YPRo+Mu2DU307tm9IioO69l7uAwn5XNcFA==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/ws": { + "version": "8.5.8", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.8.tgz", + "integrity": "sha512-flUksGIQCnJd6sZ1l5dqCEG/ksaoAg/eUwiLAGTJQcfgvZJKF++Ta4bJA6A5aPSJmsr+xlseHn4KLgVlNnvPTg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yauzl": { + "version": "2.10.2", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.2.tgz", + "integrity": "sha512-Km7XAtUIduROw7QPgvcft0lIupeG8a8rdKL8RiSyKvlE7dYY31fEn41HVuQsRFDuROA8tA4K2UVL+WdfFmErBA==", + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@vitalets/google-translate-api": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/@vitalets/google-translate-api/-/google-translate-api-9.2.0.tgz", + "integrity": "sha512-w98IPWGuexlGmh8Y19AxF6cgWT0U5JLevVNDKEuFpTWtBC9z3YtDWKTDxF3nPP1k9bWicuB1V7I7YfHoZiDScw==", + "dependencies": { + "@types/http-errors": "^1.8.2", + "http-errors": "^2.0.0", + "node-fetch": "^2.6.7" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vladfrangu/async_event_emitter": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@vladfrangu/async_event_emitter/-/async_event_emitter-2.2.2.tgz", + "integrity": "sha512-HIzRG7sy88UZjBJamssEczH5q7t5+axva19UbZLO6u0ySbYPrwzWiXBcC0WuHyhKKoeCyneH+FvYzKQq/zTtkQ==", + "engines": { + "node": ">=v14.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@xboxreplay/errors": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@xboxreplay/errors/-/errors-0.1.0.tgz", + "integrity": "sha512-Tgz1d/OIPDWPeyOvuL5+aai5VCcqObhPnlI3skQuf80GVF3k1I0lPCnGC+8Cm5PV9aLBT5m8qPcJoIUQ2U4y9g==" + }, + "node_modules/@xboxreplay/xboxlive-auth": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/@xboxreplay/xboxlive-auth/-/xboxlive-auth-3.3.3.tgz", + "integrity": "sha512-j0AU8pW10LM8O68CTZ5QHnvOjSsnPICy0oQcP7zyM7eWkDQ/InkiQiirQKsPn1XRYDl4ccNu0WM582s3UKwcBg==", + "dependencies": { + "@xboxreplay/errors": "^0.1.0", + "axios": "^0.21.1" + } + }, + "node_modules/@xboxreplay/xboxlive-auth/node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/abbrev": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", + "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.0.tgz", + "integrity": "sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aes-js": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.1.2.tgz", + "integrity": "sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ==" + }, + "node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ansi-styles/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/ansi-styles/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/any-base": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz", + "integrity": "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==" + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + }, + "node_modules/are-we-there-yet": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-4.0.1.tgz", + "integrity": "sha512-2zuA+jpOYBRgoBCfa+fB87Rk0oGJjDX6pxGzqH6f33NzUhG25Xur6R0u0Z9VVAq8Z5JvQpQI6j6rtonuivC8QA==", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^4.1.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/are-we-there-yet/node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/are-we-there-yet/node_modules/readable-stream": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.4.2.tgz", + "integrity": "sha512-Lk/fICSyIhodxy1IDK2HazkeGjSmezAWX2egdtJnYhtzKEsBPJowlI6F6LPb5tqIQILrMbx22S5o3GuJavPusA==", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/are-we-there-yet/node_modules/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==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/are-we-there-yet/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-flatten": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", + "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==" + }, + "node_modules/asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha512-6i37w/+EhlWlGUJff3T/Q8u1RGmP5wgbiwYnOnbOqvtrPxT63/sYFyP9RcpxtxGymtfA075IvmOnL7ycNOWl3w==" + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" + }, + "node_modules/axios": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.0.tgz", + "integrity": "sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==", + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/b4a": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", + "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==" + }, + "node_modules/babel-runtime": { + "version": "5.8.38", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-5.8.38.tgz", + "integrity": "sha512-KpgoA8VE/pMmNCrnEeeXqFG24TIH11Z3ZaimIhJWsin8EbfZy3WzFKUTIan10ZIDgRVvi9EkLbruJElJC9dRlg==", + "dependencies": { + "core-js": "^1.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/bignumber.js": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.2.tgz", + "integrity": "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==", + "engines": { + "node": "*" + } + }, + "node_modules/bin-links": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/bin-links/-/bin-links-4.0.3.tgz", + "integrity": "sha512-obsRaULtJurnfox/MDwgq6Yo9kzbv1CPTk/1/s7Z/61Lezc8IKkFCOXNeVLXz0456WRzBQmSsDWlai2tIhBsfA==", + "dependencies": { + "cmd-shim": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "read-cmd-shim": "^4.0.0", + "write-file-atomic": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bmp-js": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", + "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==" + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "engines": { + "node": "*" + } + }, + "node_modules/buffer-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", + "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "dependencies": { + "semver": "^7.0.0" + } + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/cacache": { + "version": "18.0.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.0.tgz", + "integrity": "sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w==", + "dependencies": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cachedir": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.4.0.tgz", + "integrity": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chromium": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/chromium/-/chromium-3.0.3.tgz", + "integrity": "sha512-TfbzP/3t38Us5xrbb9x87M/y5I/j3jx0zeJhhQ72gjp6dwJuhVP6hBZnBH4wEg7512VVXk9zCfTuPFOdw7bQqg==", + "hasInstallScript": true, + "os": [ + "darwin", + "linux", + "win32" + ], + "dependencies": { + "cachedir": "^2.3.0", + "debug": "^4.1.0", + "extract-zip": "^1.7.0", + "got": "^11.5.1", + "progress": "^2.0.3", + "rimraf": "^2.7.1", + "tmp": "0.0.33", + "tunnel": "^0.0.6" + } + }, + "node_modules/chromium-bidi": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.7.tgz", + "integrity": "sha512-6+mJuFXwTMU6I3vYLs6IL8A1DyQTPjCfIL971X0aMPVGRbGnNfl6i6Cl0NMbxi2bRYLGESt9T2ZIMRM5PAEcIQ==", + "dependencies": { + "mitt": "3.0.0" + }, + "peerDependencies": { + "devtools-protocol": "*" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/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==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/clone-deep": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz", + "integrity": "sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==", + "dependencies": { + "for-own": "^0.1.3", + "is-plain-object": "^2.0.1", + "kind-of": "^3.0.2", + "lazy-cache": "^1.0.3", + "shallow-clone": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cmd-shim": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.2.tgz", + "integrity": "sha512-+FFYbB0YLaAkhkcrjkyNLYDiOsFSfRjwjY19LXk/psmMx1z00xlCv7hhQoTGXXIKi+YXHL/iiFo8NqMVQX9nOw==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/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==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/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==" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/common-ancestor-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz", + "integrity": "sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "node_modules/core-js": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", + "integrity": "sha512-ZiPp9pZlgxpWRu0M+YWbm6+aQ84XEfH1JRXvfOc/fILWI0VKhLC2LX13X1NYq4fULzLMq7Hfh43CSo2/aIaUPA==", + "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js." + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.1.3.tgz", + "integrity": "sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==", + "dependencies": { + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + } + }, + "node_modules/cowsay2": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/cowsay2/-/cowsay2-2.0.4.tgz", + "integrity": "sha512-q8iyB0HMF+HSoYeE5Pk4vNdk0mBDFakIzoFPmi1u5ZhcetvUogz2bdKM2pgF+Drn5oYoFr1a7OHwUq54A1HXlw==", + "dependencies": { + "string-width": "^4" + }, + "bin": { + "cowsay2": "cli.js" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", + "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "dependencies": { + "node-fetch": "2.6.7" + } + }, + "node_modules/cross-fetch/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/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==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/detect-libc": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", + "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/devtools-protocol": { + "version": "0.0.1107588", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1107588.tgz", + "integrity": "sha512-yIR+pG9x65Xko7bErCUSQaDLrO/P1p3JUzEk7JCU4DowPcGHkTGUGQapcfcLc4qj0UaALwZ+cr0riFgiqpixcg==" + }, + "node_modules/discontinuous-range": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", + "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==" + }, + "node_modules/discord-api-types": { + "version": "0.37.50", + "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.37.50.tgz", + "integrity": "sha512-X4CDiMnDbA3s3RaUXWXmgAIbY1uxab3fqe3qwzg5XutR3wjqi7M3IkgQbsIBzpqBN2YWr/Qdv7JrFRqSgb4TFg==" + }, + "node_modules/discord.js": { + "version": "14.13.0", + "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.13.0.tgz", + "integrity": "sha512-Kufdvg7fpyTEwANGy9x7i4od4yu5c6gVddGi5CKm4Y5a6sF0VBODObI3o0Bh7TGCj0LfNT8Qp8z04wnLFzgnbA==", + "dependencies": { + "@discordjs/builders": "^1.6.5", + "@discordjs/collection": "^1.5.3", + "@discordjs/formatters": "^0.3.2", + "@discordjs/rest": "^2.0.1", + "@discordjs/util": "^1.0.1", + "@discordjs/ws": "^1.0.1", + "@sapphire/snowflake": "^3.5.1", + "@types/ws": "^8.5.5", + "discord-api-types": "0.37.50", + "fast-deep-equal": "^3.1.3", + "lodash.snakecase": "^4.1.1", + "tslib": "^2.6.1", + "undici": "5.22.1", + "ws": "^8.13.0" + }, + "engines": { + "node": ">=16.11.0" + } + }, + "node_modules/dom-walk": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", + "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + }, + "node_modules/dotenv": { + "version": "16.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/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==" + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/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==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/endian-toggle": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/endian-toggle/-/endian-toggle-0.0.0.tgz", + "integrity": "sha512-ShfqhXeHRE4TmggSlHXG8CMGIcsOsqDw/GcoPcosToE59Rm9e4aXaMhEQf2kPBsBRrKem1bbOAv5gOKnkliMFQ==" + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/exif-parser": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", + "integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==" + }, + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "dependencies": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + } + }, + "node_modules/extract-zip/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/extract-zip/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/file-type": { + "version": "16.5.4", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", + "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", + "dependencies": { + "readable-web-to-node-stream": "^3.0.0", + "strtok3": "^6.2.4", + "token-types": "^4.1.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==", + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "engines": { + "node": "*" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-minipass": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gauge": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-5.0.1.tgz", + "integrity": "sha512-CmykPMJGuNan/3S4kZOpvvPYSNqSHANiWnh9XcMU2pSjtBfF0XzZ2p1bFAxTbnFxyBuPxQYHhzwaoOmUdqzvxQ==", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^4.0.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/gauge/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/gauge/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/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==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/gifwrap": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/gifwrap/-/gifwrap-0.10.1.tgz", + "integrity": "sha512-2760b1vpJHNmLzZ/ubTtNnEx5WApN/PYWJvXvgS+tL1egTTthayFYIQQNi136FLEDcN/IyEY2EcGpIITD6eYUw==", + "dependencies": { + "image-q": "^4.0.0", + "omggif": "^1.0.10" + } + }, + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" + }, + "node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", + "dependencies": { + "min-document": "^2.19.0", + "process": "^0.11.10" + } + }, + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + }, + "node_modules/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==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/https": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https/-/https-1.0.0.tgz", + "integrity": "sha512-4EC57ddXrkaF0x83Oj8sM6SLQHAWXw90Skqu2M4AEWENZ3F02dFJE/GARA8igO79tcgYqGrD7ae4f5L3um2lgg==" + }, + "node_modules/https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore-walk": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz", + "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==", + "dependencies": { + "minimatch": "^9.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/image-q": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/image-q/-/image-q-4.0.0.tgz", + "integrity": "sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==", + "dependencies": { + "@types/node": "16.9.1" + } + }, + "node_modules/image-q/node_modules/@types/node": { + "version": "16.9.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.9.1.tgz", + "integrity": "sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==" + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/infobox-parser": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/infobox-parser/-/infobox-parser-3.6.2.tgz", + "integrity": "sha512-lasdwvbtjCtDDO6mArAs/ueFEnBJRyo2UbZPAkd5rEG5NVJ3XFCOvbMwNTT/rJlFv1+ORw8D3UvZV4brpgATCg==", + "dependencies": { + "camelcase": "^4.1.0" + }, + "funding": { + "type": "individual", + "url": "https://www.buymeacoffee.com/2tmRKi9" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", + "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" + }, + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "engines": { + "node": ">=16" + } + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isolated-vm": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/isolated-vm/-/isolated-vm-4.6.0.tgz", + "integrity": "sha512-MEnfC/54q5PED3VJ9UJYJPOlU6mYFHS3ivR9E8yeNNBEFRFUNBnY0xO4Rj3D/SOtFKPNmsQp9NWUYSKZqAoZiA==", + "hasInstallScript": true, + "dependencies": { + "prebuild-install": "^7.1.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/isomorphic-fetch": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", + "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", + "dependencies": { + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jimp": { + "version": "0.22.10", + "resolved": "https://registry.npmjs.org/jimp/-/jimp-0.22.10.tgz", + "integrity": "sha512-lCaHIJAgTOsplyJzC1w/laxSxrbSsEBw4byKwXgUdMmh+ayPsnidTblenQm+IvhIs44Gcuvlb6pd2LQ0wcKaKg==", + "dependencies": { + "@jimp/custom": "^0.22.10", + "@jimp/plugins": "^0.22.10", + "@jimp/types": "^0.22.10", + "regenerator-runtime": "^0.13.3" + } + }, + "node_modules/jose": { + "version": "4.15.4", + "resolved": "https://registry.npmjs.org/jose/-/jose-4.15.4.tgz", + "integrity": "sha512-W+oqK4H+r5sITxfxpSU+MMdr/YSWGvgZMQDIsNoBDGGy4i7GBPTtvFKibQzW06n3U3TqHjhvBJsirShsEJ6eeQ==", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, + "node_modules/jpeg-js": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" + }, + "node_modules/js-md5": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/js-md5/-/js-md5-0.7.3.tgz", + "integrity": "sha512-ZC41vPSTLKGwIRjqDh8DfXoCrdQIyBgspJVPXHBGu4nZlAEvG3nf+jO9avM9RmLiGakg7vz974ms99nEV0tmTQ==" + }, + "node_modules/js-sha1": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/js-sha1/-/js-sha1-0.6.0.tgz", + "integrity": "sha512-01gwBFreYydzmU9BmZxpVk6svJJHrVxEN3IOiGl6VO93bVKYETJ0sIth6DASI6mIFdt7NmfX9UiByRzsYHGU9w==" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + }, + "node_modules/json-bigint": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz", + "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==", + "dependencies": { + "bignumber.js": "^9.0.0" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", + "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stringify-nice": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz", + "integrity": "sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "engines": [ + "node >= 0.2.0" + ] + }, + "node_modules/jsonwebtoken": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", + "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==", + "dependencies": { + "jws": "^3.2.2", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", + "ms": "^2.1.1", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=12", + "npm": ">=6" + } + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/just-diff": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/just-diff/-/just-diff-6.0.2.tgz", + "integrity": "sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==" + }, + "node_modules/just-diff-apply": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-5.5.0.tgz", + "integrity": "sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==" + }, + "node_modules/jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "dependencies": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "dependencies": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/load-bmfont": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", + "integrity": "sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==", + "dependencies": { + "buffer-equal": "0.0.1", + "mime": "^1.3.4", + "parse-bmfont-ascii": "^1.0.3", + "parse-bmfont-binary": "^1.0.5", + "parse-bmfont-xml": "^1.1.4", + "phin": "^2.9.1", + "xhr": "^2.0.1", + "xtend": "^4.0.0" + } + }, + "node_modules/load-bmfont/node_modules/buffer-equal": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", + "integrity": "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/load-bmfont/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash._basecallback": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/lodash._basecallback/-/lodash._basecallback-3.3.1.tgz", + "integrity": "sha512-LQffghuO63ufDY33KKO1ezGKbcFZK3ngYV7JpxaUomoM5acf0YeXU3Pm8csVE0girVs50TXzfNibl69Co3ggJA==", + "dependencies": { + "lodash._baseisequal": "^3.0.0", + "lodash._bindcallback": "^3.0.0", + "lodash.isarray": "^3.0.0", + "lodash.pairs": "^3.0.0" + } + }, + "node_modules/lodash._baseeach": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash._baseeach/-/lodash._baseeach-3.0.4.tgz", + "integrity": "sha512-IqUZ9MQo2UT1XPGuBntInqTOlc+oV+bCo0kMp+yuKGsfvRSNgUW0YjWVZUrG/gs+8z/Eyuc0jkJjOBESt9BXxg==", + "dependencies": { + "lodash.keys": "^3.0.0" + } + }, + "node_modules/lodash._baseisequal": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/lodash._baseisequal/-/lodash._baseisequal-3.0.7.tgz", + "integrity": "sha512-U+3GsNEZj9ebI03ncLC2pLmYVjgtYZEwdkAPO7UGgtGvAz36JVFPAQUufpSaVL93Cz5arc6JGRKZRhaOhyVJYA==", + "dependencies": { + "lodash.isarray": "^3.0.0", + "lodash.istypedarray": "^3.0.0", + "lodash.keys": "^3.0.0" + } + }, + "node_modules/lodash._basereduce": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash._basereduce/-/lodash._basereduce-3.0.2.tgz", + "integrity": "sha512-ARxgijEw8X62Y8HGgxVIKWIz0+GNPJa9CFZY8nAcGIU+rBMgS9szd/Fw52yaDg4QZZT3DJfFbOjMUZ3D+WPVgA==" + }, + "node_modules/lodash._bindcallback": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", + "integrity": "sha512-2wlI0JRAGX8WEf4Gm1p/mv/SZ+jLijpj0jyaE/AXeuQphzCgD8ZQW4oSpoN8JAopujOFGU3KMuq7qfHBWlGpjQ==" + }, + "node_modules/lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha512-RrL9VxMEPyDMHOd9uFbvMe8X55X16/cGM5IgOKgRElQZutpX89iS6vwl64duTV1/16w5JY7tuFNXqoekmh1EmA==" + }, + "node_modules/lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==" + }, + "node_modules/lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" + }, + "node_modules/lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==" + }, + "node_modules/lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha512-JwObCrNJuT0Nnbuecmqr5DgtuBppuCvGD9lxjFpAzwnVtdGoDQ1zig+5W8k5/6Gcn0gZ3936HDAlGd28i7sOGQ==" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + }, + "node_modules/lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" + }, + "node_modules/lodash.istypedarray": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz", + "integrity": "sha512-lGWJ6N8AA3KSv+ZZxlTdn4f6A7kMfpJboeyvbFdE7IU9YAgweODqmOgdUHOA+c6lVWeVLysdaxciFXi+foVsWw==" + }, + "node_modules/lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha512-CuBsapFjcubOGMn3VD+24HOAPxM79tH+V6ivJL3CHYjtrawauDJHUk//Yew9Hvc6e9rbCrURGk8z6PC+8WJBfQ==", + "dependencies": { + "lodash._getnative": "^3.0.0", + "lodash.isarguments": "^3.0.0", + "lodash.isarray": "^3.0.0" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" + }, + "node_modules/lodash.pairs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash.pairs/-/lodash.pairs-3.0.1.tgz", + "integrity": "sha512-lgXvpU43ZNQrZ/pK2cR97YzKeAno3e3HhcyvLKsofljeHKrQcZhT1vW7fg4X61c92tM+mjD/DypoLZYuAKNIkQ==", + "dependencies": { + "lodash.keys": "^3.0.0" + } + }, + "node_modules/lodash.reduce": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", + "integrity": "sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw==" + }, + "node_modules/lodash.snakecase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", + "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==" + }, + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/lru-cache": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", + "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/macaddress": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/macaddress/-/macaddress-0.5.3.tgz", + "integrity": "sha512-vGBKTA+jwM4KgjGZ+S/8/Mkj9rWzePyGY6jManXPGhiWu63RYwW8dKPyk5koP+8qNVhPhHgFa1y/MJ4wrjsNrg==" + }, + "node_modules/magic-bytes.js": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/magic-bytes.js/-/magic-bytes.js-1.5.0.tgz", + "integrity": "sha512-wJkXvutRbNWcc37tt5j1HyOK1nosspdh3dj6LUYYAvF6JYNqs53IfRvK9oEpcwiDA1NdoIi64yAMfdivPeVAyw==" + }, + "node_modules/make-fetch-happen": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz", + "integrity": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==", + "dependencies": { + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", + "http-cache-semantics": "^4.1.1", + "is-lambda": "^1.0.1", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "ssri": "^10.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/merge-deep": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.3.tgz", + "integrity": "sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==", + "dependencies": { + "arr-union": "^3.1.0", + "clone-deep": "^0.2.4", + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/midi-file": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/midi-file/-/midi-file-1.2.4.tgz", + "integrity": "sha512-B5SnBC6i2bwJIXTY9MElIydJwAmnKx+r5eJ1jknTLetzLflEl0GWveuBB6ACrQpecSRkOB6fhTx1PwXk2BVxnA==" + }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/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==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", + "dependencies": { + "dom-walk": "^0.1.0" + } + }, + "node_modules/minecraft-data": { + "version": "3.48.0", + "resolved": "https://registry.npmjs.org/minecraft-data/-/minecraft-data-3.48.0.tgz", + "integrity": "sha512-atew1Gbe0WjlIyR+0E/xMnjs/zI/i9IU7cqu0sLpbVtNSPRcW8UjMtYBzpvjVnEETjh+S69v2h49K+8MLgd35Q==" + }, + "node_modules/minecraft-folder-path": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minecraft-folder-path/-/minecraft-folder-path-1.2.0.tgz", + "integrity": "sha512-qaUSbKWoOsH9brn0JQuBhxNAzTDMwrOXorwuRxdJKKKDYvZhtml+6GVCUrY5HRiEsieBEjCUnhVpDuQiKsiFaw==" + }, + "node_modules/minecraft-protocol": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/minecraft-protocol/-/minecraft-protocol-1.44.0.tgz", + "integrity": "sha512-sYu4fFzUKt3spPG5tAdkaB9sNQPT0sV6fyS0sS7/nxdzFfjmLhF6BLNC+32ieK4/MhgNyHtH6xusD0Bi0Roq9w==", + "dependencies": { + "@types/readable-stream": "^4.0.0", + "aes-js": "^3.1.2", + "buffer-equal": "^1.0.0", + "debug": "^4.3.2", + "endian-toggle": "^0.0.0", + "lodash.get": "^4.1.2", + "lodash.merge": "^4.3.0", + "minecraft-data": "^3.37.0", + "minecraft-folder-path": "^1.2.0", + "node-fetch": "^2.6.1", + "node-rsa": "^0.4.2", + "prismarine-auth": "^2.2.0", + "prismarine-nbt": "^2.0.0", + "prismarine-realms": "^1.2.0", + "protodef": "^1.8.0", + "readable-stream": "^4.1.0", + "uuid-1345": "^1.0.1", + "yggdrasil": "^1.4.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/minecraft-protocol-forge": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/minecraft-protocol-forge/-/minecraft-protocol-forge-1.0.0.tgz", + "integrity": "sha512-ymTI512qJhW9/wNCAcifC+21AhuomkAF+vXSEnsLEENFNXftZTxwgghO3t6YYFYueFD9ETJ+Lu75Y3u6f5h1BA==", + "dependencies": { + "protodef": "0.2.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/minecraft-protocol-forge/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + }, + "node_modules/minecraft-protocol-forge/node_modules/lodash.reduce": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-3.1.2.tgz", + "integrity": "sha512-EG+btfjU+5R+t6R7eVvjkcAsQFmSbFqVHcf2rRFdT/VzDFWFJHRmAW2bT7vLFnEZZD+KlbluSBUA3yI2Ldh57g==", + "dependencies": { + "lodash._basecallback": "^3.0.0", + "lodash._baseeach": "^3.0.0", + "lodash._basereduce": "^3.0.0", + "lodash.isarray": "^3.0.0", + "lodash.keys": "^3.0.0" + } + }, + "node_modules/minecraft-protocol-forge/node_modules/protodef": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/protodef/-/protodef-0.2.5.tgz", + "integrity": "sha512-4EZvHx1MhrgzZYmSVu0hi06ihW4kmAG307tF1a5HqKXMZhbQyFr2SE6V5gazJ0cJmwzIxguaPIT9LKCFTMMcRg==", + "dependencies": { + "babel-runtime": "^5.4.4", + "lodash.reduce": "^3.1.2", + "readable-stream": "^1.1.0", + "yargs": "^1.3.1" + } + }, + "node_modules/minecraft-protocol-forge/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/minecraft-protocol-forge/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" + }, + "node_modules/minecraft-protocol-forge/node_modules/yargs": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz", + "integrity": "sha512-7OGt4xXoWJQh5ulgZ78rKaqY7dNWbjfK+UKxGcIlaM2j7C4fqGchyv8CPvEWdRPrHp6Ula/YU8yGRpYGOHrI+g==" + }, + "node_modules/minecraft-protocol/node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/minecraft-protocol/node_modules/readable-stream": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.4.2.tgz", + "integrity": "sha512-Lk/fICSyIhodxy1IDK2HazkeGjSmezAWX2egdtJnYhtzKEsBPJowlI6F6LPb5tqIQILrMbx22S5o3GuJavPusA==", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/minecraft-protocol/node_modules/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==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/minecraft-protocol/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/mineflayer": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/mineflayer/-/mineflayer-4.14.0.tgz", + "integrity": "sha512-4EYzUmZNxH3Gpz3GkgO2eaR90ANb50nVhMCU2y6Rl1Ru8M6HqxID1Eg7tRgsodfAOD+AKh5SPwmPnISLcxvnOA==", + "dependencies": { + "minecraft-data": "^3.44.0", + "minecraft-protocol": "^1.44.0", + "prismarine-biome": "^1.1.1", + "prismarine-block": "^1.17.0", + "prismarine-chat": "^1.7.1", + "prismarine-chunk": "^1.34.0", + "prismarine-entity": "^2.3.0", + "prismarine-item": "^1.14.0", + "prismarine-nbt": "^2.0.0", + "prismarine-physics": "^1.8.0", + "prismarine-recipe": "^1.3.0", + "prismarine-registry": "^1.5.0", + "prismarine-windows": "^2.8.0", + "prismarine-world": "^3.6.0", + "protodef": "^1.14.0", + "typed-emitter": "^1.0.0", + "vec3": "^0.1.7" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/mineflayer-cmd": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/mineflayer-cmd/-/mineflayer-cmd-1.1.3.tgz", + "integrity": "sha512-CIF4pmgWZgJo8EAqA+g5oim5WMf7omUxqozzdiCJ9eqMdnV4GB7j8r8LtBjZITl8VimE8IB9yPCvMIsamFjHvA==", + "dependencies": { + "mineflayer": "^2.31.0" + } + }, + "node_modules/mineflayer-cmd/node_modules/minecraft-data": { + "version": "2.221.0", + "resolved": "https://registry.npmjs.org/minecraft-data/-/minecraft-data-2.221.0.tgz", + "integrity": "sha512-0AhqzbIKb6WqPSF6qBevaPryeWOz545hLxt6q+gfJF8YIQX/YfkyX/nXWhl+pSIS2rTBcQ0RJkRCtTeRzQwHDA==" + }, + "node_modules/mineflayer-cmd/node_modules/mineflayer": { + "version": "2.41.0", + "resolved": "https://registry.npmjs.org/mineflayer/-/mineflayer-2.41.0.tgz", + "integrity": "sha512-IFFy4NgF24FU2PkAwazJphl2F+3gpbpN578ex0sq1XfcBBRge3kCz1UC2KDMjKI+V/8vffOL+OEnug9jt3f7Vw==", + "dependencies": { + "minecraft-data": "^2.70.0", + "minecraft-protocol": "^1.17.0", + "prismarine-biome": "^1.1.0", + "prismarine-block": "^1.6.0", + "prismarine-chat": "^1.0.0", + "prismarine-chunk": "^1.20.3", + "prismarine-entity": "^1.0.0", + "prismarine-item": "^1.5.0", + "prismarine-physics": "^1.0.4", + "prismarine-recipe": "^1.1.0", + "prismarine-windows": "^1.5.0", + "prismarine-world": "^3.2.0", + "protodef": "^1.8.0", + "typed-emitter": "^1.2.0", + "vec3": "^0.1.6" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/mineflayer-cmd/node_modules/prismarine-entity": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/prismarine-entity/-/prismarine-entity-1.2.0.tgz", + "integrity": "sha512-4dQ9LYl6HDJQrwZHjSKU4D5VNyHRnfrjcw7eVLlbRPkuR50utW5mmfPi4ys9U7tHNmGWHC/cwjH9xzT75LUovQ==", + "dependencies": { + "vec3": "^0.1.4" + } + }, + "node_modules/mineflayer-cmd/node_modules/prismarine-windows": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/prismarine-windows/-/prismarine-windows-1.6.0.tgz", + "integrity": "sha512-026LG1yR76Xb62kM+W83IWT7Wy2yKplllbXNFBF2m0Lr4k4YpYKnpLb8tRft8MLOLRbYAt/KnxE/YKvRZul7kw==", + "dependencies": { + "prismarine-item": "^1.4.0" + } + }, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-fetch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz", + "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==", + "dependencies": { + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-json-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "dependencies": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "node_modules/minipass-json-stream/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mitt": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.0.tgz", + "integrity": "sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==" + }, + "node_modules/mixin-object": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", + "integrity": "sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==", + "dependencies": { + "for-in": "^0.1.3", + "is-extendable": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-object/node_modules/for-in": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", + "integrity": "sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + }, + "node_modules/mojangson": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mojangson/-/mojangson-2.0.4.tgz", + "integrity": "sha512-HYmhgDjr1gzF7trGgvcC/huIg2L8FsVbi/KacRe6r1AswbboGVZDS47SOZlomPuMWvZLas8m9vuHHucdZMwTmQ==", + "dependencies": { + "nearley": "^2.19.5" + } + }, + "node_modules/moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", + "engines": { + "node": "*" + } + }, + "node_modules/moment-timezone": { + "version": "0.5.43", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.43.tgz", + "integrity": "sha512-72j3aNyuIsDxdF1i7CEgV2FfxM1r6aaqJyLB2vwb33mXYyoyLly+F1zbWqhA3/bVIoJ4szlUoMbUnVdid32NUQ==", + "dependencies": { + "moment": "^2.29.4" + }, + "engines": { + "node": "*" + } + }, + "node_modules/moo": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", + "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" + }, + "node_modules/nearley": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", + "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", + "dependencies": { + "commander": "^2.19.0", + "moo": "^0.5.0", + "railroad-diagrams": "^1.0.0", + "randexp": "0.4.6" + }, + "bin": { + "nearley-railroad": "bin/nearley-railroad.js", + "nearley-test": "bin/nearley-test.js", + "nearley-unparse": "bin/nearley-unparse.js", + "nearleyc": "bin/nearleyc.js" + }, + "funding": { + "type": "individual", + "url": "https://nearley.js.org/#give-to-nearley" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/net": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/net/-/net-1.0.2.tgz", + "integrity": "sha512-kbhcj2SVVR4caaVnGLJKmlk2+f+oLkjqdKeQlmUtz6nGzOpbcobwVIeSURNgraV/v3tlmGIX82OcPCl0K6RbHQ==" + }, + "node_modules/node_characterai": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/node_characterai/-/node_characterai-1.2.1.tgz", + "integrity": "sha512-Y0Jwb4X8gXlNGsD8DjOenN9wAzqn1l8dDaDTqI/L5mnRvoCm4yLtocuiN+zAlwjx9ZSsjGFBRQUkBNfi9lKyYA==", + "dependencies": { + "jimp": "^0.22.8", + "json-bigint": "^1.0.0", + "mime": "^3.0.0", + "node-fetch": "^3.3.0", + "puppeteer": "^19.7.5", + "puppeteer-extra": "^3.3.6", + "puppeteer-extra-plugin-stealth": "^2.11.2", + "uuid": "^9.0.0" + } + }, + "node_modules/node_characterai_edited": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/node_characterai_edited/-/node_characterai_edited-1.1.5.tgz", + "integrity": "sha512-PWU8B8lnae/Oh7RprJ+/krkCqpsszJPW1WYF9SfnnG1Pw7epCbODVVQSt/yVX50cqEsG2R+k1XmSA2KVDfL+bQ==", + "dependencies": { + "node-fetch": "^3.3.0", + "uuid": "^9.0.0" + } + }, + "node_modules/node_characterai_edited/node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/node_characterai/node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/node-abi": { + "version": "3.51.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.51.0.tgz", + "integrity": "sha512-SQkEP4hmNWjlniS5zdnfIXTk1x7Ome85RDzHlTbBtzE97Gfwz/Ipw4v/Ryk20DWIy3yCNVLVlGKApCnmvYoJbA==", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-gyp": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz", + "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==", + "dependencies": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^4.0.0" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/node-rsa": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/node-rsa/-/node-rsa-0.4.2.tgz", + "integrity": "sha512-Bvso6Zi9LY4otIZefYrscsUpo2mUpiAVIEmSZV2q41sP8tHZoert3Yu6zv4f/RXJqMNZQKCtnhDugIuCma23YA==", + "dependencies": { + "asn1": "0.2.3" + } + }, + "node_modules/node-weatherunderground": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/node-weatherunderground/-/node-weatherunderground-1.2.0.tgz", + "integrity": "sha512-VS8xa5Bk/LkcWnAkx8eXzl1XHPg3SaAJNiX+ar+hk8SgeZC65vcgwNmGxmktzIDsXUdrWDk/WubAVTXlp93PrQ==", + "dependencies": { + "request": "^2.44.0" + } + }, + "node_modules/nopt": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", + "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", + "dependencies": { + "abbrev": "^2.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", + "dependencies": { + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-bundled": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", + "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", + "dependencies": { + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-install-checks": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz", + "integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==", + "dependencies": { + "semver": "^7.1.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-package-arg": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz", + "integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==", + "dependencies": { + "hosted-git-info": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm-packlist": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.0.tgz", + "integrity": "sha512-ErAGFB5kJUciPy1mmx/C2YFbvxoJ0QJ9uwkCZOeR6CqLLISPZBOiFModAbSXnjjlwW5lOhuhXva+fURsSGJqyw==", + "dependencies": { + "ignore-walk": "^6.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-pick-manifest": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz", + "integrity": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==", + "dependencies": { + "npm-install-checks": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "npm-package-arg": "^11.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm-registry-fetch": { + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-16.1.0.tgz", + "integrity": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==", + "dependencies": { + "make-fetch-happen": "^13.0.0", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^11.0.0", + "proc-log": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npmlog": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-7.0.1.tgz", + "integrity": "sha512-uJ0YFk/mCQpLBt+bxN88AKd+gyqZvZDbtiNxk6Waqcj2aPRyfVx8ITawkyQynxUagInjdYT1+qj4NfA5KJJUxg==", + "dependencies": { + "are-we-there-yet": "^4.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^5.0.0", + "set-blocking": "^2.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "engines": { + "node": "*" + } + }, + "node_modules/omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/openweather-api-node": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/openweather-api-node/-/openweather-api-node-3.1.2.tgz", + "integrity": "sha512-PPV1SrEMVi96n23c+si0SbiFD0xn5RyasOm/NVuSaV8E7YF4XtJRxTzLmbB0CjD/i5MxrjQ9x9DFNrl423XGKg==" + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pacote": { + "version": "17.0.4", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-17.0.4.tgz", + "integrity": "sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==", + "dependencies": { + "@npmcli/git": "^5.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.0", + "cacache": "^18.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^11.0.0", + "npm-packlist": "^8.0.0", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^7.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^2.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "lib/bin.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-bmfont-ascii": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", + "integrity": "sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==" + }, + "node_modules/parse-bmfont-binary": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", + "integrity": "sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==" + }, + "node_modules/parse-bmfont-xml": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz", + "integrity": "sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==", + "dependencies": { + "xml-parse-from-string": "^1.0.0", + "xml2js": "^0.4.5" + } + }, + "node_modules/parse-conflict-json": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-3.0.1.tgz", + "integrity": "sha512-01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw==", + "dependencies": { + "json-parse-even-better-errors": "^3.0.0", + "just-diff": "^6.0.0", + "just-diff-apply": "^5.2.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/parse-headers": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz", + "integrity": "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==" + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-json/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/peek-readable": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", + "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==", + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "node_modules/phin": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", + "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==" + }, + "node_modules/pixelmatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", + "integrity": "sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==", + "dependencies": { + "pngjs": "^3.0.0" + }, + "bin": { + "pixelmatch": "bin/pixelmatch" + } + }, + "node_modules/pixelmatch/node_modules/pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/pngjs": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", + "integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==", + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/prebuild-install": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz", + "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==", + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/prismarine-auth": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/prismarine-auth/-/prismarine-auth-2.3.0.tgz", + "integrity": "sha512-giKZiHwuQdpMJ7KX94UncOJqM3u+yqKIR2UI/rqmdmFUuQilV9vhlz/zehpVkvo7FE8gmZsuUMCUPhI+gtgd3A==", + "dependencies": { + "@azure/msal-node": "^2.0.2", + "@xboxreplay/xboxlive-auth": "^3.3.3", + "debug": "^4.3.3", + "jose": "^4.1.4", + "node-fetch": "^2.6.1", + "smart-buffer": "^4.1.0", + "uuid-1345": "^1.0.2" + } + }, + "node_modules/prismarine-biome": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/prismarine-biome/-/prismarine-biome-1.3.0.tgz", + "integrity": "sha512-GY6nZxq93mTErT7jD7jt8YS1aPrOakbJHh39seYsJFXvueIOdHAmW16kYQVrTVMW5MlWLQVxV/EquRwOgr4MnQ==", + "peerDependencies": { + "minecraft-data": "^3.0.0", + "prismarine-registry": "^1.1.0" + } + }, + "node_modules/prismarine-block": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/prismarine-block/-/prismarine-block-1.17.1.tgz", + "integrity": "sha512-r1TIn/b5v77BX4a+qd+Yv+4/vZpsC/Jp5ElYxd6++2wpCnqiuxVG7BlS2Eo14vez1M2gt3qoNEl54Hr8qox/rQ==", + "dependencies": { + "minecraft-data": "^3.38.0", + "prismarine-biome": "^1.1.0", + "prismarine-chat": "^1.5.0", + "prismarine-item": "^1.10.1", + "prismarine-nbt": "^2.0.0", + "prismarine-registry": "^1.1.0" + } + }, + "node_modules/prismarine-chat": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/prismarine-chat/-/prismarine-chat-1.9.1.tgz", + "integrity": "sha512-x7WWa5MNhiLZSO6tw+YyKpzquFZ+DNISVgiV6K3SU0GsishMXe+nto02WhF/4AuFerKdugm9u1d/r4C4zSkJOg==", + "dependencies": { + "mojangson": "^2.0.1", + "prismarine-item": "^1.10.0", + "prismarine-nbt": "^2.0.0", + "prismarine-registry": "^1.4.0" + } + }, + "node_modules/prismarine-chunk": { + "version": "1.35.0", + "resolved": "https://registry.npmjs.org/prismarine-chunk/-/prismarine-chunk-1.35.0.tgz", + "integrity": "sha512-Q1lElMUle7wWxWdQjbZo3j2/dLNG325j90IcbbMmBTnHdQSWIjWFe792XOz3RVBlvrhRJEiZk38S6/eQTQ9esw==", + "dependencies": { + "prismarine-biome": "^1.2.0", + "prismarine-block": "^1.14.1", + "prismarine-nbt": "^2.2.1", + "prismarine-registry": "^1.1.0", + "smart-buffer": "^4.1.0", + "uint4": "^0.1.2", + "vec3": "^0.1.3", + "xxhash-wasm": "^0.4.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/prismarine-entity": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/prismarine-entity/-/prismarine-entity-2.3.1.tgz", + "integrity": "sha512-HOv8l7IetHNf4hwZ7V/W4vM3GNl+e6VCtKDkH9h02TRq7jWngsggKtJV+VanCce/sNwtJUhJDjORGs728ep4MA==", + "dependencies": { + "prismarine-chat": "^1.4.1", + "prismarine-item": "^1.11.2", + "prismarine-registry": "^1.4.0", + "vec3": "^0.1.4" + } + }, + "node_modules/prismarine-item": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/prismarine-item/-/prismarine-item-1.14.0.tgz", + "integrity": "sha512-udQHYGJ05klFe8Kkc0TOmwoXj5Xl1ZPgHVoMbGUAFB9exN4TFxEa1A39vkSYhxP5Et9PNufQQvFBFVom0nXikA==", + "dependencies": { + "prismarine-nbt": "^2.0.0", + "prismarine-registry": "^1.4.0" + } + }, + "node_modules/prismarine-nbt": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/prismarine-nbt/-/prismarine-nbt-2.2.1.tgz", + "integrity": "sha512-Mb50c58CPnuZ+qvM31DBa08tf9UumlTq1LkvpMoUpKfCuN05GZHTqCUwER3lxTSHLL0GZKghIPbYR/JQkINijQ==", + "dependencies": { + "protodef": "^1.9.0" + } + }, + "node_modules/prismarine-physics": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/prismarine-physics/-/prismarine-physics-1.8.0.tgz", + "integrity": "sha512-gbM+S+bmVtOKVv+Z0WGaHMeEeBHISIDsRDRlv8sr0dex3ZJRhuq8djA02CBreguXtI18ZKh6q3TSj2qDr45NHA==", + "dependencies": { + "minecraft-data": "^3.0.0", + "prismarine-nbt": "^2.0.0", + "vec3": "^0.1.7" + } + }, + "node_modules/prismarine-realms": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/prismarine-realms/-/prismarine-realms-1.3.2.tgz", + "integrity": "sha512-5apl9Ru8veTj5q2OozRc4GZOuSIcs3yY4UEtALiLKHstBe8bRw8vNlaz4Zla3jsQ8yP/ul1b1IJINTRbocuA6g==", + "dependencies": { + "debug": "^4.3.3", + "node-fetch": "^2.6.1" + } + }, + "node_modules/prismarine-recipe": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/prismarine-recipe/-/prismarine-recipe-1.3.1.tgz", + "integrity": "sha512-xfa9E9ACoaDi+YzNQ+nk8kWSIqt5vSZOOCHIT+dTXscf/dng2HaJ/59uwe1D/jvOkAd2OvM6RRJM6fFe0q/LDA==", + "peerDependencies": { + "prismarine-registry": "^1.4.0" + } + }, + "node_modules/prismarine-registry": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/prismarine-registry/-/prismarine-registry-1.7.0.tgz", + "integrity": "sha512-yyva0FpWI078nNeMhx8ekVza5uUTYhEv+C+ADu3wUQXiG8qhXkvrf0uzsnhTgZL8BLdsi2axgCEiKw9qSKIuxQ==", + "dependencies": { + "minecraft-data": "^3.0.0", + "prismarine-nbt": "^2.0.0" + } + }, + "node_modules/prismarine-windows": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/prismarine-windows/-/prismarine-windows-2.8.0.tgz", + "integrity": "sha512-9HVhJ8tfCeRubYwQzgz8oiHNAebMJ5hDdjm45PZwrOgewaislnR2HDsbPMWiCcyWkYL7J8bVLVoSzEzv5pH98g==", + "dependencies": { + "prismarine-item": "^1.12.2", + "prismarine-registry": "^1.7.0", + "typed-emitter": "^2.1.0" + } + }, + "node_modules/prismarine-windows/node_modules/typed-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/typed-emitter/-/typed-emitter-2.1.0.tgz", + "integrity": "sha512-g/KzbYKbH5C2vPkaXGu8DJlHrGKHLsM25Zg9WuC9pMGfuvT+X25tZQWo5fK1BjBm8+UrVE9LDCvaY0CQk+fXDA==", + "optionalDependencies": { + "rxjs": "*" + } + }, + "node_modules/prismarine-world": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/prismarine-world/-/prismarine-world-3.6.2.tgz", + "integrity": "sha512-xNNo3bd8EnCMjiPbVrh3jYa1Upa8Krkb13BgO7FOOfD5ZYf+iYDZewBtDbHYWzZZB2N0JlTtimMOHRhZhDJirw==", + "dependencies": { + "vec3": "^0.1.7" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise-all-reject-late": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz", + "integrity": "sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/promise-call-limit": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/promise-call-limit/-/promise-call-limit-1.0.2.tgz", + "integrity": "sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/protodef": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/protodef/-/protodef-1.15.0.tgz", + "integrity": "sha512-bZ2Omw8dT+DACjJHLrBWZlqN4MlT9g9oSpJDdkUAJOStUzgJp+Zn42FJfPUdwutUxjaxA0PftN0PDlNa2XbneA==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.reduce": "^4.6.0", + "protodef-validator": "^1.3.0", + "readable-stream": "^3.0.3" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/protodef-validator": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/protodef-validator/-/protodef-validator-1.3.1.tgz", + "integrity": "sha512-lZ5FWKZYR9xOjpMw1+EfZRfCjzNRQWPq+Dk+jki47Sikl2EeWEPnTfnJERwnU/EwFq6us+0zqHHzSsmLeYX+Lg==", + "dependencies": { + "ajv": "^6.5.4" + }, + "bin": { + "protodef-validator": "cli.js" + } + }, + "node_modules/protodef/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/puppeteer": { + "version": "19.11.1", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.11.1.tgz", + "integrity": "sha512-39olGaX2djYUdhaQQHDZ0T0GwEp+5f9UB9HmEP0qHfdQHIq0xGQZuAZ5TLnJIc/88SrPLpEflPC+xUqOTv3c5g==", + "hasInstallScript": true, + "dependencies": { + "@puppeteer/browsers": "0.5.0", + "cosmiconfig": "8.1.3", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "puppeteer-core": "19.11.1" + } + }, + "node_modules/puppeteer-core": { + "version": "19.11.1", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-19.11.1.tgz", + "integrity": "sha512-qcuC2Uf0Fwdj9wNtaTZ2OvYRraXpAK+puwwVW8ofOhOgLPZyz1c68tsorfIZyCUOpyBisjr+xByu7BMbEYMepA==", + "dependencies": { + "@puppeteer/browsers": "0.5.0", + "chromium-bidi": "0.4.7", + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1107588", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "proxy-from-env": "1.1.0", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.13.0" + }, + "engines": { + "node": ">=14.14.0" + }, + "peerDependencies": { + "typescript": ">= 4.7.4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/puppeteer-core/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/puppeteer-core/node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "node_modules/puppeteer-core/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/puppeteer-core/node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/puppeteer-extra": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/puppeteer-extra/-/puppeteer-extra-3.3.6.tgz", + "integrity": "sha512-rsLBE/6mMxAjlLd06LuGacrukP2bqbzKCLzV1vrhHFavqQE/taQ2UXv3H5P0Ls7nsrASa+6x3bDbXHpqMwq+7A==", + "dependencies": { + "@types/debug": "^4.1.0", + "debug": "^4.1.1", + "deepmerge": "^4.2.2" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "@types/puppeteer": "*", + "puppeteer": "*", + "puppeteer-core": "*" + }, + "peerDependenciesMeta": { + "@types/puppeteer": { + "optional": true + }, + "puppeteer": { + "optional": true + }, + "puppeteer-core": { + "optional": true + } + } + }, + "node_modules/puppeteer-extra-plugin": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/puppeteer-extra-plugin/-/puppeteer-extra-plugin-3.2.3.tgz", + "integrity": "sha512-6RNy0e6pH8vaS3akPIKGg28xcryKscczt4wIl0ePciZENGE2yoaQJNd17UiEbdmh5/6WW6dPcfRWT9lxBwCi2Q==", + "dependencies": { + "@types/debug": "^4.1.0", + "debug": "^4.1.1", + "merge-deep": "^3.0.1" + }, + "engines": { + "node": ">=9.11.2" + }, + "peerDependencies": { + "playwright-extra": "*", + "puppeteer-extra": "*" + }, + "peerDependenciesMeta": { + "playwright-extra": { + "optional": true + }, + "puppeteer-extra": { + "optional": true + } + } + }, + "node_modules/puppeteer-extra-plugin-stealth": { + "version": "2.11.2", + "resolved": "https://registry.npmjs.org/puppeteer-extra-plugin-stealth/-/puppeteer-extra-plugin-stealth-2.11.2.tgz", + "integrity": "sha512-bUemM5XmTj9i2ZerBzsk2AN5is0wHMNE6K0hXBzBXOzP5m5G3Wl0RHhiqKeHToe/uIH8AoZiGhc1tCkLZQPKTQ==", + "dependencies": { + "debug": "^4.1.1", + "puppeteer-extra-plugin": "^3.2.3", + "puppeteer-extra-plugin-user-preferences": "^2.4.1" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "playwright-extra": "*", + "puppeteer-extra": "*" + }, + "peerDependenciesMeta": { + "playwright-extra": { + "optional": true + }, + "puppeteer-extra": { + "optional": true + } + } + }, + "node_modules/puppeteer-extra-plugin-user-data-dir": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/puppeteer-extra-plugin-user-data-dir/-/puppeteer-extra-plugin-user-data-dir-2.4.1.tgz", + "integrity": "sha512-kH1GnCcqEDoBXO7epAse4TBPJh9tEpVEK/vkedKfjOVOhZAvLkHGc9swMs5ChrJbRnf8Hdpug6TJlEuimXNQ+g==", + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^10.0.0", + "puppeteer-extra-plugin": "^3.2.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "playwright-extra": "*", + "puppeteer-extra": "*" + }, + "peerDependenciesMeta": { + "playwright-extra": { + "optional": true + }, + "puppeteer-extra": { + "optional": true + } + } + }, + "node_modules/puppeteer-extra-plugin-user-data-dir/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/puppeteer-extra-plugin-user-data-dir/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/puppeteer-extra-plugin-user-data-dir/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/puppeteer-extra-plugin-user-data-dir/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/puppeteer-extra-plugin-user-preferences": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/puppeteer-extra-plugin-user-preferences/-/puppeteer-extra-plugin-user-preferences-2.4.1.tgz", + "integrity": "sha512-i1oAZxRbc1bk8MZufKCruCEC3CCafO9RKMkkodZltI4OqibLFXF3tj6HZ4LZ9C5vCXZjYcDWazgtY69mnmrQ9A==", + "dependencies": { + "debug": "^4.1.1", + "deepmerge": "^4.2.2", + "puppeteer-extra-plugin": "^3.2.3", + "puppeteer-extra-plugin-user-data-dir": "^2.4.1" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "playwright-extra": "*", + "puppeteer-extra": "*" + }, + "peerDependenciesMeta": { + "playwright-extra": { + "optional": true + }, + "puppeteer-extra": { + "optional": true + } + } + }, + "node_modules/puppeteer/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/puppeteer/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==" + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/railroad-diagrams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", + "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==" + }, + "node_modules/randexp": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", + "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", + "dependencies": { + "discontinuous-range": "1.0.0", + "ret": "~0.1.10" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/randombytes": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.3.tgz", + "integrity": "sha512-lDVjxQQFoCG1jcrP06LNo2lbWp4QTShEXnhActFBwYuHprllQV6VUpwreApsYqCgD+N1mHoqJ/BI/4eV4R2GYg==" + }, + "node_modules/randomstring": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/randomstring/-/randomstring-1.3.0.tgz", + "integrity": "sha512-gY7aQ4i1BgwZ8I1Op4YseITAyiDiajeZOPQUbIq9TPGPhUm5FX59izIaOpmKbME1nmnEiABf28d9K2VSii6BBg==", + "dependencies": { + "randombytes": "2.0.3" + }, + "bin": { + "randomstring": "bin/randomstring" + }, + "engines": { + "node": "*" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/read-cmd-shim": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz", + "integrity": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/read-package-json": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-7.0.0.tgz", + "integrity": "sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==", + "dependencies": { + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/read-package-json-fast": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", + "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", + "dependencies": { + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", + "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", + "dependencies": { + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==" + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "optional": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sax": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", + "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/shallow-clone": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz", + "integrity": "sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==", + "dependencies": { + "is-extendable": "^0.1.1", + "kind-of": "^2.0.1", + "lazy-cache": "^0.2.3", + "mixin-object": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shallow-clone/node_modules/kind-of": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", + "integrity": "sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==", + "dependencies": { + "is-buffer": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shallow-clone/node_modules/lazy-cache": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz", + "integrity": "sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sharp": { + "version": "0.32.6", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.6.tgz", + "integrity": "sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==", + "hasInstallScript": true, + "dependencies": { + "color": "^4.2.3", + "detect-libc": "^2.0.2", + "node-addon-api": "^6.1.0", + "prebuild-install": "^7.1.1", + "semver": "^7.5.4", + "simple-get": "^4.0.1", + "tar-fs": "^3.0.4", + "tunnel-agent": "^0.6.0" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/sharp/node_modules/tar-fs": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", + "integrity": "sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==", + "dependencies": { + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^3.1.5" + } + }, + "node_modules/sharp/node_modules/tar-stream": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.6.tgz", + "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sigstore": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-2.1.0.tgz", + "integrity": "sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw==", + "dependencies": { + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "@sigstore/sign": "^2.1.0", + "@sigstore/tuf": "^2.1.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==" + }, + "node_modules/sshpk": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", + "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/streamx": { + "version": "2.15.2", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.2.tgz", + "integrity": "sha512-b62pAV/aeMjUoRN2C/9F0n+G8AfcJjNC0zw/ZmOHeFsIe4m4GzjVW9m6VHXVjk536NbdU9JRwKMJRfkc+zUFTg==", + "dependencies": { + "fast-fifo": "^1.1.0", + "queue-tick": "^1.0.1" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/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==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "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==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strtok3": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", + "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^4.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/tar": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-fs/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar-stream/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + }, + "node_modules/timm": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz", + "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==" + }, + "node_modules/tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/token-types": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", + "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/treeverse": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/treeverse/-/treeverse-3.0.0.tgz", + "integrity": "sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/ts-mixer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.3.tgz", + "integrity": "sha512-k43M7uCG1AkTyxgnmI5MPwKoUvS/bRvLvUb7+Pgpdlmok8AoqmUaZxUUw8zKM5B1lqZrt41GjYgnvAi0fppqgQ==" + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/tuf-js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-2.1.0.tgz", + "integrity": "sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA==", + "dependencies": { + "@tufjs/models": "2.0.0", + "debug": "^4.3.4", + "make-fetch-happen": "^13.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/tunnel": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "engines": { + "node": ">=0.6.11 <=0.7.0 || >=0.7.3" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" + }, + "node_modules/typed-emitter": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/typed-emitter/-/typed-emitter-1.4.0.tgz", + "integrity": "sha512-weBmoo3HhpKGgLBOYwe8EB31CzDFuaK7CCL+axXhUYhn4jo6DSkHnbefboCF5i4DQ2aMFe0C/FdTWcPdObgHyg==" + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + }, + "node_modules/uint4": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/uint4/-/uint4-0.1.2.tgz", + "integrity": "sha512-lhEx78gdTwFWG+mt6cWAZD/R6qrIj0TTBeH5xwyuDJyswLNlGe+KVlUPQ6+mx5Ld332pS0AMUTo9hIly7YsWxQ==" + }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "node_modules/undici": { + "version": "5.22.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.22.1.tgz", + "integrity": "sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw==", + "dependencies": { + "busboy": "^1.6.0" + }, + "engines": { + "node": ">=14.0" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + }, + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "dependencies": { + "unique-slug": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/urban-dictionary": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/urban-dictionary/-/urban-dictionary-3.0.2.tgz", + "integrity": "sha512-hoYevSg6JNr8NiYRtxz7sqBDBu4RL52Bd45L2jQQ44Rwrz6ACmnKnRcUkH2TIQRILN+viZMT/MYYU3OyBz68AA==", + "engines": { + "node": ">=14.15.1" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/utif2": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/utif2/-/utif2-4.1.0.tgz", + "integrity": "sha512-+oknB9FHrJ7oW7A2WZYajOcv4FcDR4CfoGB0dPNfxbi4GO05RRnFmt5oa23+9w32EanrYcSJWspUiJkLMs+37w==", + "dependencies": { + "pako": "^1.0.11" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/uuid-1345": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uuid-1345/-/uuid-1345-1.0.2.tgz", + "integrity": "sha512-bA5zYZui+3nwAc0s3VdGQGBfbVsJLVX7Np7ch2aqcEWFi5lsAEcmO3+lx3djM1npgpZI8KY2FITZ2uYTnYUYyw==", + "dependencies": { + "macaddress": "^0.5.1" + } + }, + "node_modules/uuid-by-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/uuid-by-string/-/uuid-by-string-4.0.0.tgz", + "integrity": "sha512-88ZSfcSkN04juiLqSsuyteqlSrXNFdsEPzSv3urnElDXNsZUXQN0smeTnh99x2DE15SCUQNgqKBfro54CuzHNQ==", + "dependencies": { + "js-md5": "^0.7.3", + "js-sha1": "^0.6.0" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/validate-npm-package-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", + "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", + "dependencies": { + "builtins": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/vec3": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/vec3/-/vec3-0.1.8.tgz", + "integrity": "sha512-LfKrP625Bsg/Tj52YdYPsHmpsJuo+tc6fLxZxXjEo9k2xSspKlPvoYTHehykKhp1FvV9nm+XU3Ehej5/9tpDCg==" + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/verror/node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" + }, + "node_modules/vm2": { + "version": "3.9.19", + "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.19.tgz", + "integrity": "sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==", + "deprecated": "The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.", + "dependencies": { + "acorn": "^8.7.0", + "acorn-walk": "^8.2.0" + }, + "bin": { + "vm2": "bin/vm2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/vm2-fixed": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/vm2-fixed/-/vm2-fixed-0.0.1.tgz", + "integrity": "sha512-OR6xu/sntqL1/q0smSvdyYvRUuO4WtCnCGTfgvcDSYCTMGw74UeKyuGrhpIHDez4Kzag/3ebJg8GWk2X9bYPJQ==", + "dependencies": { + "acorn": "^8.7.0", + "acorn-walk": "^8.2.0" + }, + "bin": { + "vm2": "bin/vm2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/walk-up-path": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/walk-up-path/-/walk-up-path-3.0.1.tgz", + "integrity": "sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==" + }, + "node_modules/weather-js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/weather-js/-/weather-js-2.0.0.tgz", + "integrity": "sha512-vM7BUa+QUOu4mW48Gdnqe6HRPFpBkNy0gjKvnOHwYpbdylvJorIG5+EjUVaf2SmWrkE0Je1tfsJG+pWQBEs16g==", + "dependencies": { + "request": "2.x.x", + "xml2js": "0.4.x" + } + }, + "node_modules/web-streams-polyfill": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/whatwg-fetch": { + "version": "3.6.19", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.19.tgz", + "integrity": "sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^16.13.0 || >=18.0.0" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/wikipedia": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/wikipedia/-/wikipedia-2.1.1.tgz", + "integrity": "sha512-l3lG6ieLTPoHfFEQ1KBJsY7MTEBiP+IJnKZO8ZFgUNA1StBMr4CKTKYw1Oxz2VmN0gUVVnm1MXt/WCm47YnxbQ==", + "dependencies": { + "axios": "^1.4.0", + "infobox-parser": "^3.6.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "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==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", + "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/ws": { + "version": "8.14.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", + "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/wunderground-api": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/wunderground-api/-/wunderground-api-1.1.4.tgz", + "integrity": "sha512-gykypGb3KXPYG3AzYfecWIdYAhHnN1+Xw6DWUdQ1k4cbgIkXSaFAnjvfcClDKaSpscdR4Ga/vPt7HjvzjMP2SQ==", + "dependencies": { + "request": "^2.44.0" + } + }, + "node_modules/xhr": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", + "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", + "dependencies": { + "global": "~4.4.0", + "is-function": "^1.0.1", + "parse-headers": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/xml-parse-from-string": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", + "integrity": "sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==" + }, + "node_modules/xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/xxhash-wasm": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-0.4.2.tgz", + "integrity": "sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA==" + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yargs": { + "version": "17.7.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", + "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "engines": { + "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yggdrasil": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/yggdrasil/-/yggdrasil-1.7.0.tgz", + "integrity": "sha512-QBIo5fiNd7688G3FqXXYGr36uyrYzczlNuzpWFy2zL3+R+3KT2lF+wFxm51synfA3l3z6IBiGOc1/EVXWCYY1Q==", + "dependencies": { + "node-fetch": "^2.6.1", + "uuid": "^8.2.0" + } + }, + "node_modules/yggdrasil/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/yo-mamma": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/yo-mamma/-/yo-mamma-1.3.0.tgz", + "integrity": "sha512-MSqfT/YvzccapmCETpRO51Z8hSPWPi9MtFhYvIn4eeea/WhV2l8IJYp2wfJDwAMA8h62Eg3Hkc30WnhW5OKLEA==" + }, + "node_modules/zlib": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zlib/-/zlib-1.0.5.tgz", + "integrity": "sha512-40fpE2II+Cd3k8HWTWONfeKE2jL+P42iWJ1zzps5W51qcTsOUKM5Q5m2PFb0CLxlmFAaUuUdJGc3OfZy947v0w==", + "hasInstallScript": true, + "engines": { + "node": ">=0.2.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..55437b3 --- /dev/null +++ b/package.json @@ -0,0 +1,44 @@ +{ + "dependencies": { + "@npmcli/arborist": "^7.2.0", + "@npmcli/metavuln-calculator": "^7.0.0", + "@tonejs/midi": "^2.0.28", + "@vitalets/google-translate-api": "^9.2.0", + "axios": "^1.5.1", + "chromium": "^3.0.3", + "color-convert": "^2.0.1", + "cowsay2": "^2.0.4", + "discord.js": "^14.11.0", + "dotenv": "^16.3.1", + "https": "^1.0.0", + "isolated-vm": "^4.6.0", + "minecraft-data": "^3.48.0", + "minecraft-protocol": "^1.44.0", + "minecraft-protocol-forge": "^1.0.0", + "mineflayer": "^4.14.0", + "mineflayer-cmd": "^1.1.3", + "moment-timezone": "^0.5.43", + "net": "^1.0.2", + "node_characterai": "^1.1.3", + "node_characterai_edited": "^1.1.5", + "node-weatherunderground": "^1.2.0", + "openweather-api-node": "^3.1.2", + "prismarine-chat": "^1.9.1", + "prismarine-nbt": "^2.2.1", + "prismarine-registry": "^1.7.0", + "randomstring": "^1.3.0", + "readline": "^1.3.0", + "sharp": "^0.32.6", + "urban-dictionary": "^3.0.2", + "uuid-1345": "^1.0.2", + "uuid-by-string": "^4.0.0", + "vec3": "^0.1.8", + "vm2": "^3.9.19", + "vm2-fixed": "^0.0.1", + "weather-js": "^2.0.0", + "wikipedia": "^2.1.1", + "wunderground-api": "^1.1.4", + "yo-mamma": "^1.3.0", + "zlib": "^1.0.5" + } +} diff --git a/shutdown.js b/shutdown.js new file mode 100644 index 0000000..e69de29 diff --git a/util/between.js b/util/between.js new file mode 100644 index 0000000..342a396 --- /dev/null +++ b/util/between.js @@ -0,0 +1,7 @@ +function between (min, max) { + return Math.floor( + Math.random() * (max - min) + min + ) +} + +module.exports = between diff --git a/util/blacklist util/auto_deop.js b/util/blacklist util/auto_deop.js new file mode 100644 index 0000000..e69de29 diff --git a/util/blacklist util/auto_mute.js b/util/blacklist util/auto_mute.js new file mode 100644 index 0000000..e69de29 diff --git a/util/blacklist util/list.txt b/util/blacklist util/list.txt new file mode 100644 index 0000000..e69de29 diff --git a/util/escapeMarkdown.js b/util/escapeMarkdown.js new file mode 100644 index 0000000..368a412 --- /dev/null +++ b/util/escapeMarkdown.js @@ -0,0 +1,16 @@ +function escapeMarkdown (text, zwsp) { + let unescaped + let escaped + try { + unescaped = text.replace(/\\(\*|@|_|`|~|\\)/g, '$1') + escaped = unescaped.replace(/(\*|@|_|`|~|\\)/g, zwsp + ? '\u200b\u200b$1' + : '\\$1' + ) + } catch (e) { + return unescaped + } + return escaped +} +//fr +module.exports = { escapeMarkdown } // ohio \ No newline at end of file diff --git a/util/eval_colors.js b/util/eval_colors.js new file mode 100644 index 0000000..98e9498 --- /dev/null +++ b/util/eval_colors.js @@ -0,0 +1,22 @@ +const styles = { + bigint: '\xa76', + boolean: '\xa76', + date: '\xa75', + module: '\xa7n', + name: undefined, + null: '\xa7l', + number: '\xa76', + regexp: '\xa74', + special: '\xa73', + string: '\xa72', + symbol: '\xa72', + undefined: '\xa78' +} + +function stylize (str, styleType) { + const style = styles[styleType] + if (style !== undefined) return `${style}${str}\xa7r` + return str +} + +module.exports = { stylize, styles } diff --git a/util/file-exists.js b/util/file-exists.js new file mode 100644 index 0000000..ddf102e --- /dev/null +++ b/util/file-exists.js @@ -0,0 +1,19 @@ +const fs = require('fs/promises') + +/** + * check if file exists + * @param {String} filepath the file path + * @return {boolean} if file exists true else false + */ +async function fileExists (filepath) { + try { + await fs.access(filepath) + return true + } catch (error) { + if (error.code !== 'ENOENT') throw error + + return false + } +} + +module.exports = fileExists diff --git a/util/files.js b/util/files.js new file mode 100644 index 0000000..c80288f --- /dev/null +++ b/util/files.js @@ -0,0 +1,44 @@ +const fs = require('fs') +const path = require('path') +const CommandError = require('../CommandModules/command_error.js') + +async function inject (bot, options) { + + for (const filename of fs.readdirSync(path.join(__dirname, '../commands'))) { + try { + const command = require(path.join(__dirname, '../commands', filename)) + bot.files.register(command) + + } else { + for (const filename of fs.readdirSync(path.join(__dirname, '../'))) { + try { + const util = require(path.join(__dirname, './util', filename)) + bot.files.register(util) + + } + } +} + +module.exports = inject + /*const fs = require('fs/promises') +const path = require('path') + + +async function loadPlugins (directory) { + const plugins = [] + + for (const filename of await fs.readdir(directory)) { + if (!filename.endsWith('.js')) continue + + const filepath = path.join(directory, filename) + + const plugin = require(filepath) + + plugins.push(plugin) + } + + return plugins +} + +module.exports = loadPlugins +*/