diff --git a/config.js b/config.js new file mode 100644 index 0000000..7c08417 --- /dev/null +++ b/config.js @@ -0,0 +1,55 @@ +const { ActivityType } = require("discord.js"); +module.exports = { + token: process.env.token || "", // Bot token from .env or place in here + prefix: process.env.prefix || "", // Put bot message commands prefix in here. + serverId: process.env.server_id || "", // Put bot main server's id in here. + only_one_guild: false, // Set bot slash command to all guild or just one with placing true or false. + source: { + database: { + type: process.env.database_type || "", // Choose one type for save users and guilds data. Types: "mysql" | "sql" | "mongodb" | "json" + mongoURL: process.env.database_mongoURL || "", // If you choose "mongodb" type place your mongo url. + mysql: { + host: process.env.database_msql_host || "", // Place your Mysql server host name. + user: process.env.database_msql_user || "", // Place your Mysql server username. + password: process.env.database_msql_password || "", // Place your Mysql server password. + database: process.env.database_msql_database || "" // Place your Mysql server database name. + } // If you choose "mysql" type place your Mysql server information. + } + }, + status: { + activity: [ + "Build by Sobhan-SRZA (mr.sinre)", + "Working in {servers} Servers", + "Work for {members} Members" + ], // Set bot status activity, you can change it. | You can use "{members}" variable to shows bot all users. + type: [ + ActivityType.Custom + ], // Can be: ActivityType.Competing | ActivityType.Listening | ActivityType.Playing | ActivityType.Streaming | ActivityType.Watching + presence: [ + "dnd" + ] // Can be: "online" | "dnd" | "idle" | "offline" + }, + webhook: { + url: process.env.webhook_url || "", // Place a webhook url in here. + username: process.env.webhook_username || "Pc Bot", // Place a name for webhook in here. + avatar: process.env.webhook_avatar || "https://cdn.discordapp.com/avatars/1182394110473150554/f971b4db65d5b6b031106371f70fe2ce.png" // Place a image url in here. + }, + owners: [ + "865630940361785345", + "986314682547716117", + "866992479328665600" + ], // Place bot developers user id in here. + chat_bot: { + name: "Caesar", // Place chat bot name. + gender: "Male" // Place chat bot gender like example: "Male" | "Female" + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/example.env b/example.env new file mode 100644 index 0000000..d0af75c --- /dev/null +++ b/example.env @@ -0,0 +1,19 @@ +# At here place bot token like example: +# token="OTI2bna9qZvCuBu9Nwm7Di4U50y6.Yc1tgA.bNJRNnS1-l537xMkVXlYjgYHK" +token="" + +# Place bot message commands prefix in here like example: +# prefix="!" +prefix="" + +# Choose one type for save users and guilds data. Types: "mysql" | "sql" | "mongodb" | "json" +# database_type="json" +database_type="json" + +# Place bot main server's id in here like example: +# server_id="1054814674979409940" +server_id="" + +# Place a webhook url in here like example: +# webhook_url="https://discord.com/api/webhooks/3187212332695885577/nJm_08irrjZOWV2QJ1mnYoa9LEqTQk1VFIdT-A_ue4hvkTvDvo7Z_6mMaGfx2C7G1D7f" +webhook_url="" \ No newline at end of file diff --git a/index.js b/index.js new file mode 100644 index 0000000..1390ce9 --- /dev/null +++ b/index.js @@ -0,0 +1,108 @@ +/** + * @license + BSD 3-Clause License + + Copyright (c) 2024, the respective contributors, as shown by Persian Caesar and Sobhan.SRZA (mr.sinre) file. + + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * @returns + */ +// Packages +require("dotenv").config(); +const { + Client, + Collection, + Partials, + GatewayIntentBits +} = require("discord.js"); +const clc = require("cli-color"); +const fs = require("fs"); +const post = require("./src/functions/post.js"); +const client = new Client({ + intents: Object.values(GatewayIntentBits).filter(a => !isNaN(a)), + partials: Object.values(Partials).filter(a => !isNaN(a)) +}); +const { Player } = require("discord-player"); +const { YoutubeiExtractor, generateOauthTokens } = require("discord-player-youtubei"); +const { DefaultExtractors } = require("@discord-player/extractor"); +const player = new Player(client); +(async () => { + await player.extractors.loadMulti(DefaultExtractors); + await player.extractors.register(YoutubeiExtractor, { + authentication: await generateOauthTokens() + }); +})(); +client.config = require("./config.js"); +client.token = client.config.token; +client.commands = new Collection(); +client.cooldowns = new Collection(); + +// Load Handlers +let amount = 0; +const handle = fs.readdirSync("./src/handlers").filter(file => file.endsWith(".js")); +const data = require("./package.json"); +const error = require("./src/functions/error.js"); +post( + clc.cyanBright(`Welcome to ${clc.blueBright(data.name)}! | Version: ${clc.blueBright(data.version)}`) + "\n" + + `Coded By ${clc.yellow(`Sobhan-SRZA`)} & ${clc.yellow(`Persian Caesar`)} With ${clc.redBright("❤️")}` + "\n" + + `Discord: ${clc.blueBright(`Mr.Sinre`)} | ${clc.blueBright(`mr.sinre`)} | ${clc.blueBright(`https://dsc.gg/persian-caesar`)}`, + "W", + "magentaBright", + "cyanBright" +); +post(`Logging into the BOT...`, "S", "yellowBright", "greenBright"); +handle.forEach((file) => { + require(`./src/handlers/${file}`)(client); + amount += 1; +}); +post(`${clc.cyanBright(amount)} Handler Is Loaded!!`, "S", "yellowBright", "greenBright"); + +// Consol +if (client.token) { + client.login(client.token).catch(e => { + post("The Bot Token You Entered Into Your Project Is Incorrect Or Your Bot's INTENTS Are OFF!!", "E", "red", "redBright"); + error(e); + }); +} else { + post("Please Write Your Bot Token Opposite The Token In The config.js File In Your Project!!", "E", "red", "redBright"); +} + +// Anti Crash +process.on("unhandledRejection", (reason) => error(reason)); +process.on("rejectionHandled", (promise) => error(promise)); +process.on("uncaughtException", (e) => error(e)); +process.on("uncaughtExceptionMonitor", (e) => error(e)); +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..72463f1 --- /dev/null +++ b/package.json @@ -0,0 +1,33 @@ +{ + "name": "all-for-one-bot", + "version": "0.0.3", + "description": "This discord bot have some featrues like mini games for members, auto reaction and utility options for admins.", + "main": "index.js", + "license": "BSD-3-Clause", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "start": "node index.js" + }, + "dependencies": { + "@discord-player/extractor": "^7.0.0-dev.4", + "@napi-rs/canvas": "^0.1.45", + "axios": "^1.6.7", + "cli-color": "^2.0.3", + "discord-api-types": "^0.37.101", + "discord-gamecord": "^4.4.1", + "discord-player": "^7.0.0-dev.4", + "discord-player-youtubei": "^1.3.7", + "discord-tictactoe": "^4.2.0", + "discord.js": "^14.15.3", + "dotenv": "^16.3.1", + "ffmpeg-static": "^5.2.0", + "gradio-chatbot": "^0.0.28", + "jalali-moment": "^3.3.11", + "jimp": "^0.22.10", + "mediaplex": "^1.0.0", + "prism-media": "^1.3.5", + "quick.db": "^9.1.7", + "write-file-atomic": "^5.0.1", + "youtube-ext": "^1.1.25" + } +} \ No newline at end of file diff --git a/readme.md b/readme.md index f6f9c96..2f03eec 100644 --- a/readme.md +++ b/readme.md @@ -50,4 +50,4 @@ This source is full discord bot and can do anything you want. My Discord Account - + \ No newline at end of file diff --git a/src/commands/Admins/clear.js b/src/commands/Admins/clear.js new file mode 100644 index 0000000..66e50c6 --- /dev/null +++ b/src/commands/Admins/clear.js @@ -0,0 +1,91 @@ +const { + EmbedBuilder, + ChannelType, + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const error = require("../../functions/error"); +module.exports = { + name: "clear", + description: "پاک کردن پیام بیشتر از 100 نمیشود", + category: "admin", + type: ApplicationCommandType.ChatInput, + user_permissions: ["ManageMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_admin: false, + only_slash: true, + only_message: false, + options: [{ + name: "amount", + description: "تعداد پاک کردن ", + type: ApplicationCommandOptionType.String, + required: false + }, { + name: "channel", + description: "چنلی ک میخوای پیاماشو پاک کنی ", + type: ApplicationCommandOptionType.Channel, + channelTypes: [ChannelType.GuildText], + required: false + }], + + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction) => { + let channel = interaction.options.getChannel("channel") || interaction.channel; + let amount = interaction.options.getString("amount") || 100; + try { + if (isNaN(amount)) { + interaction.reply({ + content: `❌| لطفا تعداد بگو`, + ephemeral: true, + }) + } + const embed = new EmbedBuilder() + .setColor("Yellow") + .setTitle(`⚖️| Clear Information`) + .addFields({ + name: `چنل`, + value: `${channel}`, + inline: true + }, { + name: `پاک شده توسط`, + value: `${interaction.user}`, + inline: true + }) + .setTimestamp(); + + await channel.bulkDelete(amount, true).then(async (msg) => { + embed.addFields({ name: `تعداد پیام های پاک شده`, value: `${msg.size}`, inline: true }) + if (msg.size === 0) { + interaction.reply({ + content: `**❌| پیامی برای پاک کردن پیدا نشد**`, + ephemeral: true + }) + } + return await interaction.reply({ + embeds: [embed], + ephemeral: true, + }) + }) + } catch (e) { + error(e) + } + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Admins/lock.js b/src/commands/Admins/lock.js new file mode 100644 index 0000000..39e1882 --- /dev/null +++ b/src/commands/Admins/lock.js @@ -0,0 +1,85 @@ +const { + EmbedBuilder, + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const error = require("../../functions/error"); +module.exports = { + name: "lock", + description: "بستن یا باز کردن یه چنل خاص", + category: "admin", + type: ApplicationCommandType.ChatInput, + user_permissions: ["ManageChannels"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_admin: false, + only_slash: true, + only_message: false, + options: [{ + name: "type", + description: "میخوای چنل رو ببندی یا باز کنی؟", + type: ApplicationCommandOptionType.String, + required: true, + choices: [{ + name: "Lock", + value: "lock" + }, { + name: "Unlock", + value: "unlock" + }] + }, { + name: "role-member", + description: "رولی که میخوای چتش بسته باشه", + type: ApplicationCommandOptionType.Mentionable, + required: false + }, { + name: "channel", + description: "چنلی ک میخوای قفل کنی", + type: ApplicationCommandOptionType.Channel, + required: false + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const type = interaction.options.getString("type"); + const channel = interaction.options.getChannel("channel") || interaction.channel; + const role = interaction.options.getMentionable("role-member") || interaction.guild.roles.everyone; + try { + if (type === "lock") { + channel.permissionOverwrites.edit(role.id, { + SendMessages: false + }); + return await interaction.reply({ + embeds: [new EmbedBuilder().setColor("Green").setTitle(`🔒| با موافقیت پاک شد`).addFields([{ name: `چنل`, value: `${channel}` }, { name: `فقل شده توسط`, value: `${interaction.user}` }, { name: `رول فقل شده`, value: `${role}` }]).setTimestamp()], + ephemeral: true, + }); + } else { + channel.permissionOverwrites.edit(role.id, { + SendMessages: true + }); + return await interaction.reply({ + embeds: [new EmbedBuilder().setColor("Green").setTitle(`🔓| با موفقیت باز شد`).addFields([{ name: `چنل`, value: `${channel}` }, { name: `باز شده نوسط`, value: `${interaction.user}` }, { name: `رول باز شده `, value: `${role}` }]).setTimestamp()], + ephemeral: true, + }) + } + } catch (e) { + error(e) + } + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Admins/post.js b/src/commands/Admins/post.js new file mode 100644 index 0000000..900e0ff --- /dev/null +++ b/src/commands/Admins/post.js @@ -0,0 +1,194 @@ +const { + EmbedBuilder, + ChannelType, + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const error = require("../../functions/error"); +module.exports = { + name: "post", + description: "به هرجایی که خواستی یه مسیج بفرست.", + category: "admin", + cooldown: 5, + type: ApplicationCommandType.ChatInput, + user_permissions: ["Administrator"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_admin: false, + only_slash: true, + only_message: false, + options: [{ + name: "content", + type: ApplicationCommandOptionType.String, + description: "اگر میخواید یه مسیج بنویسید اینجا پر کنید.", + required: false + }, { + name: "file", + description: "یک فایل آپلود کنید.", + type: ApplicationCommandOptionType.Attachment, + required: false, + }, { + name: "thumbnail", + type: ApplicationCommandOptionType.Attachment, + description: "فقط عکس یا گیف میتوانید آپلود کنید.", + required: false + }, { + name: "image", + type: ApplicationCommandOptionType.Attachment, + description: "فقط عکس یا گیف میتوانید آپلود کنید..", + required: false + }, { + name: "description", + type: ApplicationCommandOptionType.String, + description: "بخش description امبد را پر کنید.", + required: false + }, { + name: "footer_text", + type: ApplicationCommandOptionType.String, + description: "بخش فوتر را پر کنید.", + required: false + }, { + name: "footer_icon", + type: ApplicationCommandOptionType.Attachment, + description: "برای بخش فوتیر عکس یا گیف آپلود کنید.", + required: false + }, { + name: "author_text", + type: ApplicationCommandOptionType.String, + description: "پخش بالای امبد را پر کنید.", + required: false + }, { + name: "author_icon", + type: ApplicationCommandOptionType.Attachment, + description: "برای بخش بالای امبد عکس یا گیف آپلود کنید.", + required: false + }, { + name: "title", + type: ApplicationCommandOptionType.String, + description: "تایتل را پر کنید.", + required: false + }, { + name: "timestamp", + type: ApplicationCommandOptionType.Boolean, + description: "آیا میخواهید تاریخ روز را در زیر امبد نشان دهد؟", + required: false + }, { + name: "color", + type: ApplicationCommandOptionType.String, + description: "رنگ امبد را لطفا با قرار دادن هکس کد تعیین کنید.", + required: false + }, { + name: "channel", + description: "چنلی که میخواهید مسیج در آنجا فرستاده سود.", + type: ApplicationCommandOptionType.Channel, + channelTypes: [ChannelType.GuildText], + required: false + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const content = interaction.options.getString("content"); + const channel = interaction.options.getChannel("channel") || interaction.channel; + const description = interaction.options.getString("description"); + const color = interaction.options.getString("color"); + const title = interaction.options.getString("title"); + const image = interaction.options.getAttachment("image"); + const footer_text = interaction.options.getString("footer_text"); + const footer_icon = interaction.options.getAttachment("footer_icon"); + const author_text = interaction.options.getString("author_text"); + const author_icon = interaction.options.getAttachment("author_icon"); + const timestamp = interaction.options.getBoolean("timestamp"); + const thumbnail = interaction.options.getAttachment("thumbnail"); + const file = interaction.options.getAttachment("file"); + const embed = new EmbedBuilder(); + if (color) { + embed.setColor(`${color}`); + }; + if (description) { + embed.setDescription(`${description.replaceAll("{next}", "\n")}`) + }; + if (thumbnail) { + embed.setThumbnail(`${thumbnail.url}`) + }; + if (image) { + embed.setImage(`${image.url}`) + }; + if (timestamp === true) { + embed.setTimestamp(new Date()) + }; + if (title) { + embed.setTitle(`${title.replaceAll("{next}", "\n")}`) + }; + if (!author_icon && author_text) { + embed.setAuthor({ + name: `${author_text.replaceAll("{next}", "\n")}` + }) + }; + if (author_icon && !author_text) { + return await interaction.reply({ + content: `شما نمیتوانید یک آثور فقط با عکس داشته باشید دوباره تلاش کنید.\nدفه ی بعد بخش author_text رو پر کن.`, + ephemeral: true + }) + }; + if (author_icon && author_text) { + embed.setAuthor({ + name: `${author_text.replaceAll("{next}", "\n")}`, + iconURL: `${author_icon.url}` + }); + }; + if (!footer_icon && footer_text) { + embed.setFooter({ + text: `${footer_text.replaceAll("{next}", "\n")}` + }); + }; + if (footer_icon && !footer_text) { + return await interaction.reply({ + content: `شما نمیتوانید یک فوتر فقط با عکس داشته باشید دوباره تلاش کنید.\nدفه ی بعد بخش footer_text رو پر کن.`, + ephemeral: true + }) + }; + if (footer_icon && footer_text) { + embed.setFooter({ + text: `${footer_text.replaceAll("{next}", "\n")}`, + iconURL: `${footer_icon.url}` + }) + }; + const embeds = embed.data.description || embed.data.title || embed.data.author || embed.data.footer || embed.data.image || embed.data.thumbnail; + if (embeds || content || file) { + await interaction.reply({ + content: `مسیج شما با موفقیت در چنل ${channel} ارسال شد.`, + ephemeral: true + }); + return await channel.send({ + content: content ? content.replaceAll("{next}", "\n") : " ", + embeds: embeds ? [embed] : [], + files: file ? [file] : [] + }); + } else if (!embeds && !content && !file) { + return await interaction.reply({ + content: `شما نمیتوانید بدون هیچ محتوایی یه مسیج در چنل بفرستید.`, + ephemeral: true + }); + } + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Admins/setup.js b/src/commands/Admins/setup.js new file mode 100644 index 0000000..82d1dcf --- /dev/null +++ b/src/commands/Admins/setup.js @@ -0,0 +1,932 @@ +const { + ButtonBuilder, + ActionRowBuilder, + EmbedBuilder, + ButtonStyle, + ChannelType, + StringSelectMenuBuilder, + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +module.exports = { + name: "setup", + description: "ثبت تنظیمات ربات در سرور.", + category: "admin", + type: ApplicationCommandType.ChatInput, + user_permissions: ["ManageGuild", "ManageRoles", "ManageChannels"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_admin: false, + only_slash: true, + only_message: false, + options: [ + { + name: "chat-bot", + description: "Set the chat bot channels.", + type: ApplicationCommandOptionType.Subcommand, + options: [{ + name: "channel", + description: "Set the chat bot channels.", + type: ApplicationCommandOptionType.Channel, + channelTypes: [ChannelType.GuildText], + required: true + }] + }, { + name: "custom-command", + description: "Set the chat bot channels.", + type: ApplicationCommandOptionType.Subcommand, + options: [{ + name: "name", + description: "Place command name.", + type: ApplicationCommandOptionType.String, + required: true + }, { + name: "message", + description: "Write command response message.", + type: ApplicationCommandOptionType.String, + required: true + }] + }, { + name: "auto-reaction", + description: "اد کردن چنل هایی که میخواهید در آن ایموجی ها اوتوماتیک ریکشن بشن.", + type: ApplicationCommandOptionType.Subcommand, + options: [{ + name: "channel", + description: "یه چنل بزار.", + type: ApplicationCommandOptionType.Channel, + channelTypes: [ChannelType.GuildText], + required: true + }, { + name: "emoji", + description: "ایموجی ای که میخوای ری اکت شه رو بزار.", + type: ApplicationCommandOptionType.String, + required: true + }] + }, { + name: "auto-thread", + description: "تنظیم اوتوثرید برای چنل های سرور.", + type: ApplicationCommandOptionType.Subcommand, + options: [{ + name: "channel", + description: "یه چنل بزار.", + type: ApplicationCommandOptionType.Channel, + channelTypes: [ChannelType.GuildText], + required: true + }, { + name: "name", + description: "اسمی که میخوای اول اسم ثرید بیاد رو بنویس.", + type: ApplicationCommandOptionType.String, + required: false + }] + }, { + name: "welcome", + description: "سیستم ولکام سرور.", + type: ApplicationCommandOptionType.Subcommand, + options: [{ + name: "channel", + description: "چنل ولکام رو بزار.", + type: ApplicationCommandOptionType.Channel, + channelTypes: [ChannelType.GuildText], + required: true + }, { + name: "message", + description: "یه متن برای پیام ولکام بزار.", + type: ApplicationCommandOptionType.String, + required: false + }] + }, { + name: "ticket-message", + description: "فرستادن مسیج تیکت.", + type: ApplicationCommandOptionType.Subcommand, + options: [{ + name: "content", + type: ApplicationCommandOptionType.String, + description: "اگر میخواید یه مسیج بنویسید اینجا پر کنید.", + required: false + }, { + name: "file", + description: "یک فایل آپلود کنید.", + type: ApplicationCommandOptionType.Attachment, + required: false, + }, { + name: "thumbnail", + type: ApplicationCommandOptionType.Attachment, + description: "فقط عکس یا گیف میتوانید آپلود کنید.", + required: false + }, { + name: "image_url", + type: ApplicationCommandOptionType.Attachment, + description: "فقط عکس یا گیف میتوانید آپلود کنید..", + required: false + }, { + name: "description", + type: ApplicationCommandOptionType.String, + description: "بخش description امبد را پر کنید.", + required: false + }, { + name: "footer_text", + type: ApplicationCommandOptionType.String, + description: "بخش فوتر را پر کنید.", + required: false + }, { + name: "footer_iconurl", + type: ApplicationCommandOptionType.Attachment, + description: "برای بخش فوتیر عکس یا گیف آپلود کنید.", + required: false + }, { + name: "author_text", + type: ApplicationCommandOptionType.String, + description: "پخش بالای امبد را پر کنید.", + required: false + }, { + name: "author_iconurl", + type: ApplicationCommandOptionType.Attachment, + description: "برای بخش بالای امبد عکس یا گیف آپلود کنید.", + required: false + }, { + name: "title", + type: ApplicationCommandOptionType.String, + description: "تایتل را پر کنید.", + required: false + }, { + name: "timestamp", + type: ApplicationCommandOptionType.Boolean, + description: "آیا میخواهید تاریخ روز را در زیر امبد نشان دهد؟", + required: false + }, { + name: "color", + type: ApplicationCommandOptionType.String, + description: "رنگ امبد را لطفا با قرار دادن هکس کد تعیین کنید.", + required: false + }, { + name: "channel", + description: "چنلی که میخواهید مسیج در آنجا فرستاده سود.", + type: ApplicationCommandOptionType.Channel, + channelTypes: [ChannelType.GuildText], + required: false + }] + }, { + name: "ticket-menu", + description: "گزینه های داخل منوی تیکت مسیج رو ست کن.", + type: ApplicationCommandOptionType.Subcommand, + options: [{ + name: "name", + description: "اسمش رو وارد کن.", + type: ApplicationCommandOptionType.String, + required: true + }, { + name: "emoji", + description: "اگه ایموجی قراره داشته باشه ایموجی رو اد کن.", + type: ApplicationCommandOptionType.String, + required: false + }, { + name: "role", + description: "رول ادمین برای این آپشن رو انتخاب کن.", + type: ApplicationCommandOptionType.Role, + required: false + }] + }, { + name: "stats", + description: "برای نشون دادن اطلاعات سرور و باقی چیز ها روی اسم چنل ها.", + type: ApplicationCommandOptionType.Subcommand, + options: [{ + name: "type", + description: "میخوای چه نوعی اطلاعاتی نمایش بدی؟", + type: ApplicationCommandOptionType.String, + choices: [{ + name: "Members Count", + value: "gmc" + }, { + name: "Members On Voice Count", + value: "gvmc" + }, { + name: "Solar Date", + value: "date-fa" + }, { + name: "AD Date", + value: "date-en" + }], + required: true + }, { + name: "channel", + description: "یه چنل بزار.", + type: ApplicationCommandOptionType.Channel, + required: true + }, { + name: "name", + description: "اسم چنل بر اساس نوعی که رای نمایش اطلاعات انتخاب کردی رو با متغیر ها رو بنویس.", + type: ApplicationCommandOptionType.String, + required: false + }] + }, { + name: "only-media", + description: "ثبت چنل های مخصوص عکس و فیلم.", + type: ApplicationCommandOptionType.Subcommand, + options: [{ + name: "channel", + description: "یه چنل وارد کن.", + type: ApplicationCommandOptionType.Channel, + channelTypes: [ChannelType.GuildText], + required: true + }] + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const db = client.db; + switch (interaction.options.getSubcommand()) { + case "chat-bot": { + const channel = interaction.options.getChannel("channel"); + const database = await db.get(`chatBot.${interaction.guild.id}`); + await interaction.deferReply({ ephemeral: false }); + if (database && database.some(a => a === channel.id)) { + const collector = await interaction.editReply({ + content: `قبلا چنل <#${channel.id}> در دیتابیس ذخیره شده است.\nآیا تمایل به حذف آن دارید؟`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("setup-accept").setEmoji("✅").setLabel("بله").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("setup-cancel").setEmoji("❌").setLabel("خیر").setStyle(ButtonStyle.Secondary))] + }); + const collect = collector.createMessageComponentCollector({ time: 60 * 1000 }) + collect.on("collect", async (button) => { + switch (button.customId) { + case "setup-accept": { + await button.deferUpdate(); + await db.set(`chatBot.${interaction.guild.id}`, database.filter(a => a !== channel.id)); + return await button.editReply({ + content: `چنل با موفقیت از دیتابیس حذف شد.`, + components: [] + }); + }; + case "setup-cancel": { + collect.stop(); + }; + } + }); + collect.on("end", async () => { + return await interaction.deleteReply(); + }); + } else { + await db.push(`chatBot.${interaction.guild.id}`, channel.id); + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle("Chat Bot") + .setDescription("Successfully your server chat bot channel have setup.") + .setFooter({ text: `Admin Embed • ${copyRight.footerText}` }) + .setThumbnail(author.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "Chat Bot Channels:", + value: `**${(await db.get(`chatBot.${interaction.guild.id}`)).map(a => `<#${a}>`).join(", ")}**`, + inline: false + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }) + } + } + + case "custom-command": { + const cmdName = interaction.options.getString("name"); + const cmdMessage = interaction.options.getString("message"); + const data = { + name: cmdName, + message: cmdMessage + }; + const database = await db.get(`commands.${interaction.guild.id}`); + await interaction.deferReply({ ephemeral: false }); + if (database && database.some(a => a.name === data.name)) { + const collector = await interaction.editReply({ + content: `قبلا کامند \`${data.name}\` در دیتابیس ذخیره شده است.\nآیا تمایل به حذف آن دارید؟`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("setup-accept").setEmoji("✅").setLabel("بله").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("setup-cancel").setEmoji("❌").setLabel("خیر").setStyle(ButtonStyle.Secondary))] + }); + const collect = collector.createMessageComponentCollector({ time: 60 * 1000 }) + collect.on("collect", async (button) => { + switch (button.customId) { + case "setup-accept": { + await button.deferUpdate(); + await db.set(`commands.${interaction.guild.id}`, database.filter(a => a.name !== data.name)); + return await button.editReply({ + content: `کامند با موفقیت از دیتابیس حذف شد.`, + components: [] + }); + }; + case "setup-cancel": { + return collect.stop(); + }; + } + }); + collect.on("end", async () => { + return await interaction.deleteReply(); + }); + } else { + await db.push(`commands.${interaction.guild.id}`, data); + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle("Custom Command") + .setDescription("Successfully your custom command have setup.") + .setFooter({ text: `Admin Embed • ${copyRight.footerText}` }) + .setThumbnail(author.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "Name:", + value: `\`${data.name}\``, + inline: false + }, { + name: "Response:", + value: `${data.message}`, + inline: false + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } + break; + } + + + case "auto-reaction": { + const channel = interaction.options.getChannel("channel"); + const emotes = interaction.options.getString("emoji"); + const data = { + id: channel.id, + reactions: emotes.split(" ") + }; + const database = await db.get(`autoReaction.${interaction.guild.id}`); + await interaction.deferReply({ ephemeral: false }); + if (database && database.some(a => a.id === data.id)) { + const collector = await interaction.editReply({ + content: `قبلا چنل <#${data.id}> در دیتابیس ذخیره شده است.\nآیا تمایل به حذف آن دارید؟`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("setup-accept").setEmoji("✅").setLabel("بله").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("setup-cancel").setEmoji("❌").setLabel("خیر").setStyle(ButtonStyle.Secondary))] + }); + const collect = collector.createMessageComponentCollector({ time: 60 * 1000 }) + collect.on("collect", async (button) => { + switch (button.customId) { + case "setup-accept": { + await button.deferUpdate(); + await db.set(`autoReaction.${interaction.guild.id}`, database.filter(a => a.id !== data.id)); + return await button.editReply({ + content: `چنل با موفقیت از دیتابیس حذف شد.`, + components: [] + }); + }; + case "setup-cancel": { + return collect.stop(); + }; + } + }); + collect.on("end", async () => { + return await interaction.deleteReply(); + }); + } else { + await db.push(`autoReaction.${interaction.guild.id}`, data); + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle("ریکشن خودکار") + .setDescription("سیستم ریکشن خودکار در تکس چنل مورد نظر با موفقیت ست شد و در دیتابیس ذخیره شد.") + .setFooter({ text: `Admin Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "چنل:", + value: `**<#${data.id}>**`, + inline: false + }, { + name: "ایموجی ها:", + value: `**${data.reactions.join(", ")}**`, + inline: false + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }) + }; + break; + } + + case "auto-thread": { + const channel = interaction.options.getChannel("channel"); + const name = interaction.options.getString("name"); + await interaction.deferReply({ ephemeral: false }); + const data = { + id: channel.id, + name: name ?? "Comments" + }; + const database = await db.get(`autoThread.${interaction.guild.id}`); + if (database && database.some(a => a.id === data.id)) { + const collector = await interaction.editReply({ + content: `قبلا چنل <#${data.channel}> در دیتابیس ذخیره شده است.\nآیا تمایل به حذف آن دارید؟`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("setup-accept").setEmoji("✅").setLabel("بله").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("setup-cancel").setEmoji("❌").setLabel("خیر").setStyle(ButtonStyle.Secondary))] + }); + const collect = collector.createMessageComponentCollector({ time: 60 * 1000 }) + collect.on("collect", async (button) => { + switch (button.customId) { + case "setup-accept": { + await button.deferUpdate(); + await db.set(`autoThread.${interaction.guild.id}`, database.filter(a => a.channel !== data.channel)); + return await button.editReply({ + content: `چنل با موفقیت از دیتابیس حذف شد.`, + components: [] + }); + }; + case "setup-cancel": { + return collect.stop(); + }; + } + }); + collect.on("end", async () => { + return await interaction.deleteReply(); + }); + } else { + await db.push(`autoThread.${interaction.guild.id}`, data); + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle("اوتو ثرید") + .setDescription("سیستم اوتو ثرید برای چنل مورد نظر با موفقیت انجام شد.") + .setFooter({ text: `Admin Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "چنل:", + value: `**<#${data.id}>**`, + inline: false + }, { + name: "اسم ثرید:", + value: `\`${data.name}\``, + inline: false + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + }; + break; + } + + case "welcome": { + const channel = interaction.options.getChannel("channel"); + const message = interaction.options.getString("message"); + const data = { + channel: channel.id, + message: message ?? "Dear {member} Welcome to **{guild}** Server 👋🏻 ♥" + }; + const database = await db.get(`welcome.${interaction.guild.id}`); + const variables = [ + { + name: "{member}", + description: "منشن شدن یوزری که جوین شده." + }, + { + name: "{memberName}", + description: "نمایش اسم یوزری که جوین شده." + }, + { + name: "{guild}", + description: "نمایش اسم سرور" + }, + { + name: "{next}", + description: "رفتن به لاین یا خط بعدی." + }, + { + name: "{count}", + description: "نمایش تعداد ممبرای سرور." + } + + ]; + await interaction.deferReply({ ephemeral: false }); + if (database && database.channel === data.channel) { + const collector = await interaction.editReply({ + content: `قبلا چنل <#${data.channel}> در دیتابیس ذخیره شده است.\nآیا تمایل به حذف آن دارید؟`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("setup-accept").setEmoji("✅").setLabel("بله").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("setup-cancel").setEmoji("❌").setLabel("خیر").setStyle(ButtonStyle.Secondary))] + }); + const collect = collector.createMessageComponentCollector({ time: 60 * 1000 }) + collect.on("collect", async (button) => { + switch (button.customId) { + case "setup-accept": { + await button.deferUpdate(); + await db.delete(`welcome.${interaction.guild.id}`); + return await button.editReply({ + content: `چنل با موفقیت از دیتابیس حذف شد.`, + components: [] + }); + }; + case "setup-cancel": { + return collect.stop(); + }; + } + }); + collect.on("end", async () => { + return await interaction.deleteReply(); + }); + } else { + await db.set(`welcome.${interaction.guild.id}`, data); + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle("خوش آمدگویی") + .setDescription("سیستم ولکامینگ سرور با موفقیت ست شد و در دیتابیس ذخیره شد.") + .setFooter({ text: `Admin Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "چنل:", + value: `**<#${data.channel}>**`, + inline: false + }, { + name: "پیغام همراه با عکس:", + value: `\`${data.message}\``, + inline: false + }, { + name: "متغیرها:", + value: `**${variables.map(a => `\`${a.name}\` | ${a.description}`).join("\n")}**`, + inline: false + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }) + } + break; + } + + case "ticket-message": { + const text = interaction.options.getString("content"); + const channel = interaction.options.getChannel("channel") || interaction.channel; + const description = interaction.options.getString("description"); + const color = interaction.options.getString("color"); + const title = interaction.options.getString("title"); + const image = interaction.options.getAttachment("image_url"); + const footer_text = interaction.options.getString("footer_text"); + const footer_iconURL = interaction.options.getAttachment("footer_iconurl"); + const author_text = interaction.options.getString("author_text"); + const author_iconURL = interaction.options.getAttachment("author_iconurl"); + const timestamp = interaction.options.getBoolean("timestamp"); + const thumbnail = interaction.options.getAttachment("thumbnail"); + const file = interaction.options.getAttachment("file"); + const embed = new EmbedBuilder(); + if (color) { + embed.setColor(`${color}`); + }; + if (description) { + embed.setDescription(`${description.replaceAll("{next}", "\n")}`) + }; + if (thumbnail) { + embed.setThumbnail(`${thumbnail.url}`) + }; + if (image) { + embed.setImage(`${image.url}`) + }; + if (timestamp === true) { + embed.setTimestamp(new Date()) + }; + if (title) { + embed.setTitle(`${title.replaceAll("{next}", "\n")}`) + }; + if (!author_iconURL && author_text) { + embed.setAuthor({ + name: `${author_text.replaceAll("{next}", "\n")}` + }) + }; + if (author_iconURL && !author_text) { + return await interaction.reply({ + content: `شما نمیتوانید یک آثور فقط با عکس داشته باشید دوباره تلاش کنید.\nدفه ی بعد بخش author_text رو پر کن.`, + ephemeral: true + }) + }; + if (author_iconURL && author_text) { + embed.setAuthor({ + name: `${author_text.replaceAll("{next}", "\n")}`, + iconURL: `${author_iconURL.url}` + }); + }; + if (!footer_iconURL && footer_text) { + embed.setFooter({ + text: `${footer_text.replaceAll("{next}", "\n")}` + }); + }; + if (footer_iconURL && !footer_text) { + return await interaction.reply({ + content: `شما نمیتوانید یک فوتر فقط با عکس داشته باشید دوباره تلاش کنید.\nدفه ی بعد بخش footer_text رو پر کن.`, + ephemeral: true + }) + }; + if (footer_iconURL && footer_text) { + embed.setFooter({ + text: `${footer_text.replaceAll("{next}", "\n")}`, + iconURL: `${footer_iconURL.url}` + }) + }; + const embeds = embed.data.description || embed.data.title || embed.data.author || embed.data.footer || embed.data.image || embed.data.thumbnail; + if (embeds || text || file) { + await interaction.reply({ + content: `مسیج شما با موفقیت در چنل ${channel} ارسال شد.`, + ephemeral: true + }); + const message = await channel.send({ + content: text ? text.replaceAll("{next}", "\n") : " ", + embeds: embeds ? [embed] : [], + files: file ? [file] : [] + }); + return await db.set(`ticket.${interaction.guild.id}`, { + channel: channel.id, + id: message.id + }); + } else if (!embeds && !text && !file) { + return await interaction.reply({ + content: `شما نمیتوانید بدون هیچ محتوایی یه مسیج در چنل بفرستید.`, + ephemeral: true + }) + } + break; + } + + case "ticket-menu": { + const name = interaction.options.getString("name"); + const emoji = interaction.options.getString("emoji"); + const role = interaction.options.getRole("role"); + const admin = role ? `${role.id}` : "noRoleToAddHere"; + + const ticket = await db.get(`ticket.${interaction.guild.id}`); + if (!ticket) return await interaction.reply({ + content: "لطفا ابتدا مسیج تیکت را بفرستید تا بات اوتوماتیک خودش به طور مستقیم به مسیج منو رو اد کنه.", + ephemeral: true + }); + + const channel = interaction.guild.channels.cache.get(ticket.channel); + if (!channel) return await interaction.reply({ + content: "چنلی که در دیتابیس ست شده توی سرور پیدا نشد.\nلطفا دوباره مسیج تیکت رو ست کنید.", + ephemeral: true + }); + + const message = await channel.messages.fetch(ticket.id).catch(e => e); + if (!message || !message.id || !message.components || message.channel.id !== channel.id) return await interaction.reply({ + content: `مسیجی که در دیتابیس ست شده توی چنل ${channel} پیدا نشد.\nلطفا دوباره مسیج تیکت رو ست کنید.`, + ephemeral: true + }); + + const emote = emoji ? emoji.match(/((?)|\p{Emoji_Presentation}|\p{Extended_Pictographic}/gmu) : null; + if (emote && emote.length <= 0) return await interaction.reply({ + content: `لطفا یک ایموجی قابل قبول وارد کنید.`, + ephemeral: true + }); + + if (message && message.components && message.components.length > 0) { + const actionRow = message.components[0]; + const menu = new StringSelectMenuBuilder(actionRow.components[0].data); + if (menu.options.some(a => a.data.label === name)) { + const collector = await interaction.editReply({ + content: `از قبل یه آپشن با اسم **${name}** ساخته شده آیا میخواهید حذفش کنید؟`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("setup-accept").setEmoji("✅").setLabel("بله").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("setup-cancel").setEmoji("❌").setLabel("خیر").setStyle(ButtonStyle.Secondary))], + ephemeral: true, + fetchReply: true + }); + const collect = collector.createMessageComponentCollector({ time: 60 * 1000 }) + collect.on("collect", async (button) => { + switch (button.customId) { + case "setup-accept": { + await button.deferUpdate(); + const options = menu.options.filter(a => a.data.label !== name); + menu.setOptions(options); + let row; + if (options.length > 0) row = [new ActionRowBuilder().addComponents(menu)]; + else row = []; + await message.edit({ + components: row + }); + return await button.editReply({ + content: `آپشن با موفقیت از مسیج حذف شد.`, + components: [] + }); + }; + case "setup-cancel": { + return collect.stop() + }; + } + }); + collect.on("end", async () => { + return await interaction.deleteReply(); + }); + } else { + let option = { + label: name, + value: `ticket-${admin}-${name}` + }; + if (emoji && emote.length > 0) { + option.emoji = emote[0] + }; + menu.addOptions(option); + await message.edit({ + components: [new ActionRowBuilder().addComponents(menu)] + }); + return await interaction.reply({ + content: `آپشن با موفقیت روی منوی مسیج تیکت اد شد.`, + ephemeral: true + }); + }; + } else { + let option = { + label: name, + value: `ticket-${admin}-${name}` + }; + if (emoji && emote.length > 0) { + option.emoji = emote[0] + }; + const menu = new ActionRowBuilder() + .addComponents( + new StringSelectMenuBuilder() + .setCustomId("ticket") + .setPlaceholder("Click here to open a ticket!") + .addOptions(option) + .setMaxValues(1) + ); + + await message.edit({ components: [menu] }); + return await interaction.reply({ + content: `منو با موفقیت روی مسیج تیکت اد شد.`, + ephemeral: true + }); + } + break; + } + + case "stats": { + const channel = interaction.options.getChannel("channel"); + const name = interaction.options.getString("name"); + const type = interaction.options.getString("type"); + const variables = []; + let cleanName; + await interaction.deferReply({ ephemeral: false }); + const database = await db.get(`stats.${interaction.guild.id}`); + if (database && database.some(a => a.channel === channel.id)) { + const collector = await interaction.editReply({ + content: `قبلا چنل <#${channel.id}> در دیتابیس ذخیره شده است.\nآیا تمایل به حذف آن دارید؟`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("accept").setEmoji("✅").setLabel("بله").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("cancel").setEmoji("❌").setLabel("خیر").setStyle(ButtonStyle.Secondary))] + }); + const collect = collector.createMessageComponentCollector({ time: 60 * 1000 }) + collect.on("collect", async (button) => { + switch (button.customId) { + case "accept": { + await button.deferUpdate(); + await db.set(`stats.${interaction.guild.id}`, database.filter(a => a.channel !== channel.id)); + return await button.editReply({ + content: `چنل با موفقیت از دیتابیس حذف شد.`, + components: [] + }); + }; + case "cancel": { + return collect.stop(); + }; + } + }); + collect.on("end", async () => { + await interaction.deleteReply(); + }); + } else { + if (type === "gmc") { + cleanName = "Members {count}"; + variables.push({ + name: "{count}", + description: "تعداد ممبرای توی سرور با این جایگزین میشه." + }); + } else if (type === "gvmc") { + cleanName = "Voice Players {count}"; + variables.push({ + name: "{count}", + description: "تعداد افرادی که توی ویس حاضر هستن با این جایگزین میشه." + }); + } else { + cleanName = "Today Date {year}/{month}/{day}"; + variables.push({ + name: "{year}", + description: "سال حاضر رو نشون میده." + }); + variables.push({ + name: "{month}", + description: "ماه حاضر رو نشون میده." + }); + variables.push({ + name: "{day}", + description: "روز حاضر رو نشون میده." + }); + variables.push({ + name: "{hour}", + description: "ساعت حاضر رو نشون میده." + }); + variables.push({ + name: "{minute}", + description: "دقیقه حاضر رو نشون میده." + }); + }; + const data = { + channel: channel.id, + type: type, + name: name ?? cleanName + }; + await db.push(`stats.${interaction.guild.id}`, data); + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle("اطلاعات") + .setDescription("سیستم نمایش اطلاعات بر روی اسم چنل با موفقیت در دیتابیس سیو شد.") + .setFooter({ text: `Admin Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "چنل:", + value: `**<#${data.channel}>**`, + inline: false + }, { + name: "نوع:", + value: `\`${data.type}\``, + inline: false + }, { + name: "اسم:", + value: `\`${data.name}\``, + inline: false + }, { + name: "متغیر ها:", + value: `**${variables.map(a => `\`${a.name}\` | ${a.description}`).join("\n")}**`, + inline: false + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } + break; + } + case "only-media": { + const channel = interaction.options.getChannel("channel"); + const data = channel.id; + const database = await db.get(`onlyMedia.${interaction.guild.id}`); + await interaction.deferReply({ ephemeral: false }); + if (database && database.includes(data)) { + const collector = await interaction.editReply({ + content: `قبلا چنل <#${data}> در دیتابیس ذخیره شده است.\nآیا تمایل به حذف آن دارید؟`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("accept").setEmoji("✅").setLabel("بله").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("cancel").setEmoji("❌").setLabel("خیر").setStyle(ButtonStyle.Secondary))] + }); + const collect = collector.createMessageComponentCollector({ time: 60 * 1000 }) + collect.on("collect", async (button) => { + switch (button.customId) { + case "accept": { + await button.deferUpdate(); + await db.pull(`onlyMedia.${interaction.guild.id}`, data); + return await button.editReply({ + content: `چنل با موفقیت از دیتابیس حذف شد.`, + components: [] + }); + }; + case "cancel": { + return collect.stop(); + }; + } + }); + collect.on("end", async () => { + await interaction.deleteReply() + }); + } else { + await db.push(`onlyMedia.${interaction.guild.id}`, data); + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle("فقط مدیا") + .setDescription("چنل مورد نظر تحت عنوان فقط برای مدیا (عکس و ویدیو) باموفقیت در دیتابیس ذخیره شد.") + .setFooter({ text: `Admin Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "چنل:", + value: `**<#${data}>**`, + inline: false + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }) + } + break; + } + }; + + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Economy/mine.js b/src/commands/Economy/mine.js new file mode 100644 index 0000000..610459c --- /dev/null +++ b/src/commands/Economy/mine.js @@ -0,0 +1,94 @@ +const { + EmbedBuilder, + ApplicationCommandType +} = require("discord.js"); +const copyRight = require("../../storage/copyRight.json"); +const mineLevel = require("../../storage/economy.json").miner; +const error = require("../../functions/error"); +module.exports = { + name: "mine", + description: "ماین بیت کوین برای دریافت پول.", + category: "economy", + type: ApplicationCommandType.ChatInput, + cooldown: 60 * 60, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + let db = client.db; + if (!await db.has(`users.${interaction.user.id}`)) { + await interaction.deferReply({ ephemeral: true }); + let cmd = client.application.commands.cache.find(c => c.name === "register"); + return await interaction.editReply({ + content: `❌| شما هیچ پروفایلی در بات ندارید.\n(با استفاده از کامند برای خود پروفایل بسازید.)` + }); + }; + + let profile = await db.get(`users.${interaction.user.id}`); + let cmd = client.application.commands.cache.find(c => c.name === "upgrade"); + if (profile.home <= 0) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما نمیتوانید ماین کنید زیرا که خانه ای ندارید.\n(برای خرید خانه از کامند استفاده کنید.)` + }); + }; + + if (profile.miner <= 0) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما هیچ ماینری برای ماین کردن ندارید.\n(برای خرید ماینر از کامند استفاده کنید.)` + }); + }; + + await interaction.deferReply({ ephemeral: false }); + await db.add(`users.${interaction.user.id}.wallet`, mineLevel[profile.miner]); + let embed = new EmbedBuilder() + .setColor("Green") + .setTitle("Economy | Mine") + .setDescription("با موفقیت همه ی بیت کوین هایی که ماین شدند فرخته شدن.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "مبلغ واریزی:", + value: `${mineLevel[profile.miner].toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح ماینر:", + value: `${profile.miner} Level ⛏`, + inline: true + }, { + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Economy/profile.js b/src/commands/Economy/profile.js new file mode 100644 index 0000000..ac4d4e1 --- /dev/null +++ b/src/commands/Economy/profile.js @@ -0,0 +1,150 @@ +const { + EmbedBuilder, + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +module.exports = { + name: "profile", + description: "دیدن پروفایل خود یا دیگران در بات.", + category: "economy", + type: ApplicationCommandType.ChatInput, + cooldown: 10, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + options: [{ + name: "user", + type: ApplicationCommandOptionType.User, + description: "یک یوزر انتخاب کنید." + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const db = client.db; + const user = interaction.options.getUser("user"); + + if (user) { + if (user.bot) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| ربات ها نمیتوانند پروفایل داشته باشند.` + }); + }; + + if (!await db.has(`users.${user.id}`)) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| یوزر مورد نظر پروفایلی در بات ندارد.` + }); + }; + + await interaction.deferReply({ ephemeral: false }); + const profile = await db.get(`users.${user.id}`); + const embed = new EmbedBuilder() + .setAuthor({ name: `درخواست شده توسط ${interaction.user.tag}`, iconURL: interaction.user.displayAvatarURL({ forceStatic: true }) }) + .setColor("Aqua") + .setTitle("Economy | Profile") + .setDescription("پروفایل یوزر مورد نظر با موفقیت یافت شد.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "یوزر:", + value: `${user}`, + inline: true + }, { + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح کار:", + value: `${profile.work} Level 💼`, + inline: true + }, { + name: "سطح دزدی:", + value: `${profile.rob} Level 🔦`, + inline: true + }, { + name: "سطح خانه:", + value: `${profile.home} Level 🏡`, + inline: true + }, { + name: "سطح ماینر:", + value: `${profile.miner} Level ⛏`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } else { + if (!await db.has(`users.${interaction.user.id}`)) { + await interaction.deferReply({ ephemeral: true }); + const cmd = client.application.commands.cache.find(c => c.name === "register"); + return await interaction.editReply({ + content: `❌| شما هیچ پروفایلی در بات ندارید.\n(با استفاده از کامند برای خود پروفایل بسازید.)` + }); + }; + + + await interaction.deferReply({ ephemeral: false }); + const profile = await db.get(`users.${interaction.user.id}`); + const embed = new EmbedBuilder() + .setColor("Aqua") + .setTitle("Economy | Profile") + .setDescription("پروفایل شما با موفقیت یافت شد.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح کار:", + value: `${profile.work} Level 💼`, + inline: true + }, { + name: "سطح دزدی:", + value: `${profile.rob} Level 🔦`, + inline: true + }, { + name: "سطح خانه:", + value: `${profile.home} Level 🏡`, + inline: true + }, { + name: "سطح ماینر:", + value: `${profile.miner} Level ⛏`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + }; + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Economy/register.js b/src/commands/Economy/register.js new file mode 100644 index 0000000..587f632 --- /dev/null +++ b/src/commands/Economy/register.js @@ -0,0 +1,122 @@ +const { + EmbedBuilder, + ApplicationCommandType +} = require("discord.js"); +const error = require("../../functions/error"); +const economy = require("../../storage/economy.json"); +const copyRight = require("../../storage/copyRight.json"); +module.exports = { + name: "register", + description: "ثبت نام و ساخت پروفایل در سیستم اکونومی بات.", + category: "economy", + type: ApplicationCommandType.ChatInput, + cooldown: 10, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const db = client.db; + await interaction.deferReply({ ephemeral: false }); + if (await db.has(`users.${interaction.user.id}`)) { + const profile = await db.get(`users.${interaction.user.id}`); + const embed = new EmbedBuilder() + .setColor("Orange") + .setTitle("Economy | Register") + .setDescription("شما از قبل پروفایل داشتید.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح کار:", + value: `${profile.work} Level 💼`, + inline: true + }, { + name: "سطح دزدی:", + value: `${profile.rob} Level 🔦`, + inline: true + }, { + name: "سطح خانه:", + value: `${profile.home} Level 🏡`, + inline: true + }, { + name: "سطح ماینر:", + value: `${profile.miner} Level ⛏`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + }; + + const data = { + name: interaction.user.tag, + wallet: economy.default_coin, + miner: 0, + home: 0, + work: 0, + rob: 0 + }; + await db.set(`users.${interaction.user.id}`, data); + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle("Economy | Register") + .setDescription("پروفایل شما با موفقیت ساخته شد.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "کیف پول:", + value: `${data.wallet.toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح کار:", + value: `${data.work} Level 💼`, + inline: true + }, { + name: "سطح دزدی:", + value: `${data.rob} Level 🔦`, + inline: true + }, { + name: "سطح خانه:", + value: `${data.home} Level 🏡`, + inline: true + }, { + name: "سطح ماینر:", + value: `${data.miner} Level ⛏`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Economy/rob.js b/src/commands/Economy/rob.js new file mode 100644 index 0000000..9da8de3 --- /dev/null +++ b/src/commands/Economy/rob.js @@ -0,0 +1,87 @@ +const { + EmbedBuilder, + ApplicationCommandType +} = require("discord.js"); +const robLevel = require("../../storage/economy.json").rob; +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +module.exports = { + name: "rob", + description: "دزدی از بانک.", + category: "economy", + type: ApplicationCommandType.ChatInput, + cooldown: 60 * 60, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const db = client.db; + if (!await db.has(`users.${interaction.user.id}`)) { + await interaction.deferReply({ ephemeral: true }); + const cmd = client.application.commands.cache.find(c => c.name === "register"); + return await interaction.editReply({ + content: `❌| شما هیچ پروفایلی در بات ندارید.\n(با استفاده از کامند برای خود پروفایل بسازید.)` + }); + }; + + await interaction.deferReply({ ephemeral: false }); + const profile = await db.get(`users.${interaction.user.id}`); + const deposit = profile.rob <= 0 ? 100 : robLevel[profile.rob]; + const withdrawal = Math.floor(deposit / 2); + const random = Math.floor(Math.random() * 2); + if (random === 0) { + await db.add(`users.${interaction.user.id}.wallet`, deposit); + } else { + await db.sub(`users.${interaction.user.id}.wallet`, withdrawal); + }; + + const embed = new EmbedBuilder() + .setColor(random === 0 ? "Green" : "Red") + .setTitle("Economy | Rob") + .setDescription(random === 0 ? "شما با موفقیت بدون گیر افتادن از بانک دزدی کردید." : "شما توسط پلیس دستگیر شدید.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: random === 0 ? "مبلغ واریزی:" : "مبلغ یرداشتی:", + value: `${random === 0 ? deposit.toLocaleString() : withdrawal.toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح دزدی:", + value: `${profile.rob} Level 🔦`, + inline: true + }, { + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Economy/top.js b/src/commands/Economy/top.js new file mode 100644 index 0000000..468043f --- /dev/null +++ b/src/commands/Economy/top.js @@ -0,0 +1,140 @@ +const { + EmbedBuilder, + ApplicationCommandType, + ButtonBuilder, + ButtonStyle, + ActionRowBuilder +} = require("discord.js"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +module.exports = { + name: "top", + description: "یوزر های برتر در سیستم اوکونومی.", + category: "economy", + type: ApplicationCommandType.ChatInput, + cooldown: 10, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + let db = client.db; + + if (!await db.has(`users`)) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| هیچ یوزری وجود ندارد.` + }); + }; + let users = Object.values(await db.get(`users`)); + await interaction.deferReply({ ephemeral: false }); + let backButton = new ButtonBuilder({ + style: ButtonStyle.Secondary, + label: "<", + customId: "back" + }); + + let forwardButton = new ButtonBuilder({ + style: ButtonStyle.Secondary, + label: ">", + customId: "forward" + }); + + let dubbleBackButton = new ButtonBuilder({ + style: ButtonStyle.Secondary, + label: "<<", + customId: "dubble_back" + }); + + let dubbleForwardButton = new ButtonBuilder({ + style: ButtonStyle.Secondary, + label: ">>", + customId: "dubble_forward" + }); + + let page = 1; + let generateEmbed = async (array, start) => { + let current = array.sort((a, b) => b.wallet - a.wallet).slice(start, start + 12); + let embed = new EmbedBuilder({ + title: `صفحه - ${page}/${Math.ceil(array.length / 12)} | تعداد یوزر ها: ${(array.length).toLocaleString()}`, + footer: { + text: copyRight.footerText, + icon_url: copyRight.footerIcon + }, + fields: await Promise.all( + current.sort((a, b) => b.wallet - a.wallet).map((user, index) => ({ + name: `${((page * 12) - 12) + ++index}• ${user.name}`, + value: `**کیف پول:** \`${user.wallet.toLocaleString()}\` 🪙`, + inline: true + })) + ) + }); + return embed.setColor("Yellow"); + }; + let canFitOnOnePage = users.length <= 12; + await interaction.editReply({ + embeds: [await generateEmbed(users, 0)], + components: canFitOnOnePage ? [] : [new ActionRowBuilder({ components: [dubbleBackButton.setDisabled(true), backButton.setDisabled(true), forwardButton.setDisabled(false), dubbleForwardButton.setDisabled(false)] })] + }) + let embedMessage = await interaction.fetchReply(); + if (canFitOnOnePage) return; + let collector = embedMessage.createMessageComponentCollector({ + filter: ({ user }) => user.id === interaction.user.id, + time: 60000 + }) + + let currentIndex = 0; + collector.on("collect", async int => { + let lastPage = Math.ceil(users.length / 12); + if (int.customId === "back") { + (currentIndex -= 12); + (page -= 1); + } else if (int.customId === "forward") { + (currentIndex += 12); + (page += 1); + }; + int.customId === "dubble_back" ? (page = 1) : null; + int.customId === "dubble_forward" ? (page = lastPage) : null; + await int.update({ + embeds: [await generateEmbed(users, currentIndex)], + components: [new ActionRowBuilder({ + components: [ + ...(page >= lastPage ? + [dubbleBackButton.setDisabled(false), backButton.setDisabled(false), forwardButton.setDisabled(true), dubbleForwardButton.setDisabled(true)] + : page <= 1 ? + [dubbleBackButton.setDisabled(true), backButton.setDisabled(true), forwardButton.setDisabled(false), dubbleForwardButton.setDisabled(false)] + : [dubbleBackButton.setDisabled(false), backButton.setDisabled(false), forwardButton.setDisabled(false), dubbleForwardButton.setDisabled(false)]) + ] + })] + }) + }); + collector.on("end", async () => { + return await interaction.editReply({ + components: [] + }); + }); + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Economy/transfer.js b/src/commands/Economy/transfer.js new file mode 100644 index 0000000..2876ddc --- /dev/null +++ b/src/commands/Economy/transfer.js @@ -0,0 +1,122 @@ +const { + EmbedBuilder, + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +module.exports = { + name: "transfer", + description: "انتقال پول به دیگران.", + category: "economy", + type: ApplicationCommandType.ChatInput, + cooldown: 60, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + options: [{ + name: "cash", + type: ApplicationCommandOptionType.Number, + description: "مبلغ پول واریزی را بنویسید.", + required: true + }, { + name: "user", + type: ApplicationCommandOptionType.User, + description: "به کی میخواهید واریز کنید؟", + required: true + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + let db = client.db; + let user = interaction.options.getUser("user"); + let cash = interaction.options.getNumber("cash"); + if (!await db.has(`users.${interaction.user.id}`)) { + await interaction.deferReply({ ephemeral: true }); + let cmd = client.application.commands.cache.find(c => c.name === "register"); + return await interaction.editReply({ + content: `❌| شما هیچ پروفایلی در بات ندارید.\n(با استفاده از کامند برای خود پروفایل بسازید.)` + }); + }; + + if (interaction.user.equals(user)) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما نمیتوانید به خودتان پول واریز کنید.` + }); + }; + + if (user.bot) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| ربات ها نمیتوانند پروفایل داشته باشند.` + }); + }; + + + if (!await db.has(`users.${user.id}`)) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| یوزر مورد نظر پروفایلی در بات ندارد.` + }); + }; + + const profile = await db.get(`users.${interaction.user.id}`); + if (profile.wallet < cash) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما پول کافی برای واریز به حساب ${user} را ندارید.\n(شما فقط \`${profile.wallet.toLocaleString()}\`🪙 دارید.)` + }); + }; + + await interaction.deferReply({ ephemeral: false }); + await db.sub(`users.${interaction.user.id}.wallet`, cash); + await db.add(`users.${user.id}.wallet`, cash); + const embed = new EmbedBuilder() + .setColor("Yellow") + .setTitle("Economy | Transfer") + .setDescription("باموفقیت پول از حساب شما برداشت و به حساب یوزر مورد نظر واریز شد.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "مبلغ برداشتی:", + value: `${cash.toLocaleString()} 🪙`, + inline: true + }, { + name: "یوزر:", + value: `${user}`, + inline: true + }, { + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Economy/upgrade.js b/src/commands/Economy/upgrade.js new file mode 100644 index 0000000..ce1ee12 --- /dev/null +++ b/src/commands/Economy/upgrade.js @@ -0,0 +1,260 @@ +const { + EmbedBuilder, + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const economy = require("../../storage/economy.json"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +module.exports = { + name: "upgrade", + description: "سطح آیتم های خود را افزایش دهید.", + category: "economy", + type: ApplicationCommandType.ChatInput, + cooldown: 30, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + options: [{ + name: "miners", + type: ApplicationCommandOptionType.Subcommand, + description: "خرید و افزایش تعداد ماینر ها." + }, { + name: "home", + type: ApplicationCommandOptionType.Subcommand, + description: "افزایش سطح خانه." + }, { + name: "work", + type: ApplicationCommandOptionType.Subcommand, + description: "افزایش سطح کار." + }, { + name: "rob", + type: ApplicationCommandOptionType.Subcommand, + description: "افزایش سطح دزدی." + }], + + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const db = client.db; + if (!await db.has(`users.${interaction.user.id}`)) { + await interaction.deferReply({ ephemeral: true }); + const cmd = client.application.commands.cache.find(c => c.name === "register"); + return await interaction.editReply({ + content: `❌| شما هیچ پروفایلی در بات ندارید.\n(با استفاده از کامند برای خود پروفایل بسازید.)` + }); + }; + const profile = await db.get(`users.${interaction.user.id}`); + switch (interaction.options.getSubcommand()) { + case "miners": { + const price = economy.miner_price; + if (profile.miner >= Object.values(economy.miner).length) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما بیشترین سطح ممکن را دارید.\n(بیشترین سطح ممکن \`${Object.values(economy.miner).length}\` است.)` + }); + }; + + if (profile.home * 2 <= profile.miner) { + const cmd = client.application.commands.cache.find(c => c.name === "upgrade"); + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما نمیتوانید ماینر هایبیشتری بخرید زیا که بایستی سطح خانه ی خود را افزایش دهید.\n(برای افزایش سطح خانه از کامند استفاده کنید.)` + }); + }; + + if (profile.wallet < price) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما پول کافی برای افزایش سطح را ندارید.\n(هزینه ی خرید هر ماینر \`${price.toLocaleString()}\`🪙 است ولی شما فقط \`${profile.wallet.toLocaleString()}\`🪙 دارید.)` + }); + }; + + await interaction.deferReply({ ephemeral: false }); + await db.sub(`users.${interaction.user.id}.wallet`, price); + await db.add(`users.${interaction.user.id}.miner`, 1); + const embed = new EmbedBuilder() + .setColor("Yellow") + .setTitle("Economy | Upgrade - Miners") + .setDescription("سطح ماینر های شما با موفقیت افزایش یافت.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "مبلغ برداشتی:", + value: `${price.toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح ماینر:", + value: `${profile.miner} Level ⛏`, + inline: true + }, { + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } + + case "home": { + const price = economy.home[profile.home + 1]; + if (profile.home >= Object.values(economy.home).length) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما بیشترین سطح ممکن را دارید.\n(بیشترین سطح ممکن \`${Object.values(economy.home).length}\` است.)` + }); + }; + + if (profile.wallet < price) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما پول کافی برای افزایش سطح را ندارید.\n(مبلغ هزینه ی سطح بعدی \`${price.toLocaleString()}\`🪙 است ولی شما فقط \`${profile.wallet.toLocaleString()}\`🪙 دارید.)` + }); + }; + + await interaction.deferReply({ ephemeral: false }); + await db.sub(`users.${interaction.user.id}.wallet`, price); + await db.add(`users.${interaction.user.id}.home`, 1); + const embed = new EmbedBuilder() + .setColor("Yellow") + .setTitle("Economy | Upgrade - Home") + .setDescription("سطح خانه ی شما با موفقیت افزایش یافت.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "مبلغ برداشتی:", + value: `${price.toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح خانه:", + value: `${profile.home} Level 🏡`, + inline: true + }, { + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } + + case "work": { + const price = economy.work_price; + if (profile.work >= Object.values(economy.work).length) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما بیشترین سطح ممکن را دارید.\n(بیشترین سطح ممکن \`${Object.values(economy.work).length}\` است.)` + }); + }; + + if (profile.wallet < price) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما پول کافی برای افزایش سطح را ندارید.\n(مبلغ هزینه ی سطح بعدی \`${price.toLocaleString()}\`🪙 است ولی شما فقط \`${profile.wallet.toLocaleString()}\`🪙 دارید.)` + }); + }; + + await interaction.deferReply({ ephemeral: false }); + await db.sub(`users.${interaction.user.id}.wallet`, price); + await db.add(`users.${interaction.user.id}.work`, 1); + const embed = new EmbedBuilder() + .setColor("Yellow") + .setTitle("Economy | Upgrade - Work") + .setDescription("سطح کار شما با موفقیت افزایش یافت.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "مبلغ برداشتی:", + value: `${price.toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح کار:", + value: `${profile.work} Level 💼`, + inline: true + }, { + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } + + case "rob": { + const price = economy.rob_price; + if (profile.work >= Object.values(economy.rob).length) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما بیشترین سطح ممکن را دارید.\n(بیشترین سطح ممکن \`${Object.values(economy.rob).length}\` است.)` + }); + }; + + if (profile.wallet < price) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply({ + content: `❌| شما پول کافی برای افزایش سطح را ندارید.\n(مبلغ هزینه ی سطح بعدی \`${price.toLocaleString()}\`🪙 است ولی شما فقط \`${profile.wallet.toLocaleString()}\`🪙 دارید.)` + }); + }; + + await interaction.deferReply({ ephemeral: false }); + await db.sub(`users.${interaction.user.id}.wallet`, price); + await db.add(`users.${interaction.user.id}.rob`, 1); + const embed = new EmbedBuilder() + .setColor("Yellow") + .setTitle("Economy | Upgrade - Rob") + .setDescription("سطح دزدی شما با موفقیت افزایش یافت.") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "مبلغ برداشتی:", + value: `${price.toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح دزدی:", + value: `${profile.rob} Level 🔦`, + inline: true + }, { + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } + } + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Economy/work.js b/src/commands/Economy/work.js new file mode 100644 index 0000000..4061b38 --- /dev/null +++ b/src/commands/Economy/work.js @@ -0,0 +1,80 @@ +const { + EmbedBuilder, + ApplicationCommandType +} = require("discord.js"); +const workLevel = require("../../storage/economy.json").work; +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +module.exports = { + name: "work", + description: "انجام کار و دریافت حقوق.", + category: "economy", + type: ApplicationCommandType.ChatInput, + cooldown: 60 * 60, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const db = client.db; + if (!await db.has(`users.${interaction.user.id}`)) { + await interaction.deferReply({ ephemeral: true }); + const cmd = client.application.commands.cache.find(c => c.name === "register"); + return await interaction.editReply({ + content: `❌| شما هیچ پروفایلی در بات ندارید.\n(با استفاده از کامند برای خود پروفایل بسازید.)` + }); + }; + + await interaction.deferReply({ ephemeral: false }); + const profile = await db.get(`users.${interaction.user.id}`); + const deposit = profile.work <= 0 ? 200 : workLevel[profile.work]; + await db.add(`users.${interaction.user.id}.wallet`, deposit); + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle("Economy | Work") + .setDescription("شما با موفقیت تایم کاری خود را انجام دادید!!") + .setFooter({ text: `Economy Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.user.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "مبلغ واریزی:", + value: `${deposit.toLocaleString()} 🪙`, + inline: true + }, { + name: "سطح کار:", + value: `${profile.work} Level 💼`, + inline: true + }, { + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }]) + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed] + }); + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Fun/8ball.js b/src/commands/Fun/8ball.js new file mode 100644 index 0000000..bb08d48 --- /dev/null +++ b/src/commands/Fun/8ball.js @@ -0,0 +1,56 @@ +const { + EmbedBuilder, + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const eightball = require("../../storage/eightBall.json"); +const copyRight = require("../../storage/copyRight.json"); +const error = require("../../functions/error"); +module.exports = { + name: "8ball", + description: "من توپ شانسم هر سوالی ازم داری بپرس.", + category: "fun", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + options: [{ + name: "question", + description: "سوال خود را بنویسید.", + type: ApplicationCommandOptionType.String, + required: true + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const question = interaction.options.getString("question"); + await interaction.deferReply({ ephemeral: false }); + const answer = eightball[Math.floor(Math.random() * Math.floor(eightball.length))]; + return await interaction.editReply({ + embeds: [new EmbedBuilder().setColor("Blue").setAuthor({ name: `درخواست شده توسط ${interaction.user.username}`, iconURL: interaction.user.displayAvatarURL({ dynamic: true }) }).setTitle(`🎱| 8ball`).addFields({ name: "سوال:", value: question }, { name: "جواب:", value: answer }).setFooter({ text: `${copyRight.footerText}`, iconURL: copyRight.footerIcon })] + }); + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Fun/fal.js b/src/commands/Fun/fal.js new file mode 100644 index 0000000..993cf11 --- /dev/null +++ b/src/commands/Fun/fal.js @@ -0,0 +1,69 @@ +const { + EmbedBuilder, + ButtonStyle, + ActionRowBuilder, + ButtonBuilder, + ApplicationCommandType +} = require("discord.js"); +const error = require("../../functions/error"); +const axios = require("axios"); +module.exports = { + name: "fal", + description: "اول نیت کن بعدش این کامند رو ران کن.", + category: "fun", + cooldown: 5, + type: ApplicationCommandType.ChatInput, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const res = await axios.get(`https://api.falehafez.org/`); + const poem = res.data.poem.join(` / `); + const explain = res.data.explanation; + return await interaction.reply({ + embeds: [new EmbedBuilder().setColor('Yellow').setTitle(`📖| فال حافظ`).setDescription(`نیت کن و بعد کلیک کن`)], + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("fun-falhafez").setLabel(`گرفتن فال`).setEmoji(`🔖`).setStyle(ButtonStyle.Primary))], + fetchReply: true + }).then((msg) => { + const collector = msg.createMessageComponentCollector({ time: 30 * 1000 }); + collector.on("collect", async (m) => { + if (m.user.id !== interaction.user.id) m.reply({ content: `این فال برای شما نیست`, ephemeral: true }); + if (m.customId === "fun-falhafez") { + m.update({ + embeds: [new EmbedBuilder().setColor('Aqua').setTitle(`📖| فال حافظ`).addFields([{ name: `شعر:`, value: `${poem}` }, { name: `معنی:`, value: `${explain}` }]).setImage("https://cdn.discordapp.com/attachments/944668553439760434/1098229688352129034/image.jpeg")], + components: [] + }) + } + }); + collector.on("end", () => { + msg.edit({ + components: [] + }) + }); + }) + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Fun/gaysanj.js b/src/commands/Fun/gaysanj.js new file mode 100644 index 0000000..73cabc8 --- /dev/null +++ b/src/commands/Fun/gaysanj.js @@ -0,0 +1,79 @@ +const { + EmbedBuilder, + AttachmentBuilder, + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +const generate = require("../../functions/generators/generateFilterImage"); +const point = require("../../functions/getRange"); +module.exports = { + name: "gaysanj", + description: "میزان گی بودنت رو میسنجم.", + category: "fun", + aliases: ["gay"], + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + options: [{ + name: "user", + type: ApplicationCommandOptionType.User, + description: "یک یوزر انتخاب کنید.", + required: false + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const user = interaction.options.getUser("user") || interaction.user; + const number = Math.floor(Math.random() * 100) + 1; + const files = []; + const embed = new EmbedBuilder() + .setColor("Orange") + .setDescription(number > 50 ? `به به پرچمت رنگیه مشتی ${user} یا حق.` : `خب داشم ${user} کونی نیستی خداتو شکر کن.`) + .setAuthor({ name: `درخواست شده توسط ${interaction.user.username}`, iconURL: interaction.user.displayAvatarURL({ forceStatic: true }) }) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .addFields({ + name: "درصد گی بودن:", + value: `**\`${number}%\`**` + }, { + name: "درجه نگار:", + value: `**${point(number)}**` + }); + + if (number > 50) { + const image = new generate().setUserAvatar(user.displayAvatarURL({ extension: "png", size: 4096 })).setGay(true); + embed.setThumbnail("attachment://gay.png"); + files.push(new AttachmentBuilder(await image.generate(), { name: "gay.png" })); + } else embed.setThumbnail(user.displayAvatarURL({ extension: "png", size: 4096 })); + + return await interaction.reply({ + embeds: [embed], + files: files + }); + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Fun/generate.js b/src/commands/Fun/generate.js new file mode 100644 index 0000000..8e63755 --- /dev/null +++ b/src/commands/Fun/generate.js @@ -0,0 +1,550 @@ +const { + EmbedBuilder, + ApplicationCommandType, + ApplicationCommandOptionType, + AttachmentBuilder +} = require("discord.js"); +const error = require("../../functions/error"); +const firstUpperCase = require("../../functions/firstUpperCase"); +const copyRight = require("../../storage/copyRight.json"); +const generate = require("../../functions/generators/generateFilterImage"); +const meme = require("../../functions/generators/generateMemeImage"); +module.exports = { + name: "generate", + description: "ساخت عکس با ورودی های شما.", + category: "fun", + type: ApplicationCommandType.ChatInput, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_admin: false, + only_slash: true, + only_message: false, + options: [{ + name: "type", + type: ApplicationCommandOptionType.String, + description: "چه سبکی میخوای عکس بسازی؟", + choices: [{ + name: "Blur", + value: "blur" + }, { + name: "Gay", + value: "gay" + }, { + name: "Greyscale", + value: "greyscale" + }, { + name: "Invert", + value: "invert" + }, { + name: "Sepia", + value: "sepia" + }, { + name: "Ad", + value: "ad" + }, { + name: "Affect", + value: "affect" + }, { + name: "Batslap", + value: "batslap" + }, { + name: "Beautiful", + value: "beautiful" + }, { + name: "Bed", + value: "bed" + }, { + name: "Bobross", + value: "bobross" + }, { + name: "DiscordBlack", + value: "discordblack" + }, { + name: "DiscordBlue", + value: "discordblue" + }, { + name: "Facepalm", + value: "facepalm" + }, { + name: "Spank", + value: "spank" + }, { + name: "DoubleStonk", + value: "doublestonk" + }, { + name: "Stonk", + value: "stonk" + }, { + name: "Tatoo", + value: "tatoo" + }, { + name: "Thomas", + value: "thomas" + }, { + name: "Delete", + value: "delete" + }, { + name: "Trash", + value: "trash" + }, { + name: "Wanted", + value: "wanted" + }], + required: true + }, { + name: "user-1", + type: ApplicationCommandOptionType.User, + description: "یه یوزر رو برای اعمال افکت ها پیدا کن.", + required: false + }, { + name: "user-2", + type: ApplicationCommandOptionType.User, + description: "فقط برای سبک های DoubleStonk, Spank, Bed, Batslap لازمه.", + required: false + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const db = client.db; + const type = interaction.options.getString("type"); + const user1 = interaction.options.getUser("user-1") || interaction.user; + const user2 = interaction.options.getUser("user-2"); + await interaction.deferReply({ fetchReply: true }) + switch (type) { + case "blur": { + const image = new generate().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setBlur(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "gay": { + const image = new generate().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setGay(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "greyscale": { + const image = new generate().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setGreyscale(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "invert": { + const image = new generate().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setInvert(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "sepia": { + const image = new generate().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setSepia(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "ad": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setAd(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "affect": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setAffect(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "affect": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setAffect(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "batslap": { + if (!user2) return await interaction.editReply({ + content: "شما یوزر دوم را انتخاب نکردید لطفا دوباره تلاش کنید." + }); + + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setSecondUserAvatar(user2.displayAvatarURL({ extension: "png", size: 4096 })).setBatslap(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "beautiful": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setBeautiful(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "bed": { + if (!user2) return await interaction.editReply({ + content: "شما یوزر دوم را انتخاب نکردید لطفا دوباره تلاش کنید." + }); + + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setSecondUserAvatar(user2.displayAvatarURL({ extension: "png", size: 4096 })).setBed(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "bobross": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setBobross(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "delete": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setDelete(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "discordblack": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setDiscordBlack(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "discordblue": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setDiscordBlue(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "doublestonk": { + if (!user2) return await interaction.editReply({ + content: "شما یوزر دوم را انتخاب نکردید لطفا دوباره تلاش کنید." + }); + + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setSecondUserAvatar(user2.displayAvatarURL({ extension: "png", size: 4096 })).setDoubleStonk(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "facepalm": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setFacepalm(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "spank": { + if (!user2) return await interaction.editReply({ + content: "شما یوزر دوم را انتخاب نکردید لطفا دوباره تلاش کنید." + }); + + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setSecondUserAvatar(user2.displayAvatarURL({ extension: "png", size: 4096 })).setSpank(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "stonk": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setStonk(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "tatoo": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setTatoo(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "thomas": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setThomas(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "trash": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setTrash(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + case "wanted": { + const image = new meme().setUserAvatar(user1.displayAvatarURL({ extension: "png", size: 4096 })).setWanted(true); + const embed = new EmbedBuilder() + .setImage(`attachment://${type}.png`) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setColor("Gold") + .setTitle("ساخت عکس | " + firstUpperCase(type)) + .setDescription("عکس شما ساخته شد یا حق.") + .setTimestamp(); + + return await interaction.editReply({ + embeds: [embed], + files: [new AttachmentBuilder(await image.generate(), { name: type + ".png" })] + }); + break; + } + + default: { + return await interaction.editReply({ + content: "یافت نشد." + }) + } + }; + + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Fun/love.js b/src/commands/Fun/love.js new file mode 100644 index 0000000..b796a5c --- /dev/null +++ b/src/commands/Fun/love.js @@ -0,0 +1,63 @@ +const { + EmbedBuilder, + ApplicationCommandOptionType, + ApplicationCommandType +} = require("discord.js"); +const copyRight = require("../../storage/copyRight.json"); +const error = require("../../functions/error"); +module.exports = { + name: "love", + description: "میزان عشق و علاقت نسبت به یکی رو میسنجم.", + category: "fun", + cooldown: 5, + type: ApplicationCommandType.ChatInput, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + options: [{ + name: "user", + type: ApplicationCommandOptionType.User, + description: "یک یوزر انتخاب کنید.", + required: true + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const target = interaction.options.getUser("user"); + if (target.id === interaction.user.id) return interaction.reply("**لطفا یکی دیگه را منشن کنید**") + const random = Math.floor(Math.random() * 99) + 1; + const embed = new EmbedBuilder().setColor("Purple").setDescription(`**${interaction.user}** درصد عشق شما به **${target}**, **%${random}** است`).setFooter({ text: `درخواست شده توسط ${interaction.user.username} • ${copyRight.footerText}`, iconURL: copyRight.footerIcon }); + if (random >= 50) { + embed.setThumbnail('https://cdn.discordapp.com/attachments/944668553439760434/1098155294707695616/image.png') + } else { + embed.setThumbnail('https://cdn.discordapp.com/attachments/944668553439760434/1098155295320051812/image.png') + } + setTimeout(() => { + interaction.reply({ + embeds: [embed] + }) + }, 1000) + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Fun/rps.js b/src/commands/Fun/rps.js new file mode 100644 index 0000000..159a390 --- /dev/null +++ b/src/commands/Fun/rps.js @@ -0,0 +1,195 @@ +const { + EmbedBuilder, + ButtonStyle, + ActionRowBuilder, + ButtonBuilder, + ApplicationCommandType +} = require("discord.js"); +const copyRight = require("../../storage/copyRight.json"); +const error = require("../../functions/error"); +module.exports = { + name: "rps", + description: "بازی سنگ کاغذ قیچی با بات.", + category: "fun", + cooldown: 5, + type: ApplicationCommandType.ChatInput, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const time = 1000 * 60; + let playerScore = 0; + let botScore = 0; + const choices = { + rock: "✊🏻 سنگ", + paper: "🖐🏻 کاغذ", + scissor: "✌🏻 قیچی" + }; + const endRow = new ActionRowBuilder().addComponents([new ButtonBuilder().setCustomId("end").setStyle(ButtonStyle.Primary).setEmoji("⛔").setLabel("پایان").setDisabled(true)]); + const row = new ActionRowBuilder().addComponents([new ButtonBuilder().setCustomId("rock").setStyle(ButtonStyle.Secondary).setEmoji("✊🏻").setLabel("سنگ"), new ButtonBuilder().setCustomId("paper").setStyle(ButtonStyle.Secondary).setEmoji("🖐🏻").setLabel("کاغذ"), new ButtonBuilder().setCustomId("scissor").setStyle(ButtonStyle.Secondary).setEmoji("✌🏻").setLabel("قیچی")]); + interaction.reply({ + embeds: [new EmbedBuilder().setColor("Blue").setDescription("برنده: **-**").addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [row] + }) + .then((msg) => { + const collector = msg.createMessageComponentCollector({ time: time }); + collector.on("collect", async (m) => { + if (m.user.id !== interaction.user.id) m.reply({ content: `❌| این دکمه برای تو نیست.`, ephemeral: true }); + const userChose = m.customId; + let botChose; + const botPick = Math.floor(Math.random() * 3) + 1; + if (botPick === 1) { + botChose = "rock" + } else if (botPick === 2) { + botChose = "paper" + } else if (botPick === 3) { + botChose = "scissor" + } + switch (m.customId) { + case "rock": { + if (botChose === "rock") { + m.update({ + content: `انتخاب من: **${choices[botChose]}**\n انتخاب شما: **${choices[userChose]}**\n**نتیجه: مساوی شدیم.**`, + embeds: [new EmbedBuilder().setColor("#ffffff").setDescription("برنده: **-**").addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [row] + }) + } + else if (botChose === "paper") { + botScore++; + m.update({ + content: `انتخاب من: **${choices[botChose]}**\n انتخاب شما: **${choices[userChose]}**\n**نتیجه: تو باختی و من بردم💪🏻.**`, + embeds: [new EmbedBuilder().setColor("Red").setDescription("برنده: **-**").addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [row] + }) + } + else { + playerScore++; + m.update({ + content: `انتخاب من: **${choices[botChose]}**\n انتخاب شما: **${choices[userChose]}**\n**نتیجه: تو بردی💪🏻 و من باختم.**`, + embeds: [new EmbedBuilder().setColor("Green").setDescription("برنده: **-**").addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [row] + }) + } + } break; + case "paper": { + if (botChose === "paper") { + m.update({ + content: `انتخاب من: **${choices[botChose]}**\n انتخاب شما: **${choices[userChose]}**\n**نتیجه: مساوی شدیم.**`, + embeds: [new EmbedBuilder().setColor("#ffffff").setDescription("برنده: **-**").addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [row] + }) + } + else if (botChose === "scissor") { + botScore++; + m.update({ + content: `انتخاب من: **${choices[botChose]}**\n انتخاب شما: **${choices[userChose]}**\n**نتیجه: تو باختی و من بردم💪🏻.**`, + embeds: [new EmbedBuilder().setColor("Red").setDescription("برنده: **-**").addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [row] + }) + } + else { + playerScore++; + m.update({ + content: `انتخاب من: **${choices[botChose]}**\n انتخاب شما: **${choices[userChose]}**\n**نتیجه: تو بردی💪🏻 و من باختم.**`, + embeds: [new EmbedBuilder().setColor("Green").setDescription("برنده: **-**").addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [row] + }) + } + } break; + case "scissor": { + if (botChose === "scissor") { + m.update({ + content: `انتخاب من: **${choices[botChose]}**\n انتخاب شما: **${choices[userChose]}**\n**نتیجه: مساوی شدیم.**`, + embeds: [new EmbedBuilder().setColor("#ffffff").setDescription("برنده: **-**").addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [row] + }) + } + else if (botChose === "rock") { + botScore++; + m.update({ + content: `انتخاب من: **${choices[botChose]}**\n انتخاب شما: **${choices[userChose]}**\n**نتیجه: تو باختی و من بردم💪🏻.**`, + embeds: [new EmbedBuilder().setColor("Red").setDescription("برنده: **-**").addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [row] + }) + } + else { + playerScore++; + m.update({ + content: `انتخاب من: **${choices[botChose]}**\n انتخاب شما: **${choices[userChose]}**\n**نتیجه: تو بردی💪🏻 و من باختم.**`, + embeds: [new EmbedBuilder().setColor("Green").setDescription("برنده: **-**").addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [row] + }) + } + } break; + } + if (playerScore === 10) { + msg.edit({ + content: ` `, + embeds: [new EmbedBuilder().setColor("Green").setDescription(`برنده: **${interaction.user}**`).addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [endRow] + }) + } + else if (botScore === 10) { + msg.edit({ + content: ` `, + embeds: [new EmbedBuilder().setColor("Red").setDescription(`برنده: **${client.user}**`).addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [endRow] + }) + } + }) + collector.on("end", async (x) => { + if (x.size === 0) { + msg.edit({ + content: ` `, + embeds: [new EmbedBuilder().setColor("#ffffff").setDescription(`**هیشکی نیست تا با من مقابله کنه؟!**`)], + components: [endRow] + }) + } else if (x.size > 0) { + if (botScore === playerScore) { + msg.edit({ + content: ` `, + embeds: [new EmbedBuilder().setColor("#ffffff").setDescription(`برنده: **ها برابر هست. امتیاز**`).addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [endRow] + }) + } else if (botScore < playerScore) { + msg.edit({ + content: ` `, + embeds: [new EmbedBuilder().setColor("Green").setDescription(`برنده: **${interaction.user}**`).addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [endRow] + }) + } else if (botScore > playerScore) { + msg.edit({ + content: ` `, + embeds: [new EmbedBuilder().setColor("Red").setDescription(`برنده: **${client.user}**`).addFields([{ name: `امتیاز های بازی`, value: `\`->\` ${interaction.user}: **${playerScore} امتیاز**\n\`->\` ${client.user}: **${botScore} امتیاز**` }])], + components: [endRow] + }) + } + } + }) + }) + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Fun/tictactoe.js b/src/commands/Fun/tictactoe.js new file mode 100644 index 0000000..e5c48ca --- /dev/null +++ b/src/commands/Fun/tictactoe.js @@ -0,0 +1,59 @@ +const { + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const { + TicTacToe +} = require('discord-gamecord'); +const tictactoe = require("discord-tictactoe"); +const error = require("../../functions/error"); +module.exports = { + name: "tictactoe", + description: "بازی دوز دوز.", + category: "fun", + cooldown: 5, + type: ApplicationCommandType.ChatInput, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: false, + options: [{ + name: "user", + type: ApplicationCommandOptionType.User, + description: "یک یوزر انتخاب کنید.", + required: false + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const user = interaction.options.getUser("user"); + if (user) { + const Game = new TicTacToe({ message: interaction, isSlashGame: true, opponent: user }); + Game.startGame(); + } else { + const Game = new tictactoe({ language: "en", commandOptionName: "rival" }); + Game.handleInteraction(interaction); + } + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Misc/help.js b/src/commands/Misc/help.js new file mode 100644 index 0000000..a145bba --- /dev/null +++ b/src/commands/Misc/help.js @@ -0,0 +1,175 @@ +const { + EmbedBuilder, + ApplicationCommandType, + ActionRowBuilder, + ButtonStyle, + StringSelectMenuBuilder, + ButtonBuilder +} = require("discord.js"); +const copyRight = require("../../storage/copyRight.json"); +const { prefix } = require("../../../config"); +module.exports = { + name: "help", + description: "دستورات بات", + category: "misc", + aliases: ["h"], + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const timeout = 1000 * 60 * 1; + const category = new Map(); + client.commands.filter(a => !a.only_owner).forEach(a => category.set(a.category, a.category)); + const menu_options = []; + const author = interaction.guild.members.cache.get(interaction.member.id); + const embed = new EmbedBuilder() + .setAuthor({ + name: `${client.user.username} Help` + }) + .setFooter({ + text: `درخواست شده توسط ${author.user.tag}`, + iconURL: author.user.displayAvatarURL({ dynamic: true }) + }) + .setColor("#2B2D31") + .addFields([{ + name: "درباره من:", + value: `>>> درود من ${client.user.username} هستم.\nمن یک ربات فان و مدیریتی هستم که به ادمین ها کمک میکنم راحت تر سرور رو مدیریت کنند و همچنین به ممبر ها کمک میکنم داخل سرور سرگرم بشوند و در حل مشکلاتشون کمک کنم.`, + inline: false + }, { + name: "دیدن دستورات من:", + value: ">>> برای دیدن تمام دستورات من میتوانید به منوی زیر این پیام کلیک کنید و بر اساس کتگوری مورد نظر کامند های اون بخش رو ببینید.", + inline: false + }]) + .setThumbnail(client.user.displayAvatarURL({ dynamic: true })) + + const formatString = (str) => { + return `${str[0].toUpperCase()}${str.slice(1).toLowerCase()}`; + }; + category.forEach((ct) => { + menu_options.push({ + label: `${formatString(ct.toString())}`, + value: `${ct.toString()}` + }); + }); + if (client.config.owners.some(r => r.includes(author.user.id))) { + const [cat] = client.commands.filter(a => a.only_owner).map(a => a.category); + menu_options.push({ + label: `${formatString(cat.toString())}`, + value: `${cat.toString()}` + }) + }; + + const helpMenu = new StringSelectMenuBuilder() + .setCustomId("help_menu") + .setMaxValues(1) + .setPlaceholder("رو من کلیک کن!!") + .addOptions(menu_options); + + const homeButton = new ButtonBuilder() + .setStyle(ButtonStyle.Success) + .setLabel("Home Page") + .setCustomId("home_page"); + + const message = await interaction.reply({ + embeds: [embed], + components: [new ActionRowBuilder().addComponents(helpMenu.setDisabled(false)), new ActionRowBuilder().addComponents(homeButton.setDisabled(true))], + fetchReply: true + }); + const collector = message.createMessageComponentCollector({ time: timeout }); + collector.on("collect", async (int) => { + if (int.user.id === author.user.id) { + if (int.isButton()) { + if (int.customId === "home_page") { + int.update({ + embeds: [embed], + components: message.components + }) + } + }; + + if (int.isStringSelectMenu()) { + if (int.customId === "help_menu") { + int.values.forEach((value) => { + const embed = new EmbedBuilder() + .setThumbnail(client.user.displayAvatarURL({ dynamic: true })) + .setAuthor({ + name: `امبد کمک ${client.user.username}` + }) + .setTitle(`${value}`) + .setFooter({ + text: `درخواست شده توسط ${author.user.tag}`, + iconURL: author.user.displayAvatarURL({ dynamic: true }) + }) + .setColor("#2B2D31") + + let description = ""; + client.commands.filter(c => c.category === value).forEach((cmd) => { + if (cmd.only_slash && cmd.options && cmd.options.some(op => op.type === 1)) { + const command = client.application.commands.cache.find(c => c.name === cmd.name); + const name = []; + command.options ? + command.options.some(op => op.type === 1) ? + command.options.forEach((option) => { + name.push({ name: command.name + " " + option.name, description: option.description }) + }) : name.push({ name: `${command.name}`, description: command.description }) : name.push({ name: `${command.name}`, description: command.description }); + name.forEach(element => { + description += `\n\n**${cmd.only_slash ? + `` : ""}${cmd.only_message ? + `${prefix}${element.name} ${cmd.usage ? cmd.usage : ""}` : ""}${cmd.aliases && cmd.aliases.length > 0 ? + `\nنام های مستعار: [${cmd.aliases.map(a => `\`${a}\``).join(", ")}]` : ""}\nتوضیحات: \`${element.description}\`**`; + }); + } else { + description += `\n\n**${cmd.only_slash ? + ` c.name === cmd.name).id}>` : ""}${cmd.only_slash && cmd.only_message ? " | " : ""}${cmd.only_message ? + `${prefix}${cmd.name} ${cmd.usage ? cmd.usage : ""}` : ""}${cmd.aliases && cmd.aliases.length > 0 ? + `\nنام های مستعار: [${cmd.aliases.map(a => `\`${a}\``).join(", ")}]` : ""}\nتوضیحات: \`${cmd.description}\`**`; + } + }); + embed.setDescription(`${description ? description : "`بدون دستورات پیام.`"}`); + return int.update({ + embeds: [embed], + components: [new ActionRowBuilder().addComponents(helpMenu.setDisabled(false).setOptions(menu_options.filter(a=> a.value !== value))), new ActionRowBuilder().addComponents(homeButton.setDisabled(false))] + }); + }); + } + } + } else { + return interaction.reply({ + content: `این دکمه فقط برای ${author.user} میباشد و شما اجازه استفاده از آن را ندارید.\nبرای استفاده از دکمه ها بهتر است کامند رو به رو را فراخوانی کنید: "${` c.name === "help").name}:${client.application.commands.cache.find(c => c.name === "help").id}>`}"`, + ephemeral: true + }) + } + }); + collector.on("end", async () => { + return await message.edit({ + components: [new ActionRowBuilder().addComponents(helpMenu.setDisabled(true)), new ActionRowBuilder().addComponents(homeButton.setDisabled(true))] + }); + }) + setTimeout(() => { + return collector.stop(); + }, timeout); + + } +} +/** +* @copyright +* Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA +* @copyright +* Work for Persian Caesar | https://dsc.gg/persian-caesar +* @copyright +* Please Mention Us "Persian Caesar", When Have Problem With Using This Code! +* @copyright +*/ \ No newline at end of file diff --git a/src/commands/Misc/ping.js b/src/commands/Misc/ping.js new file mode 100644 index 0000000..3030f2f --- /dev/null +++ b/src/commands/Misc/ping.js @@ -0,0 +1,52 @@ +const { + EmbedBuilder, + ApplicationCommandType +} = require("discord.js"); +const response = require("../../functions/response"); +const error = require("../../functions/error"); +const editResponse = require("../../functions/editResponse"); +module.exports = { + name: "ping", + description: "پینگ بات", + category: "misc", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const embed1 = new EmbedBuilder() + .setColor("Aqua") + .setDescription("Pinging..."); + + const message = await response(interaction, { ephemeral: true, embeds: [embed1] }).catch(error); + + const embed2 = new EmbedBuilder() + .setColor("Aqua") + .setTitle("🏓 Pong") + .setDescription(`💓: ${Math.round(client.ws.ping)} ms +⏱️: ${Date.now() - interaction.createdTimestamp} ms`); + + return await editResponse(interaction, message, { embeds: [embed2] }); + } +} +/** +* @copyright +* Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA +* @copyright +* Work for Persian Caesar | https://dsc.gg/persian-caesar +* @copyright +* Please Mention Us "Persian Caesar", When Have Problem With Using This Code! +* @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/back.js b/src/commands/Music/back.js new file mode 100644 index 0000000..7792560 --- /dev/null +++ b/src/commands/Music/back.js @@ -0,0 +1,42 @@ +const { useHistory } = require("discord-player"); +const { ApplicationCommandType } = require("discord.js"); +module.exports = { + name: "back", + description: "Play the history track", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const history = useHistory(interaction.guildId); + + if (history.isEmpty()) + return interaction.reply("The queue has no history track."); + + history.previous(); + + return interaction.reply("Backed the history track."); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/clear.js b/src/commands/Music/clear.js new file mode 100644 index 0000000..3ab7a65 --- /dev/null +++ b/src/commands/Music/clear.js @@ -0,0 +1,60 @@ +const { ApplicationCommandType } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "clearq", + description: "Clear the tracks in the queue.", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (queue.size < 2) return interaction.reply("The queue has no more track."); + + queue.tracks.clear(); + + return interaction.reply("Cleared the queue tracks."); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/filters.js b/src/commands/Music/filters.js new file mode 100644 index 0000000..125528a --- /dev/null +++ b/src/commands/Music/filters.js @@ -0,0 +1,140 @@ +/* eslint-disable no-case-declarations */ +const { useQueue } = require("discord-player"); +const { ApplicationCommandOptionType, ApplicationCommandType, EmbedBuilder } = require("discord.js"); +const avlFilters = [ + "Bassboost", + "Chorus", + "Compressor", + "Dim", + "Earrape", + "Expander", + "Fadein", + "Flanger", + "Gate", + "Haas", + "Karaoke", + "Lofi", + "Mcompand", + "Mono", + "Nightcore", + "Normalizer", + "Phaser", + "Pulsator", + "Reverse", + "Softlimiter", + "Subboost", + "Surrounding", + "Treble", + "Vaporwave", + "Vibrato", +]; +module.exports = { + name: "filters", + description: "Audio filters commands", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + type: ApplicationCommandOptionType.Subcommand, + name: "clear", + description: "Clear all applied filters." + }, + { + type: ApplicationCommandOptionType.Subcommand, + name: "show", + description: "Show all filters." + }, + { + type: ApplicationCommandOptionType.Subcommand, + name: "toggle", + description: "Toggle a audio filter.", + options: [ + { + type: ApplicationCommandOptionType.String, + name: "name", + description: "The name of the filter", + required: true, + choices: avlFilters.map((f) => ({ + name: `${f}`, + value: `${f.toLowerCase()}` + })) + } + ] + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + const filters = queue.filters.ffmpeg.getFiltersEnabled(); + switch (interaction.options.getSubcommand()) { + case "clear": + if (!filters.length) + return interaction.reply("No audio filter is applied currently."); + + queue.filters.ffmpeg.setFilters(false); + await interaction.reply("Cleared all audio filters."); + break; + + case "toggle": + const filterName = interaction.options.getString("name", true); + queue.filters.ffmpeg.toggle(filterName); + await interaction.reply(`Toggle the ${filterName} audio filter`); + break; + + default: + const enabledFilters = queue.filters.ffmpeg.getFiltersEnabled(); + const disabledFilters = queue.filters.ffmpeg.getFiltersDisabled(); + const enFDes = enabledFilters.map((f) => `${f} --> ✅`).join("\n"); + const disFDes = disabledFilters.map((f) => `${f} --> ❌`).join("\n"); + const embed = new EmbedBuilder() + .setTitle("All Audio Filters") + .setDescription(`${enFDes}\n\n${disFDes}`); + + await interaction.reply({ ephemeral: true, embeds: [embed] }); + break; + } + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/jump.js b/src/commands/Music/jump.js new file mode 100644 index 0000000..3e59cf5 --- /dev/null +++ b/src/commands/Music/jump.js @@ -0,0 +1,73 @@ +const { ApplicationCommandOptionType, ApplicationCommandType } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "jump", + description: "Jump to specific track on the queue without removing other tracks", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + name: "index", + description: "The track index to jump to", + type: ApplicationCommandOptionType.Number, + required: true + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (queue.isEmpty()) return interaction.reply("The queue has no more track."); + + const index = interaction.options.getNumber("index", true) - 1; + + if (index > queue.size || index < 0) + return interaction.reply("Provided track index does not exist."); + + queue.node.jump(index); + + return interaction.reply(`Jumped to track ${index + 1}.`); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/lyrics.js b/src/commands/Music/lyrics.js new file mode 100644 index 0000000..95c9987 --- /dev/null +++ b/src/commands/Music/lyrics.js @@ -0,0 +1,97 @@ +const { ApplicationCommandOptionType, ApplicationCommandType, EmbedBuilder } = require("discord.js"); +const { lyricsExtractor } = require("@discord-player/extractor"); +const lyricsFinder = lyricsExtractor(); +const { useQueue } = require("discord-player"); +const error = require("../../functions/error"); +module.exports = { + name: "lyrics", + description: "Get lyrics for a track.", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + type: ApplicationCommandOptionType.String, + name: "query", + description: "The track title to search lyrics", + required: false + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + const query = interaction.options.getString("query", false) ?? queue?.currentTrack?.title; + + if (!query) return interaction.reply("You forgot to provide the track name."); + + const queryFormated = query + .toLowerCase() + .replace( + /\(lyrics|lyric|official music video|official video hd|official video|audio|official|clip officiel|clip|extended|hq\)/g, + "" + ); + + const result = await lyricsFinder.search(queryFormated).catch(() => null); + + if (!result || !result.lyrics) + return interaction.reply("No lyrics were found for this track."); + + const lyrics = + result.lyrics.length > 4096 ? `${result.lyrics.slice(0, 4090)}...` : result.lyrics; + + const embed = new EmbedBuilder() + .setTitle(result.title) + .setURL(result.url) + .setThumbnail(result.thumbnail) + .setAuthor({ + name: result.artist.name, + iconURL: result.artist.image, + url: result.artist.url + }) + .setDescription(lyrics); + + return interaction.reply({ embeds: [embed] }).catch(error); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/move.js b/src/commands/Music/move.js new file mode 100644 index 0000000..6d1a897 --- /dev/null +++ b/src/commands/Music/move.js @@ -0,0 +1,87 @@ +const { ApplicationCommandOptionType, ApplicationCommandType } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "move", + description: "Move a track in the queue", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + name: "from", + description: "The track to move.", + type: ApplicationCommandOptionType.Number, + required: true + }, + { + name: "to", + description: "The position to move to.", + type: ApplicationCommandOptionType.Number, + required: true + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (queue.size < 3) + return interaction.reply("Need at least 3 songs in the queue to use this command."); + + const from = interaction.options.getNumber("from", true); + const to = interaction.options.getNumber("to", true); + + if (from < 1 || from >= queue.size) + return interaction.reply("Provided `from` index is not valid."); + + if (to < 1 || to >= queue.size) + return interaction.reply("Provided `to` position is not valid."); + + if (from === to) + return interaction.reply("The track is already in this position."); + + queue.node.move(from, to); + + return interaction.reply(`The track is moved to the position ${to}.`); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/nowplaying.js b/src/commands/Music/nowplaying.js new file mode 100644 index 0000000..d4079f0 --- /dev/null +++ b/src/commands/Music/nowplaying.js @@ -0,0 +1,68 @@ +const { ApplicationCommandType, EmbedBuilder } = require("discord.js"); +const { useQueue } = require("discord-player"); +const error = require("../../functions/error"); +module.exports = { + name: "nowplaying", + description: "Show the currently playing track.", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + const track = queue.currentTrack; + + const embed = new EmbedBuilder() + .setAuthor({ name: "Now playing" }) + .setTitle(`${track.title}`) + .setURL(`${track.url}`) + .setThumbnail(`${track.thumbnail}`) + .setImage('https://message.style/cdn/images/e86348384e1e3d4bb9018573a6573c8eea1fd665a88128725d051a51ee358904.png') + .setDescription(`Played by: ${track.requestedBy.toString()}\n +${queue.node.createProgressBar()}`); + + return interaction.reply({ ephemeral: true, embeds: [embed] }).catch(error); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/pause.js b/src/commands/Music/pause.js new file mode 100644 index 0000000..5ba2813 --- /dev/null +++ b/src/commands/Music/pause.js @@ -0,0 +1,61 @@ +const { ApplicationCommandType } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "pause", + description: "Pause the playback", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (queue.node.isPaused()) + return interaction.reply("The playback is already paused."); + + queue.node.pause(); + + return interaction.reply("Paused the playback."); + }, +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/play.js b/src/commands/Music/play.js new file mode 100644 index 0000000..7c0dd43 --- /dev/null +++ b/src/commands/Music/play.js @@ -0,0 +1,102 @@ +const { + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const { + useQueue, + useMainPlayer +} = require("discord-player"); +const error = require("../../functions/error"); +const response = require("../../functions/response"); +module.exports = { + name: "play", + description: "پخش موزیک در ویس چنل.", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + aliases: ["p"], + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [{ + name: "track", + description: "لطفا نام خواننده یا آهنگ و یا لینک وارد کنید.", + type: ApplicationCommandOptionType.String, + required: true + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + let query = interaction.user ? interaction.options.getString("track") : args.join(" "); + const member = interaction.guild.members.cache.get(interaction.member.id); + const player = useMainPlayer(); + const queue = useQueue(interaction.guild.id); + const channel = member?.voice?.channel; + if (!query) return await response(interaction, { content: "You have to write a music name or place a url." }); + + if (!channel) return await response(interaction, { content: "You have to join a voice channel first." }); + + if (queue && queue.channel.id !== channel.id) + return await response(interaction, { content: "I'm already playing in a different voice channel!" }); + + if (!channel.viewable) + return await response(interaction, { content: "I need `View Channel` permission." }); + + if (!channel.joinable) + return await response(interaction, { content: "I need `Connect Channel` permission." }); + + if (channel.full) + return await response(interaction, { content: "Can't join, the voice channel is full." }); + + if (member.voice.deaf) + return await response(interaction, { content: "You cannot run this command while deafened." }); + + if (interaction.guild.members.me?.voice?.mute) + return await response(interaction, { content: "Please unmute me before playing." }); + + if (query.startsWith("https://on.soundcloud.com")) { + const results = await fetch(query.split(" ")[0]); + query = results.url; + }; + + const searchResult = await player + .search(query, { requestedBy: member }) + .catch(error); + + if (!searchResult.hasTracks()) + return await response(interaction, { content: `No track was found for ${query}!` }); + + const { track } = await player.play(channel, searchResult, { + nodeOptions: { + metadata: { + channel: interaction.channel, + author: member + } + } + }); + + return await response(interaction, { content: `This object founded **${track.title}** from **${track.author}**!` }); + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/queue.js b/src/commands/Music/queue.js new file mode 100644 index 0000000..fb03074 --- /dev/null +++ b/src/commands/Music/queue.js @@ -0,0 +1,193 @@ +const { ApplicationCommandOptionType, ApplicationCommandType, EmbedBuilder, ActionRowBuilder, ButtonStyle } = require("discord.js"); +const { useQueue } = require("discord-player"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +const { ButtonBuilder } = require("discord-gamecord/utils/utils"); +const response = require("../../functions/response"); +module.exports = { + name: "queue", + description: "Show tracks in the queue.", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + // options: [ + // { + // name: "page", + // description: "The page number of the queue", + // type: ApplicationCommandOptionType.Number, + // required: false + // } + // ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return await response(interaction, { + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return await response(interaction, { + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return await response(interaction, { + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (!queue.size) return await response(interaction, "There is no track in the queue."); + + // let page = interaction.options.getNumber("page", false) ?? 1; + + const multiple = 12; + + // const maxPages = Math.ceil(queue.size / multiple); + + // if (page < 1 || page > maxPages) page = 1; + + // const end = page * multiple; + // const start = end - multiple; + + const tracks = queue.tracks.toArray(); + + // const embed = new EmbedBuilder() + // .setDescription( + // `${tracks + // .map( + // (track, i) => + // `${start + ++i} - [${track.title}](${track.url}) ~ [${track.requestedBy.toString()}]` + // ) + // .join("\n")}` + // ) + // .setFooter({ + // text: `Page ${page} of ${maxPages} | track ${start + 1} to ${end > queue.size ? `${queue.size}` : `${end}` + // } of ${queue.size}`, + // iconURL: interaction.user.displayAvatarURL({ dynamic: true }), + // }); + + // return await response(interaction, { ephemeral: true, embeds: [embed] }).catch(error); + + if (interaction.user) await interaction.deferReply({ ephemeral: false }); + + let backButton = new ButtonBuilder({ + style: ButtonStyle.Secondary, + label: "<", + customId: "back" + }); + + let forwardButton = new ButtonBuilder({ + style: ButtonStyle.Secondary, + label: ">", + customId: "forward" + }); + + let dubbleBackButton = new ButtonBuilder({ + style: ButtonStyle.Secondary, + label: "<<", + customId: "dubble_back" + }); + + let dubbleForwardButton = new ButtonBuilder({ + style: ButtonStyle.Secondary, + label: ">>", + customId: "dubble_forward" + }); + + let page = 1; + let generateEmbed = async (array, number) => { + let current = array.slice(number, number + multiple); + let embed = new EmbedBuilder({ + title: `${page}/${Math.ceil(array.length / multiple)} | Queue Size: ${(array.length).toLocaleString()}`, + footer: { + text: copyRight.footerText, + icon_url: copyRight.footerIcon + }, + description: + `${tracks + .map( + (track, i) => + `${((page * multiple) - multiple) + ++i} - [${track.title}](${track.url}) ~ [${track.requestedBy.toString()}]` + ) + .join("\n")}` + // fields: await Promise.all( + // current.map((track, index) => ({ + // name: `${((page * multiple) - multiple) + ++index}• [${track.title}](${track.url})`, + // value: `**${track.author} ~ [${track.requestedBy.toString()}]**`, + // inline: true + // })) + // ) + }); + return embed.setColor("Yellow"); + }; + let canFitOnOnePage = tracks.length <= multiple; + let embedMessage = await response(interaction, { + embeds: [await generateEmbed(tracks, 0)], + components: canFitOnOnePage ? [] : [new ActionRowBuilder({ components: [dubbleBackButton.setDisabled(true), backButton.setDisabled(true), forwardButton.setDisabled(false), dubbleForwardButton.setDisabled(false)] })], + fetchReply: true + }); + if (canFitOnOnePage) return; + let collector = embedMessage.createMessageComponentCollector({ + filter: ({ user }) => user.id === interaction.user.id, + time: 60000 + }) + + let currentIndex = 0; + collector.on("collect", async int => { + let lastPage = Math.ceil(tracks.length / multiple); + if (int.customId === "back") { + (currentIndex -= multiple); + (page -= 1); + } else if (int.customId === "forward") { + (currentIndex += multiple); + (page += 1); + }; + int.customId === "dubble_back" ? (page = 1) : null; + int.customId === "dubble_forward" ? (page = lastPage) : null; + await int.update({ + embeds: [await generateEmbed(tracks, currentIndex)], + components: [new ActionRowBuilder({ + components: [ + ...(page >= lastPage ? + [dubbleBackButton.setDisabled(false), backButton.setDisabled(false), forwardButton.setDisabled(true), dubbleForwardButton.setDisabled(true)] + : page <= 1 ? + [dubbleBackButton.setDisabled(true), backButton.setDisabled(true), forwardButton.setDisabled(false), dubbleForwardButton.setDisabled(false)] + : [dubbleBackButton.setDisabled(false), backButton.setDisabled(false), forwardButton.setDisabled(false), dubbleForwardButton.setDisabled(false)]) + ] + })] + }) + }); + collector.on("end", async () => { + return await interaction.editReply({ + components: [] + }); + }); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/remove.js b/src/commands/Music/remove.js new file mode 100644 index 0000000..e21a1fa --- /dev/null +++ b/src/commands/Music/remove.js @@ -0,0 +1,73 @@ +const { ApplicationCommandOptionType, ApplicationCommandType } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "remove", + description: "Remove a track from queue", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + name: "index", + description: "The track index to remove", + type: ApplicationCommandOptionType.Number, + required: true + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (queue.size < 1) return interaction.reply("The queue has no more track."); + + const index = interaction.options.getNumber("index", true) - 1; + + if (index > queue.size || index < 0) + return interaction.reply("Provided track index does not exist."); + + queue.node.remove(index); + + return interaction.reply(`Removed track ${index + 1}.`); + }, +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/repeat.js b/src/commands/Music/repeat.js new file mode 100644 index 0000000..c776885 --- /dev/null +++ b/src/commands/Music/repeat.js @@ -0,0 +1,125 @@ +/* eslint-disable no-case-declarations */ +const { ApplicationCommandOptionType, ApplicationCommandType, EmbedBuilder } = require("discord.js"); +const { QueueRepeatMode, useQueue } = require("discord-player"); +const error = require("../../functions/error"); +module.exports = { + name: "repeat", + description: "Set repeat mode for the queue", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + type: ApplicationCommandOptionType.Subcommand, + name: "show", + description: "Show current repeat mode status." + }, + { + type: ApplicationCommandOptionType.Subcommand, + name: "off", + description: "Default mode with no loop active" + }, + { + type: ApplicationCommandOptionType.Subcommand, + name: "queue", + description: "Loop the current queue" + }, + { + type: ApplicationCommandOptionType.Subcommand, + name: "track", + description: "Repeat the current track" + }, + { + type: ApplicationCommandOptionType.Subcommand, + name: "autoplay", + description: "Play related songs automatically based on your existing queue" + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + let description; + switch (interaction.options.getSubcommand()) { + case "off": + queue.setRepeatMode(QueueRepeatMode.OFF); + description = "Turned off repeat mode."; + break; + case "track": + queue.setRepeatMode(QueueRepeatMode.TRACK); + description = "Looping the current track."; + break; + case "queue": + queue.setRepeatMode(QueueRepeatMode.QUEUE); + description = "Looing the current queue."; + break; + case "autoplay": + queue.setRepeatMode(QueueRepeatMode.AUTOPLAY); + description = "Autoplay mode activated."; + break; + // case "show": + default: + let status = "none"; + if (queue.repeatMode === 3) { + status = "autoplay"; + } else if (queue.repeatMode === 2) { + status = "queue"; + } else if (queue.repeatMode === 1) { + status = "track"; + } else if (queue.repeatMode === 0) { + status = "off"; + } + + const embed = new EmbedBuilder() + .setDescription(`Playback repeat status: \`${status}\`.`) + .setFooter({ text: `Use '/repeat ' to change repeat mode.` }); + + return interaction.reply({ ephemeral: true, embeds: [embed] }).catch(error); + } + + return interaction.reply({ + embeds: [new EmbedBuilder().setDescription(description)], + }); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/replay.js b/src/commands/Music/replay.js new file mode 100644 index 0000000..59e53de --- /dev/null +++ b/src/commands/Music/replay.js @@ -0,0 +1,58 @@ +const { useQueue } = require("discord-player"); +const { ApplicationCommandType } = require("discord.js"); +module.exports = { + name: "replay", + description: "Replay the current track.", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + queue.node.seek(0); + + return interaction.reply("Replayed the current track."); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/resume.js b/src/commands/Music/resume.js new file mode 100644 index 0000000..091c1ce --- /dev/null +++ b/src/commands/Music/resume.js @@ -0,0 +1,61 @@ +const { useQueue } = require("discord-player"); +const { ApplicationCommandType } = require("discord.js"); +module.exports = { + name: "resume", + description: "Resume the playback", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (queue.node.isPlaying()) + return interaction.reply("The playback is already playing."); + + queue.node.resume(); + + return interaction.reply("Resumed the playback."); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/seek.js b/src/commands/Music/seek.js new file mode 100644 index 0000000..e65f94a --- /dev/null +++ b/src/commands/Music/seek.js @@ -0,0 +1,96 @@ +const { ApplicationCommandOptionType, ApplicationCommandType } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "seek", + description: "Seek the player", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + name: "duration", + description: "The duration to seek to ", + type: ApplicationCommandOptionType.String, + required: true, + }, + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + let timeString = interaction.options.getString("duration"); + + if (isNaN(timeString) && !timeString.includes(":")) + return interaction.reply("Provide a valid duration to seek."); + + if (!isNaN(timeString)) timeString = `00:${timeString}`; + + /** + * convert formatted duration to milliseconds + * @param {string} formatted duration input + * @returns {number} + */ + function toMilliseconds(input) { + if (!input) return 0; + if (typeof input !== "string") return Number(input) || 0; + if (input.match(/:/g)) { + const time = input.split(":").reverse(); + let s = 0; + for (let i = 0; i < 3; i++) + if (time[i]) s += Number(time[i].replace(/[^\d.]+/g, "")) * Math.pow(60, i); + if (time.length > 3) s += Number(time[3].replace(/[^\d.]+/g, "")) * 24 * 60 * 60; + return Number(s * 1000); + } + return Number(input.replace(/[^\d.]+/g, "") * 1000) || 0; + } + const time = toMilliseconds(timeString); + + if (!time || isNaN(time) || time > queue.currentTrack.durationMS || time < 0) + return interaction.reply("Provide a valid duration to seek."); + + queue.node.seek(time); + + return interaction.reply(`Seeked to \`${timeString}\`.`); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/shuffle.js b/src/commands/Music/shuffle.js new file mode 100644 index 0000000..23d993d --- /dev/null +++ b/src/commands/Music/shuffle.js @@ -0,0 +1,61 @@ +const { ApplicationCommandType } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "shuffle", + description: "Shuffle the queue.", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (queue.size < 3) + return interaction.reply("Need at least 3 tracks in the queue to shuffle."); + + queue.tracks.shuffle(); + + return interaction.reply("Shuffled the queue."); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/skip.js b/src/commands/Music/skip.js new file mode 100644 index 0000000..7ad764e --- /dev/null +++ b/src/commands/Music/skip.js @@ -0,0 +1,61 @@ +const { ApplicationCommandType } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "skip", + description: "Skip current track", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (queue.size < 1 && queue.repeatMode !== 3) + return interaction.reply("The queue has no more track."); + + queue.node.skip(); + + return interaction.reply("Skipped the current track."); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/skipto.js b/src/commands/Music/skipto.js new file mode 100644 index 0000000..10dc38a --- /dev/null +++ b/src/commands/Music/skipto.js @@ -0,0 +1,73 @@ +const { ApplicationCommandOptionType, ApplicationCommandType } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "skipto", + description: "Skip to the given track, removing others on the way", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + name: "index", + description: "The track index to skip to", + type: ApplicationCommandOptionType.Number, + required: true + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (queue.size < 1) return interaction.reply("The queue has no more track."); + + const index = interaction.options.getNumber("index", true) - 1; + + if (index > queue.size || index < 0) + return interaction.reply("Provided track index does not exist."); + + queue.node.skipTo(index); + + return interaction.reply(`Skipped to track ${index + 1}.`); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/stop.js b/src/commands/Music/stop.js new file mode 100644 index 0000000..4fccd8f --- /dev/null +++ b/src/commands/Music/stop.js @@ -0,0 +1,57 @@ +const { useQueue } = require("discord-player"); +const { ApplicationCommandType } = require("discord.js"); +module.exports = { + name: "stop", + description: "Stop the playback.", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + queue.delete(); + return interaction.reply("Stopped the playback."); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/swap.js b/src/commands/Music/swap.js new file mode 100644 index 0000000..86e0305 --- /dev/null +++ b/src/commands/Music/swap.js @@ -0,0 +1,87 @@ +const { ApplicationCommandOptionType, ApplicationCommandType } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "swap", + description: "Swap two tracks in the queue", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + name: "first", + description: "The first track to swap", + type: ApplicationCommandOptionType.Number, + required: true + }, + { + name: "second", + description: "The second track to swap", + type: ApplicationCommandOptionType.Number, + required: true + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + if (queue.size < 3) + return interaction.reply("Need at least 3 songs in the queue to use this command."); + + const first = interaction.options.getNumber("first", true); + const second = interaction.options.getNumber("second", true); + + if (first < 1 || first >= queue.size) + return interaction.reply("Provided `first` track index is not valid."); + + if (second < 1 || second >= queue.size) + return interaction.reply("Provided `second` track index is not valid."); + + if (first === second) + return interaction.reply("The tracks are already in this position."); + + queue.node.swap(first, second); + + return interaction.reply(`Track ${first} & ${second} has been swapped.`); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/trackinfo.js b/src/commands/Music/trackinfo.js new file mode 100644 index 0000000..63740d1 --- /dev/null +++ b/src/commands/Music/trackinfo.js @@ -0,0 +1,83 @@ +const { ApplicationCommandOptionType, ApplicationCommandType, EmbedBuilder } = require("discord.js"); +const { useQueue } = require("discord-player"); +const error = require("../../functions/error"); +module.exports = { + name: "trackinfo", + description: "Show details of a track.", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + name: "index", + type: ApplicationCommandOptionType.Number, + description: "That track index.", + required: true + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + const index = interaction.options.getNumber("index", true) - 1; + + if (index > queue.size || index < 0) + return interaction.reply("Provided track Index does not exist."); + + const track = queue.tracks.toArray()[index]; + + if (!track) return interaction.reply("The track was not found."); + + const embed = new EmbedBuilder() + .setAuthor({ name: "Trackinfo 🎵" }) + .setTitle(`${track.title}`) + .setURL(`${track.url}`) + .setThumbnail(`${track.thumbnail}`) + .setDescription(`~ Requested by: ${track.requestedBy.toString()} +Duration: ${track.duration} +Position in queue: ${index + 1}`); + + return interaction.reply({ ephemeral: true, embeds: [embed] }).catch(error); + }, +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Music/volume.js b/src/commands/Music/volume.js new file mode 100644 index 0000000..03d8ccc --- /dev/null +++ b/src/commands/Music/volume.js @@ -0,0 +1,78 @@ +const { ApplicationCommandOptionType, ApplicationCommandType, EmbedBuilder } = require("discord.js"); +const { useQueue } = require("discord-player"); +module.exports = { + name: "volume", + description: "Check or change the volume", + category: "music", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks", "Connect", "Speak"], + dm_permissions: false, + only_owner: false, + only_slash: true, + only_message: true, + options: [ + { + name: "amount", + description: "Volume amount to set", + type: ApplicationCommandOptionType.Number, + required: false, + minValue: 1, + maxValue: 200 + } + ], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + const queue = useQueue(interaction.guild.id); + if (!queue) + return interaction.reply({ + content: "I’m currently not playing in this server.", + ephemeral: true + }); + + const memberChannelId = interaction.member?.voice?.channelId; + const queueChannelId = queue?.channel.id; + if (!memberChannelId) + return interaction.reply({ + content: "You need to join a voice channel first!", + ephemeral: true + }); + + if (memberChannelId !== queueChannelId) + return interaction.reply({ + content: "You must be in the same voice channel as me!", + ephemeral: true + }); + + const newVol = interaction.options.getNumber("amount", false); + + if (!newVol) { + const embed = new EmbedBuilder() + .setDescription(`Current volume is \`${queue.node.volume}%\`.`) + .setFooter({ text: "Use '/volume <1-100>' to change the volume." }); + + return interaction.reply({ ephemeral: true, embeds: [embed] }).catch(error); + } + + queue.node.setVolume(newVol); + + return interaction.reply(`Volume is updated to ${newVol}.`); + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Nsfw/gif.js b/src/commands/Nsfw/gif.js new file mode 100644 index 0000000..7c1ed21 --- /dev/null +++ b/src/commands/Nsfw/gif.js @@ -0,0 +1,52 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +const getDataFromNeko = require("../../functions/getDataFromNeko"); +module.exports = { + name: "gif", + description: "دریافت و ارسال گیف های حق از api و نشان دادن آن به صورت رندوم.", + category: "nsfw", + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: false, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + if (!interaction.channel.nsfw) return interaction.reply({ content: `پسر خوب اینجا که برای بچه سالاست پاشو برو چنل هایی که NSFW اش روشن باهشه موش کور.` }); + + const data = await getDataFromNeko("pgif"); + try { + if (data.message) { + return await interaction.reply({ + embeds: [new EmbedBuilder().setColor("#2B2D31").setTitle(`گیف های حق و آغشته به پورن به صورت شانسی`).setDescription(`مراقب چشات باش`).setTimestamp().setImage(data.message).setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon })] + }) + }; + } catch (e) { + error(e) + } + + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Nsfw/image.js b/src/commands/Nsfw/image.js new file mode 100644 index 0000000..69cb9f5 --- /dev/null +++ b/src/commands/Nsfw/image.js @@ -0,0 +1,54 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +const types = require("../../storage/nsfw/nekoApiTypes.json"); +const getDataFromNeko = require("../../functions/getDataFromNeko"); +module.exports = { + name: "image", + description: "دریافت تصاویر حق از api و نشان دادن آن به صورت رندوم.", + category: "nsfw", + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: false, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + if (!interaction.channel.nsfw) return interaction.reply({ content: `پسر خوب اینجا که برای بچه سالاست پاشو برو چنل هایی که NSFW اش روشن باهشه موش کور.` }); + + const type = types[Math.floor(Math.random() * types.length)]; + const data = await getDataFromNeko(type); + try { + if (data.message) { + return await interaction.reply({ + embeds: [new EmbedBuilder().setColor("#2B2D31").setTitle(`تصاویر حق و آغشته به پورن به صورت شانسی`).setDescription(`مراقب چشات باش`).setTimestamp().setImage(data.message).setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon })] + }) + }; + } catch (e) { + error(e) + } + + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Nsfw/video.js b/src/commands/Nsfw/video.js new file mode 100644 index 0000000..68fe428 --- /dev/null +++ b/src/commands/Nsfw/video.js @@ -0,0 +1,50 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +const fs = require("fs"); +module.exports = { + name: "video", + description: "دریافت و ارسال ویدیو های حق.", + category: "nsfw", + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: false, + only_slash: false, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + if (!interaction.channel.nsfw) return interaction.reply({ content: `پسر خوب اینجا که برای بچه سالاست پاشو برو چنل هایی که NSFW اش روشن باهشه موش کور.` }); + + // const files = fs.readFileSync("./src/storage/nsfw").filter(file => file.endsWith(".json") && file !== "nekoApiTypes.json"); + // const file = files[Math.floor(Math.random() * files.length)]; + // const videos = require(`../../storage/nsfw/${file}`); + const videos = require("../../storage/nsfw/random.json"); + const video = videos[Math.floor(Math.random() * videos.length)]; + const hideURL = "||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​|| _ _ _ _ _ _ "; + return await interaction.reply({ + content: `محتوای شما یافت شد یا حق ✋🏻 (مواظب باش خودتو خفه نکنی)\n${hideURL}${video}` + }) + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Owner/add.js b/src/commands/Owner/add.js new file mode 100644 index 0000000..ce7e7f8 --- /dev/null +++ b/src/commands/Owner/add.js @@ -0,0 +1,100 @@ +const { + EmbedBuilder +} = require("discord.js"); +const error = require("../../functions/error"); +const copyRight = require("../../storage/copyRight.json"); +module.exports = { + name: "add", + description: "کوین دادن به بقیه.", + category: "owner", + cooldown: 5, + aliases: [], + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: false, + only_owner: true, + only_slash: false, + only_message: true, + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").Message} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const db = client.db; + const user = interaction.guild.members.cache.some(a => a.user.equals(args[0]) || a.id === args[0] || a.user.tag === args[0]) || interaction.mentions.users.first(); + const cash = args[1]; + if (!user) { + return await interaction.reply({ + content: `❌| این یوزر مورد تایید نمیباشد دوباره تلاش کنید.` + }); + }; + if (user.bot) { + return await interaction.reply({ + content: `❌| ربات ها مورد تایید نیستند دوباره تلاش کنید.` + }); + }; + + + if (!await db.has(`users.${user.id}`)) { + return await interaction.reply({ + content: `❌| پروفایل یوزر مورد نظر یافت نشد.` + }); + }; + + if (!cash) { + return await interaction.reply({ + content: `❌| لطفا مبلغ کوین را وارد کنید.` + }); + }; + + if (isNaN(cash)) { + return await interaction.reply({ + content: `❌| لطفا از اعداد استفاده کنید.` + }); + }; + + const profile = await db.get(`users.${user.id}`); + await db.add(`users.${user.id}.wallet`, cash); + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle("Economy | Add") + .setDescription("به پروفایل یوزر مورد نظر کوین ها واریز شد.") + .setFooter({ text: `Owner Embed • ${copyRight.footerText}` }) + .setThumbnail(interaction.author.displayAvatarURL({ forceStatic: true })) + .addFields([{ + name: "مبلغ واریزی:", + value: `${cash.toLocaleString()} 🪙`, + inline: true + }, { + name: "یوزر:", + value: `${user}`, + inline: true + }, { + name: "کیف پول:", + value: `${profile.wallet.toLocaleString()} 🪙`, + inline: true + }]) + .setTimestamp(); + + return await interaction.reply({ + embeds: [embed] + }); + } catch (e) { + error(e); + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/commands/Owner/setactivity.txt b/src/commands/Owner/setactivity.txt new file mode 100644 index 0000000..6b3ab02 --- /dev/null +++ b/src/commands/Owner/setactivity.txt @@ -0,0 +1,111 @@ +const { + ApplicationCommandType, + ApplicationCommandOptionType +} = require("discord.js"); +const error = require("../../functions/error"); + +module.exports = { + name: "setactivity", + description: "تغییر موقت استاتوس بات.", + category: "owner", + type: ApplicationCommandType.ChatInput, + cooldown: 5, + user_permissions: ["SendMessages"], + bot_permissions: ["SendMessages", "EmbedLinks"], + dm_permissions: true, + only_owner: true, + only_slash: true, + only_message: false, + options: [{ + name: "status", + type: ApplicationCommandOptionType.String, + description: "استاتوس را انتخاب کنید.", + choices: [{ + name: "Do Not Distrub", + value: "dnd" + }, { + name: "Idle", + value: "idle" + }, { + name: "Online", + value: "online" + }, { + name: "Invisible", + value: "invisible" + }] + }, { + name: "activity-type", + type: ApplicationCommandOptionType.String, + description: "نوع فعالیت بات را انتخاب کنید.", + choices: [{ + name: "Competing", + value: "Competing" + }, { + name: "Watching", + value: "Watching" + }, { + name: "Listening", + value: "Listening" + }, { + name: "Streaming", + value: "Streaming" + }, { + name: "Playing", + value: "Playing" + }] + }, { + name: "activity-name", + type: ApplicationCommandOptionType.String, + description: "متن فعالیت را بنویسید." + }, { + name: "stream-url", + type: ApplicationCommandOptionType.String, + description: "برای نشان دادن لینک استریم در استاتوس یک لینک وارد کنید." + }], + + /** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @param {Array} args + * @returns + */ + run: async (client, interaction, args) => { + try { + const status = interaction.options.getString("status"); + const activityName = interaction.options.getString("activity-name"); + const activityType = interaction.options.getString("activity-type"); + const url = interaction.options.getString("stream-url"); + const type = { + Playing: 0, + Streaming: 1, + Listening: 2, + Watching: 3, + Competing: 5 + }; + client.user.setPresence({ + activities: [{ + name: activityName ? activityName : "Hello World", + type: activityType ? type[activityType] : 4, + url: url ? url : null + }], + status: status + }); + return await interaction.reply({ + ephemeral: true, + content: `✅| استاتوس ربات به صورت موقت تغییر یافت.` + }) + } catch (e) { + error(e) + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/command/interactionCreate.js b/src/events/command/interactionCreate.js new file mode 100644 index 0000000..fe3bda4 --- /dev/null +++ b/src/events/command/interactionCreate.js @@ -0,0 +1,85 @@ +const { + EmbedBuilder, + PermissionsBitField, + ApplicationCommandOptionType, + Collection +} = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").CommandInteraction} interaction + * @returns + */ +module.exports = async (client, interaction) => { + try { + if (interaction.isCommand()) { + const command = client.commands.get(interaction.commandName); + if (command) { + const args = []; + for (let option of interaction.options.data) { + if (option.type === ApplicationCommandOptionType.Subcommand) { + if (option.name) args.push(option.name); + + option.options?.forEach((x) => { + if (x.value) args.push(x.value); + }) + } else if (option.value) args.push(option.value); + }; + + if (command.only_owner) { + if (!client.config.owners.includes(interaction.user.id)) return await interaction.reply({ embeds: [new EmbedBuilder().setDescription(`این کامند جیززه پسر خوب برو پی بچه بازی آفرین گل پسر.`).setColor("Orange")], ephemeral: true }).catch((e) => { console.log(e) }) + }; + + const fcmd = client.application.commands.cache.find(c => c.name === command.name); + const mentionCommand = ` a.type === ApplicationCommandOptionType.Subcommand) ? ` ${interaction.options.data.find(a => a.type === ApplicationCommandOptionType.Subcommand).name}` : ""}:${fcmd.id}>`; + if (interaction.guild) { + const bot_perms = []; + const user_perms = []; + command.bot_permissions.forEach(perm => bot_perms.push(PermissionsBitField.Flags[perm])); + command.user_permissions.forEach(perm => user_perms.push(PermissionsBitField.Flags[perm])); + if (!interaction.guild.members.me.permissions.has([bot_perms] || [])) return await interaction.reply({ embeds: [new EmbedBuilder().setDescription(`ربات که من باشم دسترسی لازم برای ران کردن کامند ${mentionCommand} رو ندارم!!\nدسترسی های لازم: [${command.bot_perms.map(p => `\`${p}\``).join(", ")}]`).setColor("Orange")], ephemeral: true }).catch((e) => { error(e) }); + + if (!interaction.member.permissions.has([user_perms] || [])) return await interaction.reply({ embeds: [new EmbedBuilder().setDescription(`ببین پسر خوب تو دسترسی های لازم برای استفاده از کامند ${mentionCommand} رو نداری!! \nدسترسی های لازم: [${command.user_perms.map(p => `\`${p}\``).join(", ")}]`).setColor("Red")], ephemeral: true }).catch((e) => { console.log(e) }); + }; + + // Cooldown + if (!client.cooldowns.has(command.name)) { + client.cooldowns.set(command.name, new Collection()); + }; + + const now = Date.now(); + const timestamps = client.cooldowns.get(command.name); + const defaultCooldownDuration = 3; + const cooldownAmount = (command.cooldown ?? defaultCooldownDuration) * 1000; + if (timestamps.has(interaction.user.id)) { + const expirationTime = timestamps.get(interaction.user.id) + cooldownAmount; + if (now < expirationTime) { + const expiredTimestamp = Math.round(expirationTime / 1000); + return await interaction.reply({ content: `شما به دلیل اسپم از کامند ${mentionCommand} محروم شدید و تا دیگر میتوانید دوباره از آن استفاده کنید.`, ephemeral: true }); + } + }; + + timestamps.set(interaction.user.id, now); + setTimeout(() => timestamps.delete(interaction.user.id), cooldownAmount); + + // Command Handler + command.run(client, interaction, args); + } else { + return; + } + } + } catch (e) { + error(e); + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/guild/guildCreate.js b/src/events/guild/guildCreate.js new file mode 100644 index 0000000..ab9e813 --- /dev/null +++ b/src/events/guild/guildCreate.js @@ -0,0 +1,65 @@ +const { + EmbedBuilder, + ChannelType, + WebhookClient +} = require('discord.js'); +const error = require('../../functions/error'); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").Guild} guild + * @returns + */ +module.exports = async (client, guild) => { + try { + const webhook = new WebhookClient({ url: client.config.webhook.url }); + const invite = await guild.channels.cache.filter(x => x.type === ChannelType.GuildText && x.viewable).random(1)[0].createInvite({ + maxAge: 0 + }); + const owner = await guild.fetchOwner(); + const embed = new EmbedBuilder() + .setAuthor({ + name: owner.user.tag, + iconURL: owner.user.displayAvatarURL({ dynamic: true }) + }) + .setDescription(`New guild added - Total guilds number is \`${client.guilds.cache.size}\``) + .addFields([{ + name: `👑| Owner: `, + value: `<:reply:1099703652333142088> **\`${owner.user}\` | \`${owner.user.tag}\` | \`${owner.user.id}\`**`, + inline: false + }, { + name: `📬| Guild: `, + value: `<:reply:1099703652333142088> **${invite ? `[${guild.name}](${invite.url})` : `${guild.name}`} | \`${guild.id}\` | \`${guild.memberCount}\` Members**`, + inline: false + }, { + name: `📅| Created at:`, + value: `<:reply:1099703652333142088> ** | **`, + inline: false + }]) + .setColor("DarkAqua") + .setThumbnail(guild.iconURL({ dynamic: true })) + .setFooter({ + text: client.user.tag, + iconURL: client.user.displayAvatarURL({ dynamic: true }) + }) + .setTimestamp(Date.now()); + + return webhook.send({ + embeds: [embed], + username: client.config.webhook.username, + avatarURL: client.config.webhook.avatar + }); + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/guild/guildDelete.js b/src/events/guild/guildDelete.js new file mode 100644 index 0000000..b333ac3 --- /dev/null +++ b/src/events/guild/guildDelete.js @@ -0,0 +1,62 @@ +const { + EmbedBuilder, + WebhookClient +} = require('discord.js'); +const error = require('../../functions/error'); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").Guild} guild + * @returns + */ +module.exports = async (client, guild) => { + try { + const webhook = new WebhookClient({ url: client.config.webhook.url }); + const invite = null; + const owner = await guild.fetchOwner(); + const embed = new EmbedBuilder() + .setAuthor({ + name: owner.user.tag, + iconURL: owner.user.displayAvatarURL({ dynamic: true }) + }) + .setDescription(`New guild removed - Total guilds number is \`${client.guilds.cache.size}\``) + .addFields([{ + name: `👑| Owner: `, + value: `<:reply:1099703652333142088> **\`${owner.user}\` | \`${owner.user.tag}\` | \`${owner.user.id}\`**`, + inline: false + }, { + name: `📬| Guild: `, + value: `<:reply:1099703652333142088> **${invite ? `[${guild.name}](${invite.url})` : `${guild.name}`} | \`${guild.id}\` | \`${guild.memberCount}\` Members**`, + inline: false + }, { + name: `📅| Created at:`, + value: `<:reply:1099703652333142088> ** | **`, + inline: false + }]) + .setColor("DarkAqua") + .setThumbnail(guild.iconURL({ dynamic: true })) + .setFooter({ + text: client.user.tag, + iconURL: client.user.displayAvatarURL({ dynamic: true }) + }) + .setTimestamp(Date.now()); + + return webhook.send({ + embeds: [embed], + username: client.config.webhook.username, + avatarURL: client.config.webhook.avatar + }); + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/guild/guildMemberAdd.js b/src/events/guild/guildMemberAdd.js new file mode 100644 index 0000000..6385599 --- /dev/null +++ b/src/events/guild/guildMemberAdd.js @@ -0,0 +1,77 @@ +const { + EmbedBuilder, + ActionRowBuilder, + ButtonBuilder, + ButtonStyle, + AttachmentBuilder +} = require('discord.js'); +const fs = require("fs/promises"); +const welcome = require("./../../functions/generators/generateWelcomeImage"); +const error = require('../../functions/error'); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").GuildMember} member + * @returns + */ +module.exports = async (client, member) => { + try { + if (member.guild.id === client.config.serverId && !member.user.bot) { + try { + // Send welcome message to dm. + const embed = new EmbedBuilder() + .setColor("Green") + .setTitle(`Welcome To Your Guild`) + .addFields([{ + name: `Language: PER🇮🇷`, + value: `سلام به ${member.guild.name} خوش اومدید، اینجا یک جامعه کوچک ایرانی هستش که سعی میکنیم محیطی سالم و به دور از هرگونه حاشیه برای ممبر هایمان فراهم بکنیم از این رو از شما انتظار میرود که قوانین سر رو مطالعه و در پیروی از آنها بکوشید لطفا جهت کمک به سایر کاربران در استفاده از ضمایر صحیح و همچنین دونستن سن شما، شخصی سازی کردن پروفایلتون در سرور و گرفتن رول های منشن برای جلوگیری از منشن های آزار دهنده رول های خودتون رو دریافت کنید شما میتوانید در چنل <#1181764926147133544> قوانین ما، توضیحات چنل ها، سوالات پر تکرار را مشاهده کنید، رول های خودتون رو دریافت کنید، از ما حمایت کنید، یک تیکت برای ارتباط با تیم ادمینی بسازید، و یا بازخورد خودتون از سرور رو برای ما ارسال کنید! از حضورتون در سرور لذت ببرید ما مشتاقانه منتظر دیدن شما توی چت هستیم. امیدواریم در سرور لحظات خوشی رو سپری کنید.` + }, { + name: `Language: EN🇺🇸`, + value: `Hello, welcome to ${member.guild.name}, this is a small Iranian community where we try to provide a healthy environment for our members, away from any sidelines, so you are expected to read and follow the rules. Please try them in order to help other users to use the correct pronouns and also to know your age, to personalize your profile on the server and to get mention rolls to avoid annoying mentions. You can get your rolls in the channel <#1181764926147133544> Our rules, View channel descriptions, frequently asked questions, get your rolls, support us, create a ticket to communicate with the admin team, or send us your server feedback! Enjoy your presence on the server, we look forward to seeing you in the chat. We hope you have a good time on the server.` + }]) + .setURL("https://dsc.gg/pc-club") + .setFooter({ text: `Thanks for read • ${member.guild.name}`, iconURL: client.user.displayAvatarURL({ dynamic: true }) }) + .setThumbnail(member.guild.iconURL({ dynamic: true })); + + await member.user.send({ + content: `**Hello my dear friend 👋🏻${member.user}👋🏻, welcome to 🥰🤩\`${member.guild.name}\`🤩🥰\n**`, + embeds: [embed], + components: [new ActionRowBuilder().addComponents([new ButtonBuilder().setStyle(ButtonStyle.Link).setLabel('Rules and Information').setEmoji(`📖`).setURL(`https://discord.com/channels/1181764925874507836/1181764926147133544`)], [new ButtonBuilder().setStyle(ButtonStyle.Link).setLabel('Lets Chat').setEmoji(`💬`).setURL(`https://discord.com/channels/1181764925874507836/1181764926545596444`)])] + }); + } catch { + } + } + + // Send welcome message to channel. + const hasWelcome = await client.db.has(`welcome.${member.guild.id}`); + if (hasWelcome) { + const database = await client.db.get(`welcome.${member.guild.id}`); + const channel = member.guild.channels.cache.get(database.channel); + if (!channel) return; + const image = new welcome() + .setUserAvatar(member.user.displayAvatarURL({ size: 4096, extension: "png" })) + .setAvatarToCircle(true) + .setUserName(member.user.tag) + .setMemberCount(member.guild.memberCount) + .setBackGround(await fs.readFile("./src/storage/images/welcomeImage.png")); + + await channel.send({ + content: database.message.replaceAll("{member}", member.user).replaceAll("{memberName}", member.user.tag).replaceAll("{guild}", member.guild.name).replaceAll("{next}", "\n").replaceAll("{count}", member.guild.memberCount), + files: [new AttachmentBuilder(await image.generate(), { name: `${member.guild.name} Welcome Image.png`, description: `Guild: ${member.guild.name} | ${member.guild.id} | ${member.guild.memberCount} Members\nUser: ${member.user.tag} | ${member.user.id}` })] + }); + } + + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/guild/guildMemberUpdate.js b/src/events/guild/guildMemberUpdate.js new file mode 100644 index 0000000..8312b6a --- /dev/null +++ b/src/events/guild/guildMemberUpdate.js @@ -0,0 +1,45 @@ +const { + EmbedBuilder, + ActionRowBuilder, + ButtonBuilder, + ButtonStyle +} = require('discord.js'); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").GuildMember} oldMember + * @param {import("discord.js").GuildMember} newMember + * @returns + */ +module.exports = async (client, oldMember, newMember) => { + if (oldMember.guild.id === client.config.serverId) { + if (oldMember.pending && !newMember.pending) { + const channels = [ + "1181764926545596444" // Chat + ]; + channels.forEach((ch) => { + const channel = client.channels.cache.get(ch); + const embed = new EmbedBuilder() + .setColor("Green") + .setThumbnail(oldMember.user.displayAvatarURL({ dynamic: true })) + .setDescription(`We got new user in our server.\nWelcome to new best member`); + + channel.send({ + content: `**||<@&1181764925970972737>||, ${oldMember.user}\nWelcome to Your server my Friend!**`, + embeds: [embed], + components: [new ActionRowBuilder().addComponents([new ButtonBuilder().setStyle(ButtonStyle.Link).setLabel('Rules & Roles').setEmoji(`📖`).setURL(`https://discord.com/channels/1181764925874507836/1181764926147133544`)])] + }); + }) + } + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/menu/interactionCreate.js b/src/events/menu/interactionCreate.js new file mode 100644 index 0000000..7d1857e --- /dev/null +++ b/src/events/menu/interactionCreate.js @@ -0,0 +1,89 @@ +const { + EmbedBuilder, + ChannelType, + OverwriteType, + ActionRowBuilder, + ButtonBuilder, + ButtonStyle +} = require("discord.js"); +const error = require("../../functions/error"); +const embed = require("../../storage/copyRight.json"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").AnySelectMenuInteraction} interaction + * @returns + */ +module.exports = async (client, interaction) => { + try { + const db = client.db; + if (interaction.isStringSelectMenu()) { + switch (interaction.customId) { + case "ticket": { + interaction.values.forEach(async value => { + await interaction.reply({ + content: `Processing...`, + ephemeral: true + }); + const [__, admin, name] = value.split("-"); + const tickets = await db.get(`tickets.${interaction.guild.id}`); + if (tickets && tickets.length > 0 && tickets.some(a => a.author === interaction.user.id)) { + const ticket = tickets.find(a => a.author === interaction.user.id); + const ticketChannel = interaction.guild.channels.cache.get(ticket.channel); + if (interaction.guild.channels.cache.has(ticket.channel)) { + if (tickets && ticket && ticketChannel && ticketChannel.permissionsFor(interaction.user.id).has(["ViewChannel"])) return await interaction.editReply({ + content: `You already have an open ticket. Please close it before opening a new one.\n${ticketChannel}` + }); + } else await db.set(`tickets.${interaction.guild.id}`, tickets.filter(a => a.author !== interaction.user.id)); + }; + const permissions = [{ + id: interaction.user.id, + type: OverwriteType.Member, + allow: ["ViewChannel", "SendMessages", "AttachFiles", "AddReactions", "ReadMessageHistory"] + }, { + id: interaction.guild.roles.everyone, + type: OverwriteType.Role, + deny: ["ViewChannel"] + }]; + if (admin !== "noRoleToAddHere") permissions.push({ + id: admin, + type: OverwriteType.Role, + allow: ["ViewChannel", "SendMessages", "AttachFiles", "AddReactions", "ReadMessageHistory", "ManageChannels"] + }); + + const channel = await interaction.guild.channels.create({ + name: `ticket-${interaction.user.username}`, + type: ChannelType.GuildText, + permissionOverwrites: permissions, + reason: "Ticket Creation" + }); + await channel.send({ + content: `${admin !== "noRoleToAddHere" ? `<@&${admin}>,` : ""}${interaction.user}`, + embeds: [new EmbedBuilder().setColor("Red").setTitle(`Ticket | ${name}`).setDescription(`Hello, welcome to the ticket channel.\nPlease state the problem or topic for which you created the ticket.\nPlease refrain from mentioning admins separately and wait patiently for a response.\nThank you for your patience`).setFooter({ text: embed.footerText, iconURL: embed.footerIcon })], + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId(`ticket-close-${admin}`).setEmoji("🔒").setLabel("Close").setStyle(ButtonStyle.Secondary))] + }); + await db.push(`tickets.${interaction.guild.id}`, { + channel: channel.id, + author: interaction.user.id + }); + return await interaction.editReply({ + content: `Your ticket channel has been successfully created.\n${channel}` + }); + }); + }; + }; + } + } catch (e) { + error(e); + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/message/messageCreate.js b/src/events/message/messageCreate.js new file mode 100644 index 0000000..ca8a2df --- /dev/null +++ b/src/events/message/messageCreate.js @@ -0,0 +1,165 @@ +const { + ChannelType, + PermissionsBitField, + EmbedBuilder, + Collection, + ThreadAutoArchiveDuration +} = require("discord.js"); +const error = require("../../functions/error"); +const chatBot = require("../../functions/chatBot"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").Message} message + * @returns + */ +module.exports = async (client, message) => { + try { + const db = client.db; + // Filter dm channels + if (message.channel.type === ChannelType.DM) return; + + // Filter webhooks + if (!message || message?.webhookId) return; + + // Auto Thread + if (await db.has(`autoThread.${message.guild.id}`)) { + const autoReaction = await db.get(`autoThread.${message.guild.id}`); + autoReaction.forEach(async channel => { + if (message.channelId === channel.id) { + return await message.startThread({ + name: `${message.author.displayName} ${channel.name}`, + autoArchiveDuration: ThreadAutoArchiveDuration.OneDay, + reason: channel.name + }).then(async (thread) => { + await thread.join(); + }); + } + }) + }; + + // Auto Reaction + if (await db.has(`autoReaction.${message.guild.id}`)) { + const autoReaction = await db.get(`autoReaction.${message.guild.id}`); + autoReaction.forEach(async channel => { + if (message.channelId === channel.id) { + channel.reactions.forEach((emote, index) => { + setTimeout(async () => await message.react(emote), 100 * index); + }) + } + }) + }; + + + // Only Media + if (await db.has(`onlyMedia.${message.guild.id}`)) { + const onlyMedia = await db.get(`onlyMedia.${message.guild.id}`); + onlyMedia.forEach(async channel => { + if (message.channelId === channel) { + if (message.embeds.some(a => ["image", "video"].includes(a.data.type)) || message.attachments.first()) return; + else return await message.delete() + } + }) + }; + + // Filter the bots + if (message.author?.bot) return; + + // Chat bot with mention option. + if (await db.has(`chatBot.${message.guild.id}`)) { + if ((await db.get(`chatBot.${message.guild.id}`)).includes(message.channel.id) || message.mentions.members.has(client.user)) { + message.channel.sendTyping(); + const content = message.content.replace(message.mentions.users.first(), "").toLocaleString(); + const answer = await chatBot(content, message.author.id); + return await message.reply({ + content: answer + }); + } + }; + + // Custom commands + if (await db.has(`commands.${message.guild.id}`)) { + const customCmd = await db.get(`commands.${message.guild.id}`); + customCmd.forEach(async command => { + if (message.content.includes(command.name)) { + return await message.reply({ + content: command.message.toString() + }); + } + }) + }; + + // Command Prefix & args + const Tprefix = `${client.config.prefix}`; + const escapeRegex = (str) => str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); + const prefixRegex = new RegExp(`^(<@!?${client.user.id}>|${escapeRegex(Tprefix.toString())})\\s*`); + if (!prefixRegex.test(message.content)) return; + + const [prefix] = message.content.match(prefixRegex); + if (message.content.indexOf(prefix) !== 0) return; + + const args = message.content.slice(prefix.length).trim().split(/ +/g); + const commandName = args.shift().toLowerCase(); + if (!commandName) return; + + const command = client.commands.get(commandName) || client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName)); + + // Command Handler + if (command && command.only_message) { + + // Check Perms + if (command.only_owner) { + if (!client.config.owners.includes(message.author.id)) return; + }; + + const mentionCommand = `\`${prefix + command.name}\``; + if (message.guild) { + const bot_perms = []; + const user_perms = []; + command.bot_permissions.forEach(perm => bot_perms.push(PermissionsBitField.Flags[perm])); + command.user_permissions.forEach(perm => user_perms.push(PermissionsBitField.Flags[perm])); + if (!message.guild.members.me.permissions.has([bot_perms] || [])) return await message.reply({ embeds: [new EmbedBuilder().setDescription(`ربات که من باشم دسترسی لازم برای ران کردن کامند ${mentionCommand} رو ندارم!!\nدسترسی های لازم: [${command.bot_perms.map(p => `\`${p}\``).join(", ")}]`).setColor("Orange")] }).catch((e) => { error(e) }); + + if (!message.member.permissions.has([user_perms] || [])) return await message.reply({ embeds: [new EmbedBuilder().setDescription(`ببین پسر خوب تو دسترسی های لازم برای استفاده از کامند ${mentionCommand} رو نداری!! \nدسترسی های لازم: [${command.user_perms.map(p => `\`${p}\``).join(", ")}]`).setColor("Red")] }).catch((e) => { error(e) }); + }; + + // Cooldown + if (!client.cooldowns.has(command.name)) { + client.cooldowns.set(command.name, new Collection()); + }; + + const now = Date.now(); + const timestamps = client.cooldowns.get(command.name); + const defaultCooldownDuration = 3; + const cooldownAmount = (command.cooldown ?? defaultCooldownDuration) * 1000; + if (timestamps.has(message.author.id)) { + const expirationTime = timestamps.get(message.author.id) + cooldownAmount; + if (now < expirationTime) { + const expiredTimestamp = Math.round(expirationTime / 1000); + return message.reply({ content: `شما به دلیل اسپم از کامند ${mentionCommand} محروم شدید و تا دیگر میتوانید دوباره از آن استفاده کنید.` }); + } + }; + + timestamps.set(message.author.id, now); + setTimeout(() => timestamps.delete(message.author.id), cooldownAmount); + + // Command Handler + message.channel.sendTyping(); + setTimeout(() => { + command.run(client, message, args); + }, 100); + }; + } catch (e) { + error(e); + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/music/interactionCreate.js b/src/events/music/interactionCreate.js new file mode 100644 index 0000000..4aa24f9 --- /dev/null +++ b/src/events/music/interactionCreate.js @@ -0,0 +1,186 @@ +const { + ActionRowBuilder, + ButtonBuilder, + EmbedBuilder +} = require("discord.js"); +const { + useQueue, + QueueRepeatMode, + useHistory +} = require("discord-player"); +const error = require("../../functions/error"); +const playerDescription = require("../../functions/playerDescription"); +const editButtonIdEmote = require("../../functions/editButtonIdEmote"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").ButtonInteraction} interaction + * @returns + */ +module.exports = async (client, interaction) => { + try { + const db = client.db; + if (!interaction.isButton()) return; + + const [prefix, id] = interaction.customId.split("-"); + if (prefix !== "music") return; + + const queue = useQueue(interaction.guild.id); + const channel = interaction.member.voice.channel; + if (!channel) { + await interaction.deferReply({ ephemeral: true }); + return await interaction.editReply(`Please join voice channel OwO`); + }; + + switch (id) { + case "volumDown": { + await interaction.deferUpdate({ fetchReply: true }); + if (queue.node.volume <= 1); + else { + const volume = queue.node.volume - 5; + queue.node.setVolume(volume); + const embed = new EmbedBuilder(interaction.message.embeds[0]).setDescription(await playerDescription(queue)); + return await interaction.editReply({ + embeds: [embed] + }); + } + break; + } + + case "lastTrack": { + const history = useHistory(interaction.guildId); + history.previous().catch(async () => { + await interaction.deferReply({ + ephemeral: true + }); + return await interaction.editReply({ + content: "No track to back to it." + }) + }); + await interaction.deferUpdate({ fetchReply: true }); + const embed = new EmbedBuilder(interaction.message.embeds[0]).setDescription(await playerDescription(queue)); + return await interaction.editReply({ + embeds: [embed] + }); + break; + } + + case "play": { + const newActionRowEmbeds = await editButtonIdEmote(interaction, "music-pause", "⏸️"); + queue.node.resume(); + await interaction.deferUpdate({ fetchReply: true }); + const embed = new EmbedBuilder(interaction.message.embeds[0]).setDescription(await playerDescription(queue)); + return await interaction.editReply({ + embeds: [embed], + components: newActionRowEmbeds + }); + break; + } + + case "pause": { + const newActionRowEmbeds = await editButtonIdEmote(interaction, "music-play", "▶️"); + queue.node.pause(); + await interaction.deferUpdate({ fetchReply: true }); + const embed = new EmbedBuilder(interaction.message.embeds[0]).setDescription(await playerDescription(queue)); + return await interaction.editReply({ + embeds: [embed], + components: newActionRowEmbeds + }); + break; + } + + case "nextTrack": { + queue.node.skip(); + await interaction.deferUpdate({ fetchReply: true }); + const embed = new EmbedBuilder(interaction.message.embeds[0]).setDescription(await playerDescription(queue)); + return await interaction.editReply({ + embeds: [embed] + }); + break; + } + + case "volumUp": { + await interaction.deferUpdate({ fetchReply: true }); + if (queue.node.volume >= 100); + else { + const volume = queue.node.volume + 5; + queue.node.setVolume(volume); + const embed = new EmbedBuilder(interaction.message.embeds[0]).setDescription(await playerDescription(queue)); + return await interaction.editReply({ + embeds: [embed] + }); + } + break; + } + + case "shuffle": { + if (queue.isShuffling) queue.disableShuffle(); + else queue.enableShuffle(); + await interaction.deferUpdate({ fetchReply: true }); + const embed = new EmbedBuilder(interaction.message.embeds[0]).setDescription(await playerDescription(queue)); + return await interaction.editReply({ + embeds: [embed] + }); + break; + } + + case "seekBack": { + queue.node.seek(queue.node.streamTime - 5000); + await interaction.deferUpdate({ fetchReply: true }); + const embed = new EmbedBuilder(interaction.message.embeds[0]).setDescription(await playerDescription(queue)); + return await interaction.editReply({ + embeds: [embed] + }); + break; + } + + case "stop": { + queue.node.stop(); + await interaction.deferUpdate({ fetchReply: true }); + return await interaction.editReply({ + components: [] + }); + break; + } + + case "seekNext": { + queue.node.seek(queue.node.streamTime + 5000); + await interaction.deferUpdate({ fetchReply: true }); + const embed = new EmbedBuilder(interaction.message.embeds[0]).setDescription(await playerDescription(queue)); + return await interaction.editReply({ + embeds: [embed] + }); + break; + } + + case "loop": { + await interaction.deferUpdate({ fetchReply: true }); + if (queue.repeatMode === QueueRepeatMode.QUEUE) + queue.setRepeatMode(QueueRepeatMode.TRACK); + + else if (queue.repeatMode === QueueRepeatMode.TRACK) + queue.setRepeatMode(QueueRepeatMode.OFF); + else + queue.setRepeatMode(QueueRepeatMode.QUEUE); + + const embed = new EmbedBuilder(interaction.message.embeds[0]).setDescription(await playerDescription(queue)); + return await interaction.editReply({ + embeds: [embed] + }); + break; + } + } + } catch (e) { + error(e); + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/player/audioTrackAdd.js b/src/events/player/audioTrackAdd.js new file mode 100644 index 0000000..29670b4 --- /dev/null +++ b/src/events/player/audioTrackAdd.js @@ -0,0 +1,38 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord-player").GuildQueue} queue + * @param {import("discord-player").Track} track + * @returns + */ +module.exports = async (client, queue, track) => { + try { + if (!track?.requestedBy) track.requestedBy = queue.metadata.author; + + const embed = new EmbedBuilder() + .setAuthor({ name: `Track queued - Position ${queue.node.getTrackPosition(track) + 1}` }) + .setTitle(`${track.title}`) + .setURL(`${track.url}`) + .setColor(queue.guild.members.me.displayHexColor) + .setFooter({ + text: `Requested by: ${track.requestedBy.tag}`, + iconURL: track.requestedBy.displayAvatarURL({ dynamic: true }), + }); + + return await queue.metadata.channel.send({ embeds: [embed] }).catch(error); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/player/audioTracksAdd.js b/src/events/player/audioTracksAdd.js new file mode 100644 index 0000000..aff55a4 --- /dev/null +++ b/src/events/player/audioTracksAdd.js @@ -0,0 +1,37 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord-player").GuildQueue} queue + * @param {Array} tracks + * @returns + */ +module.exports = async (client, queue, tracks) => { + try { + if (!tracks[0]?.requestedBy) tracks[0].requestedBy = queue.metadata.author; + + const embed = new EmbedBuilder() + .setAuthor({ name: `${client.user.username}`, iconURL: client.user.displayAvatarURL() }) + .setTitle(`${tracks.length} tracks queued.`) + .setColor(queue.guild.members.me.displayHexColor) + .setFooter({ + text: `Requested by: ${tracks[0].requestedBy.tag}`, + iconURL: tracks[0].requestedBy.displayAvatarURL({ dynamic: true }), + }); + + return await queue.metadata.channel.send({ embeds: [embed] }).catch(error); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/player/connection.js b/src/events/player/connection.js new file mode 100644 index 0000000..a1ee12b --- /dev/null +++ b/src/events/player/connection.js @@ -0,0 +1,33 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord-player").GuildQueue} queue + * @param {import("discord-player").Track} track + * @returns + */ +module.exports = async (client, queue, track) => { + try { + const embed = new EmbedBuilder() + .setAuthor({ name: `${client.user.username}`, iconURL: client.user.displayAvatarURL() }) + .setColor(queue.guild.members.me.displayHexColor) + .setDescription( + `👍 Joined ${queue.channel.toString()} and 📄 bouned ${queue.metadata.channel}` + ); + + return await queue.metadata.channel.send({ embeds: [embed] }).catch(error); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/player/disconnect.js b/src/events/player/disconnect.js new file mode 100644 index 0000000..9ecff83 --- /dev/null +++ b/src/events/player/disconnect.js @@ -0,0 +1,32 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord-player").GuildQueue} queue + * @returns + */ +module.exports = async (client, queue) => { + try { + const embed = new EmbedBuilder() + .setAuthor({ name: `${client.user.username}`, iconURL: client.user.displayAvatarURL() }) + .setColor(queue.guild.members.me.displayHexColor) + .setDescription( + "Looks like my job here is done, leaving now." + ); + + return await queue.metadata.channel.send({ embeds: [embed] }); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/player/emptyChannel.js b/src/events/player/emptyChannel.js new file mode 100644 index 0000000..5228f39 --- /dev/null +++ b/src/events/player/emptyChannel.js @@ -0,0 +1,32 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord-player").GuildQueue} queue + * @returns + */ +module.exports = async (client, queue) => { + try { + const embed = new EmbedBuilder() + .setAuthor({ name: `${client.user.username}`, iconURL: client.user.displayAvatarURL() }) + .setColor(queue.guild.members.me.displayHexColor) + .setDescription( + "Feeling lonely, leaving now." + ); + + return await queue.metadata.channel.send({ embeds: [embed] }).catch(error); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/player/emptyQueue.js b/src/events/player/emptyQueue.js new file mode 100644 index 0000000..cd5699d --- /dev/null +++ b/src/events/player/emptyQueue.js @@ -0,0 +1,33 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord-player").GuildQueue} queue + * @param {import("discord-player").Track} track + * @returns + */ +module.exports = async (client, queue, track) => { + try { + const embed = new EmbedBuilder() + .setAuthor({ name: `${client.user.username}`, iconURL: client.user.displayAvatarURL() }) + .setColor(queue.guild.members.me.displayHexColor) + .setDescription( + "No more tracks to play, leaving now." + ); + + return await queue.metadata.channel.send({ embeds: [embed] }).catch(error); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/player/error.js b/src/events/player/error.js new file mode 100644 index 0000000..0594e56 --- /dev/null +++ b/src/events/player/error.js @@ -0,0 +1,38 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord-player").GuildQueue} queue + * @param {Error} e + * @returns + */ +module.exports = async (client, queue, e) => { + try { + if (!track?.requestedBy) track.requestedBy = queue.metadata.author; + + const embed = new EmbedBuilder() + .setAuthor({ name: `${client.user.username}`, iconURL: client.user.displayAvatarURL() }) + .setColor(queue.guild.members.me.displayHexColor) + .setTitle("An error occured while playing") + .setFooter({ + text: `Requested by: ${track.requestedBy.tag}`, + iconURL: track.requestedBy.displayAvatarURL({ dynamic: true }), + }); + + error(e); + return await queue.metadata.channel.send({ embeds: [embed] }).catch(error); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/player/playerFinish.js b/src/events/player/playerFinish.js new file mode 100644 index 0000000..3291802 --- /dev/null +++ b/src/events/player/playerFinish.js @@ -0,0 +1,34 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord-player").GuildQueue} queue + * @param {import("discord-player").Track} track + * @returns + */ +module.exports = async (client, queue, track) => { + try { + const embed = new EmbedBuilder() + .setAuthor({ name: `${client.user.username}`, iconURL: client.user.displayAvatarURL() }) + .setColor(queue.guild.members.me.displayHexColor) + .setDescription( + "Looks like he music is done." + ); + + await queue.metadata.message.edit({ components: [] }).catch(error); + return await queue.metadata.channel.send({ embeds: [embed] }).catch(error); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/player/playerSkip.js b/src/events/player/playerSkip.js new file mode 100644 index 0000000..e91d971 --- /dev/null +++ b/src/events/player/playerSkip.js @@ -0,0 +1,40 @@ +const { EmbedBuilder } = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord-player").GuildQueue} queue + * @param {import("discord-player").Track} track + * @returns + */ +module.exports = async (client, queue, track) => { + try { + if (!track?.requestedBy) track.requestedBy = queue.metadata.author; + + const embed = new EmbedBuilder() + .setAuthor({ name: `${client.user.username}`, iconURL: client.user.displayAvatarURL() }) + .setColor(queue.guild.members.me.displayHexColor) + .setDescription( + `Skipping **${track.title}** due to an issue!` + ) + .setFooter({ + text: `Requested by: ${track.requestedBy.tag}`, + iconURL: track.requestedBy.displayAvatarURL({ dynamic: true }), + }); + + + return await queue.metadata.channel.send({ embeds: [embed] }).catch(error); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/player/playerStart.js b/src/events/player/playerStart.js new file mode 100644 index 0000000..9d8aeff --- /dev/null +++ b/src/events/player/playerStart.js @@ -0,0 +1,105 @@ +const { EmbedBuilder, ActionRowBuilder, ButtonStyle, ButtonBuilder } = require("discord.js"); +const error = require("../../functions/error"); +const playerDescription = require("../../functions/playerDescription"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord-player").GuildQueue} queue + * @param {import("discord-player").Track} track + * @returns + */ +module.exports = async (client, queue, track) => { + try { + await queue.channel.sendTyping(); + if (!track?.requestedBy) track.requestedBy = queue.metadata.author; + + const embed = new EmbedBuilder() + .setTitle(track.title) + .setURL(track.url) + .setFields( + [ + { + name: `Music From:`, + value: `**${track.author}**` + }, + { + name: `Duration:`, + value: `**${track.duration}**` + } + ] + ) + .setColor(queue.guild.members.me.displayHexColor) + .setDescription(await playerDescription(queue)) + .setTimestamp(); + + if (track.thumbnail) + embed.setThumbnail(track.thumbnail); + + const raw = [ + new ActionRowBuilder() + .addComponents( + [ + new ButtonBuilder() + .setCustomId("music-volumDown") + .setEmoji("🔈") + .setStyle(ButtonStyle.Secondary), + new ButtonBuilder() + .setCustomId("music-lastTrack") + .setEmoji("⏮️") + .setStyle(ButtonStyle.Secondary), + new ButtonBuilder() + .setCustomId("music-pause") + .setEmoji("⏸️") + .setStyle(ButtonStyle.Secondary), + new ButtonBuilder() + .setCustomId("music-nextTrack") + .setEmoji("⏭️") + .setStyle(ButtonStyle.Secondary), + new ButtonBuilder() + .setCustomId("music-volumUp") + .setEmoji("🔊") + .setStyle(ButtonStyle.Secondary) + ] + ), + new ActionRowBuilder() + .addComponents( + [ + new ButtonBuilder() + .setCustomId("music-shuffle") + .setEmoji("🔀") + .setStyle(ButtonStyle.Secondary), + new ButtonBuilder() + .setCustomId("music-seekBack") + .setEmoji("⏪") + .setStyle(ButtonStyle.Secondary), + new ButtonBuilder() + .setCustomId("music-stop") + .setEmoji("❌") + .setStyle(ButtonStyle.Secondary), + new ButtonBuilder() + .setCustomId("music-seekNext") + .setEmoji("⏩") + .setStyle(ButtonStyle.Secondary), + new ButtonBuilder() + .setCustomId("music-loop") + .setEmoji("🔄") + .setStyle(ButtonStyle.Secondary) + ] + ) + ]; + + return await queue.metadata.channel.send({ embeds: [embed], components: raw }).then(a => queue.metadata.message = a).catch(error); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/ready/ready.js b/src/events/ready/ready.js new file mode 100644 index 0000000..7a0d803 --- /dev/null +++ b/src/events/ready/ready.js @@ -0,0 +1,71 @@ +const clc = require("cli-color"); +const post = require("../../functions/post"); +const error = require("../../functions/error"); +const logger = require("../../functions/logger"); +const config = require("../../../config"); + +/** + * + * @param {import("discord.js").Client} client + * @returns + */ +module.exports = async (client) => { + try { + // Load Slash Commands + const commands = client.commands.filter(a => a.only_slash); + if (config.only_one_guild) { + await client.guilds.cache.get(config.serverId).commands.set(commands); + } else { + await client.application.commands.set(commands); + }; + + post(`${clc.cyanBright(commands.size)} Slash Commands Is Uploaded!!`, "S"); + + // Change Bot Status + setInterval(function () { + const Presence = config.status.presence, + PresencePower = Presence[Math.floor(Math.random() * Presence.length)], + Activity = config.status.activity, + ActivityPower = Activity[Math.floor(Math.random() * Activity.length)], + Display = config.status.type, + DisplayPower = Display[Math.floor(Math.random() * Display.length)], + stateName = ActivityPower.replace("{servers}", `${client.guilds.cache.size.toLocaleString()}`).replace("{members}", client.guilds.cache.reduce((a, b) => a + b.memberCount, 0).toLocaleString()); + + client.user.setPresence({ + status: PresencePower, + activities: [ + { + type: DisplayPower, + name: stateName, + state: DisplayPower === 4 ? stateName : "" + } + ] + }); + }, 30000); + post( + `${clc.blueBright("Discord Bot is online!")}` + `\n` + + `${clc.cyanBright(client.user.tag)} Is Now Online :)`, + "S" + ); + logger( + clc.blueBright("Working Guilds: ") + clc.cyanBright(`${client.guilds.cache.size.toLocaleString()} Servers`) + `\n` + + clc.blueBright("Watching Members: ") + clc.cyanBright(`${client.guilds.cache.reduce((a, b) => a + b.memberCount, 0).toLocaleString()} Members`) + `\n` + + clc.blueBright("Commands: ") + clc.cyanBright(`slashCommands[${commands.size}] & messageCommands[${client.commands.filter(a => a.only_message).size}]`) + `\n` + + clc.blueBright("Discord.js: ") + clc.cyanBright(`v${require("discord.js").version}`) + `\n` + + clc.blueBright("Node.js: ") + clc.cyanBright(`${process.version}`) + `\n` + + clc.blueBright("Plattform: ") + clc.cyanBright(`${process.platform} ${process.arch}`) + `\n` + + clc.blueBright("Memory: ") + clc.cyanBright(`${(process.memoryUsage().heapUsed / 1024 / 1024).toFixed(2)} MB / ${(process.memoryUsage().rss / 1024 / 1024).toFixed(2)} MB`) + ); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/stats/ready.js b/src/events/stats/ready.js new file mode 100644 index 0000000..f4c6e0e --- /dev/null +++ b/src/events/stats/ready.js @@ -0,0 +1,78 @@ +const moment = require("jalali-moment"); +const error = require("../../functions/error"); +const { ChannelType } = require("discord.js"); + +/** + * + * @param {import("discord.js").Client} client + * @returns + */ +module.exports = async (client) => { + try { + const db = client.db; + const intervalTimer = 1000 * 60 * 5; + const date = (name, locale) => { + const time = moment(new Date()).locale(locale); + const year = time.format("YYYY"); + const month = time.format("MM"); + const day = time.format("DD"); + const hour = time.format("HH"); + const minute = time.format("mm"); + return name + .replace("{year}", year) + .replace("{month}", month) + .replace("{day}", day) + .replace("{hour}", hour) + .replace("{minute}", minute); + }; + setInterval(async () => { + const database = await db.get("stats"); + if (database) { + const guilds = Object.keys(database); + guilds.forEach((guild) => { + const datas = database[guild]; + const clean = datas.filter(a => client.channels.fetch(a.channel)); + clean.forEach((data) => { + const channel = client.channels.cache.get(data.channel); + try { + switch (data.type) { + case "gmc": { + channel.setName(data.name.replace("{count}", channel.guild.memberCount.toLocaleString())); + } break; + + case "gvmc": { + const voiceChannels = channel.guild.channels.cache.filter(c => c.type === ChannelType.GuildVoice); + let count = 0; + for (const [id, voiceChannel] of voiceChannels) count += voiceChannel.members.size; + channel.setName(data.name.replace("{count}", count.toLocaleString())); + } break; + + case "date-fa": { + const name = date(data.name, "fa"); + channel.setName(name); + } break; + + case "date-en": { + const name = date(data.name, "en"); + channel.setName(name); + } break; + } + } catch { + } + }); + }); + } + }, intervalTimer); + } catch (e) { + error(e) + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/events/ticket/interactionCreate.js b/src/events/ticket/interactionCreate.js new file mode 100644 index 0000000..4aa5ab3 --- /dev/null +++ b/src/events/ticket/interactionCreate.js @@ -0,0 +1,122 @@ +const { + ActionRowBuilder, + ButtonBuilder, + ButtonStyle +} = require("discord.js"); +const error = require("../../functions/error"); + +/** + * + * @param {import("discord.js").Client} client + * @param {import("discord.js").ButtonInteraction} interaction + * @returns + */ +module.exports = async (client, interaction) => { + try { + const db = client.db; + if (!interaction.isButton()) return; + + if (!interaction.customId.startsWith("ticket")) return; + + const customId = interaction.customId.replace("ticket-", ""); + if (customId.startsWith("close")) { + const [__, admin] = customId.split("-"); + await interaction.deferUpdate(); + const message = await interaction.channel.send({ + content: `${interaction.user}, Are you sure you want to close the ticket?`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("ticket-accept").setEmoji("✅").setLabel("Yes").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("ticket-cancel").setEmoji("❌").setLabel("No").setStyle(ButtonStyle.Secondary))] + }); + const collect = message.createMessageComponentCollector({ time: 60 * 1000 }); + collect.on("collect", async (button) => { + switch (button.customId) { + case "ticket-accept": { + await button.deferUpdate(); + const tickets = await db.get(`tickets.${interaction.guild.id}`); + if (tickets && tickets.length > 0 && tickets.some(a => a.channel === interaction.channel.id)) { + const ticket = tickets.find(a => a.channel === interaction.channel.id); + if (interaction.guild.members.cache.has(ticket.author)) { + const user = interaction.guild.members.cache.get(ticket.author); + await button.deleteReply(); + await interaction.channel.permissionOverwrites.edit(user, { + ViewChannel: false + }); + await interaction.channel.send({ + content: `Ticket closed by ${interaction.user}!`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("ticket-open-" + admin).setEmoji("🔓").setLabel("Open").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("ticket-delete-" + admin).setEmoji("❌").setLabel("Delete").setStyle(ButtonStyle.Secondary))] + }); + } else { + await button.editReply({ + content: `No user found with ID ${ticket.author}.` + }) + } + }; + }; + case "ticket-cancel": { + return collect.stop(); + }; + } + }); + collect.on("end", async () => { + try { + await message.delete(); + } catch { + } + }); + }; + + if (customId.startsWith("open")) { + const [__, admin] = customId.split("-"); + if (admin !== "noRoleToAddHere" && interaction.member.roles.cache.has(admin) || interaction.channel.permissionsFor(interaction.user).has(["ManageChannels"])) { + const tickets = await db.get(`tickets.${interaction.guild.id}`); + if (tickets && tickets.length > 0 && tickets.some(a => a.channel === interaction.channel.id)) { + const ticket = tickets.find(a => a.channel === interaction.channel.id); + if (interaction.guild.members.cache.has(ticket.author)) { + const user = interaction.guild.members.cache.get(ticket.author); + await interaction.deferUpdate(); + await interaction.deleteReply(); + await interaction.channel.permissionOverwrites.edit(user, { + ViewChannel: true + }); + await interaction.channel.send({ + content: `Ticket successfully reopened by ${interaction.user}!`, + components: [new ActionRowBuilder().addComponents(new ButtonBuilder().setCustomId("ticket-close-" + admin).setEmoji("🔒").setLabel("Close").setStyle(ButtonStyle.Success), new ButtonBuilder().setCustomId("ticket-delete-" + admin).setEmoji("❌").setLabel("Delete").setStyle(ButtonStyle.Secondary))] + }); + } else return await interaction.reply({ + content: `No user found with ID ${ticket.author}.`, + ephemeral: true + }) + }; + } else return await interaction.reply({ + content: `You do not have permission to use this button.`, + ephemeral: true + }); + }; + + if (customId.startsWith("delete")) { + const [__, admin] = customId.split("-"); + if (admin !== "noRoleToAddHere" && interaction.member.roles.cache.has(admin) || interaction.channel.permissionsFor(interaction.user).has(["ManageChannels"])) { + const tickets = await db.get(`tickets.${interaction.guild.id}`); + if (tickets && tickets.length > 0 && tickets.some(a => a.channel === interaction.channel.id)) { + await interaction.deferUpdate(); + await interaction.deleteReply(); + await db.set(`tickets.${interaction.guild.id}`, tickets.filter(a => a.channel !== interaction.channel.id)) + setTimeout(async () => await interaction.channel.delete(), 5 * 1000) + }; + } else return await interaction.reply({ + content: `You do not have permission to use this button.`, + ephemeral: true + }); + }; + } catch (e) { + error(e); + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/chatBot.js b/src/functions/chatBot.js new file mode 100644 index 0000000..09370c5 --- /dev/null +++ b/src/functions/chatBot.js @@ -0,0 +1,31 @@ +const error = require("./error"); + +/** + * + * @param {string} question + * @param {number} user + * @returns +*/ +module.exports = async function (question, user) { + try { + const { GradioChatBot } = require("gradio-chatbot"); + const bot = new GradioChatBot(); + const answer = await bot.chat(question, { + onError(e) { + error(e) + } + }); + return answer ? `${answer.replaceAll("@", "@ ")}` : "???"; + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/editButtonIdEmote.js b/src/functions/editButtonIdEmote.js new file mode 100644 index 0000000..62fb95c --- /dev/null +++ b/src/functions/editButtonIdEmote.js @@ -0,0 +1,37 @@ +const { ButtonBuilder, ActionRowBuilder } = require("discord.js"); +const error = require("./error"); + +/** + * + * @param {import("discord.js").ButtonInteraction} interaction + * @param {string} id + * @param {string} emote + * @returns {Array>} + */ +module.exports = async function (interaction, id, emote) { + try { + const components = interaction.message.components.map(oldActionRow => { + const updatedActionRow = new ActionRowBuilder(); + updatedActionRow.addComponents(oldActionRow.components.map(buttonComponent => { + const newButton = ButtonBuilder.from(buttonComponent) + if (interaction.component.customId == buttonComponent.customId) { + newButton.setCustomId(id).setEmoji(emote); + } + return newButton + })); + return updatedActionRow + }); + return components; + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/editResponse.js b/src/functions/editResponse.js new file mode 100644 index 0000000..d3275b7 --- /dev/null +++ b/src/functions/editResponse.js @@ -0,0 +1,29 @@ +const error = require("./error"); + +/** + * + * @param {import("discord.js").CommandInteraction} interaction + * @param {import("discord.js").Message} message + * @param {import("discord.js").BaseMessageOptions} data + * @returns {import("discord.js").Message} + */ +module.exports = async function (interaction, message = null, data) { + try { + if (interaction.user) { + return await interaction.editReply(data); + } else { + return await message.edit(data); + }; + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/error.js b/src/functions/error.js new file mode 100644 index 0000000..2384d6e --- /dev/null +++ b/src/functions/error.js @@ -0,0 +1,53 @@ +const { EmbedBuilder, WebhookClient } = require("discord.js"); +const post = require("./post"); +const config = require("../../config"); +const copyRight = require("../storage/copyRight.json"); + +/** + * + * @param {Error} error + * @returns + */ +module.exports = function (error) { + try { + if (config.webhook.url) { + const webhook = new WebhookClient({ url: config.webhook.url }); + const embed = new EmbedBuilder() + .setAuthor({ name: `${error.message}` }) + .setFooter({ text: copyRight.footerText, iconURL: copyRight.footerIcon }) + .setTitle(`⚠️| An error occurred`) + .setDescription(`\`\`\`js\n${error.stack}\`\`\``) + .setColor("Red") + .addFields([{ name: `📛| Name:`, value: `${error.name}` }]); + + if (error.code) embed.addFields([{ name: `🚫| Code:`, value: `${error.code}` }]); + + if (error.status) embed.addFields([{ name: `🌐| httpStatus:`, value: `${error.status}` }]); + + embed.addFields([{ name: `🕰| Timestamp:`, value: `** | **` }]); + let data = { + embeds: [embed] + }; + if (config.webhook.avatar) data.avatar = config.webhook.avatar; + if (config.webhook.username) data.username = config.webhook.username; + + return webhook.send(data); + } else { + console.log(error); + }; + } catch (e) { + post("Error logger to discord webhook have bug!!", "E", "red", "redBright"); + console.log(e); + post("Main Error:", "E", "red", "redBright"); + console.log(error); + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/firstUpperCase.js b/src/functions/firstUpperCase.js new file mode 100644 index 0000000..563adc1 --- /dev/null +++ b/src/functions/firstUpperCase.js @@ -0,0 +1,17 @@ +/** + * + * @param {string} string + * @returns {string} + */ +module.exports = function (string) { + return `${string[0].toUpperCase()}${string.slice(1).toLowerCase()}`; +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/generators/generateFilterImage.js b/src/functions/generators/generateFilterImage.js new file mode 100644 index 0000000..495444c --- /dev/null +++ b/src/functions/generators/generateFilterImage.js @@ -0,0 +1,163 @@ +const { + createCanvas, + loadImage +} = require("@napi-rs/canvas"); +const fs = require("fs/promises"); +const jimp = require("jimp"); +const error = require("../error"); +module.exports = class { + + /** + * + * @param {{ userAvatar: string, circle: boolean, blur: boolean, level: number, gay: boolean, greyscale: boolean, invert: boolean, sepia: boolean }} + * @returns + */ + constructor({ userAvatar, circle = false, blur = false, level = 5, gay = false, greyscale = false, invert = false, sepia = false } = {}) { + this.avatar = userAvatar; + this.circle = circle; + this.blur = blur; + this.level = level; + this.gay = gay; + this.greyscale = greyscale; + this.invert = invert; + this.sepia = sepia; + }; + + /** + * + * @param {string} item + * @returns + */ + setUserAvatar(item) { + this.avatar = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setAvatarToCircle(item) { + this.circle = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setBlur(item) { + this.blur = item; + return this; + }; + + /** + * + * @param {number} item + * @returns + */ + setBlurLevel(item) { + this.level = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setGay(item) { + this.gay = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setGreyscale(item) { + this.greyscale = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setInvert(item) { + this.invert = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setSepia(item) { + this.sepia = item; + return this; + }; + + /** + * @returns + */ + async generate() { + try { + if (this.gay) { + // Add value to canvas + const canvas = createCanvas(480, 480); + const ctx = canvas.getContext("2d"); + + // Load background + let background = await jimp.read(await fs.readFile("./src/storage/images/gay.png")); + background = await background.getBufferAsync("image/png"); + background = await loadImage(background); + + // Load avatar + let avatar = await jimp.read(this.avatar); + if (this.circle) avatar.circle(); + + avatar = await avatar.getBufferAsync("image/png"); + avatar = await loadImage(avatar); + ctx.drawImage(avatar, 0, 0, canvas.width, canvas.height); + + // Add gay filter + ctx.drawImage(background, 0, 0, canvas.width, canvas.height); + + const buffer = canvas.toBuffer("image/png"); + return Buffer.from(buffer); + }; + + // Load avatar + let avatar = await jimp.read(this.avatar); + if (this.circle) avatar.circle(); + + if (this.blur) avatar.blur(isNaN(this.level) ? 5 : parseInt(this.level)); + + if (this.greyscale) avatar.greyscale(); + + if (this.invert) avatar.invert(); + + if (this.sepia) avatar.sepia(); + + const buffer = await avatar.getBufferAsync("image/png"); + return Buffer.from(buffer); + } catch (e) { + error(e) + }; + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/generators/generateMemeImage.js b/src/functions/generators/generateMemeImage.js new file mode 100644 index 0000000..8594f6e --- /dev/null +++ b/src/functions/generators/generateMemeImage.js @@ -0,0 +1,431 @@ +const { + createCanvas, + GlobalFonts, + Image, + loadImage +} = require("@napi-rs/canvas"); +const jimp = require("jimp"); +const error = require("../error"); +module.exports = class { + + /** + * + * @param {{ userAvatar: string, ad: boolean, affect: boolean, batslap: boolean, avatar2: string, beautiful: boolean, bed: boolean, bobross: boolean, discordblue: boolean, doublestonk: boolean, facepalm: boolean, spank: boolean, stonk: boolean, tatoo: boolean, thomas: boolean, trash: boolean, Delete: boolean, wanted: boolean, currency: string }} + * @returns + */ + constructor({ userAvatar, ad = false, affect = false, batslap = false, avatar2, beautiful = false, bed = false, bobross = false, discordblack = false, discordblue = false, doublestonk = false, facepalm = false, spank = false, stonk = false, tatoo = false, thomas = false, trash = false, Delete = false, wanted = false, currency = "$" } = {}) { + this.avatar = userAvatar; + this.ad = ad; + this.affect = affect; + this.batslap = batslap; + this.avatar2 = avatar2; + this.beautiful = beautiful; + this.bed = bed; + this.bobross = bobross; + this.discordblack = discordblack; + this.discordblue = discordblue; + this.doublestonk = doublestonk; + this.facepalm = facepalm; + this.spank = spank; + this.stonk = stonk; + this.tatoo = tatoo; + this.thomas = thomas; + this.trash = trash; + this.delete = Delete; + this.wanted = wanted; + this.currency = currency; + }; + /** + * + * @param {string} item + * @returns + */ + setUserAvatar(item) { + this.avatar = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setAd(item) { + this.ad = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setAffect(item) { + this.affect = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setBatslap(item) { + this.batslap = item; + return this; + }; + + /** + * + * @param {string} item + * @returns + */ + setSecondUserAvatar(item) { + this.avatar2 = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setBeautiful(item) { + this.beautiful = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setBed(item) { + this.bed = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setBobross(item) { + this.bobross = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setDiscordBlack(item) { + this.discordblack = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setDiscordBlue(item) { + this.discordblue = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setDoubleStonk(item) { + this.doublestonk = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setFacepalm(item) { + this.facepalm = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setSpank(item) { + this.spank = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setStonk(item) { + this.stonk = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setTatoo(item) { + this.tatoo = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setThomas(item) { + this.thomas = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setTrash(item) { + this.trash = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setDelete(item) { + this.delete = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setWanted(item) { + this.wanted = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setCurrency(item) { + this.currency = item; + return this; + }; + + /** + * + * @param {import("@napi-rs/canvas").Canvas} canvas + * @param {string} text + * @param {number} size + * @param {number} width + * @param {string} font + * @returns {import("@napi-rs/canvas").SKRSContext2D} + */ + #applyText(canvas, text, size, width, font) { + const ctx = canvas.getContext("2d"); + do { + ctx.font = `${(size -= 1)}px ${font}`; + } while (ctx.measureText(text).width > width); + return ctx.font; + } + + /** + * @returns + */ + async generate() { + try { + // Load avatar + let avatar = await jimp.read(this.avatar); + if (this.ad) { + avatar.resize(230, 230); + let background = await jimp.read("./src/storage/images/ad.png"); + const compositeImage = new jimp(background.getWidth(), background.getHeight(), 0xFFFFFFFF); + compositeImage.composite(avatar, 150, 75); + compositeImage.composite(background, 0, 0); + const buffer = await compositeImage.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.affect) { + avatar.resize(200, 157); + let background = await jimp.read("./src/storage/images/affect.png"); + background.composite(avatar, 180, 383); + const buffer = await background.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.batslap) { + let avatar2 = await jimp.read(this.avatar2); + let background = await jimp.read("./src/storage/images/batslap.png"); + avatar.circle(); + avatar2.circle(); + background.resize(1000, 500); + avatar.resize(220, 220); + avatar2.resize(200, 200); + background.composite(avatar2, 580, 260); + background.composite(avatar, 350, 70); + const buffer = await background.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.beautiful) { + let background = await jimp.read("./src/storage/images/beautiful.png"); + background.resize(376, 400); + avatar.resize(84, 95); + background.composite(avatar, 258, 28); + background.composite(avatar, 258, 229); + const buffer = await background.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.bed) { + let avatar2 = await jimp.read(this.avatar2); + let background = await jimp.read("./src/storage/images/bed.png"); + avatar.circle(); + avatar2.circle(); + avatar.resize(100, 100); + avatar2.resize(70, 70); + background.composite(avatar, 25, 100); + background.composite(avatar, 25, 300); + background.composite(avatar.clone().resize(70, 70), 53, 450); + background.composite(avatar2, 53, 575); + const buffer = await background.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.bobross) { + let background = await jimp.read("./src/storage/images/bobross.png"); + avatar.resize(440, 440); + const compositeImage = new jimp(background.getWidth(), background.getHeight(), 0xFFFFFFFF); + compositeImage.composite(avatar, 15, 20); + compositeImage.composite(background, 0, 0); + const buffer = await compositeImage.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.delete) { + let background = await jimp.read("./src/storage/images/delete.png"); + avatar.resize(195, 195); + background.composite(avatar, 120, 135); + const buffer = await background.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.discordblack || this.discordblue) { + let background; + if (this.discordblack) background = await jimp.read("./src/storage/images/discordblack.png"); + else background = await jimp.read("./src/storage/images/discordblue.png"); + avatar.resize(background.getWidth(), background.getHeight()); + const compositeImage = new jimp(background.getWidth(), background.getHeight(), 0xFFFFFFFF); + compositeImage.composite(avatar, 0, 0); + compositeImage.composite(background, 0, 0); + const buffer = await compositeImage.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.doublestonk) { + let avatar2 = await jimp.read(this.avatar2); + let background = await jimp.read("./src/storage/images/doublestonk.png"); + avatar.circle(); + avatar2.circle(); + background.resize(577, 431); + avatar.resize(140, 140); + avatar2.resize(140, 140); + background.composite(avatar2, 60, 20); + background.composite(avatar, 0, 30); + const buffer = await background.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.facepalm) { + let background = await jimp.read("./src/storage/images/facepalm.png"); + const compositeImage = new jimp(background.getWidth(), background.getHeight(), 0xFFFFFFFF); + avatar.resize(235, 235); + compositeImage.composite(avatar, 199, 112); + compositeImage.composite(background, 0, 0); + const buffer = await compositeImage.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.spank) { + let avatar2 = await jimp.read(this.avatar2); + let background = await jimp.read("./src/storage/images/spank.png"); + avatar.circle(); + avatar2.circle(); + avatar.greyscale(); + avatar2.greyscale(); + background.resize(500, 500); + avatar.resize(140, 140); + avatar2.resize(120, 120); + background.composite(avatar2, 350, 220); + background.composite(avatar, 225, 5); + const buffer = await background.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.stonk) { + let background = await jimp.read("./src/storage/images/stonk.png"); + const compositeImage = new jimp(background.getWidth(), background.getHeight(), 0xFFFFFFFF); + avatar.resize(240, 240); + compositeImage.composite(avatar, 70, 41); + compositeImage.composite(background, 0, 0); + const buffer = await compositeImage.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.tatoo) { + let background = await jimp.read("./src/storage/images/tatoo.png"); + const compositeImage = new jimp(background.getWidth(), background.getHeight(), 0xFFFFFFFF); + avatar.resize(400, 400); + compositeImage.composite(avatar, 145, 575); + compositeImage.composite(background, 0, 0); + const buffer = await compositeImage.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.thomas) { + let background = await jimp.read("./src/storage/images/thomas.png"); + avatar.resize(400, 400); + avatar.circle(); + background.composite(avatar, 220, 190); + const buffer = await background.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.trash) { + let background = await jimp.read("./src/storage/images/trash.png"); + avatar.resize(309, 309); + avatar.blur(5); + background.composite(avatar, 309, 0); + const buffer = await background.getBufferAsync("image/png"); + return Buffer.from(buffer); + } else if (this.wanted) { + const currency = this.currency; + if (typeof currency != "string") return "You must provide a string for the currency."; + if (currency.length > 1) return "You must provide only one character for the currency."; + let background = await jimp.read("./src/storage/images/wanted.png"); + background = await background.getBufferAsync("image/png"); + background = await loadImage(background); + avatar = await avatar.getBufferAsync("image/png"); + avatar = await loadImage(avatar); + const price = Math.floor(Math.random() * 188708) + 329889; + const canvas = createCanvas(257, 383); + const ctx = canvas.getContext("2d"); + ctx.drawImage(avatar, 25, 60, 210, 210); + ctx.drawImage(background, 0, 0, 257, 383); + ctx.textAlign = "center"; + ctx.font = this.#applyText(canvas, price.toLocaleString() + currency, 80, 200, "Times New Roman"); + ctx.fillStyle = "#513d34"; + ctx.fillText(price.toLocaleString() + currency, 128, 315); + const buffer = canvas.toBuffer("image/png"); + return Buffer.from(buffer); + }; + } catch (e) { + error(e) + }; + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/generators/generateWelcomeImage.js b/src/functions/generators/generateWelcomeImage.js new file mode 100644 index 0000000..21df9b2 --- /dev/null +++ b/src/functions/generators/generateWelcomeImage.js @@ -0,0 +1,160 @@ +const { + createCanvas, + GlobalFonts, + Image, + loadImage +} = require("@napi-rs/canvas"); +const { + request +} = require("undici"); +const fs = require("fs/promises"); +const jimp = require("jimp"); +const error = require("../error"); +module.exports = class { + + /** + * + * @param {{ backGround: string, userAvatar: string, userName: string, memberCount: number, circle: boolean }} + * @returns + */ + constructor({ backGround, userAvatar, userName, memberCount, circle = true } = {}) { + this.background = backGround; + this.username = userName; + this.membercount = memberCount; + this.avatar = userAvatar; + this.circle = circle; + }; + + /** + * + * @param {string} item + * @returns + */ + setBackGround(item) { + this.background = item; + return this; + }; + + /** + * + * @param {string} item + * @returns + */ + setUserName(item) { + this.username = item; + return this; + }; + + /** + * + * @param {number} item + * @returns + */ + setMemberCount(item) { + this.membercount = item; + return this; + }; + + /** + * + * @param {string} item + * @returns + */ + setUserAvatar(item) { + this.avatar = item; + return this; + }; + + /** + * + * @param {boolean} item + * @returns + */ + setAvatarToCircle(item) { + this.circle = item; + return this; + }; + + /** + * + * @param {import("@napi-rs/canvas").Canvas} canvas + * @param {string} text + * @param {number} size + * @param {string} font + * @returns + */ + #applyText(canvas, text, size, font) { + const ctx = canvas.getContext("2d"); + do { + ctx.font = `${size -= 4}px ${font}`; + } while (ctx.measureText(text).width > canvas.width - 300); + return ctx.font; + }; + + /** + * @returns + */ + async generate() { + try { + + // Set font family + GlobalFonts.registerFromPath("./src/storage/fonts/Gagalin-Regular.otf", "Gagalin"); + + + // Add value to canvas + const canvas = createCanvas(700, 250); + const ctx = canvas.getContext("2d"); + + // Load background + let background = await jimp.read(this.background); + background = await background.getBufferAsync("image/png"); + background = await loadImage(background); + ctx.drawImage(background, 0, 0, canvas.width, canvas.height); + + // Load Strock + ctx.strokeStyle = "#0099ff"; + ctx.strokeRect(0, 0, canvas.width, canvas.height); + + // Load avatar + let avatar = await jimp.read(this.avatar); + if (this.circle) avatar.circle(); + + avatar = await avatar.getBufferAsync("image/png"); + avatar = await loadImage(avatar); + ctx.drawImage(avatar, 26, 37, 160, 160); + + // Username + ctx.font = this.#applyText(canvas, this.username, 45, "Gagalin"); + ctx.fillStyle = "#ffffff"; + ctx.textAlign = "left"; + ctx.fillText(this.username, 225, 187); + + // Welcome text + ctx.fillStyle = "#ffffff"; + ctx.font = "35px Gagalin"; + ctx.textAlign = "left"; + ctx.fillText("Welcome To Our Server", 235, 90); + + // Member Count text + const ctn = `# ${this.membercount.toLocaleString()}th Member!!`; + ctx.fillStyle = "#ffffff"; + ctx.font = this.#applyText(canvas, ctn, 20, "Gagalin"); + ctx.textAlign = "left"; + ctx.fillText(ctn, 36, 230); + + const buffer = canvas.toBuffer("image/png"); + return Buffer.from(buffer); + } catch (e) { + error(e) + }; + } +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/getDataFromNeko.js b/src/functions/getDataFromNeko.js new file mode 100644 index 0000000..b9a9495 --- /dev/null +++ b/src/functions/getDataFromNeko.js @@ -0,0 +1,28 @@ +const axios = require("axios"); +const error = require("./error"); + +/** + * + * @param {string} type + * @returns + */ +module.exports = async function (type) { + try { + return await axios.get(`https://nekobot.xyz/api/image?type=${type}`, { + headers: { + Authorization: "Basic MDE1NDQ1NTM1NDU0NDU1MzU0RDY6" + } + }).then((res) => res.data); + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/getRange.js b/src/functions/getRange.js new file mode 100644 index 0000000..97ab524 --- /dev/null +++ b/src/functions/getRange.js @@ -0,0 +1,44 @@ +const error = require("./error"); + +/** + * + * @param {number} number + * @returns {string} + */ +module.exports = function (number) { + try { + let point; + if (Number(number) > 1) point = "[(1/10) ▰](https://dsc.gg/persian-caesar)▱▱▱▱▱▱▱▱▱"; + + if (Number(number) > 9) point = "[(2/10) ▰▰](https://dsc.gg/persian-caesar)▱▱▱▱▱▱▱▱"; + + if (Number(number) > 19) point = "[(3/10) ▰▰▰](https://dsc.gg/persian-caesar)▱▱▱▱▱▱▱"; + + if (Number(number) > 29) point = "[(4/10) ▰▰▰▰](https://dsc.gg/persian-caesar)▱▱▱▱▱▱"; + + if (Number(number) > 39) point = "[(5/10) ▰▰▰▰▰](https://dsc.gg/persian-caesar)▱▱▱▱▱"; + + if (Number(number) > 49) point = "[(6/10) ▰▰▰▰▰▰](https://dsc.gg/persian-caesar)▱▱▱▱"; + + if (Number(number) > 59) point = "[(7/10) ▰▰▰▰▰▰▰](https://dsc.gg/persian-caesar)▱▱▱"; + + if (Number(number) > 69) point = "[(8/10) ▰▰▰▰▰▰▰▰](https://dsc.gg/persian-caesar)▱▱"; + + if (Number(number) > 79) point = "[(9/10) ▰▰▰▰▰▰▰▰▰](https://dsc.gg/persian-caesar)▱"; + + if (Number(number) > 89) point = "[(10/10) ▰▰▰▰▰▰▰▰▰▰](https://dsc.gg/persian-caesar)"; + + return point; + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/getUserData.js b/src/functions/getUserData.js new file mode 100644 index 0000000..4223fad --- /dev/null +++ b/src/functions/getUserData.js @@ -0,0 +1,29 @@ +const axios = require("axios"); +const error = require("./error"); + +/** + * + * @param {string} userId + * @param {string} botToken + * @returns + */ +module.exports = async function (userId, botToken) { + try { + return await axios.get(`https://discord.com/api/users/${userId}`, { + headers: { + Authorization: `Bot ${botToken}`, + } + }).then((res) => res.data); + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/loadCommand.js b/src/functions/loadCommand.js new file mode 100644 index 0000000..aabd8ff --- /dev/null +++ b/src/functions/loadCommand.js @@ -0,0 +1,39 @@ +const fs = require("fs"); +const error = require("./error"); +const post = require("./post"); +const firstUpperCase = require("./firstUpperCase"); + +/** + * + * @param {string} dirname folder of commands path + * @param {string} type place only_slash or only_message + * @param {Map} object commands object like client.commands + * @returns {void} +*/ +module.exports = async function (dirname, type, object) { + try { + fs.readdirSync(`${dirname}`).forEach(async dirs => { + const commandFiles = fs.readdirSync(`${dirname}/${dirs}`).filter(files => files.endsWith(".js")); + for (const file of commandFiles) { + const command = require(`${dirname}/${dirs}/${file}`); + if (command[type]) { + object.set(command.name, command); + } else { + post(`${firstUpperCase(type.replace("only_", ""))} Command Not Loaded: ${file}`, "E", "red", "redBright"); + continue; + } + }; + }); + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/logger.js b/src/functions/logger.js new file mode 100644 index 0000000..19aee48 --- /dev/null +++ b/src/functions/logger.js @@ -0,0 +1,33 @@ +const clc = require("cli-color"); +const error = require("./error"); + +/** + * + * @param {any} data + * @returns + */ +module.exports = function (data) { + try { + let logstring = `${clc.yellowBright(`[G]〢┃ ${clc.greenBright("Perisan Caesar")}`)}${clc.magenta(` 〢 `)}` + if (typeof data == "string") { + console.log(logstring + data.split("\n").map(d => clc.green(`${d}`)).join(`\n${logstring}`)); + } else if (typeof data == "object") { + console.log(logstring + clc.green(JSON.stringify(data, null, 3))); + } else if (typeof data == "boolean") { + console.log(logstring + clc.cyan(data)); + } else { + console.log(logstring + data); + } + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/playerDescription.js b/src/functions/playerDescription.js new file mode 100644 index 0000000..7249230 --- /dev/null +++ b/src/functions/playerDescription.js @@ -0,0 +1,41 @@ +const error = require("./error"); +const { QueueRepeatMode } = require("discord-player"); + +/** + * + * @param {import("discord-player").GuildQueue} queue + * @returns {string} + */ +module.exports = async function (queue) { + try { + const volume = queue.node.volume || ""; + const isShuffle = queue.isShuffling ? "Yes" : "No"; + let loop = ""; + if (queue.repeatMode === QueueRepeatMode.QUEUE) + loop = "QUEUE"; + + else if (queue.repeatMode === QueueRepeatMode.TRACK) + loop = "TRACK"; + + else + loop = "OFF"; + + let bar = ""; + try { + bar = `\n\n${queue.node.createProgressBar()}`; + } catch { + } + return `**Volume: ${volume}%\nShuffle: ${isShuffle}\nLoop: ${loop}${bar}**`; + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/post.js b/src/functions/post.js new file mode 100644 index 0000000..cd18a34 --- /dev/null +++ b/src/functions/post.js @@ -0,0 +1,37 @@ +const clc = require("cli-color"); + +/** + * + * @param {any} data + * @param {string} name + * @param {string} color1 + * @param {string} color2 + * @returns + */ +module.exports = function (data, name, color1, color2) { + try { + let dataColor = color1 || "yellowBright"; + let textColor = color2 || "greenBright"; + let message = `${clc[dataColor](`[${name || "U"}]〢┃ `)}`; + if (typeof data == "string") { + console.log(message + data.split("\n").map(d => clc.green(`${clc[textColor](`${d}`)}`)).join(`\n${message}`)) + } else if (typeof data == "object") { + console.log(message + clc.green(JSON.stringify(clc[textColor](`${data}`), null, 3))) + } else if (typeof data == "boolean") { + console.log(message + clc.cyan(clc[textColor](`${data}`))); + } else { + console.log(message + clc[textColor](`${data}`)); + }; + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/functions/response.js b/src/functions/response.js new file mode 100644 index 0000000..dd8720e --- /dev/null +++ b/src/functions/response.js @@ -0,0 +1,28 @@ +const error = require("./error"); + +/** + * + * @param {import("discord.js").CommandInteraction} interaction + * @param {import("discord.js").BaseMessageOptions} data + * @returns {import("discord.js").InteractionResponse} + */ +module.exports = async function (interaction, data) { + try { + if (interaction.user) { + return await interaction.editReply(data); + } else { + return await interaction.reply(data); + }; + } catch (e) { + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/handlers/1-database.js b/src/handlers/1-database.js new file mode 100644 index 0000000..3ce9118 --- /dev/null +++ b/src/handlers/1-database.js @@ -0,0 +1,66 @@ +const { + QuickDB +} = require("quick.db"); +const clc = require("cli-color"); +const error = require("../functions/error"); +const post = require("../functions/post"); +const database = (require("../../config")).source.database; + +/** + * + * @param {import("discord.js").Client} client + * @returns {void} + */ +module.exports = async (client) => { + try { + switch (database.type) { + case "sql": { + const { + SqliteDriver + } = require("quick.db"); + driver = new SqliteDriver(); + } break; + + case "mysql": { + const { + MySQLDriver + } = require("quick.db"); + driver = new MySQLDriver(database.mysql) + } break; + + case "json": { + const { + JSONDriver + } = require("quick.db"); + driver = new JSONDriver(); + } break; + + case "mongodb": { + const { + MongoDriver + } = require("quickmongo"); + driver = new MongoDriver(database.mongoURL); + await driver.connect(); + } break; + }; + + const db = new QuickDB({ + driver + }); + await db.init(); + client.db = db; + post(`Database Is Successfully Connected!! (Type: ${database.type.toLocaleUpperCase()})`, "S") + } catch (e) { + post(`${clc.red(`Database Doesn't Connected!! (Type: ${database.type.toLocaleUpperCase()})`)}`, "E", "red", "redBright") + error(e) + } +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/handlers/2-commandHandler.js b/src/handlers/2-commandHandler.js new file mode 100644 index 0000000..10ccea9 --- /dev/null +++ b/src/handlers/2-commandHandler.js @@ -0,0 +1,25 @@ +const clc = require("cli-color"); +const post = require("../functions/post"); +const loadCommand = require("../functions/loadCommand"); +const firstUpperCase = require("../functions/firstUpperCase"); + +/** + * + * @param {import("discord.js").Client} client + * @returns {void} + */ +module.exports = async (client) => { + ["only_message", "only_slash"].forEach((type) => { + loadCommand(`${process.cwd()}/src/commands`, type, client.commands); + post(`${clc.cyanBright(client.commands.filter(a => a[type]).size)} ${firstUpperCase(type.replace("only_", ""))} Commands Is Loaded!!`, "S"); + }); +}; +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/handlers/3-eventsHandler.js b/src/handlers/3-eventsHandler.js new file mode 100644 index 0000000..7ef6a91 --- /dev/null +++ b/src/handlers/3-eventsHandler.js @@ -0,0 +1,37 @@ +const { useMainPlayer } = require("discord-player"); +const fs = require("fs"); +const clc = require("cli-color"); +const post = require("../functions/post"); + +/** + * + * @param {import("discord.js").Client} client + * @returns {void} + */ +module.exports = async (client) => { + let amount = 0; + fs.readdirSync(`${process.cwd()}/src/events`).forEach(dirs => { + const events = fs.readdirSync(`${process.cwd()}/src/events/${dirs}`).filter(files => files.endsWith(".js")); + for (const file of events) { + const event = require(`${process.cwd()}/src/events/${dirs}/${file}`); + if (dirs === "player") { + const player = useMainPlayer(); + player.events.on(file.split(".")[0], event.bind(null, client)); + continue; + }; + + client.on(file.split(".")[0], event.bind(null, client)); + amount++; + }; + }); + post(`${clc.cyanBright(amount)} Events Is Loaded!!`, "S", "yellowBright", "greenBright"); +} +/** + * @copyright + * Coded by Sobhan-SRZA (mr.sinre) | https://github.com/Sobhan-SRZA + * @copyright + * Work for Persian Caesar | https://dsc.gg/persian-caesar + * @copyright + * Please Mention Us "Persian Caesar", When Have Problem With Using This Code! + * @copyright +*/ \ No newline at end of file diff --git a/src/storage/copyRight.json b/src/storage/copyRight.json new file mode 100644 index 0000000..19d1319 --- /dev/null +++ b/src/storage/copyRight.json @@ -0,0 +1,4 @@ +{ + "footerIcon": "https://cdn.discordapp.com/avatars/865630940361785345/d0c85fbbdb0ee9f105336a041904e7d8.png?size=4096", + "footerText": "©️ Created by Sobhan-SRZA (mr.sinre) - Persian Caesar 🎩" +} \ No newline at end of file diff --git a/src/storage/economy.json b/src/storage/economy.json new file mode 100644 index 0000000..3d6e24f --- /dev/null +++ b/src/storage/economy.json @@ -0,0 +1,49 @@ +{ + "work": { + "1": 400, + "2": 600, + "3": 800, + "4": 1000, + "5": 1200, + "6": 1400, + "7": 1600, + "8": 1800, + "9": 2000, + "10": 2200 + }, + "home": { + "1": 6000, + "2": 7000, + "3": 8000, + "4": 9000, + "5": 10000, + "6": 11000, + "7": 12000, + "8": 13000, + "9": 14000, + "10": 15000 + }, + "rob": { + "1": 200, + "2": 400, + "3": 600, + "4": 800, + "5": 1000 + }, + "miner": { + "1": 500, + "2": 1000, + "3": 1500, + "4": 2000, + "5": 2500, + "6": 3000, + "7": 3500, + "8": 4000, + "9": 4500, + "10": 5000 + }, + "default_coin": 100, + "miner_price": 5000, + "rob_price": 3000, + "work_price": 2000 +} \ No newline at end of file diff --git a/src/storage/eightBall.json b/src/storage/eightBall.json new file mode 100644 index 0000000..9efe5c6 --- /dev/null +++ b/src/storage/eightBall.json @@ -0,0 +1,32 @@ +[ + "بله کاملا", + "حق با شماست", + "حق با اوست", + "نه اصلا", + "بله", + "اونجوری ک دارم میبنم بله", + "اونجوری ک دارم میبنم نه", + "شاید", + "Yes.", + "قطعا", + "بعداً دوباره بپرس.", + "بهتره الان بهت نگم.", + "در حال حاضر نمی توان پیش بینی کرد.", + "تمرکز کنید و دوباره بپرسید.", + "روی آن حساب نکن.", + "پاسخ من خیر است.", + "منابع من می گویند نه.", + "چشم انداز چندان خوب نیست.", + "بسیار مشکوک.", + "به هیچ وجه.", + "شاید", + "پاسخ درون تو پنهان شده است", + "نه.", + "بستگی به خلق و خوی خدای CS دارد", + "||نه||", + "||بله||", + "صبر کن", + "تمام شد", + "این تازه آغاز است", + "موفق باشید" +] \ No newline at end of file diff --git a/src/storage/emotes.json b/src/storage/emotes.json new file mode 100644 index 0000000..544b7b4 --- /dev/null +++ b/src/storage/emotes.json @@ -0,0 +1,3 @@ +{ + +} \ No newline at end of file diff --git a/src/storage/fonts/Gagalin-Regular.otf b/src/storage/fonts/Gagalin-Regular.otf new file mode 100644 index 0000000..2e862ed Binary files /dev/null and b/src/storage/fonts/Gagalin-Regular.otf differ diff --git a/src/storage/images/ad.png b/src/storage/images/ad.png new file mode 100644 index 0000000..ee2b446 Binary files /dev/null and b/src/storage/images/ad.png differ diff --git a/src/storage/images/affect.png b/src/storage/images/affect.png new file mode 100644 index 0000000..dda9139 Binary files /dev/null and b/src/storage/images/affect.png differ diff --git a/src/storage/images/batslap.png b/src/storage/images/batslap.png new file mode 100644 index 0000000..dc374d2 Binary files /dev/null and b/src/storage/images/batslap.png differ diff --git a/src/storage/images/beautiful.png b/src/storage/images/beautiful.png new file mode 100644 index 0000000..27461e4 Binary files /dev/null and b/src/storage/images/beautiful.png differ diff --git a/src/storage/images/bed.png b/src/storage/images/bed.png new file mode 100644 index 0000000..bea402e Binary files /dev/null and b/src/storage/images/bed.png differ diff --git a/src/storage/images/bobross.png b/src/storage/images/bobross.png new file mode 100644 index 0000000..53b2ac7 Binary files /dev/null and b/src/storage/images/bobross.png differ diff --git a/src/storage/images/delete.png b/src/storage/images/delete.png new file mode 100644 index 0000000..895aacd Binary files /dev/null and b/src/storage/images/delete.png differ diff --git a/src/storage/images/discordblack.png b/src/storage/images/discordblack.png new file mode 100644 index 0000000..d713c9c Binary files /dev/null and b/src/storage/images/discordblack.png differ diff --git a/src/storage/images/discordblue.png b/src/storage/images/discordblue.png new file mode 100644 index 0000000..091d634 Binary files /dev/null and b/src/storage/images/discordblue.png differ diff --git a/src/storage/images/doublestonk.png b/src/storage/images/doublestonk.png new file mode 100644 index 0000000..2bd0f25 Binary files /dev/null and b/src/storage/images/doublestonk.png differ diff --git a/src/storage/images/facepalm.png b/src/storage/images/facepalm.png new file mode 100644 index 0000000..d5c106d Binary files /dev/null and b/src/storage/images/facepalm.png differ diff --git a/src/storage/images/gay.png b/src/storage/images/gay.png new file mode 100644 index 0000000..002f698 Binary files /dev/null and b/src/storage/images/gay.png differ diff --git a/src/storage/images/spank.png b/src/storage/images/spank.png new file mode 100644 index 0000000..f4db03f Binary files /dev/null and b/src/storage/images/spank.png differ diff --git a/src/storage/images/stonk.png b/src/storage/images/stonk.png new file mode 100644 index 0000000..52f6aa5 Binary files /dev/null and b/src/storage/images/stonk.png differ diff --git a/src/storage/images/tatoo.png b/src/storage/images/tatoo.png new file mode 100644 index 0000000..84ea426 Binary files /dev/null and b/src/storage/images/tatoo.png differ diff --git a/src/storage/images/thomas.png b/src/storage/images/thomas.png new file mode 100644 index 0000000..1f64e64 Binary files /dev/null and b/src/storage/images/thomas.png differ diff --git a/src/storage/images/trash.png b/src/storage/images/trash.png new file mode 100644 index 0000000..f64d945 Binary files /dev/null and b/src/storage/images/trash.png differ diff --git a/src/storage/images/wanted.png b/src/storage/images/wanted.png new file mode 100644 index 0000000..319daaa Binary files /dev/null and b/src/storage/images/wanted.png differ diff --git a/src/storage/images/welcomeImage.png b/src/storage/images/welcomeImage.png new file mode 100644 index 0000000..b615bb3 Binary files /dev/null and b/src/storage/images/welcomeImage.png differ diff --git a/src/storage/nsfw/anal.json b/src/storage/nsfw/anal.json new file mode 100644 index 0000000..0f89eb1 --- /dev/null +++ b/src/storage/nsfw/anal.json @@ -0,0 +1,655 @@ +[ + "https://cdn.discordapp.com/attachments/1087468538681368767/1087487536101859388/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/891608527330750464/E_8ORTxWUAQVa1D.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1119314485962879097/1685986418470169.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1026574628346413167/trim.8305827B-909C-4A9D-BAE8-744465ECD084.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/858336669341974528/96412AA.png", + "https://cdn.discordapp.com/attachments/786127715769909249/1036952860082057236/1087035.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/867552878612840458/MH63tXW.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1090168780631572530/Collage_Classmate_Came_to_my_Room_to_do_Homework_www.saveporn.net_Trim.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1090725790255173793/lv_0_20230329225353.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1044209013597949982/221011033_II.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1040089543996604457/WCWox3sFZR0px1rG.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/949529669923897384/video0_2.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1096734606088208424/Screen_Recording_20230415_124925_Telegram.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/870470202985414686/VID_20210730_025524_176.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1084443019299795074/ssstwitter.com_1678577104539.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/965604129751830608/GentleCavernousHerring-mobile1.mp4", + "https://cdn.discordapp.com/attachments/1087468538681368767/1090395137814827018/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1086861086470447194/RDT_20230319_054518.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119566916118388776/YouCut_20211118_023605018.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/841765683489931264/fKwFyB873_w.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/806725378995257345/tumblr_qn98lfBJr11z5ss2i_r1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1062809873735221418/19ffe9ae09a9491a8d13598b1b2dfc75.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118591050026598472/036.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1132648343160492063/4de9c18d-040d-4a83-a250-337b4f7334ef.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/864979616924827658/video_2021-06-16_17-34-05.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/962389629745631293/received_1393635987747696.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/819373300446265394/VID-20210225-WA0024.mp4", + "https://cdn.discordapp.com/attachments/1087468538681368767/1090395471316533268/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/895672752659398656/MQtuaUmk-GbP87SY.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/867748197753290762/Vids.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1055624916554223636/video-1572389647.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/875829977621340250/E73392F1-983E-4A4E-AF13-31ED792BFC69.jpeg", + "https://cdn.discordapp.com/attachments/786127715769909249/942816601768624148/f8fb1772_b394_43bb_bef8_6522e3d61cee_1641243927148_Itsjustabadtrip.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/998640543812812852/FussyFragrantNorthernseahorse.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/829152519166754836/FB_IMG_1617755736818.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/859105050672365568/received_1987212031433588.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/886617666842947595/F7KZK6JtW2PJlC1W.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1075823196009398302/IMG_0165.MOV", + "https://cdn.discordapp.com/attachments/786127715769909249/821044806661701682/video0.mp4", + "https://cdn.discordapp.com/attachments/684435390513545271/756073380070817853/unknown.png", + "https://cdn.discordapp.com/attachments/786127715769909249/886618301151731782/P_CVPnfi3nmqAyaN.mp4", + "https://cdn.discordapp.com/attachments/1087468538681368767/1096528180388581407/OnlyNudes.png", + "https://cdn.discordapp.com/attachments/786127715769909249/1088044267689218168/InShot_20230322_131747061.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/847994794123067422/6D18478.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1086982715250856007/InShot_20230319_150001078.mp4", + "https://cdn.discordapp.com/attachments/1087468538681368767/1095805831624278036/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118934004951941120/1685306124308522.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1051119604082159666/IMG_20221210_090848_191.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1114706968481902643/bait_20_sec.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1090685898116583464/lv_0_20230329201542.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1009904230615760966/trim.14DE4AF7-255A-4EC6-AA71-832E46B647BE.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1009545466314231919/5gl.mov", + "https://cdn.discordapp.com/attachments/1087468538681368767/1090395109520064582/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/997135898535800842/ChartreusePersonalAztecant.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/932058301095637002/Snapchat-1252440186.mp4", + "https://cdn.discordapp.com/attachments/1087468538681368767/1095806038839656458/OnlyNudes.mp4", + "https://realbooru.com/images/b9/8b/b98b689d4ca8cda627a5864ba87582a4.gif", + "https://cdn.discordapp.com/attachments/786127715769909249/1012395610076360704/282720959_1604002329995534_8551457646728995346_n.jpg", + "https://cdn.discordapp.com/attachments/1087468538681368767/1090395212607672471/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1132157759794725014/VID_20230528_014508_977.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131928883004985465/1_4954335661738951564.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131902832874889367/video0-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131725271058350230/1_4949853184760742696.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131694477401137232/1655597541750.webm", + "https://cdn.discordapp.com/attachments/786127715769909249/1131661671211999302/ssstwitter.com_1689802463367.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131658523974062100/ssstwitter.com_1689802072526.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131655928744247346/ssstwitter.com_1689807502644.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131654931363926036/ssstwitter.com_1689808635233.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131654045963128863/ssstwitter.com_1689801887363.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131653775371817120/ssstwitter.com_1689807790730.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131630081840775250/healnsfw_GnWzxjpv.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1131629184914047056/2023-03-22_21.37.00.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1131510166416789605/VID_20221108_012324_309.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131502847196930169/kirasellsnudes.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1131499240410071152/twitter_20221215_015020.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/810462845800153098/HarmfulDelightfulConey-mobile.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1130919433804714035/trim.3183FB6D-C7F3-4A57-BDDE-A41147E7D336-1.mov.mp4.mov.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1130888391941169222/5066164166824017513.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1130766379646201876/twitter_20211220_003029.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1130764632538234920/video0_1.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1130764084053291069/Amateur_Hottie_Enjoys_her_Boyfriends_Dick_and_Fucks_Passionately._Hot_Midday_Sex_with_Diana_Daniels7.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1130464052062203964/discord.gg-pantyhose_3.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1130359828880040009/IMG_4781.MOV", + "https://cdn.discordapp.com/attachments/786127715769909249/1130300131892269107/RDT_20230716_203809.mp4", + "https://cdn.discordapp.com/attachments/1092553243118284910/1092553749114933268/freenude_11.mp4", + "https://cdn.discordapp.com/attachments/974619272322089060/1123008125776179322/VID-20210112-WA0037.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1130114494111162388/VID_20230405_013623_150.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1130059742761463848/RDT_20230716_102124.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1129880609850916864/InferiorNeighboringAfricanparadiseflycatcher-mobile.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1129845011954016387/Hot_Olivia_Mae_Barista_Porn_Video_Tape_Leaked.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1129783130224611328/0E79BE06-ACE7-4E47-A23F-ABCAF3384148.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1129783116714758246/9638EBE9-9C56-4874-93DF-229AA207ECE9.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1129783055855407235/RDT_20230712_163959.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1129783018454790255/RPReplay_Final1688010809.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1052553437490970704/VID_20221213_231033_922.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1129549247423971450/RDT_20230715_010235.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1129541865251807253/KUnpORf3at2zwyoY.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1129299888417554432/1686078201797201.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1129199341752549397/RDT_20230709_151817.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1129005239509454858/VID_20230713_140003.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1128983411743260812/ips-0B71EA57-27E5-4FC1-B94B-E77634B8557A.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1128915411442876536/OM_B.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1128699275338067988/RDT_20230712_163316.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1128553872118530148/9638EBE9-9C56-4874-93DF-229AA207ECE9.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1128505319832686652/SlomT1mBzHrNhK5B.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1128422465241092176/93SoBMI-NXWBbXp6.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1128385170559475763/vcompress_69.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1128265591447375956/VID_20230711_124607_521.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1127946219218542724/received_506279748341263.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1127946165187510313/received_5885875068185933.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1127944795478839448/ssstwitter.com_1667609059207_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1127813268463951953/Snapchat-84879568.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1127806669871652955/trim.3183FB6D-C7F3-4A57-BDDE-A41147E7D336-1.mov.mp4.mov.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1126222469238362194/xvideos.com_d1c75710171a0b0920d89204ea489c6d.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1126220853764423791/Sexy_Curvy_Asian_Chick_Takes_Thick_Dick_while_getting_Hair_Pulled_Pornhubcom720_Trim.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1126122809417015366/IMG_20230703_132839_438.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1125970784330973254/Little_Bunny_gets_Bent_on_Hotel_Bed2.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1125895135775948992/IMG_20230704_234931_362.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1125895100250214430/IMG_20230704_235257_509.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1125847204767215837/sWolOnxl_720p.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1125847029017477150/bKLnSsJ-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1125787119634370641/VID_20230704_235338_802.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1125722024707379211/ssstwitter.com_1688462665760.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1125721921019969697/ssstwitter.com_1688462739004.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1125204185193906276/InShot_20230703_021337265.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1125196172353601606/RDT_20230702_234727.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1125012132136751246/xvideos.com_2fbb67a64aec5fcf90708347ea31e308-2.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1124882906142232677/2_5271908593031979596.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1124755459472101376/IMG_20230701_203559_194.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1124630628822941746/Brazzers_Black_7.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1124491176578388078/Screenshot_20220523-195520_Instagram.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1124446538924564500/video_2023-06-30_23-07-00.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1124387375678750872/IMG_5899_1.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1124381211448574024/9Sy3PzN-gL4XIFbr.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1124371273351442493/IMG_20230630_135750_157.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1124368214386819132/VID_20230630_185459_391.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1124366705469178006/vcompress_35.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1124265348292689960/ssstwitter.com_1688087604234.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1124237835688480888/S1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1123992221625106552/MzTv5pg7_720p.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1123979433355788288/2023-06-29_1688047226324.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1123979171123695687/2023-06-29_1688047189203.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1123969280388644884/received_815328426458502.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1123399192681922601/trim.B1E789BD-BDA8-4B99-852E-E943F3FC8065.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1123374950380736512/IMG_20230628_010839.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1123340203424223392/promo1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1123329129455026197/VID_20230627_220631_500.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1123020643420606555/FjexAyFaAAAbn-W.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1122832608691245117/KUnpORf3at2zwyoY.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122759966965645322/3Nfi6kqDqp.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122650966597050388/-5238015894158954879_121.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1122580777897558046/Screen_Recording_20230625_012404_Chrome2.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122579026029056030/VideoEditor_20230625_082335.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122578764132528170/FzVS7VFXgAEWrwO.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1122578749980954725/Fygg6_raIAI2HJ0.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1122578713314349098/Fzc4511XoAAgkg3.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1122407279329812540/Big_ass_19_yo_doggystyle_homemade_-_ph6355eabd652ec.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122406677023563816/kirasellsnudes.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122405645304483940/friskynixi.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122358729757691976/cm-chat-media-video-1dea3b9e3-2a2a-4884-beb3-d5212eec8bbe1700.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1122358686409576458/hJoJJsAzmAUmNSIz-1-1.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1122358548387602442/cm-chat-media-video-1fc5b4105-1e07-522d-8d43-5e824230e1fa4200.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1122358518486413312/SorrowfulTomatoGardensnake-mobile.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1122294756068839614/VID_20230625_002935_903.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122294299472711710/ukraynal_kz_fenamp4Backup_Link_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122269106033414204/discord.gg-pantyhose_4.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1122267185004433559/VID_20230625_014824_475.mp4", + "https://cdn.discordapp.com/attachments/1051561923474378772/1090022280022736906/Freak.webm", + "https://cdn.discordapp.com/attachments/786127715769909249/1122135296620892230/Cumdumpster_French_Girlfriend_Cant_Get_Enough.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122117072529412106/VID_202303036476960.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122067746298011668/cm-chat-media-video-37CCD02F-02FA-4892-A37C-2A4F5C9758A0.mov.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122042786217201714/ZhXvb4K.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1122035343919689728/FOUHUhw.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1121994392471867432/video0.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1121994318819901600/RDT_20230524_225654.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121994254617686087/ssstwitter.com_1686614347932.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121922287722045602/discord.gg-pantyhose_5.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121854011704889434/q2cfdvs3.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121851639456862379/5C242F4D-7F2E-4850-ADBA-A9BF9EF22842.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1121359365706883163/thc6pMN.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121830953162121256/1686280133710309-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121594275109543946/VID_21130707_040423_760.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121569555630801058/IMG_20230623_013611_254.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1121426330081316945/Hardcore_A-chap_5.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121420856552337618/discord.gg-pantyhose_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121418487290662912/www.douyin18_4422890790779292981.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121410774221455370/CaringMadeupMorayeel-mobile_1-1.mp4", + "https://cdn.discordapp.com/attachments/1099034799496241272/1102006761851998370/VID-20230430-WA0164.mp4", + "https://cdn.discordapp.com/attachments/1099034799496241272/1102192794115788850/1682615859134474.webm", + "https://cdn.discordapp.com/attachments/1099034799496241272/1102193162384068709/1682388852184302.webm", + "https://cdn.discordapp.com/attachments/1099034799496241272/1102193779206791270/1682715432655678.webm", + "https://cdn.discordapp.com/attachments/786127715769909249/1121359365706883163/thc6pMN.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121359309952004198/CheapMuddyKagu.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121200865932484709/lv_0_20230622010719.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1121071897329799179/dm5nks7dhn1a1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120885533695017021/Video_Feb_07_12_13_15_PM.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120768008521011200/ssstwitter.com_1686613945260.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120761816931373118/VID_20230618_140335_615.MP4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120761575293337650/iT8r3pL1_pHj50Yt.MOV", + "https://cdn.discordapp.com/attachments/786127715769909249/1120761570809618503/1685744739056051.MP4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120675445755629599/RPReplay_Final1684790021.MOV", + "https://cdn.discordapp.com/attachments/786127715769909249/1120632682657886359/KUnpORf3at2zwyoY.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120505446894145586/VID_20230620_063128_030.mp4.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120453602247450765/VID_20230619_183523_543.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120427492906377236/VID_20230619_205324_997.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120398488333729943/bKLnSsJ.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120395949471182949/Bizzy.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120395902314627202/WornWoefulAfricangroundhornbill-silent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120395878935580752/Bizzy-4.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120395790611906580/Bizzy-6.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120076760390828112/DwiVhJnv76UACAOj.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120074553956257942/IMG-20230615-WA0024.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1120074429515431946/IMG-20230615-WA0013.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1120074351610441809/IMG-20230615-WA0004.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1120062784433029180/LostKnottyEkaltadeta.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120045182461681704/1686078236386338.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120044837165604894/1686048844347734-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120044522429227068/1686090154989625.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120044286503825488/1686078201797201.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120043989844893786/1686078163959428.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042796678664242/24fa564623fe4fa984cb3f550f09b6be.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042747500441630/20230430_200216.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042742710550578/1686245650321759_e75d8c67-cb50-4711-bfc7-be8b869edc9b.webm", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042622354980984/1685852809548653.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042484941197344/FiqKmSo9zmfkwT1j.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042447800631377/1685836075330246.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042399339646976/my6giQhk_mWwBalf.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042365143486474/1686071147210183.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042343517650994/BlackWideSiberiantiger-silent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042273665712320/SlushyRespectfulImago-silent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042232645423134/SpiritedStupidBorderterrier-silent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042198239551498/Bizzy-5.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120042157311537193/CalculatingLivelyWildcat-silent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1120041990214664212/ScentedUntidyHoneybadger-silent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119945440843014144/discord.gg-pantyhose_3.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1119915410427498616/VID_20230618_140335_615.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119905443570008104/1686157094408867.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119904075195101204/pghigh1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119902401730727996/1686164611023888.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119901568431554630/WildTepidKiskadee-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119901070018236457/1685853275833711.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119900828329836584/1686047228281248.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119899334226481262/1685986263179418.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119897574812438599/1686189258283030.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119897503798665266/1686214066966754.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119896947281645680/1686257220840441.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119896329838137424/1686171552234475.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119893658020356096/1685908230802340.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119889818353156187/1686184010976894.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119888095614087168/1686252715967223.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119887898360172615/1686351629088017.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119769809471688805/VID_20230618_042510_894.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119687204550213683/1686176257497005.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1119685302987014194/1686179494450697-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118590003015069696/1684682449691540.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118574477652008990/avatar.png", + "https://cdn.discordapp.com/attachments/786127715769909249/1118483237736546416/school_slut.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1107098959278780476/VID_20230514_025743_194.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118285621954355251/1684555823332127.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118285474193211440/1685161373800229.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118285193325858856/petal_20230613_165751.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118282573823606835/1684816881091112.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118281618566692964/1684882617628829.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118277393329688726/1685162547336373.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118277208478318592/1685125542647368.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118277076089327617/1685192128868242.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118276177069617342/1685208682790880.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118276086820769792/1685124755773090.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118276003450593440/1685148148482497.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118275941697847426/1685208929397561.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118275809321431191/1685209273646017-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118273592145227836/1685229533272373.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118273441385156628/1685213153044193.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118250934083006464/VID_20230613_143123_674.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118005443218915428/Bizzy.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1118005387573075988/Screen_Recording_20230612_183824_Instagram.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117921558900519013/RDT_20230405_075640_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117881430836527164/VID_20230612_211834_584.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117734763604758548/1684469359180689.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117734428043644959/1684416277428569.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117734387459563600/1684426911021317.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117734326663135232/1684469709997418.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117734254403661834/1684531591009192.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117734211936329748/1684531059250951.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117734086031716422/CC806ECD-808C-4095-8B3F-C769148AFEC0.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1117732298754904094/1684455830981252.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117726254829940736/1684433391609173.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117726134281445427/1684516594030128.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117724972471828570/1684530986669255-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117724913483128892/1684424629513733.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117681332944896023/1-6xvE5KQ0pPxN_8.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117665496083464202/RightRuddyBull.mp4.mov.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117652596207915049/jNXm3fBCdUNO6kdb_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117538203801489508/1683280292861661.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117538182490239127/ssstwitter.com_1686425879738.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117333693971824730/www.douyin18_2564478452321162733.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117231561868324926/RDT_20230605_201710.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117184816069234799/AA_BG_2.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179838604775455/Bizzy-6.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179796972130444/Bizzy-9.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179756555796520/Bizzy-10.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179712880529508/HummingShyBluebottle-mobile.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179674846580857/KindheartedVengefulCougar-silent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179637299159100/OffbeatVivaciousIraniangroundjay-silent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179520181604442/CloseElatedGermanspitz-silent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179481929560115/Bizzy-17.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179419451195442/95SLU28.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179302199447724/GrowlingDarkkhakiRacerunner-silent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117179196247117864/Bizzy-24.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117123604790902915/Video_in_topic_Public_by_Zenbisense.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1117107481911504896/image.png", + "https://cdn.discordapp.com/attachments/786127715769909249/1117106018560778380/Snapchat-1528437849.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1117105964089364580/trim.556D7A8B-189C-4D53-A650-110FAA89C389.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1117105092206788668/2023-04-04_15.34.34.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1117105002188644413/2023-04-04_15.58.11.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1116885527883436063/1684329689107811.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116885285037424732/1684316351856237.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116883811737804934/1684316181184338.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116883578400288940/1684316067411584.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116882919819063406/1684357314042821.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116882161379844277/1684282409558132.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116881454748680433/ruth-lee.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116877915339096084/1684168565640048.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116875773702320139/1684433107332219.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116873215969603624/redditsave.com_BurdensomeShrillYearling.mp4", + "https://media.discordapp.net/attachments/355163884191088651/1096236041523966042/A-_Post_in_topic_Hot_Couples_by_IEKONZ_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116841576111538238/1684329858489944.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116840747891691665/1684329910312084-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116800834399899771/StridentLavenderBaboon-mobile.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116792724339839006/216ec26a182c4947bdac3b02855b1e57.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1116637559045488650/Bizzy-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116614258604646440/1684307508120835.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116614097665019994/1684308457837684.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116457443480830121/VID_20230609_010241_164.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116449094966198392/discordgg_pantyhose.mov", + "https://cdn.discordapp.com/attachments/698561793085407302/755126636869058580/VID-20200911-WA0024.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116331844628135957/video_2023-06-08_21-43-02.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116114710589358171/bait_20_sec.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1116114637650411550/bait_2_sis.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1079463885066747944/VID_20230214_173957_997.mp4", + "https://cdn.discordapp.com/attachments/1080121537576833174/1091306667691479081/ssstwitter.com_1664032884202.mp4", + "https://cdn.discordapp.com/attachments/1080121537576833174/1094008940339146782/vahsi_clgn_binicilik_xHamster.mp4", + "https://cdn.discordapp.com/attachments/942237158972985385/965900337892454400/1650253037361.webm", + "https://cdn.discordapp.com/attachments/921112062162272338/961309107506262016/by.enezpacino_4.mp4", + "https://cdn.discordapp.com/attachments/840021281964425236/973631599331639336/3105aa8e2473c64a42b5ff42c0324cfd.mp4", + "https://media.discordapp.net/attachments/818465976139776000/1108780810036854824/HKd8N2qePGN5jx94.mp4", + "https://media.discordapp.net/attachments/664796892999319552/1110002073250058251/UnequaledPopularTigershark-silent.mp4", + "https://media.discordapp.net/attachments/664796892999319552/1110002075405922365/FloweryMiserlyFirefly-silent.mp4", + "https://media.discordapp.net/attachments/818465976139776000/1108780725169307678/fuJVtVL5FCrNyRzH.mp4", + "https://cdn.discordapp.com/attachments/988851856182767654/1089074685746094110/ResponsibleSecondaryXantusmurrelet-mobile.mp4", + "https://cdn.discordapp.com/attachments/988851856182767654/1089073243211698227/InShot_20230323_230737798.mp4", + "https://cdn.discordapp.com/attachments/1016297898369093663/1088302825936797776/RDT_20221121_204606.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/1005866986762412093/video-1655143176.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/992048031581089822/Untitled_1.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/1006292536299630602/yzu4lB0.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/1006292526900199557/BubblyDownrightRook-mobile.mp4", + "https://cdn.discordapp.com/attachments/988851856182767654/992046932539220078/E252AB5C-2FC0-42AB-B038-5B5AB07FA303-1326-000003A3F686FC09.mov", + "https://cdn.discordapp.com/attachments/804697836671336508/1082064109400494151/149414A0-ABD2-4FF2-BC7E-841DECB7102A.mov", + "https://cdn.discordapp.com/attachments/990328395986505809/1090123004136128512/PeruSharpNorthernfurseal-mobile.mov", + "https://cdn.discordapp.com/attachments/990328395986505809/1090123010821865612/ObviousAttractiveGreatargus-mobile.mov", + "https://cdn.discordapp.com/attachments/988851856182767655/990925426195058698/Untitled.mp4", + "https://cdn.discordapp.com/attachments/507801722073251842/1090660938253865121/DarkslateblueAquaNighthawk-mobile.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620888574800002/OnlyGods_3.mov", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620889854062664/OnlyGods_11.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620890655178782/RPReplay_Final1642981422.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620943230775447/video_2021-01-12_20-18-09.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620890277679134/OnlyGods_13.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620942840692837/trim.2DB1CA11-5D5F-45CE-963C-60D9FBC7F6B3.mov", + "https://cdn.discordapp.com/attachments/1040667073057149038/1048402548056399902/video0_4_2.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1053711109317722112/ssstwitter.com_1669566400614.mp4", + "https://media.discordapp.net/attachments/950113747505123388/950127840635015178/video0-6.mov", + "https://cdn.discordapp.com/attachments/1043265989816614924/1048489454551183371/Brazzers_Amateur2321.mp4", + "https://cdn.discordapp.com/attachments/971503203466248272/982569824167280690/amateur.mp4", + "https://cdn.discordapp.com/attachments/971503203466248272/988485700141862972/amateurtycoonwhy_3.mp4", + "https://cdn.discordapp.com/attachments/971503203466248272/988485700716474418/amateurtycoonwhy_5.mp4", + "https://cdn.discordapp.com/attachments/1043265989816614924/1048488561281867796/brazzers_discord9.mp4", + "https://cdn.discordapp.com/attachments/1043265989816614924/1048489382564343868/VID-20200929-WA0123.mp4", + "https://cdn.discordapp.com/attachments/969278433135824896/975046652710760558/RFS_11.mp4", + "https://cdn.discordapp.com/attachments/971503203466248272/981973911644307456/RapidSillyUgandakob-mobile.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/899345122892873788/BowedObeseAlleycat.mp4", + "https://cdn.discordapp.com/attachments/782362256008282203/836186623439798282/VNHrfXf.mp4", + "https://cdn.discordapp.com/attachments/732652352997163049/752956671566938292/AmazingTatteredErmine-mobile.mp4", + "https://cdn.discordapp.com/attachments/963002116258037780/1009568252877340682/brazzers.amateur3.mp4", + "https://cdn.discordapp.com/attachments/924229880470724619/939535710287978516/GrayDismalElver-mobile.mp4", + "https://cdn.discordapp.com/attachments/924229880470724619/947468276324237352/K1E7JeK.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/789695719258849300/Newbie_Michelle_Anderson.mp4", + "https://cdn.discordapp.com/attachments/571967965755473935/782126864771579934/Amateur_Slut_feedin_her_man.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/791970081088864276/Hot_Amateur_Teen_Sex_-_Girl_with_natural_huge_tits_fucked_hard.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113941832452296794/15_sec.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113928155049242734/bait_vidosa_1_stydent.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113855035055538268/PAWG_teen_slut_rides_dick_and_gets_fucked_in_her_parents_car_creampie_POV_www.saveporn.net.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113824737613848716/4_5949785690836307023.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113581499078430720/FLEAMX-getting-fucked-PlGs0xC6.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113424660458119208/video0_-_2022-01-24T041747.049.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113314098235584523/video0-1-2.mp4.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1113312506522370089/trim.9823D085-1FB4-41F8-A5CE-64CB8969A42B.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1113310692519444601/IMG_4229.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1113307715826110474/1682514034959.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113306134019842058/aArFFCWJtdjAgKUF.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113305660801683456/VainSatisfiedDeviltasmanian.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1113205496359432232/IMG_6068.MOV", + "https://cdn.discordapp.com/attachments/763852112882171934/1037651511267831878/SpankBang.com_masturbateinschool_720p.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113168085915013140/OLtkyrjeMAUx7UqBQOvN29052393.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1113158841438322699/RDT_20230118_1716436292533760766577694.jpg", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111374643576709170/Newbie_Michelle_Anderson.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111374546109477055/0ca730fc-f301-426d-b337-f3369a6680b5.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111374399711486122/b7053946-038b-4053-9a38-b97e98c19eee.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111374360293421056/aaf4a6b0-e9c6-11ed-b5f8-639940ad75a5.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111374103073525810/4_5920437895834895912.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111374084861870160/72665960-e9c6-11ed-98a7-5fff1b8f175c.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111374020114386954/VID_20200920_040842_790.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111374013529337938/VID_20200814_001917_121.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111373811024138340/video0-7.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111373792434987098/8mb.video-kgf-zxSgqKRO.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111373776303706212/video0-6.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111373773766144172/video0-8.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111373731013591140/u6JarF83akcli6cl.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111373552696954951/video-1660387035-1.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111373377047908365/fAmuXNfZUbC1-1.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111373174555279420/SexHouseAmator3.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111373142326263859/360_X_640_.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111372974797357137/VID_20200904_112534_177.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111372696220086333/1639012518394.webm", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111372592788549662/VID_20220706_210844_968.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111372441323831376/VID_20220520_151227_246.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111372199119556678/RapidSillyUgandakob-mobile.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111372124481912872/trim.0AABDAC3-7C2D-4C12-A146-3A55800DE850.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111372118073024542/ELTEyFE.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111372114478510100/WhatsApp_Video_2023-05-07_at_19.04.59.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111371857682243655/cm-chat-media-video-73D3368D-CAA6-4D80-8C7F-A4E36521E593.mov", + "https://cdn.discordapp.com/attachments/1015405107917094932/1111371794679607296/8086ea2e-2dd5-46ae-8bd2-33d1fb146080.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1111692035691380746/3iumKmI_2bE-U8jI.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1111691853306269726/RPReplay_Final1683671447.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1111691775959126016/LimpingCoolYellowhammer-mobile.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1111691718635573368/Bizzy-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1111685259273195560/IMG_20230517_131320.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1111371330256896061/Snapchat-703719673.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1111033782875734026/Bizzy-9.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1111030353155588247/Bizzy-7.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1111030300852629574/Bizzy-23.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1111030256124559511/Bizzy-15.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1111005949176590507/1684366323753276.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110900488137875597/3LtZsLlL_720p.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110900438842228830/1.48456295410422579E18.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110900366431768607/Vampyyy_20220301_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110900236110536784/Bondage_Anal.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110900116841300009/filtered-724554F9-5976-4179-BF10-5FCD7765D113.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110900091352530994/Video_24.09.21_19_20_06_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110900057676460033/xvideos.com_7601520d8986cd4e323dd66016b3bff5.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110899855854936074/trim.3B432988-993E-41EF-87F7-92E9F397E7EB.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110899809361084540/Distroy0071_10-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110899765291524238/1137354.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110893213469900810/19_59.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110887766117597184/ssstwitter.com_1684883934097.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110887558155599882/B0C8038F-CC7C-4554-B86B-A47A9E2CA33B.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110887517764472953/5.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110882664124260362/not_full_2022.mp4", + "https://cdn.discordapp.com/attachments/530835803178401795/866780948041564160/4_5933885537222919082-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110864979122462772/1684921012736.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110862132154728548/ssstwitter.com_1684711214862.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110808942671564840/Fw1o-RYWcAE39jQ.png", + "https://cdn.discordapp.com/attachments/786127715769909249/1110723607438557265/VID_20230524_051829_986.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110626903347445892/VID_20230523_205149_003.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110600253633208320/1684857579984.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110583374923436122/VID_20230523_180004_411.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110316293007081512/2022-06-03_0h2utd89m9z6b1r5e8z9r_source-1bENU.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110294599521546371/lv_0_20230523005259.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110278283444101234/VID_20230522_180205_730.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110267599918485587/cm-chat-media-video-18c608407-8cac-4620-9916-3ad15e38c696135900.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110181128570142750/school_slut.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110168183668752395/VID_20210517_182007_593.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110128888165699624/VID_20230522_135432_362.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110099075770110032/bI_1812.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110057463027343420/pretinha-dando-a-buceta-de-quatro-para-o-negao-dotado.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1110020566687170590/Asian_teen_selfie_home_sex_at.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109960417381470248/Babes_4_.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109954452020002836/1536954031481.webm", + "https://cdn.discordapp.com/attachments/786127715769909249/1109363144414990366/VID_20230520_111252_830.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109361647031701534/VID_20230520_153346_836.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109271472163274832/1683878945716730.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109268810940289054/1684347538727014.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109268755323826316/1683935107613900.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109204546607132712/ppv8343360506838437895bdb9a164-c87b-452b-a23c-bae5e32071b6.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109168913071231036/bait_221_125.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109095395864359012/VID_20230519_152816_347.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109847663236620288/cachedVideo_27.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109627165223432232/twitter_20220901_172553-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109626827254804510/LinklerDiyari_Video_105.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109626776163995740/mbRTce8Q4X_D_inj.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109615793446064208/Screen_Recording_20230520_102636_Chrome2.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109493182993018961/RDT_20230517_195542.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109481995442073601/QVt36ZLHbBRtAIcr.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1109477288103383070/VID_20230520_153749_234.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105942676907499650/not_fullwq.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108810079802761387/15_sec.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108736453711769600/Snapchat-1598224764.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108724989991075911/video_2023-05-18_21-56-20.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108496771438620813/VID_20230517_234631_456.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108391179478909058/IMG_5_online-video-cutter.com.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108369039551643668/bait_23_sd.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108987308289556520/VID_20230519_151656_096.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108979751290425366/Screen_Recording_20230518_221704_Chrome2.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108904725157515325/2023-02-01_2761001233-5b5Ljcpb.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108899038918623344/IMG_20221223_000513_525.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1108116553263759410/video0_-_2022-01-24T041747.049.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108032631062413433/RDT_20230304_1324208504790207074209983.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1108026352201908375/petal_20230515_133651.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1108001323439378472/bait_20_sec.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107962437392666644/cm-chat-media-video-18c608407-8cac-4620-9916-3ad15e38c696135900.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107913061672693770/VID_20230516_024155_611.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107600286995988500/VID_20230515_142748_845.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107566271521886249/VID_20230515_171233_749.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107525153350500363/1683933127847156.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107445202018381834/viknareefff.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107445189695512626/fulllq.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107383473766940782/1683760212649988.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107381203432120390/1683593765407252.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107380396548698112/1683604871689238-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1107098959278780476/VID_20230514_025743_194.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1106947797758005339/1682807901170724.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1106936747008475146/VID_20230513_163000_631.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1106711845907206206/1683403807918412.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1106709735627051060/1683624448602284.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1106702409125855293/1683031780103082.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1106701344204668998/1682977965800464-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1106618929390026753/2022-08-21-07.14.34-4GeD6iMA.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1106604448605802507/VID_20230508_015021_279.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1106338919211094036/assg.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1104354124285366342/IMG_20211106_201823_188.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1106227672914341979/not_full-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105731317615829012/lv_0_20230510123816.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105731282215915571/lv_0_20230510123630.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105689830052081714/xvideos.com_539cb30becfe8a7214d4ad4853991c3c.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105675594001293373/not_full.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1089565628337238026/uNdq2omc_720p.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105570342962987099/x.coml_2023-05-09-21-47-13_1683650833926.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105534045401657445/gsgddsgsdg.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105531534120861926/baer.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105530386085335060/baav.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105520517567496252/Amateur4.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105500990465126430/yVSSOFcgDIyLWmNv.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105254031712067766/IMG_4656.MOV", + "https://cdn.discordapp.com/attachments/786127715769909249/1105225029014278275/2EI2raYM_720p.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105210820805267516/xd-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105192287048319076/48d4b4ca192a01dc.mp4", + "https://cdn.discordapp.com/attachments/960313523244761178/1104799167563452587/PyQK7MUNPqSmtal.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1105128672966488156/12.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105128642700394516/xd.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105112641413844992/b3cb08ca765aaca3.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105111207041572865/bemc-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105094840850599976/VID_20230508_142555_623.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1105024592751362078/VID_20230504_095201_788.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104911143945895937/WhatsApp_Video_2023-05-07_at_19.04.59.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104880634654101565/bfb69f05b11caebf.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104806632854138951/15_sec.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104805627563343913/VID_20230507_192217_124.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104780633164742696/bemc.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104648770110636094/sheeesh.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104549751703224390/gg.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104529609057374238/AA_BG_2.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104354124285366342/IMG_20211106_201823_188.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104056354949304391/VID_20230505_164337_846.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1104056272065671188/VID_20230505_164341_678.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103973468078342154/VID_20230505_111541_790.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103858438192234596/Amateur4.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103702198350790706/VID_20230504_171752_154.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103672433547948092/ppv3093842835955944911aae224e3-79ef-4b8b-8744-ae52a62c06b2.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103670896448765963/ppv79418240942447906188d3747b4-c038-48bb-803d-e0a6fc19800f.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103670571482501171/ppv8343360506838437895bdb9a164-c87b-452b-a23c-bae5e32071b6.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103670152853200947/ppv6129046051266759124e85e1d47-fcd0-4fff-a16b-9440ba86804d.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103664562420596857/dm5nks7dhn1a1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103657338033934346/VID_20230504_141506_266.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103650531190263888/RDT_20230504_144246.mp4", + "https://cdn.discordapp.com/attachments/1017491171783741480/1061395490501050480/VID_20220509_124710_169.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103591575042396232/VID_20230504_095206_946.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103591533543956510/VID_20230504_095201_788.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103443346422239375/VID_20230502_175535_543.mp4.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103381798865621022/1682686282784347.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103381655533666437/1682807948481443.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103381325945257984/1682807901170724.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103378513832202342/Petite-latina-creams-and-rides-BWC-63fbde82bbb51-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098372792086437888/VID_20230420_001957_678.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098367136046518312/Watch_SB_sl_fkd__kit_-_Kitchen_Sex_Kitchen_Fuck_Submisive.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098327425831682099/milf_fun.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099407557111582791/InShot_20230315_175736771.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099331169654415460/ALL_FANS_on_Telegram_0106.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099141847965778000/VrryA3w.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099043914880659546/1681742722015.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099000480476180551/sweetpetiteofficial.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098996553466794054/ImpressionableSubstantialIlsamochadegu.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098996442158346342/boat.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1098927577109905448/rcv5g60.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098912650383069184/0h9lpbmwm4k9re1ndzfm7_source-5U9rUn7b.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098788336249864192/Pixei_Videos_96.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098674908973768876/2_5285024014404693578.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098674663015596202/video235-MKkoxMit.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098673854047584276/2_5285024014404693581.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098663622810554408/VID_20230420_200218_279.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098649559481192538/ssstwitter.com_1681482256764.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1098647757612388363/RDT_20230420_182808.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1100030846850846720/ssstwitter.com_1682337087877.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1100029281167478845/VID_20230424_140212_633.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1100027443131187330/ssstwitter.com_1682337051572.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1100027124481544263/ssstwitter.com_1682337022702.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099958268782198864/video0_9.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099777296660955156/lv_0_20230423222050.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099694353401794630/lv_0_20230423165108.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099689471139647558/RPReplay_Final1675315181.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099550642856534047/Nud3Cloud_Telegram_4_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1099525716846063656/aliceredlips-2021-03-19-2043950206--WELCOME-BIG--ixxojxeG.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1100209206411395172/ZHUtEP4.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1100180225402343464/VID_20230425_010038_326.mp4", + "https://cdn07.bdsmlr.com/uploads/photos/2020/01/208979/bdsmlr-208979-njTdlPmjhI.gif", + "https://cdn.discordapp.com/attachments/786127715769909249/1100140284190392350/Nud3Cloud_Telegram_8.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1100120198796824636/RDT_20230424_210428.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1103325411066257480/VID_20230503_165847_818.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102563875972468786/1682012599143699.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102562380149428254/1682851442310773.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102545344178434120/RDT_20230501_123343.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102545045338464288/VID_20230501_133854_500.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102543487997579315/RDT_20230501_123348.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102476300565889045/VIDEO_1665538131.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102428225176604712/2022-08-21_07.14.34.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1102365886054137916/1682425083169186.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102354252988420168/1681575455858881.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102330477458768044/twitter_20230310_191346.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102317711540879380/2_5465211924130042129.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1102023484407820388/RDT_20230417_015710.mp4", + "https://cdn.discordapp.com/attachments/925081177264619551/1101935731888369744/ACAB2AB7-78CA-40DA-9F71-2D42B7E25EEB.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1101955632485126294/9805_Happy_halloween.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101764078428504074/Creampie.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101620882201391146/photo_2023_04_07_17_50_07_2.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1101950573449850900/VID_20230429_211407_779.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101950450510610543/VID_20230429_211403_226.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101589086847909999/VID_20230429_002135_802.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101560381220073523/fb80b731af0c2cf2fd53aedc2ad8ff8e.png", + "https://cdn.discordapp.com/attachments/786127715769909249/1101469356803768390/VID-20230428-WA0018.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101456071119347753/lv_0_20230204003505.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101441024578043957/telegram_video.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101264649116188733/FsCdSyLWLvH4RwOl.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101255242030526545/VID_20230427_202457_560.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101253907788865658/2022-08-21_04.01.10.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101246824033034311/1682514034959.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101227669871394907/IMG_20230427_221038_229-transformed.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1101222575322955786/IMG_20230427_210650_884-transformed.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1101207656636612750/5e9d186803088d36ae647_source-74RsF2XX.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101136635451678780/rapidsave.com_FsHnkuC.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101136396552515614/rapidsave.com_FN3CDLK.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1101127644474519702/300237810_1134975440769354_3091504950119415815_n.webp", + "https://cdn.discordapp.com/attachments/786127715769909249/1101127637549719592/ro-mariyana-golaya-73.jpg", + "https://cdn.discordapp.com/attachments/786127715769909249/1100489884176756846/video0.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1100399683014242335/WhatsApp_Image_2023-04-24_at_17.16.33_1.jpeg", + "https://cdn.discordapp.com/attachments/786127715769909249/1100346878828216381/IMG-20230424-WA0153.jpg" +] \ No newline at end of file diff --git a/src/storage/nsfw/asian.json b/src/storage/nsfw/asian.json new file mode 100644 index 0000000..b879315 --- /dev/null +++ b/src/storage/nsfw/asian.json @@ -0,0 +1,169 @@ +[ + "https://cdn.discordapp.com/attachments/763852112882171934/970030206188404816/IdioticVillainousAngelwingmussel-mobile.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/973078352900542494/45rtghnmf.mp4", + "https://cdn.discordapp.com/attachments/912596016103043073/947072592198631464/22955e92ee8939e208bfb17e79258b96.mp4", + "https://cdn.discordapp.com/attachments/884802196573679706/910366672966270976/Japanese_beauty_gets_cum_in_mouth_by_random_guy.mp4", + "https://cdn.discordapp.com/attachments/902282394919391293/1050571172544253972/VID_101131018_002741_331.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1067854517678374952/ssstwitter.com_1674659308650.mp4", + "https://media.discordapp.net/attachments/706074188875825152/999383347425980436/WMIDconcat-MIRD-151a.mp4", + "https://media.discordapp.net/attachments/706074188875825152/999383351339266078/WMIDb-PPPE-038.mp4", + "https://media.discordapp.net/attachments/706074188875825152/999383353637748736/G6EVfVV_-_Imgur.mp4", + "https://media.discordapp.net/attachments/706074188875825152/999383354451431604/dDGTk8E.mp4", + "https://cdn.discordapp.com/attachments/976381365207568404/1005917285107634256/0_4.mp4", + "https://cdn.discordapp.com/attachments/879819846391586847/917695993900838962/0_Quiet_Study_Time_At_JAV_Gakuen_-_Satomi_Ishigami__MXGS-895.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1001072127744679966/1sauce.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/789999530292674560/5c393f5ace244.mp4", + "https://media.discordapp.net/attachments/763852112882171934/983364870575624222/G6EVfVV_-_Imgur.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/862764024025448468/bbs2048.org-5.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/862764737635549214/VID-20210604-WA0129.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/862765131310301244/VID-20210604-WA0128.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/862850471916339220/LavenderBriskUlyssesbutterfly.mp4", + "https://cdn.discordapp.com/attachments/1073583601045733427/1073607936686948372/pRFCEYw_-_Imgur.mp4", + "https://media.discordapp.net/attachments/1033644802849386516/1059987469497552966/dCfrMTxE4fR-3LaF.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1068569401722413097/12_minutes_blessing_...zDN17Z_2.mp4", + "https://cdn.discordapp.com/attachments/976381344189935666/1014169059803275305/VID_20210429_110229_355.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1099925479538036756/VID_20230424_065751_636.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1068117110917693492/video0_3.mp4", + "https://media.discordapp.net/attachments/763860707544137759/1066365265291530300/VID_20230121_213256_317.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/862760084554907688/9ae1b7129e4bb309.mp4", + "https://cdn.discordapp.com/attachments/884802196573679706/893321066791981076/Lustful_Asian_gal_rides_her_lover_in_hot_sex_action.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1097185521899426022/hjnbk3b.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1099845725724086373/RDT_20230414_090219.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1099925174545027073/VID_20230424_065754_936.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1099239276459348048/RDT_20230422_004218.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035062118514828/BEST_SEX_14.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035063439720578/BEST_SEX_1.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035062978359337/BEST_SEX_16.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035062563131402/BEST_SEX_15.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035071664750622/BEST_SEX_8.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035070968512582/BEST_SEX_7.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035072834977913/BEST_SEX_10.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035072381980692/BEST_SEX_9.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035131861401701/BEST_SEX_16.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035133362970634/BEST_SEX_2.mp4", + "https://cdn.discordapp.com/attachments/1073583610373865474/1078383359790698647/0_1.webm", + "https://cdn.discordapp.com/attachments/1073583610373865474/1078383359346090114/0_7.mp4", + "https://cdn.discordapp.com/attachments/1073583610373865474/1078383356699496488/0_4.mp4", + "https://cdn.discordapp.com/attachments/1073583610373865474/1078383357156667462/0_6.mp4", + "https://cdn.discordapp.com/attachments/1073583610373865474/1078383357718712390/0_1.mp4", + "https://cdn.discordapp.com/attachments/1096689734954274916/1096786582817751121/0HvmaFAMqzqTHreU.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1097185838619697383/qbhwjvkjq.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035132352151562/BEST_SEX_1.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035132989669416/BEST_SEX_17.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1052932521429577768/videozip_7074.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1052947866001346571/trim.CFEB71AB-2022-4BA8-9D49-32FC681B4FC2_1.mov", + "https://media.discordapp.net/attachments/706074188875825152/1054411915411070996/asi1.mp4", + "https://cdn.discordapp.com/attachments/908804014911655947/920563169267679243/received_1132242277189861.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1076249058752086066/g4F9rhIy2PlsVgJY.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1079463885066747944/VID_20230214_173957_997.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1076457488003629177/IMG_0745.mp4", + "https://cdn.discordapp.com/attachments/233561991153844224/1041246599092912158/299187222_110882875066761_2803714391074790083_n.mp4", + "https://cdn.discordapp.com/attachments/971503222575472711/1045376023140773955/Snapchat-1519429568.mp4", + "https://media.discordapp.net/attachments/959884126373167144/1100128717692469298/asyali.mp4", + "https://cdn.discordapp.com/attachments/959884126373167144/1100128469892997270/bestporn.mp4", + "https://media.discordapp.net/attachments/971503222575472711/998391935783927808/asiantycoonwhy_2.mov", + "https://cdn.discordapp.com/attachments/971503222575472711/1045376024222908457/brazzers2.mov", + "https://cdn.discordapp.com/attachments/971503222575472711/1045376023719583784/twitter_20221113_142957.mp4", + "https://cdn.discordapp.com/attachments/918995339749494894/938895262401851434/1622608166688.mp4", + "https://cdn.discordapp.com/attachments/945711527309213796/953716642343452672/VID_101131018_002741_331.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1084336967703072868/cachedVideo-1.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1083902657120456774/1652730007874.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1037909689645666405/1_4999244677304549872.mp4", + "https://media.discordapp.net/attachments/508861454191951873/1119206317123436584/9SPT414MaKa.png", + "https://cdn.discordapp.com/attachments/763852112882171934/1043490395927105586/Aka_asuka.jpeg", + "https://cdn.discordapp.com/attachments/763852112882171934/919425393210032128/jtGGCY0yKe20kH1I.mp4", + "https://cdn.discordapp.com/attachments/508861454191951873/1097977283911884850/FtK8Ph1XwAAeVXb.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/900778928027881512/623390658.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1129653269711564870/521sxle60480.mp4", + "https://cdn.discordapp.com/attachments/871429867214864405/1041859874818113536/unknown.png", + "https://cdn.discordapp.com/attachments/763852112882171934/912840987628433478/260182670_442318444180740_7348871211963608484_n.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/900112597544755300/1632332677169.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/859005039284584488/Screen_Recording_20210628-113556_InBrowser.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1124241085527502848/y46_IlThQY33Cauo.mp4", + "https://media.discordapp.net/attachments/871429867214864405/872227627136610324/40d989635420271b9edc4ea58e267e0c.jpg?width=456&height=608", + "https://cdn.discordapp.com/attachments/1087468426592796702/1092356671176712262/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/854442400307347486/10eb9260130b1224e800e8536c7b2c82.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1014756667843432488/mlm6j63dbl771.png", + "https://cdn.discordapp.com/attachments/763852112882171934/952773671573942313/SolidThoroughDouglasfirbarkbeetle-mobile.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/913903128078852186/IMG_20211124_153707.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/828988400988192798/A_7419.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1130296908162810019/Tumblr_l_450655095676742.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/832116373194014730/image0.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1108123207212466366/FvUsgLPWAAMlpVG.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/828093431472848896/409975.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/793353030836944896/image0.gif", + "https://cdn.discordapp.com/attachments/763852112882171934/957173109104992286/unknown.png", + "https://cdn.discordapp.com/attachments/763852112882171934/1115641054658572399/Ful5xrSXsAc2UOf.png", + "https://cdn.discordapp.com/attachments/763852112882171934/1132208860485128233/622790_b6a71da_600x_.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1041859127401533480/unknown.png", + "https://media.discordapp.net/attachments/954013558084087819/1128101082829160551/20220623_043745.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/990419311317360730/ejOuZomeeLxBAnzD.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/900112586438225950/1632332656998.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/785046703311945768/BV2H5SNULNMS6_where-can-this-video-be-found-and-preferably-her-name-as-well.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/890175866561253396/SisLovesMe_-_Horny_Stepsis_Jasmine_Grey_Seduces_A_Big_Brothers_Dick.mp4", + "https://cdn.discordapp.com/attachments/849298702299299850/985154935308042260/7-DkiWp2d.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1131494751229710396/SpankBang.com_porn_480p_1.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/951679590412218378/1.png", + "https://cdn.discordapp.com/attachments/763852112882171934/1115555243900534784/IMG_20230603_153249_681.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1123132045367984188/e16642c348a95165fc952677c619fcfc.mp4", + "https://cdn.discordapp.com/attachments/849298702299299850/910577646289698836/ABuf9nE-R4yqkgL1CYMcZQ6c7qtYfY_2iB0BK6GFndY.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1096797377559548096/accb9ba16a6bcf968883beea7f61c76b.png", + "https://cdn.discordapp.com/attachments/763852112882171934/829036351139741706/video0_2.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/941832692465549312/IMG_2693.png", + "https://cdn.discordapp.com/attachments/763852112882171934/988944715477057566/20220620_095017.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/825779017906913290/video0.mov", + "https://media.discordapp.net/attachments/763852112882171934/1049931726627012618/VID_20220227_024925_308.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1081924185657442355/1cbb8bd92aaec1fd.png", + "https://cdn.discordapp.com/attachments/508861454191951873/1097991382746021968/H6332a0446e7e4e4a9d74a62a27125752U.png", + "https://cdn.discordapp.com/attachments/763852112882171934/1087464356989653142/VID_20230320_124355_866.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1088207429755482132/xvideos.com_d60762dc77dfd6561772247cfb20224b-1.mp4", + "https://cdn.discordapp.com/attachments/508861454191951873/1115555488633983048/IMG_20230603_153249_681.jpg", + "https://cdn.discordapp.com/attachments/1087468426592796702/1090409059666112612/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/900113283984556032/Transparent_Panties_20.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1028580453264932895/30.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1116277606204055592/1685814505092245.webm", + "https://cdn.discordapp.com/attachments/763852112882171934/888193871564136448/01_300.png", + "https://cdn.discordapp.com/attachments/763852112882171934/1051770991627489310/photo1664719509.jpeg", + "https://cdn.discordapp.com/attachments/763852112882171934/1109491881219477504/FB_IMG_1684094421687.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/915297178711392308/IMG_20211130_123156_270.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1116683763863277659/UnconsciousAfraidSpidermonkey-mobile.mov", + "https://cdn.discordapp.com/attachments/1033073427201921114/1101363205458108416/video_2023-04-24_10-31-47.mp4", + "https://cdn.discordapp.com/attachments/508861454191951873/862395593379545098/o0lxnebeyj171.jpeg", + "https://cdn.discordapp.com/attachments/763852112882171934/1047118191500996668/NamiGoneWild_by_onlyfans_day_club_on_TG_64.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/828157550846410762/A_200.gif", + "https://cdn.discordapp.com/attachments/763852112882171934/832116329170862090/image0.jpg", + "https://cdn.discordapp.com/attachments/574987044405641236/947100756643831848/TnDET3IeSUxaQGgr.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/828093486364229652/20200721_111622.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1099221468635734116/ssstwitter.com_1681923557969.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/787164361613115412/Screenshot_20201212-115000_Twitter.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/1087048304128426014/lv_0_20230319232052.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1112791195421249556/sda.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1129960438717755482/Screenshot_25.png", + "https://media.discordapp.net/attachments/959210679678693416/1075162700679753768/image.png", + "https://cdn.discordapp.com/attachments/763852112882171934/828294229749923870/PastelBetterArcticfox.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1111326853857284116/7nmeexjoprM.png", + "https://cdn.discordapp.com/attachments/763852112882171934/1093160729902841986/RDT_20230404_230611.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/828092450554904586/0KMNTqp.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/828289640905048094/A_1506.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/885194418666238012/241303396_398800451673355_8480526877382090929_n.jpg", + "https://cdn.discordapp.com/attachments/763852112882171934/863772189953753088/07-11_HD_720p_MEDIUM_FR30.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1094007054429073418/20230406_121138.jpg", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196330529327427594/freenude_39.mp4?ex=65c9b1a0&is=65b73ca0&hm=8f3a97babc2c721a133ec185e5f881295e34d8b896a392795b1c842517eae7a9&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196330655450157126/freenude_14.mp4?ex=65c9b1bf&is=65b73cbf&hm=db0cc35b79027874a2bd504a702f6ebaf9d1922d94f803c66c3b844505e9dd8c&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196330679764537344/freenude_25.mp4?ex=65c9b1c4&is=65b73cc4&hm=aa72d23796d0f2e966684a6d7df619f42d5895a791aa9edd68c9c1a89bd57a96&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331193050873856/freenude_31.mp4?ex=65c9b23f&is=65b73d3f&hm=c280f9e2251b5dd09d43876eadfd5aadeefa525b5d71b1b6ac12c523cd67852e&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331356175749272/freenude_41.mp4?ex=65c9b266&is=65b73d66&hm=0a2a3213112c558850c8a25e95a6ed22ed15fa9f68a9bca98a5879857a534e29&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331371602391132/nudeland_asian_11.mp4?ex=65c9b269&is=65b73d69&hm=35ab74523be0e773104ec12b8dd22d4324286b55d7820b72dc4de8b4533314b2&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331440649031770/freenude_26.mp4?ex=65c9b27a&is=65b73d7a&hm=229bc773a9e02906e9c904be7bd224ab0d8015a3d6a7af6694bc18efa1f7a6f1&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331478691348570/freenude_28.mp4?ex=65c9b283&is=65b73d83&hm=ba99a93c394746c7dc9e7f7f214addb855c00e819a2bee1f857c326636fc7719&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331498375237632/freenude_10.mp4?ex=65c9b287&is=65b73d87&hm=d8a3713da018f55d0de3ce6cbaf2bed36cefcc7e9acbf8a230ed731bc04752b8&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331744308252743/video0-1-1-1-1.mp4?ex=65c9b2c2&is=65b73dc2&hm=219f2cd0659d642b8602f727c2779a8e762aa27b9a175124ca466fa3ea544cca&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331792182018069/onlyporn_asian_2_2.mp4?ex=65c9b2ce&is=65b73dce&hm=7291dc02667d9452b74552a31c9bc105a90d2ea065806ebf99bf81c4549dffba&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331812675403896/RDT_20230917_180923.mp4?ex=65c9b2d2&is=65b73dd2&hm=14db11daa2d4449dd4aeda82cabb7ec7ea9315930e8492c02ea3503ce8b6eec6&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331815141646436/RDT_20230917_175550.mp4?ex=65c9b2d3&is=65b73dd3&hm=110d285de0144c849e4b0f3ae15d695fdf3e587f20ac2eec987fbe140bd868d9&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331817821802506/video0-1.mp4?ex=65c9b2d4&is=65b73dd4&hm=9e709215b08a4e9efefb025c05aaaeda4a0cceb29c13ffa48bc810f321e8ad7e&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331831402958869/RDT_20230917_181156.mp4?ex=65c9b2d7&is=65b73dd7&hm=ff6034e06a2f859be7c03f6d329a57898973ddd6de1ce2be816fe9c3b1f651e3&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331846137565254/RDT_20230917_181953.mp4?ex=65c9b2da&is=65b73dda&hm=137e6b083515198d8f4df178676acce0fdf5aa536cdbd75ab231634b28607ae9&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331862277238794/RDT_20230917_181513.mp4?ex=65c9b2de&is=65b73dde&hm=d49db79790461c8c4d7f017442bed3e97ba84d581a6ce545e02e82118e791289&", + "https://cdn.discordapp.com/attachments/1178801746525564989/1196331886696472676/RDT_20230917_181043.mp4?ex=65c9b2e4&is=65b73de4&hm=c89bc5e003a3d794ae1972b65af24df12fa4314f5e23b40bb971ce504660a1cf&" +] \ No newline at end of file diff --git a/src/storage/nsfw/ass.json b/src/storage/nsfw/ass.json new file mode 100644 index 0000000..931900e --- /dev/null +++ b/src/storage/nsfw/ass.json @@ -0,0 +1,78 @@ +[ + "https://cdn.discordapp.com/attachments/788255701809627156/1124391435291082824/20230629_212013.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/962471637096214528/IMG_4699.PNG", + "https://cdn.discordapp.com/attachments/1087468783855227033/1092358451142856786/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/854441487370813470/Screenshot_20210601-234948_Reddit.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1007619815273414727/BrownUnacceptableBluemorphobutterfly.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/907035055073943583/ziw2VMw3Wk8.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1057632843326570526/20220708_014955.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1064934544102391848/Screenshot_20230117_174732.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/795683851091312661/GCtexpD_d.webp", + "https://cdn.discordapp.com/attachments/788255701809627156/1056251527913820160/Ff-boLKLKpQ.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1076658100662177843/Screenshot_20230217-223451_TikTok.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1007414394029875231/993qkc9qml961.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/829534735671623730/OnlyFans.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/951836107442642954/unknown.jpeg", + "https://cdn.discordapp.com/attachments/788255701809627156/925467491688398848/18519980.webp", + "https://cdn.discordapp.com/attachments/788255701809627156/1116056025435488368/IMG_20230608_042629_195.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/997625870900547774/IMG_20220711_043038_816.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/977264572006285382/daddysanon----6391760.jpeg", + "https://cdn.discordapp.com/attachments/788255701809627156/1068738358844588173/unknown.png", + "https://cdn.discordapp.com/attachments/788255701809627156/864721940785659904/image0.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/987508460419706910/IMG_20220618_050447_556.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/836348640406274088/JealousMagentaMarbledmurrelet-mobile.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/972058456381091870/IMG_20220506_115301_213.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1032596165138591784/Screenshot_20220825-152214_Instagram2.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1130117889890996334/EZczmF411hQ.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1109208014243774624/IMG_20230519_222612_408.jpg", + "https://cdn.discordapp.com/attachments/794315196440248337/860227135997607956/image1.png", + "https://media.discordapp.net/attachments/1061405942257819668/1084878877148582008/2_5368562704564889728.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/857144895257313290/RJnGJxKw93o.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1122857067061989486/purple.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1036228364039622706/IMG-6422.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1095762086170214570/IMG_20230412_202711_038.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1080029479763726428/lisycatlove4106a5.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/888935824874434590/xvideos.com_27f5d1ad7df5d19e3f41c28beae4b912.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/907390330830200832/IMG_20210720_215147.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/931853113105727538/IMG_20220114_215834_806.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/881263371092099163/IMG_20210828_210410_330.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1022921340812005440/O1caC7GdEmE.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/984735519655215125/unknown.png", + "https://cdn.discordapp.com/attachments/788255701809627156/1018836556175388703/839485566.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1048210778618073188/IMG_20221202_141306_779.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/859911046453788682/hs3o6QcdiJE.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/966307991143985243/unknown.png", + "https://cdn.discordapp.com/attachments/788255701809627156/941118581276569641/VID_20220210_014606_128.mp4", + "https://cdn.discordapp.com/attachments/1087468783855227033/1092347745781678140/OnlyNudes.jpeg", + "https://cdn.discordapp.com/attachments/788255701809627156/1006304048531656734/Pj8Ib-FR8FJ3LG8V1Eo_VqmTdH7i0Lmb_QWEQfgfhyfajrkMz4f7ZkVBRHWR-jkwr6be3wN5oDf8AKkhkgtIGxw6.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1086879931503480883/Screenshot_20230319-081004_Viber.jpg", + "https://cdn.discordapp.com/attachments/1087468783855227033/1096526004115218432/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/847718003587022858/nUG5a78JcU4.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1094874489080270878/8de88c95-6001-41c0-b018-e915273e453e.png", + "https://cdn.discordapp.com/attachments/788255701809627156/1060250664384606278/1068613-big-beautiful-ass.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1086879844127735858/Screenshot_20230319-081145_Viber.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/980358502788780042/unknown.png", + "https://cdn.discordapp.com/attachments/788255701809627156/1012116326157922435/IMG_20220601_001420_220.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1109087705536675871/img2304221215.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/919976006952054814/IMG_20211214_000240_193.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/936417469923467376/1640704790870.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/826110480099442718/image0.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1021023723173707806/kQnLWhf639I.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1123664295729832117/IMG_20230208_152605_164.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/878020665293287485/F8PGEy1wzwA.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1080913420678869022/41650711a.webm", + "https://cdn.discordapp.com/attachments/788255701809627156/860608684366495784/unknown.png", + "https://cdn.discordapp.com/attachments/788255701809627156/854998456283037706/Screenshot_20210612-145947_Instagram.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1043270796275093554/ass.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/844619529706274836/sheeesh.gif", + "https://cdn.discordapp.com/attachments/788255701809627156/888558633972027402/9ec755bd51bf4d8c8750143373098f64.png", + "https://cdn.discordapp.com/attachments/788255701809627156/900404706386530334/IMG_20211020_175128_510.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1012378155912274041/B0414797-650E-411C-9B2A-180BC9EFA257.jpeg", + "https://cdn.discordapp.com/attachments/788255701809627156/1009245898456440903/IMG_20220817_024233_941.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/864911684349984798/zxc.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/1056306290160324808/IMG_20221225_012112_108.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/893039151493054494/image0-2.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/878989331002458152/IMG_20210820_231006_185.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1042052776542351370/50f9e9bcc0248a84f67aba33b221010c.png", + "https://cdn.discordapp.com/attachments/788255701809627156/1082735167229132861/Screenshot_20230307_204237_Instagram.jpg" +] \ No newline at end of file diff --git a/src/storage/nsfw/bdsm.json b/src/storage/nsfw/bdsm.json new file mode 100644 index 0000000..3fd9adf --- /dev/null +++ b/src/storage/nsfw/bdsm.json @@ -0,0 +1,171 @@ +[ + "https://cdn.discordapp.com/attachments/876734039619424276/892604603298906122/Tied_up_slave_in_hardcore_bdsm.mp4", + "https://cdn.discordapp.com/attachments/867130220585811969/867140965943607306/ImaginativeIncredibleBluetickcoonhound-mobile.mp4", + "https://cdn.discordapp.com/attachments/867130220585811969/867141265175085056/SAS_Two_Beautiful_Blondes_Fucked_in_Wild.mp4", + "https://cdn.discordapp.com/attachments/867130220585811969/867141268226965544/VID_20210619_105348_073.mp4", + "https://cdn.discordapp.com/attachments/919456313342316584/943751930096791552/xvideos.com_0c35a9db80f88d56a82c81134786af80.mp4", + "https://cdn.discordapp.com/attachments/853040394806493185/920563511564861470/doc_2019-07-21_09-45-59.mp4", + "https://cdn.discordapp.com/attachments/919456313342316584/951393001631023104/IMG_3933.mp4", + "https://cdn.discordapp.com/attachments/867130220585811969/883114178016063538/idk.mp4", + "https://cdn.discordapp.com/attachments/867130220585811969/867140962353545237/1543832035612.mp4", + "https://cdn.discordapp.com/attachments/919456313342316584/940985738164596807/PA_NSFW-bdsm1.mp4", + "https://cdn.discordapp.com/attachments/919456313342316584/940987432067813386/PA_NSFW-bdsm2.mp4", + "https://cdn.discordapp.com/attachments/919456313342316584/940991663885680720/PA_NSFW-bdsm3.mp4", + "https://cdn.discordapp.com/attachments/971503699002265660/998397480280535040/hardcoretycoonwhy_6.mp4", + "https://cdn.discordapp.com/attachments/838649491237109790/873997402250559518/AgonizingHollowHornedviper-mobile.mp4", + "https://cdn.discordapp.com/attachments/847840354765766657/865315285296480286/Ashley_Lane_part_3.mp4", + "https://cdn.discordapp.com/attachments/508817133757792256/960190038044467220/1632099033166.webm", + "https://cdn.discordapp.com/attachments/876734039619424276/878467417049821244/My_First_BDSM_-_He_Tied_Up_and_Fucked_my_Mouth_and_Tight_Pussy.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/882776396903116850/Machine_bonded_sub_throats_threeway_maledoms.mp4", + "https://cdn.discordapp.com/attachments/965351276688855081/965357282533736498/Brazzers_Bdsm11.mp4", + "https://media.discordapp.net/attachments/786126922618241024/951272177737547857/ForcedPegging.MP4", + "https://cdn.discordapp.com/attachments/786126922618241024/987351801730830386/1655468122500.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/894367736707297360/Submissive_getting_fucked_and_sucking_cock_handcuffed_and_blindfolded_by_the_dominator.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/886089192034144286/Luscious_filly_has_her_nipples_pinched_before_getting_whipped_sensually.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/911065017523253248/Dido_Angel_Takes_Piss_In_Mouth.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/904572572518219796/The_Applicant_part_2.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/895822846734004244/Yhivi_is_a_BAD_maid_part_1.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/889338506609037352/Japanese_small_beauty_in_stockings_gets_smashed.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/879858677660672061/Yhivi_is_a_BAD_maid_part_2.mp4", + "https://cdn.discordapp.com/attachments/971503203466248272/1032221712156205077/VID_20220928_221010_494.mp4", + "https://media.discordapp.net/attachments/860115323758706688/860649664348291112/IMG_0492.MP4", + "https://media.discordapp.net/attachments/836133312078676059/836133477879513168/26560772a.webm", + "https://media.discordapp.net/attachments/962512742722449418/964225364073279548/ZauLpmctFxwfV6Ao.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802047/1070789310963519488/BEST_PORN_5.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802047/1070789310590222426/BEST_PORN_4.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802047/1070789310158225468/BEST_PORN_3.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802047/1070789309646508124/BEST_PORN_2.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802047/1070789309193519144/BEST_PORN_1.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802047/1070789308782481448/BEST_PORN_1.mov", + "https://cdn.discordapp.com/attachments/867887085351206922/1075467277111132230/xvideos.com_5a20677d205cd7736c7e5f4c25e57b9b.mp4", + "https://cdn.discordapp.com/attachments/867887085351206922/1075463109805867088/xvideos.com_ab12e34e43a70b6e671cf63b20b2b634.mp4", + "https://cdn.discordapp.com/attachments/867887085351206922/1074460764229861426/xvideos.com_afe19193582bd270d218ac340790f2be-2.mp4", + "https://cdn.discordapp.com/attachments/867887085351206922/1074812165753675867/xvideos.com_9faef50600693d9c003d5a0187892194-1.mp4", + "https://media.discordapp.net/attachments/786126922618241024/1100119622465892442/8a556cffcb5a273bd513a373a10abd05.mp4", + "https://media.discordapp.net/attachments/786126922618241024/1097271575725756547/RDT_20230417_001426.mp4", + "https://media.discordapp.net/attachments/876734039619424276/877383803864219648/BDSM_sub_tied_up_and_punished_with_bastinado.mp4", + "https://cdn.discordapp.com/attachments/847840354765766657/865300229737414676/ScentedInnocentGrosbeak-mobile.mp4", + "https://cdn.discordapp.com/attachments/847840354765766657/865300318890754098/wow.mp4", + "https://cdn.discordapp.com/attachments/847840354765766657/865300667110916106/Taboo_Teaching.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/879874631551574016/Halloween_Cosplay_Nina_Rivera_fucked_hard_as_Catwoman.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/894368341765013545/Tiny_Black_Teen_With_Braces_Destroyed.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/892602683477876767/Gorgeous_babe_Sarah_Kay_k_and_brutally_fucked_in_BDSM_action_by_huge_guy.mp4", + "https://video.twimg.com/ext_tw_video/1101019253099192321/pu/vid/640x360/K4Y48ll8l-I3ZUkf.mp4?tag=1", + "https://cdn.discordapp.com/attachments/847840354765766657/865308083189710858/Ashley_Lane_part_1.mp4", + "https://cdn.discordapp.com/attachments/847840354765766657/865311943492763738/Ashley_Lane_part_2.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/980070114374344765/CarelessUnripeArthropods-mobile.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/974498233734795284/VID_20220426_001357_880.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/877384026678255676/BDSM_babe_tiedup_for_fingerbanging_punishment.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/892587375904055356/Mini_gets_Tied_and_fucked.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/880629131962904576/slaves_punished_and_humiliated_by_master_he_fucks_and_slaps_them.mp4", + "https://cdn.discordapp.com/attachments/1040314607727824938/1050805087087382588/HandyAnxiousPapillon-mobile.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/878110036071682058/Gagged_submissive_babe_smashed_from_behind_rough_and_deep.mp4", + "https://media.discordapp.net/attachments/1099073795496607854/1099131261026582681/IntentionalMurkyEyra-mobile.mov", + "https://cdn.discordapp.com/attachments/847840354765766657/865301291060166667/tied_up.mp4", + "https://cdn.discordapp.com/attachments/847840354765766657/916163384301469728/SpeedyObedientLoris-mobile.mov", + "https://cdn.discordapp.com/attachments/847840354765766657/916163384959971428/VID_20210619_105348_073.mov", + "https://cdn.discordapp.com/attachments/847840354765766657/916163385303891998/VID_20210826_032113_394.mp4", + "https://cdn.discordapp.com/attachments/847840354765766657/916163382338543616/face_down_ass_up.mp4", + "https://cdn.discordapp.com/attachments/847840354765766657/865301488263888896/vanessa-spread-and-tickled.mp4", + "https://cdn.discordapp.com/attachments/847840354765766657/865302607936356412/Vjkmdrv.mp4", + "https://media.discordapp.net/attachments/989557560778567710/993119478273552414/15042882a.webm", + "https://cdn.discordapp.com/attachments/965351276688855081/965353205972213790/Brazzers_Bdsm21.mp4", + "https://cdn.discordapp.com/attachments/965351276688855081/965352262677458954/QuerulousOvercookedMassospondylus-mobile.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/894368138228006962/skinny_teens_first_interracial_bdsm_lesson.mp4", + "https://realbooru.com/images/56/7b/567b3fdaca8fddaf6450bb5922d0e371.webm", + "https://cdn.discordapp.com/attachments/966756085295894548/966783733640331374/d33faf3a3d0f963383ea6c6fa5b9356d066347cc.mp4", + "https://cdn.discordapp.com/attachments/740771593906815046/966965303915450368/nUyLMuUumXWHNRYoDp5aZSuiu2ULRTB9ZY9xRdHbPXI.mp4", + "https://cdn.discordapp.com/attachments/740771593906815046/966965893554909244/IntentionalMurkyEyra-mobile.mp4", + "https://cdn.discordapp.com/attachments/740771593906815046/1035419637539688469/ForcedPegging.MP4", + "https://cdn.discordapp.com/attachments/740771593906815046/1047381300656480326/60108274819749294794959198584.mp4", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332237684215829/XRecorder_01092023_073025.mp4?ex=65c9b338&is=65b73e38&hm=4a7a79fc2846a7c5d8bf9d8e06462e4cd8e17b3afa844142160c78ab1e8783fa&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332240775417957/19003722a.webm?ex=65c9b338&is=65b73e38&hm=5142412a190f252623f3dcd204ec770629a4731cbcb06bfa2b03756d8da7f4b1&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332265140138014/SAS_Two_Beautiful_Blondes_Fucked_in_Wild.mp4?ex=65c9b33e&is=65b73e3e&hm=3f807f2a6cd536f34010ec4f6a203e535a1b159bc2118a53548394953532760d&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332279946031164/xvideos.com_5127641afde162b12555f76ec3021c7f.mp4?ex=65c9b342&is=65b73e42&hm=35c20980f2d400302aade4bdfa4b94299c237fb9544c31542398c7cdd376cc15&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332313072644186/trim.0CCDDBF9-B49F-48E5-BF4D-E8A7F3F3DC43.mov?ex=65c9b34a&is=65b73e4a&hm=6519e6ab19d6b880b91f4b397ca9e298373dbd9bf3d4afdc5dbfd5632c8c6c99&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332315652145192/xvideos.com_7ac30460ef07cedabbc6a258b3d12492.mp4?ex=65c9b34a&is=65b73e4a&hm=49bd2eb0a0292e7b744844740d1b353b4181c096562898ae4d95b7cc4204976e&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332330332201042/HonorablePlasticHoneycreeper-mobile.mp4?ex=65c9b34e&is=65b73e4e&hm=6c627131d1c528412137cfd2f66d6d4b1620eb8630809973b459a68231dd03c6&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332332848783390/xvideos.com_9e72172e2ba34ab772bd60fb023b49c8-1.mp4?ex=65c9b34e&is=65b73e4e&hm=1907068c8a309c39ad0b87a7e5fb5c723faaa1b2619d9951bc055317ef0e23a0&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332335637995641/VID_20210619_105348_073.mov?ex=65c9b34f&is=65b73e4f&hm=d192acdfba052e4eab199a1f4444fe24d25724af11b9f9c54749641f297bea2d&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332340406931476/3030eda7b5aa9a2d94da103a620766a4.mp4?ex=65c9b350&is=65b73e50&hm=47eb5d2fd6d3640ce6a00c14516bdd42c6c7e628ef76fef3fd19315f0eb0836b&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332347298160690/VID_20210724_021147_241.mp4?ex=65c9b352&is=65b73e52&hm=a54ad9efe7e9624566f7d50b6c2cd302fb813595b1f1be310c3400dd0dfdb20b&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332356202668193/bgb_french.mp4?ex=65c9b354&is=65b73e54&hm=c7e0e815054cb9e5de6428f1fe55f46e73e60c7b584dc346991ee69800d0ef8a&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332362687053884/Taboo_Teaching.mp4?ex=65c9b356&is=65b73e56&hm=7862c1060e8485769e483e4ebccd00356f4cd30c430b9157fe04dc3befef14f9&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332396899999824/xvideos.com_7dfe32d76546d550e84a9445f5723c0e-1.mp4?ex=65c9b35e&is=65b73e5e&hm=c6da438cdeb496537085cfa8923ee3fa848578a7dcf500b5067ef240db8da86d&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332400964284466/Video_12.01.21_15_13_05.mp4?ex=65c9b35f&is=65b73e5f&hm=adb6980ed1b6c369981fee6c5657381d990f0278a71c76832f64b5aba629372c&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332410963513485/xvideos.com_04088c875af522da6a4ff50a9bce26c9.mp4?ex=65c9b361&is=65b73e61&hm=1350bf84620584024ee5009a80d989b57c4fc73fce41e6082e0a34b4a7bb9bcb&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332423600939168/xvideos.com_34ba29a34253463f599a358b3f32eca0.mp4?ex=65c9b364&is=65b73e64&hm=aecf5ed483afb34dcad6ed358012de28898c9b5ee37d76dcda5b2960a5154c72&", + "https://cdn.discordapp.com/attachments/1178801909981777962/1196332427426156584/PleasedNavyMinnow-mobile.mp4?ex=65c9b365&is=65b73e65&hm=04e4c38609a8f71174d419dde92ff8c2c0332365699a357e6151c43c078bee19&", + "https://cdn.discordapp.com/attachments/849301967523151952/849397371678228550/j6DH4P2.jpg", + "https://cdn.discordapp.com/attachments/849301967523151952/849397315420815420/2n6vvbnsag951.webp", + "https://cdn.discordapp.com/attachments/786126922618241024/1078009231984308255/R_1.gif", + "https://cdn.discordapp.com/attachments/786126922618241024/1064624695619637248/IMG_20230116_225340_684.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/946784530218483712/rDD_bz9bt0Q.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/1121067647870705734/LvrhWPR3zlHgf3e4-1.mp4", + "https://cdn.discordapp.com/attachments/849301967523151952/849395533713506374/kcolt2apr9061.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/1106970266669686925/20230512_104118.jpg", + "https://media.discordapp.net/attachments/528538363251261442/886302719588040704/image0.gif", + "https://cdn.discordapp.com/attachments/786126922618241024/1097891407047430325/VID_20230418_172649_612.mp4_1.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/807729176655691776/12200790.6.320.240.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/1072457560701009980/20221122_063858.jpg", + "https://cdn.discordapp.com/attachments/876734039619424276/904179434603569192/belledelphinewoodsfkv_1.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/962245234958401596/Butt_plugged_sub_gets_water_bondage_1.mp4", + "https://cdn.discordapp.com/attachments/849301967523151952/849397416959410217/IlliterateTalkativeHawk-mobile.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/877383092988420136/Tied_bdsm_sub_whipped_and_toyed_by_maledom.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/1011847645624545410/IMG_20220824_035038.jpg", + "https://cdn.discordapp.com/attachments/923072454413410354/948966463182614588/3D468L4837872.mp4", + "https://cdn.discordapp.com/attachments/508817133757792256/1104787627305086986/20230429_013123.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/1032765025179414538/unknown.png", + "https://cdn.discordapp.com/attachments/786126922618241024/832044422723928104/mzhrFQQKtaHirGHz.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/1082945536572796948/WMIDc-SSND-04.mp4", + "https://cdn.discordapp.com/attachments/867887085351206922/1035425879150559272/d4xsa5jkk1l91.jpg", + "https://cdn.discordapp.com/attachments/508817133757792256/1106254297030738011/l7zWnlF.mp4", + "https://media.discordapp.net/attachments/541316189293641778/1013218391449935934/Sybian.mov", + "https://cdn.discordapp.com/attachments/786126922618241024/1078439136458981396/4839633.webp", + "https://cdn.discordapp.com/attachments/786126922618241024/989648677628936273/IMG_20220623_234241_773.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/1100811943280922634/-1920x1080.mp4", + "https://media.discordapp.net/attachments/508817133757792256/1113391051932176434/1683167828360601.webm", + "https://cdn.discordapp.com/attachments/786126922618241024/1093478455334666240/VID_20230406_121225_955.mp4", + "https://cdn.discordapp.com/attachments/849301967523151952/980591983020105768/AF2DC17E-FDE7-44FC-A57B-49F88703F38C.png", + "https://cdn.discordapp.com/attachments/742999059798687780/1078673153921921055/ezgif-2-a73082c005.gif", + "https://cdn.discordapp.com/attachments/786126922618241024/1073090470214914168/663e4acd5b66ab7_001.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/1088160856598122649/IMG_20221108_234654_498.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/1082029202779418674/IMG_20230305_133418_142.png", + "https://cdn.discordapp.com/attachments/786126922618241024/1019026557471301692/EyHWiA-XEAEk773.png", + "https://cdn.discordapp.com/attachments/876734039619424276/892605052173312030/Submissive_slaves_tied_up_with_rope_get_fetish_sex_and_punishment.mp4", + "https://cdn.discordapp.com/attachments/529800361465085963/821169000880013322/image0.gif", + "https://media.discordapp.net/attachments/528538363251261442/1028907753277763614/EvilFairBorer.mp4", + "https://video.twimg.com/ext_tw_video/1101031600639430656/pu/vid/640x360/tmnod9OKoENdr3Np.mp4?tag=1", + "https://video.twimg.com/ext_tw_video/1101013737962696704/pu/vid/640x360/Z4dsTL_VXf5GOMvI.mp4?tag=1", + "https://video.twimg.com/ext_tw_video/1101008429005590529/pu/vid/640x360/rnePr7dXztAJ7Wg2.mp4?tag=1", + "https://video.twimg.com/ext_tw_video/1101026044377812992/pu/vid/640x360/pfPCITgqBX4WbhRV.mp4?tag=1", + "https://video.twimg.com/ext_tw_video/1364075213395292165/pu/vid/640x360/LDgncyM4PnpU_LHU.mp4?tag=10", + "https://media.discordapp.net/attachments/528538363251261442/1033245945757978644/unknown.png", + "https://cdn.discordapp.com/attachments/786126922618241024/1101874738386706432/IMG_20230429_171028_863.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/1106970235812188232/20230513_115251.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/843853725662445658/unknown.png", + "https://cdn.discordapp.com/attachments/516205318418726912/1107760372808700045/antabuse.pro_serf_receives_a_group_castigation_for_her_twat.mp4", + "https://cdn.discordapp.com/attachments/740771593906815046/966965323096002570/KaleidoscopicEasyLeonberger-mobile.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/1028358449916039238/unknown.png", + "https://media.discordapp.net/attachments/508817133757792256/1084546181796986981/AnnualEsteemedGibbon-mobile.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/1035422103958200400/PleasedNavyMinnow-mobile.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/1033379947777097780/bGCHXwqXmmyC__Rn.mp4", + "https://cdn.discordapp.com/attachments/849301967523151952/849361019649916948/176940386951.png", + "https://cdn.discordapp.com/attachments/786126922618241024/901162503449485382/tap.gif", + "https://cdn.discordapp.com/attachments/508817133757792256/1106565961009594388/24862012.mp4", + "https://cdn.discordapp.com/attachments/508817133757792256/828514022894731284/gif-porn--Sperm-950694.gif", + "https://cdn.discordapp.com/attachments/786126922618241024/1082057449537798264/7_1.gif", + "https://cdn.discordapp.com/attachments/786126922618241024/836089837928448080/Belle-Delphine-BDSM-22.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/1100119622465892442/8a556cffcb5a273bd513a373a10abd05.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/964185653149573120/16095c6f8cf813865667e6d90718862b_400x400.jpg", + "https://media.discordapp.net/attachments/442572360705507328/707374037646442506/unknown.png", + "https://media.discordapp.net/attachments/528538363251261442/934729892111724555/20220123_123640.jpg", + "https://media.discordapp.net/attachments/528538363251261442/867384762285293588/20210721_174845.jpg", + "https://cdn.discordapp.com/attachments/786126922618241024/1101135288723574924/-1920x1080.mp4", + "https://cdn.discordapp.com/attachments/786126922618241024/965756344080666764/VID_20220316_233910_679.mp4", + "https://cdn07.bdsmlr.com/uploads/photos/2020/03/582183/bdsmlr-582183-S8r5G2NU6f.gif", + "https://cdn.discordapp.com/attachments/786126922618241024/989773295895322694/1653999050046.jpg", + "https://cdn.discordapp.com/attachments/867130220585811969/867140966628458506/BGB_Stripper_With_Big_Round_Ass_is_Taken_from_the_Club_and_Gangb.mp4", + "https://media.discordapp.net/attachments/620753826139340860/1052528211872989194/eFBTreR.mp4", + "https://cdn.discordapp.com/attachments/1032595588274982982/1056766258890162217/DownrightFocusedTreecreeper-mobile.mov" +] \ No newline at end of file diff --git a/src/storage/nsfw/black.json b/src/storage/nsfw/black.json new file mode 100644 index 0000000..d0f8900 --- /dev/null +++ b/src/storage/nsfw/black.json @@ -0,0 +1,56 @@ +[ + "https://cdn.discordapp.com/attachments/1099073798801739817/1099132508907507834/who_is_this_-_SubGirl0831_1258814__NameThatPorn.com-Xvideos_embed_video.mov", + "https://cdn.discordapp.com/attachments/976381343174897664/1006169729569914890/video0778.mp4", + "https://realbooru.com/images/c3/f5/c3f5462f56e1b8b821fb8f8221a4e08a.webm", + "https://media.discordapp.net/attachments/715597787420426260/785042983103758367/Natalie_Portman_Dredd_is_a_Tight_Fit.mp4", + "https://realbooru.com/images/33/e2/33e207e5cb0eb77bedbf8bb797678eb8.webm", + "https://realbooru.com/images/e1/e6/e1e600be60a2e3a0207b75d04d06460e.webm", + "https://cdn.discordapp.com/attachments/971503810113593474/972588097260896256/hotwife_doggy.mp4", + "https://cdn.discordapp.com/attachments/1023546150277632101/1060891392743837786/IllFairFattaileddunnart-mobile.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/927775999893053450/CFNetworkDownload_Ofxrcx.tmp.mp4", + "https://media.discordapp.net/attachments/976381343174897664/1006169732044562472/Brazzers-1-.mp4", + "https://media.discordapp.net/attachments/976381343174897664/1006169732786966568/The_Mindfucker_20220628_15.mp4", + "https://media.discordapp.net/attachments/976381343174897664/1006169733193793536/2022_07_06_12_50_41_zZliCwjwel9POXVT.mp4", + "https://media.discordapp.net/attachments/976381343174897664/1006261765442642080/trim.6376644B-DABF-46F6-9C74-2AD0092C334C.mov", + "https://media.discordapp.net/attachments/715597787420426260/806099619342975036/kFDsxT22332vO3mF.mp4", + "https://media.discordapp.net/attachments/976381343174897664/1005254664469618688/4_5846820528588849971.mp4", + "https://media.discordapp.net/attachments/976381343174897664/1006169729569914890/video0778.mp4", + "https://media.discordapp.net/attachments/976381343174897664/1006169730173911050/video0.mp4", + "https://realbooru.com/images/6e/04/6e04bddca2dd94bf7e06b932c7b8b1ff.webm", + "https://cdn.discordapp.com/attachments/763860707544137759/882938665192534016/xvideos.com_d9e28172c2d08fdd27c59f8ab4beae52.mp4", + "https://cdn.discordapp.com/attachments/763852130188525619/883598195572236308/LITTY_-16.MOV", + "https://cdn.discordapp.com/attachments/763852130188525619/883598336224030720/LITTY_-14.M4V.mp4", + "https://cdn.discordapp.com/attachments/763852130188525619/884063985220063232/6dbv5s0bzbk71.mp4", + "https://cdn.discordapp.com/attachments/763852130188525619/884064029121855498/PutridGreenyellowCygnet-mobile.mp4", + "https://cdn.discordapp.com/attachments/763852130188525619/884064031013498890/vm0dtoe6brk71.mp4", + "https://cdn.discordapp.com/attachments/969639366639091712/977986025655775302/rfsblack.mp4", + "https://cdn.discordapp.com/attachments/1083992983029948436/1084178972285349938/Brazzers_Black_14.mp4", + "https://cdn.discordapp.com/attachments/1083992983029948436/1084178945773150389/Brazzers_Black_15.mp4", + "https://cdn.discordapp.com/attachments/1083992983029948436/1084178793477968004/BRAZZERS_BLACK6.mp4", + "https://cdn.discordapp.com/attachments/1083992983029948436/1085255480613552281/BRAZZERS_BLACK8.mp4", + "https://cdn.discordapp.com/attachments/902435785805013062/902442240562061342/SPOILER__online-video-cutter.com_1.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/806099619342975036/kFDsxT22332vO3mF.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/927330888591765504/2_x3xkkng1n4EdGK.mp4", + "https://cdn.discordapp.com/attachments/763852130188525619/1058823209132240976/DASH_720_9.mp4", + "https://cdn.discordapp.com/attachments/763852130188525619/1059360474677915668/ebonybabe.mp4", + "https://media.discordapp.net/attachments/541316189293641778/1064218968258265278/VO0PPoJ.mp4", + "https://media.discordapp.net/attachments/517262866961924096/1064442659118264320/RDT_20230116_020631.mp4", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333135684714526/KxfQqKyduD2vW3CS.mp4?ex=65c9b40e&is=65b73f0e&hm=b7162496ea8032da7467b2cfeac54d6ce3b23a617f324d317b9fc87573d3b802&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333139056934952/www.3movs.com---latina-tru-kait-loves-riding-huge-black-cock_lq.mp4?ex=65c9b40f&is=65b73f0f&hm=7f3f8778a4f97f1b14d7e88618c655962f0313d51b850e61da35099ee3ee27e6&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333191884197969/video0-4-1.mp4?ex=65c9b41b&is=65b73f1b&hm=ff4a038053e6e39c4b08375757153ad8eb08a481f57d6c5407090ecd20e1d1e4&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333224910147695/video0-2-1-3.mp4?ex=65c9b423&is=65b73f23&hm=80d895fda97a19885275a55ea7e7bffecc867f57a76d2cf3d7813d664a4b0df5&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333228424958032/VID_20220325_003557_299.mp4?ex=65c9b424&is=65b73f24&hm=0d7349b78747c7250e65fbb5bb73111ac1c05e926ddbba15e98cef215b440ea5&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333231260315718/VID_20230203_111744_456.mp4?ex=65c9b425&is=65b73f25&hm=ec1d6c79ec63e261b885787b7f57f7bdadd99ce371f5882c493fe30012887589&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333233525239838/N10.mov?ex=65c9b425&is=65b73f25&hm=a48957405202e333eaba7126041d353f84b290bd8e0f3ff35a27833c232ed3a5&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333291222077490/www.3movs.com---leo-babe-gets-her-trimmed-pussy-filled-with-bbc_lq.mp4?ex=65c9b433&is=65b73f33&hm=bd85151bdb4c7d0c645d8126d78cdc57ea6eb0bbdc6835b8c18c84634867de22&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333295798063114/video0-4_1.mp4?ex=65c9b434&is=65b73f34&hm=56184ea6a6aba3005385a9391b4e9608d5e86230fae7229a6488bb1b929ae1b1&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333303238766622/2_x3xkkng1n4EdGK.mp4?ex=65c9b436&is=65b73f36&hm=8a4f2af9469628ff738d6c828762e6d1317b0657c5daef1861bce55408c70f44&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333306317385799/video2.mp4?ex=65c9b437&is=65b73f37&hm=4cfdb898d638be6c38799ac4067608e950c3672d3a23b31d92e7486f3fe681b8&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333309077225532/6d27035ccedc9a0d6f43c9f09389444f.mp4?ex=65c9b437&is=65b73f37&hm=5b90224bf0a3a30ca6b8196245b01010333fe4b5ba6513a97d14dc31ae2c1ef1&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333311497351308/rz4NRRVQBhIMTd_3.mp4?ex=65c9b438&is=65b73f38&hm=928818ce15bdae0c8761055db4a33ee438dff243f6ff456abcb70709ea24034b&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333330967310397/video0-8.mp4?ex=65c9b43c&is=65b73f3c&hm=df3345c65883a7a888dc65f732424b56976ef3e0e9738b7530237431b8ad460a&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333346784018513/video0-4.mp4?ex=65c9b440&is=65b73f40&hm=2e73f73e477616fbca35888b6aa05fce9cfa5dfb5ba6aee820ccd74335e8c237&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333350240145499/video0-5-1.mp4?ex=65c9b441&is=65b73f41&hm=340ace79c0618c56faf9b72525705828fe234b8a3c0a5bfea95c86b041df1ef1&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333365301878856/video0-23.mp4?ex=65c9b445&is=65b73f45&hm=8f568ec8f2acf918f03f8d45a4a409cf60c25c46b7589e224a6be752cab847cd&", + "https://cdn.discordapp.com/attachments/1178802008858308710/1196333368086900836/VID_20230203_115933_536.mp4?ex=65c9b445&is=65b73f45&hm=a432ccde042df5fbfc7518547431d2ef862ce95df95037ad68c88ab660c8190c&" +] \ No newline at end of file diff --git a/src/storage/nsfw/blowjob.json b/src/storage/nsfw/blowjob.json new file mode 100644 index 0000000..53897ed --- /dev/null +++ b/src/storage/nsfw/blowjob.json @@ -0,0 +1,138 @@ +[ + "https://cdn.discordapp.com/attachments/789616216892899335/893698126861447179/NaiveMediumaquamarineCrownofthornsstarfish.mp4", + "https://cdn.discordapp.com/attachments/881274062553370634/907260998673661992/IMG_8318.mp4", + "https://cdn.discordapp.com/attachments/838649491237109790/896096546410627082/video0.mov", + "https://cdn.discordapp.com/attachments/912913817229471764/917937384681766930/VID_20211205_165559_418.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937277177565214/wihgahwg.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1049742307789906081/VID-20210928-WA0013.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914116448757112852/5.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914116972885704734/939464.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117694599610408/https___t.co_AkINhQLMY6.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117071636398110/CautiousFluidKite-mobile.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/943740276286038036/video0-3.mov", + "https://cdn.discordapp.com/attachments/1017492741762064416/1061347930092601435/9GxGLkS_Trim_Trim_Trim.mp4", + "https://cdn.discordapp.com/attachments/1017492741762064416/1061347862363001012/video_2021-04-19_02-18-26.mp4", + "https://cdn.discordapp.com/attachments/1017492741762064416/1061347771833143397/nUBGFopYk5Idy03U.mp4", + "https://cdn.discordapp.com/attachments/1017492741762064416/1061347750588989480/m9bWxHRg6iiuloQ_.mp4", + "https://cdn.discordapp.com/attachments/1017492741762064416/1061347584075108362/Hand_Lily.mp4", + "https://cdn.discordapp.com/attachments/764337208844222525/1109039071038275644/VID_20230519_134446_000.mp4", + "https://cdn.discordapp.com/attachments/764337208844222525/1109028164442783764/AchingDelectableSpringbok.mp4", + "https://cdn.discordapp.com/attachments/764337208844222525/1108909175792222219/Nidhi_Pandit4.mp4", + "https://cdn.discordapp.com/attachments/550620465144528901/1108973925343428638/cpKoZLm.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/978164340874170438/SamusFacial.mp4?size=4096", + "https://cdn.discordapp.com/attachments/794096059664171028/978164370813108324/8FXeJi0.mp4?size=4096", + "https://cdn.discordapp.com/attachments/794096059664171028/978268750421844008/VID_20220523_150955_932.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/798032217589940234/17193304953825968.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/798409582681522206/video0-13.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/801471910340329552/1610312377556-1-1.mp4", + "https://cdn.discordapp.com/attachments/979103092266123264/1007402514011926538/UnlawfulVeneratedAzurewingedmagpie.mp4", + "https://cdn.discordapp.com/attachments/295647862317121536/970944044131819581/YellowgreenBurlywoodLoris-mobile.mp4", + "https://cdn.discordapp.com/attachments/1002130871333171260/1010771123358679130/rzcz13-50c2c9.mp4", + "https://cdn.discordapp.com/attachments/910073467733438505/979408332244807690/redditsave.com_LeanDeepskyblueEasternglasslizard.mov", + "https://cdn.discordapp.com/attachments/971503496815865866/972927185000214528/b9dbd31e1d5582fc22ddac3460bac94d.webm", + "https://media.discordapp.net/attachments/1023545073163575376/1026955233504546946/p4blohnNrR1x6pqcz_r1.mp4", + "https://cdn.discordapp.com/attachments/1004852097721839767/1020675432946872450/discord.ggssex_11.mov", + "https://cdn.discordapp.com/attachments/1002131007446732861/1013645748769927248/sc_bg15.mp4", + "https://media.discordapp.net/attachments/988401775834984468/991819574804750578/upsidedownbj.mov", + "https://cdn.discordapp.com/attachments/953041973831430184/953362012140896286/949026482779467816.mp4", + "https://media.discordapp.net/attachments/979103092266123264/1016461986298613901/i3NQJpy.mp4", + "https://media.discordapp.net/attachments/998331825904701493/1011048974075052093/SEXHAUSE_blowjop3.mp4", + "https://cdn.discordapp.com/attachments/1023545073163575376/1043828728498761818/FlamboyantShoddyArabianoryx-mobile.mp4", + "https://media.discordapp.net/attachments/979103092266123264/1007402514011926538/UnlawfulVeneratedAzurewingedmagpie.mp4", + "https://media.discordapp.net/attachments/657296384923533350/1053997942169686026/RepulsiveDarkDegus.mp4", + "https://media.discordapp.net/attachments/657296384923533350/1053962995446849576/PastElderlyAtlanticspadefish.mp4", + "https://cdn.discordapp.com/attachments/1093554784746868898/1094209801673773147/hardcore_6.mp4", + "https://media.discordapp.net/attachments/1002131007446732861/1013645748769927248/sc_bg15.mp4", + "https://cdn.discordapp.com/attachments/507801722073251842/1115589534365790228/video0-20.mp4", + "https://cdn.discordapp.com/attachments/1073583648588181604/1073683256999952425/21906292a.mp4", + "https://cdn.discordapp.com/attachments/1073583648588181604/1073683256458891295/VID_20230202_214634_289.mp4", + "https://cdn.discordapp.com/attachments/1073583648588181604/1073683255888445450/MarvelousJaggedIberianmidwifetoad.mp4", + "https://cdn.discordapp.com/attachments/1073583648588181604/1073683255326425098/TestyDifficultAnhinga-mobile.mp4", + "https://cdn.discordapp.com/attachments/1073583648588181604/1073683254793752668/SexHouseCum34.mov", + "https://cdn.discordapp.com/attachments/1031987626170908723/1031999029929844796/1115479.mp4", + "https://cdn.discordapp.com/attachments/1091500370439721020/1093370964571586681/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1091500370439721020/1093521875537235998/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1091500324856004758/1093463078710022154/OnlyNudes.mp4", + "https://media.discordapp.net/attachments/976381345045565450/978380833733873704/VID_20211104_164117_539.mp4", + "https://media.discordapp.net/attachments/976381345045565450/978379968180543518/video.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1006742076404285570/BluevioletFlawedLlama-mobile.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1007097190612742255/primary3AAndroid2Fmedia2Fcom.whatsapp.w4b2FWhatsApp20Business2FMedia2F.Statuses2F50c1df639b704cb1a42e7b4ecf8b3e0a.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020897/1079028930729742366/BEST_SEX_35.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020897/1079028929123332187/BEST_SEX_37.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020897/1079028958957412362/BEST_SEX_45.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020897/1079028958558945310/BEST_SEX_44.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020897/1079028958168887296/BEST_SEX_43.mp4", + "https://cdn.discordapp.com/attachments/1073583631391539200/1078384821367210024/2_4412512431.mp4", + "https://cdn.discordapp.com/attachments/1073583631391539200/1078384822579367976/VID_20210404_164243_211.mp4", + "https://cdn.discordapp.com/attachments/1073583631391539200/1078384823070109756/sQkUXL7.mp4", + "https://cdn.discordapp.com/attachments/1073583631391539200/1078384825188225044/lYvoCtU.mp4", + "https://cdn.discordapp.com/attachments/1073583631391539200/1078384825678954546/discord_gg_mvJF8HGZaX_15.mp4", + "https://media.discordapp.net/attachments/657296384923533350/1051584792858210446/Redgifs-internationalauthorizedmayfly.mp4", + "https://media.discordapp.net/attachments/657296384923533350/1050986387148656701/VID_20221019_011149_085.mp4", + "https://media.discordapp.net/attachments/657296384923533350/1049933955178188861/IMG_0062.mp4", + "https://media.discordapp.net/attachments/511257077797093426/1092423413311737928/1Dh1rOS.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1097583414179266731/InShot_20230323_181117982.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1097389335323607131/VID_20230417_081023_245.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1097504452837130432/0f9e0852b68741460c9796ac5e903e55.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1100866875749060648/onlyfans_day_club_Telegram_9_1.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1100866876562743368/25b004123ccc4f1303723221ed801bc2.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1100885837501173841/9GxGLkS.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1100891976901083336/VID_20230426_234057_270.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1100689233884225629/VagueSpeedyCivet.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1100689234710515762/9A8FB643-574B-409F-9420-B2D083F65C79.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1100689235595501618/2023-04-06_20.56.26.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1100092385498779830/VID_20230423_232220_156.mp4", + "https://media.discordapp.net/attachments/794096059664171028/1099394364645580970/sQkUXL7.mp4", + "https://media.discordapp.net/attachments/976381345045565450/1095499574430404618/he-sprayed-me.mp4", + "https://cdn.discordapp.com/attachments/959884126373167144/1096139615070601347/seninkisaksoda.mp4", + "https://cdn.discordapp.com/attachments/1035448271965012029/1057791360813510666/lTZrWSx.mp4", + "https://cdn.discordapp.com/attachments/916154358230581310/920414909576138782/1628761277466.webm", + "https://cdn.discordapp.com/attachments/1043265990521266197/1043280204560334968/GreedyKookyUpupa-mobile.mp4", + "https://cdn.discordapp.com/attachments/968924388755931216/1018290309525938247/Brazzers_cum-3.mp4", + "https://cdn.discordapp.com/attachments/838649491237109790/883114191404273714/hHH0YLcs-PyxMSm9_1_1.mp4", + "https://cdn.discordapp.com/attachments/1043265990521266197/1043591826554228766/TinyCriminalFirecrest-mobile.mp4", + "https://cdn.discordapp.com/attachments/703114431155929088/832766523776172072/video7.mp4", + "https://cdn.discordapp.com/attachments/764337208844222525/914794333717278770/kizinsexgunlugu_1414650277370769409720P.mp4?size=4096", + "https://media.discordapp.net/attachments/657296384923533350/1050987278958346380/VID_20221013_010720_085.mp4", + "https://media.discordapp.net/attachments/657296384923533350/1050987425943539782/VID_20221013_010815_123.mp4", + "https://media.discordapp.net/attachments/657296384923533350/1050987873228292106/xvideos_1488.mp4", + "https://cdn.discordapp.com/attachments/1043265990521266197/1043605229020643508/VID_20221116_142627_074.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020897/1079028930301931560/BEST_SEX_34.mp4", + "https://cdn.discordapp.com/attachments/1080118438820839434/1087336413051244614/video-1652844569.mp4", + "https://cdn.discordapp.com/attachments/1080118438820839434/1087336413630042132/video0_7.mp4", + "https://cdn.discordapp.com/attachments/1080118438820839434/1087336410937315348/HandmadeNegativeAsiantrumpetfish-mobile.mp4", + "https://cdn.discordapp.com/attachments/1080118438820839434/1087336407795765298/Linkler-Diyar_Blowjob25.mp4", + "https://cdn.discordapp.com/attachments/1080118438820839434/1087336412501770300/xvideos.com_601dbe49a88cbc634a6f81e7457b492f.mp4", + "https://cdn.discordapp.com/attachments/1080118438820839434/1087336379387760660/18lovehero.mp4", + "https://cdn.discordapp.com/attachments/1080118438820839434/1087336406273249330/trim.8B81FE74-72AC-4704-8F52-F160E205A806.mov", + "https://cdn.discordapp.com/attachments/1080118438820839434/1087336378976714822/1645282934476_1.webm", + "https://cdn.discordapp.com/attachments/921112449342636163/1070713562915426356/VID_144020117_130248_202.mp4", + "https://cdn.discordapp.com/attachments/921112449342636163/1070713562416283728/VID_144011206_190924_089.mp4", + "https://cdn.discordapp.com/attachments/921112449342636163/1070713561959125123/video0_1_1.mov", + "https://media.discordapp.net/attachments/764337208844222525/1097629132227100692/Pixei_Videos_83.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1096536624982130768/gMPSVm9.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1096881606452592721/VID-20230416-WA0001.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1096997919489523802/BlackandwhiteHandsomeDouglasfirbarkbeetle.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1096905964864667689/25b004123ccc4f1303723221ed801bc2.mp4", + "https://cdn.discordapp.com/attachments/1080118438820839434/1087336407128866909/summerbrooke_o.mp4", + "https://cdn.discordapp.com/attachments/526968291613212672/813389784600150016/1612878075134.webm", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335240843640863/BADDIE_NSF2W_7.mp4?ex=65c9b604&is=65b74104&hm=17051deaf02284f52c1d35df554ada2eb535e0a0df4f1002b5b6061b2b763bbe&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335240373882950/VID-20230416-WA0001.mp4?ex=65c9b604&is=65b74104&hm=fa153561c7bd9f6c09b38b18eba91eccdee29e95868013a39d67528543cdccd4&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335239925075979/RDT_20230717_095012.mp4?ex=65c9b604&is=65b74104&hm=260b3aa5e5def71aece405fd875ca59a8f5054270457dbbc6e550d511cd47c0b&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335263870357514/trim.4757B37B-DDCC-409B-BBAD-D050FF4E59A7.mov?ex=65c9b609&is=65b74109&hm=74258932b46cc20e5b10e7a5a9400a74b47154f417587b0f831c5b778a09996e&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335308560666744/RDT_20230717_095012.mp4?ex=65c9b614&is=65b74114&hm=e1be5464d443a304d40f7de11bad7e85d27063f633e993180c3a01fd08fffc95&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335323710509076/BADDIE_NSF22W2_14.mp4?ex=65c9b618&is=65b74118&hm=77aaa3a55b8682608291ff56459cd48700aeb76186bb4813fca4f3426cdcb412&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335328160649267/2023-04-06_20.56.26.mp4?ex=65c9b619&is=65b74119&hm=b4ff059393e20da3190b26bb17a106fccaf96a375f180aa89cf9feaa9d78e82a&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335330631102544/BADDIE_NSF2W_7.mp4?ex=65c9b619&is=65b74119&hm=f60f0efeaf4fdb16b04e10c967c971d2166fe766aadd418b6d46a369b25ff3ae&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335332665335909/BADDIE_NS22FW_4_1.mp4?ex=65c9b61a&is=65b7411a&hm=0c6deb16b41325459e35a8499507379148591d99ee7ece72339993bbf1c44cac&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335339502051419/BADDIE_NS2FW_13.mp4?ex=65c9b61b&is=65b7411b&hm=c42acb3cfcb8b3bb981b89d0468054b1884a20a0f7150c7a718d6375198024b6&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335356375736400/BADDIE_N22SFW_2.mp4?ex=65c9b61f&is=65b7411f&hm=f5d5d400ef61da13d8885afd525a36d4460188b97eb722f1b342de9a9e9bea83&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335371018047608/seninkisaksoda.mp4?ex=65c9b623&is=65b74123&hm=5fbdbd5d5fe2c860c3dc16ceb193d3a885144db21bacaee738730a02b03897b6&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335386557952100/BADDIE_NSFW_1.mov?ex=65c9b626&is=65b74126&hm=20e5cd705a6363f55c8f316639840237c9d14b766ac52f08fecc339cf0151176&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335410205433896/VID_20230423_232220_156.mp4?ex=65c9b62c&is=65b7412c&hm=aeae4da84b0b1a01eaf4cadba8fb9cc9755d3ed58ea514ae9d2b2877bb74f8d4&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335421014155325/BADDIE_NS22FW_4.mp4?ex=65c9b62f&is=65b7412f&hm=e015f4e34bb75059fde64ab59aff56b67b2275e655f3e048aaf50b3ff151c883&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335433378959460/BADDIE_NSF2W_6.mp4?ex=65c9b632&is=65b74132&hm=0cd8a79ba342da434b34292945eae60dc5a865c8165f8957edb99ae760ecb4ce&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335466010640404/VID-20230416-WA0001_1.mp4?ex=65c9b639&is=65b74139&hm=f3287afebacd96a5fca6da50755542ccfdc5c0e0b4195270e3e14002acd9df9d&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335470834102373/BADDIE_NSF2W_6_1.mp4?ex=65c9b63b&is=65b7413b&hm=cdac157e1342569a9ba1c4239ebd87938ec650f9e89ecd6bccf27e1ebe00d82d&", + "https://cdn.discordapp.com/attachments/1178802106556231731/1196335531093672087/VID_20230629_171105_456.mp4?ex=65c9b649&is=65b74149&hm=fbd3315634d0b6052cc441b2f34cae2b86f4d26f430dcd9eae79baef958ec7fc&" +] \ No newline at end of file diff --git a/src/storage/nsfw/boobs.json b/src/storage/nsfw/boobs.json new file mode 100644 index 0000000..0243d15 --- /dev/null +++ b/src/storage/nsfw/boobs.json @@ -0,0 +1,213 @@ +[ + "https://cdn.discordapp.com/attachments/857553896796979210/996433768346812466/Bbcanal.mp4", + "https://cdn.discordapp.com/attachments/838940836753309716/896096136597749811/ebony_cum_cow.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914156159487844422/xvideos.com_96ffc97e2629f12dd4ec6f2279e24e8c.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935107111784488/aaaaa.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119741042462770/vixen_kendra_sunderland_finally_fucked_by_her_fathers_friend.mp4", + "https://cdn.discordapp.com/attachments/838631106210955264/887209001790636082/SPOILER_xvideos.com_4a564950cb512ae9f00173b728b8da2c.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917935799855640576/NaiveCrushingCrayfish-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935013822103572/46f0eca052bbfa1cb5e710f1a86af4c5.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145292599840788/video0-78.mp4", + "https://cdn.discordapp.com/attachments/829474179287875594/1029075316301381702/QuintessentialAzureAgama-mobile.mp4", + "https://cdn.discordapp.com/attachments/976381363102056478/1014168316769730700/RFSboobs7.mp4", + "https://media.discordapp.net/attachments/976381363102056478/1006553581224198234/EVA_has_published_posts_on_Osea_I_think_you_will_like_it.mp4", + "https://media.discordapp.net/attachments/975387712410492939/996461831646355607/video0-16.mp4", + "https://media.discordapp.net/attachments/549161088864747523/1078532503251460176/VID-20220509-WA0430.mov", + "https://media.discordapp.net/attachments/549161088864747523/1078534350171279441/banger1000.mov", + "https://media.discordapp.net/attachments/549161088864747523/1077364603916390501/RDT_20230220_101108.mp4", + "https://media.discordapp.net/attachments/549161088864747523/1076233015887417456/UnevenYellowMaggot-mobile.mp4", + "https://media.discordapp.net/attachments/549161088864747523/1076233016302649384/e48fad5f1f86a594bad37322ec63deb253780ea9.mp4", + "https://media.discordapp.net/attachments/549161088864747523/1076941761831784539/0goka41royjsapvhyk072_source.mov", + "https://media.discordapp.net/attachments/549161088864747523/1070875029258117161/bg.mp4", + "https://media.discordapp.net/attachments/549161088864747523/1070875215384543263/VID_20210811_233537_160.mp4", + "https://media.discordapp.net/attachments/549161088864747523/1070875847403253770/video0-1.mp4", + "https://media.discordapp.net/attachments/549161088864747523/1070874835753902220/DASH_1080-VC.mp4", + "https://media.discordapp.net/attachments/549161088864747523/1070874255929126972/913047.mp4", + "https://cdn.discordapp.com/attachments/1023544799288111205/1059575408300920872/Video_7-9-21_11_46_39_PM.mp4", + "https://cdn.discordapp.com/attachments/1023544799288111205/1056884734132760616/f1cd9b7f-8c81-4207-88ea-f6def21edd62.mp4", + "https://cdn.discordapp.com/attachments/1023544799288111205/1056884686942634004/4b04d851-8a2b-4e83-bc69-6118d02c62fa.mp4", + "https://cdn.discordapp.com/attachments/1023544799288111205/1051766767199993866/StarryThunderousTurnstone-mobile.mp4", + "https://cdn.discordapp.com/attachments/1023544799288111205/1049768484436983858/Nud3Cloud_Telegram_6.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1099786615473324063/BjobsForeverxxx-1650024869365530626-20230423_093239-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1099687419038670909/GxxxMindless-1622747627866689536-20230207_030238-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1099092515451306014/ashley19_love-1649354209777664000-20230421_130741-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098380565897552003/DirtyVidsFH-1635410423666167809-20230314_014004-vid1.mp4", + "https://media.discordapp.net/attachments/1015392125376020500/1080199468714033162/VID_30480920_005934_105.mp4", + "https://media.discordapp.net/attachments/976381347436298281/984019328808669184/EAEBEA40-E070-45DF-A4CA-2C96C07FE8EB-2222-000001403584EB45.mov", + "https://cdn.discordapp.com/attachments/309362805449031681/970219485611049030/1651184394260.webm", + "https://cdn.discordapp.com/attachments/971503793520918590/1032237983065190441/video0-2-3.mov", + "https://cdn.discordapp.com/attachments/971503296881762384/1032224186451636224/7.mp4", + "https://cdn.discordapp.com/attachments/921112436331909130/968244942247972985/x7LnIOt.mp4?size=4096", + "https://media.discordapp.net/attachments/1023544799288111205/1037463407122722866/DefinitiveRightShearwater-mobile.mp4", + "https://media.discordapp.net/attachments/998331825904701494/1011046400198451333/SEXHAUSE_boobs4.mp4", + "https://media.discordapp.net/attachments/998331825904701494/1000403273376878712/SEXHOUSE_Boobs16.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/911920472168472606/received_408238573918966.mp4", + "https://cdn.discordapp.com/attachments/1035448269632979026/1044040701035429948/aRGun2F.mp4", + "https://cdn.discordapp.com/attachments/545407347103760392/989451850610778152/986585474.mp4", + "https://cdn.discordapp.com/attachments/1023838857088733185/1039282131957981275/TerrificEcstaticBordercollie-mobile.mp4", + "https://cdn.discordapp.com/attachments/1023544799288111205/1037463407122722866/DefinitiveRightShearwater-mobile.mp4", + "https://media.discordapp.net/attachments/1023544799288111205/1056884686942634004/4b04d851-8a2b-4e83-bc69-6118d02c62fa.mp4", + "https://cdn.discordapp.com/attachments/1093554872466546800/1094209751128223884/hardcore_4.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/983058606318567434/telegram_video-20-1.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1103768371994054676/VID_20230504_224115_070.mp4", + "https://cdn.discordapp.com/attachments/976381347436298281/984019328808669184/EAEBEA40-E070-45DF-A4CA-2C96C07FE8EB-2222-000001403584EB45.mov", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088952976510570506/tik_3.mp4", + "https://cdn.discordapp.com/attachments/1015471593964711946/1015474780360691833/HideousInferiorGermanshorthairedpointer1.webm", + "https://cdn.discordapp.com/attachments/545407347103760392/1115633624537112576/Insert_your_face_between_my_milf_tits_1420tum.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/912431938827079741/VID_20210902_115926_967.mp4", + "https://cdn.discordapp.com/attachments/295647862317121536/970944044702236702/SnappyDecisiveTuna-mobile.mp4", + "https://cdn.discordapp.com/attachments/295647862317121536/970944005460348998/redditsave.com_EnchantingWellmadeAfricanfisheagle.mp4", + "https://cdn.discordapp.com/attachments/976381363102056478/1006326457229910177/BoilingPoshMaggot.mp4.mov", + "https://cdn.discordapp.com/attachments/976381363102056478/1006326457901002893/Nhdk8Ke.mp4", + "https://cdn.discordapp.com/attachments/976381363102056478/1006553581224198234/EVA_has_published_posts_on_Osea_I_think_you_will_like_it.mp4", + "https://cdn.discordapp.com/attachments/996917127296594030/1000024059033165844/m.mp4", + "https://cdn.discordapp.com/attachments/996917127296594030/1000024058274000977/1656523075947.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1006105110776135760/ExcellentGullibleVaquita-mobile.mov", + "https://media.discordapp.net/attachments/971503325172351096/1045384767698370660/EmbellishedKosherStallion-mobile.mp4", + "https://media.discordapp.net/attachments/971503325172351096/1045384768063279214/HappyRigidBilby-mobile.mp4", + "https://media.discordapp.net/attachments/971503325172351096/1045384768390447135/BouncyEarnestShoveler-mobile.mov", + "https://media.discordapp.net/attachments/971503325172351096/1045384768763723806/39659691a.webm", + "https://media.discordapp.net/attachments/971503325172351096/1045384769149603840/brazzers_9.mp4", + "https://media.discordapp.net/attachments/971503325172351096/1045384769459994654/brazzers_15.mp4", + "https://cdn.discordapp.com/attachments/880966426930851910/900400538850562158/video0.mov", + "https://cdn.discordapp.com/attachments/880966426930851910/901604684421287946/video0_1.mp4", + "https://cdn.discordapp.com/attachments/880966426930851910/919415305850208296/funtits.mp4", + "https://cdn.discordapp.com/attachments/976381363102056478/1011779860001210558/1625071710852.webm", + "https://cdn.discordapp.com/attachments/1073583620234674238/1078383360939937812/1_6.mp4", + "https://cdn.discordapp.com/attachments/924231532665778176/947473666260746262/SnowPrudentTaruca-mobile.mp4", + "https://cdn.discordapp.com/attachments/924231532665778176/947473654554460180/CrowdedInterestingMetamorphosis-mobile.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1094520262814351380/Y1mlpJ2.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1097192706649882705/guqiworkq.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1097192617982316614/gvhbnqjeb.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1097192513988726804/ghqiwkjkeq.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1097192419583340664/ghjwq.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1097192117673136308/g687yujikl.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1097192742481826012/guqjwcnmqwc.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1097192739394834603/guiqjkdq3.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1097192715139170424/gnqcjlwkcq.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1097192710919696575/gt21yhj.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1097309551461679295/RDT_20230417_014317.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098380570922336317/DirtyVidsFH-1634613417746083842-20230311_205303-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098380484066680852/DirtyVidsFH-1640792744317669381-20230328_220729-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098380387991949432/DirtyVidsFH-1641704139028590593-20230331_102902-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098380326654464111/DirtyVidsFH-1644382780459974675-20230407_195300-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098380333654740992/DirtyVidsFH-1643786857287675904-20230406_042501-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098380370191319040/DirtyVidsFH-1642066528144072705-20230401_102903-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098380298393235486/DirtyVidsFH-1644874021928927235-20230409_042501-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098161154800488528/ltZoom67-1647504038043459588-20230416_103546-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1097250517232652380/DatingU18-1647249148570214402-20230415_174256-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1096189994835640330/mahi__si-1645066003997679618-20230409_170753-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1094723570766196796/WeLoveBoobsFH-1644906480154337280-20230409_063400-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1093648664527917188/Nippleringlover_MILF_Flashing_Huge_Pierced_Nipples_Outdoors_While_Neighbour_is_Next_Door_in_His_Garden_xHamster.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1093648078923374702/Titty_Quake_Orgasm_Free_Big_Big_Nipples_Porn_Video_93_xHamster.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1093648051815579690/Twitch_Streamer_Flashing_Huge_Big_Natural_Tits_got_Banned_xHamster.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1091312797700345897/video0_1.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1100457338575523881/RDT_20230425_191620.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1100345040670298152/received_710044600873527.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1100735426559488029/VID_20230423_235452_691.mp4", + "https://media.discordapp.net/attachments/916154358230581310/920414915032928276/IdolizedFilthyCormorant.webm", + "https://cdn.discordapp.com/attachments/1004852171365433535/1020379110595379272/discord_75.mp4", + "https://cdn.discordapp.com/attachments/1002130822519861259/1014353236985135205/qxnx4p-bba809.mov", + "https://cdn.discordapp.com/attachments/1004852171365433535/1020378694361026610/discord_80.mp4", + "https://media.discordapp.net/attachments/549161088864747523/1045164651274567811/VID_20221012_000652_051.mp4", + "https://cdn.discordapp.com/attachments/549161088864747523/1030699965435093042/How_much_attention_d...7szP9Y.mp4", + "https://media.discordapp.net/attachments/549161088864747523/925348709980569610/sAarReb.mp4", + "https://media.discordapp.net/attachments/788255806419763200/1005675434526126241/trim.17CD37C1-2E45-4E85-8DB5-7ADBDC5A7871.mov", + "https://cdn.discordapp.com/attachments/788255806419763200/996582053699133480/c69971687376041e9d2ba88f00a3ce78.webm", + "https://media.discordapp.net/attachments/997622711696244796/999292144143577108/HMD86FRUGI7ioerL.mp4", + "https://media.discordapp.net/attachments/976381363102056478/1006575639530328237/tatuada_peituda_.mp4", + "https://cdn.discordapp.com/attachments/1035448269632979026/1052065782911213618/shirtrip-1.mp4", + "https://cdn.discordapp.com/attachments/901753273722212364/920865258246119465/DASH_720.mp4", + "https://cdn.discordapp.com/attachments/921112436331909130/969712554203029524/f.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1088952263772491857/boobs_5.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1088952262375780412/boobs_2.mp4", + "https://cdn.discordapp.com/attachments/949269148343611442/976554512628215858/Brazzers_Boobs10-1.mp4", + "https://cdn.discordapp.com/attachments/949269148343611442/976554511999041546/Brazzers_Boobs64.mov", + "https://media.discordapp.net/attachments/788255806419763200/1080652386789502986/396205.mp4", + "https://cdn.discordapp.com/attachments/1099035548028510398/1105052529970118696/VID-20230417-WA00381.mp4", + "https://cdn.discordapp.com/attachments/1099035548028510398/1104732071311720508/www.douyin18_500594987603952637.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1084189547769901066/RDT_20230311_220115.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1085752149608243310/twitter_20230315_211248.mp4", + "https://cdn.discordapp.com/attachments/947851579510374400/949486377576321084/Z5JUe0n.mp4", + "https://media.discordapp.net/attachments/988851855692017670/1065117092329828402/received_1524600944559003.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1103325059017343066/IMG_20230503_170808_941.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/900439537795362876/Screenshot_20211020-184049_Snapchat.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1132574113278459974/FmMDjyzaEAIbELy.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1057802798181404773/NjeshG5Z_480p-1.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/875109629279993916/IMG_20210811_004121_460.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1069272651677319168/qc_6bkQ_nK8.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1071791530173538335/1664724450_22-vkusnosti-pro-p-amateur-breast-erotika-pinterest-27.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1088117391046758450/1679245237509.png", + "https://cdn.discordapp.com/attachments/788255806419763200/906534864700985385/20211106_092304.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1123726620029616148/Screenshot_20230629-022707_Chrome.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1070924816988774410/FoAjSd6akAENoxg.png", + "https://cdn.discordapp.com/attachments/788255806419763200/888431454395195402/E_a_cmjXIAItH7t.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1124214329642844201/RDT_20230628_101211.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1013056358238658560/unknown.png", + "https://cdn.discordapp.com/attachments/788255806419763200/871605733219794964/148755_source_1586665208.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/970357228274073620/IMG_20220501_213310_307.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1097781144306602136/IMG_20230418_101008_809.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/905274390495768617/20211102_182701.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1070438990639022110/IMG_20221211_183616_639.jpg", + "https://cdn.discordapp.com/attachments/639240784150790184/906961104209592320/c0x87m5uqzx71.gif", + "https://cdn.discordapp.com/attachments/843424104350220321/845941792200851476/video0.mov", + "https://cdn.discordapp.com/attachments/788255806419763200/1022212342387318784/IMG_2418.MOV", + "https://cdn.discordapp.com/attachments/788255806419763200/885607153996558406/RDT_20210906_0955115068157654058346716.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1001321268773126234/9Cloud.us_0007-Sexy_Boobs_8.gif", + "https://cdn.discordapp.com/attachments/788255806419763200/869974467600871504/XXE5tKZ.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1076421299599061072/cm-chat-media-video-17e2049f8-d2fd-58df-8858-bf7bb4291c884000.MOV", + "https://media.discordapp.net/attachments/920405142006816818/1041727358287216720/Jiggly.gif", + "https://cdn.discordapp.com/attachments/788255806419763200/1066895197004378182/tri.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/814535296859373568/24503707.png", + "https://cdn.discordapp.com/attachments/788255806419763200/987105133500444692/VID_20220616_231811_529.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/936331281896194048/original-juicy-boobs-looking-very-hot.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1084498762472378428/i.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/894975135969325086/RDEF2bq-xOw.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1111413233820127252/RDT_20230216_1659203430958867998470206.png", + "https://cdn.discordapp.com/attachments/788255806419763200/843393994582523924/IMG_20210516_104628.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/959914726970781726/1648843563145.jpg", + "https://cdn.discordapp.com/attachments/849298974884233276/988923084083974204/qs6ky5u49y691.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/846620213449457684/Snapchat-1653794701.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1130589802379612240/20230714_193017.jpg", + "https://media.discordapp.net/attachments/666634116149673987/1069867862090580069/lv_0_20230131143159.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1123487212198178956/VID_20230625_232713_117.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1110677050144080002/image.png", + "https://cdn.discordapp.com/attachments/788255806419763200/1128319207189262376/remix-14e1d71c-eed9-4bd0-9fb2-31ef428aa076.png", + "https://cdn.discordapp.com/attachments/1087468735507484743/1092364277903523851/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1087468735507484743/1095813430834909364/OnlyNudes.gif", + "https://cdn.discordapp.com/attachments/788255806419763200/997764943694803074/EyO0bO8VoAAFqsh.jpg_large.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/841134556328230912/20210509_190750.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1096725856807833620/20221125_091939.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1131820160991363072/VID_20230721_082117_149.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1103325046740615279/IMG_20230503_170853_456.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1129225250190655498/IMG-4982ab66ce88edd875f37bff6ac2373c-V.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1106230720420122654/IMG_20230314_150758.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/874182818371076096/bec09b6fd785c01d1c640021e02cd39e0ebf61d9.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/832571569066213386/88857.png", + "https://cdn.discordapp.com/attachments/788255806419763200/1119781265852350464/viber_image_2023-06-18_02-04-54-977.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1125506397556191282/RDT_20230703_182453.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/901472228607131668/20211022_224937.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1056309015996543117/IMG_20221224_093933_916.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/888557322559963206/05081a4265b04fb2e3dbdb5107594c9c-thumb160x220.png", + "https://cdn.discordapp.com/attachments/788255806419763200/1006080397723041903/FB_IMG_1659648989553.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/928956283606933544/IMG_20220106_034710_719.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1011788522388193290/IMG_20220824_030544_672.jpg", + "https://cdn.discordapp.com/attachments/788255806419763200/1040907604752351242/unknown.png", + "https://cdn.discordapp.com/attachments/788255806419763200/947677095755149352/678866-busty-babe-nude.jpg", + "https://cdn.discordapp.com/attachments/545407347103760392/1108143040440307762/VID_34040713_010400_281.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/885233328519774208/xhax039u5tb41.jpg", + "https://thumb-p2.xhcdn.com/a/MTsV-o9_cIU3WvbtfBNAcw/000/091/082/892_1000.gif", + "https://cdn.discordapp.com/attachments/788255806419763200/1069770279640891484/Insta_20.jpg", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334078530695339/www.3movs.com---payton-preslee-gets-facialed-after-titty-fucking_lq.mp4?ex=65c9b4ef&is=65b73fef&hm=03610d7030d6ddade59ceb2eeeff1e88780dde065f24424b294c1cc07256403e&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334155953352795/DefinitiveRightShearwater-mobile.mp4?ex=65c9b501&is=65b74001&hm=18277c783c44c4e4680ef9d774599f9ba386247688d4e04786cad10f459f3fc1&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334165495402496/discord_80.mp4?ex=65c9b503&is=65b74003&hm=0404d30ac618e36c00c6b614a99e6a182836a0c52779184f55de23d6bb67519c&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334204498223124/x7LnIOt.mp4?ex=65c9b50d&is=65b7400d&hm=0ea29e0b8229ffea96d947097bbc2e7fd981e8d8d8d69ca3f6eac282d2d6eff9&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334233078222909/www.3movs.com---jenna-j-foxx-gets-sperm-on-her-big-natural-tits_lq.mp4?ex=65c9b513&is=65b74013&hm=6be66ef3d1ba9c8a12190fd363d71feef9a28cc25a6cef805dd6494f7f00927e&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334264875229224/www.douyin18_500594987603952637.mp4?ex=65c9b51b&is=65b7401b&hm=9824834a5cf136e4a31df11e15aaec51a15690b3732b12dc07b5f725ae325d66&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334269975502898/www.3movs.com---ella-reese-got-cum-on-her-chest-after-titjob_lq.mp4?ex=65c9b51c&is=65b7401c&hm=ea39a189d1a565db382f25cb5baafa27a866e26bb8a22835bba36c9667e6140e&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334281082023966/Brazzers_Boobs64.mov?ex=65c9b51f&is=65b7401f&hm=90e9577f5f1e83ea2f5719dc0d731a7448e7d2880b54e0eff3c52062f02d7aa0&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334283825090600/www.3movs.com---gabriela-lopez-got-her-big-naturals-covered-with-jizz_lq.mp4?ex=65c9b520&is=65b74020&hm=f6b5d2129e4c54d218e839b42be25058d8061dad41450b723f90c16bce57bb32&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334289831346256/www.3movs.com---kayla-paige-got-jizz-on-her-chest_lq.mp4?ex=65c9b521&is=65b74021&hm=0c1e06ec1fbf59a89cdafde5072f675d18b7f23ba11faa51a3ae53ad194a1e30&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334320424603759/www.3movs.com---joslyn-james-gets-her-huge-boobs-fucked_lq.mp4?ex=65c9b528&is=65b74028&hm=c636eff31b23902235263128163380aa714cb7de95b3996016707716399e409e&", + "https://cdn.discordapp.com/attachments/1178802060951568555/1196334337008865330/www.3movs.com---bianca-burke-gives-blow-and-tit-jobs-to-lucas-frost_lq.mp4?ex=65c9b52c&is=65b7402c&hm=cda6af87c16d19dc9ec248c60aa411ef3e23b55af2f938fb6d86069baff35c8c&" +] \ No newline at end of file diff --git a/src/storage/nsfw/cosplay.json b/src/storage/nsfw/cosplay.json new file mode 100644 index 0000000..e82d240 --- /dev/null +++ b/src/storage/nsfw/cosplay.json @@ -0,0 +1,120 @@ +[ + "https://cdn.discordapp.com/attachments/912913775437447178/914127383076962364/BrilliantCreamyHalibut-mobile-1.mp4", + "https://media.discordapp.net/attachments/867228175938224198/1063876009541238894/DASH_480.mp4", + "https://cdn.discordapp.com/attachments/764396489916284939/1035572918635221053/VID_20221028_180820_471.mp4", + "https://cdn.discordapp.com/attachments/764396489916284939/1066319631318532116/trim.002725B9-71A2-4A83-B1A5-E552EE2D51F3.mp4", + "https://cdn.discordapp.com/attachments/764396489916284939/1066144499430084699/Vid_13.MP4", + "https://cdn.discordapp.com/attachments/764396489916284939/1065582259039649833/edZ9RyVdNsqJXG0X.mp4", + "https://media.discordapp.net/attachments/673495118388396058/995142893033504778/video-a32ed64ceb25374153efe73d88ab8f8b-V.mp4", + "https://video-cdn3.gelbooru.com/images/75/13/751362faadb750081b3b4a8f1dd20125.mp4", + "https://media.discordapp.net/attachments/673495118388396058/992944365129437314/DevotedHardBison-mobile.mp4", + "https://media.discordapp.net/attachments/673495118388396058/1037102575012556851/974717.mp4", + "https://media.discordapp.net/attachments/673495118388396058/1037102575801094194/1104723.mp4", + "https://media.discordapp.net/attachments/673495118388396058/1030699621745438800/Smart_girls_can_be_t...jE6uDA_1.mp4", + "https://media.discordapp.net/attachments/673495118388396058/1037102574693785620/1029817.mp4", + "https://media.discordapp.net/attachments/673495118388396058/1038311455998611568/viddit_e781ec02.mp4", + "https://media.discordapp.net/attachments/899763415508221985/1016177026530557972/redditsave.com_DASH_1080.mp4", + "https://media.discordapp.net/attachments/673495118388396058/1038311416333095022/viddit_3efe8e52.mp4", + "https://media.discordapp.net/attachments/673495118388396058/1034549756971724922/Halloween_is_coming_...EZeNvw.mp4", + "https://media.discordapp.net/attachments/673495118388396058/1037819987525640342/SuccuNess_has_come_f...MHMAiV.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/834925374847844402/video0.mp4", + "https://cdn.discordapp.com/attachments/915340209040793620/1092396322260267069/aucun_respect_pour_le_costume.mp4", + "https://media.discordapp.net/attachments/446787010196275200/1015918886639640657/margpawg.mp4", + "https://cdn.discordapp.com/attachments/620754213462474752/961414238310633483/PleasantSiennaNoddy-mobile.mp4", + "https://media.discordapp.net/attachments/620754213462474752/961414224737882152/unknown-2.jpg", + "https://media.discordapp.net/attachments/620754213462474752/961414224955977819/unknown.jpg", + "https://media.discordapp.net/attachments/620754213462474752/961414225136336926/unknown-1.jpg", + "https://cdn.discordapp.com/attachments/979103092266123264/1017909474683523172/i-didnt-see-this-naruto-episode-1qkr76qd3z.mp4", + "https://cdn.discordapp.com/attachments/1043265990521266197/1043591821730783252/UnpleasantThreadbareSable-mobile.mp4", + "https://cdn.discordapp.com/attachments/764396489916284939/1013298839270199316/InsistentWarlikeHammerheadbird-mobile.mp4", + "https://media.discordapp.net/attachments/764396489916284939/1097186693766992096/gtgyhjn.mp4", + "https://media.discordapp.net/attachments/764396489916284939/1096938749495099422/444.mp4", + "https://media.discordapp.net/attachments/764396489916284939/1099369373879242893/241-s.mp4", + "https://media.discordapp.net/attachments/764396489916284939/1099941521496743966/edZ9RyVdNsqJXG0X.mp4", + "https://el.phncdn.com/pics/gifs/040/712/391/40712391a.webm", + "https://el.phncdn.com/pics/gifs/036/356/601/36356601a.webm", + "https://el.phncdn.com/pics/gifs/038/092/441/38092441a.webm", + "https://media.discordapp.net/attachments/1063754458976243772/1063773620008144936/InsistentWarlikeHammerheadbird-mobile.mov", + "https://media.discordapp.net/attachments/620754213462474752/963672667402166322/IMG_20220311_153500.jpg", + "https://media.discordapp.net/attachments/620754213462474752/963672667695755294/IMG_20220311_153247.jpg", + "https://media.discordapp.net/attachments/620754213462474752/963672667913850890/IMG_20220310_231237.jpg", + "https://media.discordapp.net/attachments/620754213462474752/963672668199067678/IMG_20220310_231232.jpg", + "https://media.discordapp.net/attachments/620754213462474752/963672668463300668/IMG_20220311_154654.jpg", + "https://media.discordapp.net/attachments/620754213462474752/963672668740149328/IMG_20220211_104736.jpg", + "https://cdn.discordapp.com/attachments/899763415508221985/1066487739245154395/BlankGlossyWhimbrel.mp4", + "https://cdn.discordapp.com/attachments/764396489916284939/825178658540355604/unknown.png", + "https://cdn.discordapp.com/attachments/764396489916284939/1001537939068698674/IMG_20220726_191338_809.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1047469870931005460/IMG_20221130_164049.jpg", + "https://cdn.discordapp.com/attachments/523353876166869003/1086342938101043241/FrQQSceaAAI_yJx.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1054388387211124746/IMG_20220713_140544.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/816579352053415936/003_0373_Azurlanei_Bunny_suit_0003.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/913571958828969994/20211126_062548.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/912199009983139870/258736052_3019259581646199_1854165524179618098_n.jpg", + "https://cdn.discordapp.com/attachments/516203088458153994/1099520884269658173/FuDkfl4aMAABMmC.png", + "https://cdn.discordapp.com/attachments/764396489916284939/1062249568600862741/20230110_000705.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1094219917315813416/IMG_20230408_141024_462.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1118447243641507861/Hidori_Rose_-_Shinobu_Kocho_Bunny_Suit_30.png", + "https://cdn.discordapp.com/attachments/764396489916284939/1054094869792047134/-5352918123436686802_121.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/854357054012784670/670e39a865e6fb9537f1ce4e3562dba1.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1108417017842770041/IMG_20230517_175907_292.jpg", + "https://cdn.discordapp.com/attachments/620754213462474752/1119990123837259897/wallhaven-l3rpep.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1095650506451472454/1_pic_8.JPG", + "https://cdn.discordapp.com/attachments/764396489916284939/925932435135397926/a014ade7-ec94-493a-8bc5-409d69b6baf6.jpeg", + "https://cdn.discordapp.com/attachments/764396489916284939/850048988513304658/2731180_-_Bryci_Rey_Star_Wars_The_Force_Awakens_cosplay.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/940927869255843940/IMG_20220209_125106_565.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/952895920800948234/unknown.jpeg", + "https://cdn.discordapp.com/attachments/764396489916284939/825158363775369287/unknown.png", + "https://cdn.discordapp.com/attachments/764396489916284939/990398908972810260/AtkDrOZpGY8.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1054146476453924934/FkRgnImakAASViB.png", + "https://cdn.discordapp.com/attachments/764396489916284939/1020018658677899334/54e4fea2-3f00-4d00-b9bd-98b5774f6176.webp", + "https://cdn.discordapp.com/attachments/764396489916284939/1130003834282967050/74720211239545792008761329947136512060.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1117921114648227941/IMG_20230612_235812_075.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/816579371573051401/005_0375_Azurlanei_Bunny_suit_0005.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1108834093174624298/jCAD-9SxK0.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/790266104421285888/Marina-Mui-Nude-Hinata-Hyuga-19.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1008775872867733634/RDT_20220814_1810374103095472319923870.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/828933599420088330/Azami_-_Super_Sonico_4.JPG", + "https://cdn.discordapp.com/attachments/764396489916284939/956408608873123850/SpankBang.com_dvatiktokblowjob_480p.mp4", + "https://cdn.discordapp.com/attachments/764396489916284939/1122969992107933878/RDT_20230627_011753554120132144102543.jpg", + "https://cdn.discordapp.com/attachments/620754213462474752/1094014314605719562/Victoria_185.jpg", + "https://cdn.discordapp.com/attachments/620754213462474752/1101583384280576140/31101281_007_7b9a.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1083112993954463855/IMG_20230308_214131_815.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/904845195240161350/IMG_20211021_233212_761.jpg", + "https://cdn.discordapp.com/attachments/523353876166869003/1096456572240134266/FtnlG-TWYAA1EoY.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1118446656405389342/Hidori_Rose_-_Shinobu_Kocho_Bunny_Suit_13.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1113879592386691133/Screenshot_2023-06-01-20-19-17-08_1c337646f29875672b5a61192b9010f9.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1121444705650081924/image0.png", + "https://cdn.discordapp.com/attachments/764396489916284939/843444120462950430/NvIKH4S3WCc.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/913840728399024219/47_ShiroKitsune_Rosaria_47.jpg", + "https://cdn.discordapp.com/attachments/620754213462474752/1119994869360902295/jgsbpnjpnf1b1.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/828960512012189736/ShiroKitsune_-_2B_Cheongsam_28.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/905317859025121300/IMG_20211102_172124_812.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1119086383605231636/IMG_20230616_045818_120.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1078248278363213905/w_pe6vXPSak.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1109040692149354576/VideoStar.mp4", + "https://cdn.discordapp.com/attachments/764396489916284939/1112795363053666314/cyberkitty_cosplay2.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/842529720771674122/IMG_20210514_012841_398.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1000212937920745502/kpfEVXy7E6o.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1119761221231595531/image.png", + "https://cdn.discordapp.com/attachments/764396489916284939/903416494963163216/49.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1125711257090129991/IMG_20230610_160956_313.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1111349953709756456/image.png", + "https://cdn.discordapp.com/attachments/764396489916284939/1113849578412855450/IMG_20230601_074739.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1121758680724029440/76790735_002_14e2.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1116152856471404625/Nico_Robin_1.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/979375196098154578/RDT_20220526_1022275511152872648718148.jpg", + "https://cdn.discordapp.com/attachments/523353876166869003/1100876054572306542/IMG_20230423_031456_653.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/869446232966303784/IMG_20210726_203644.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1124440974903476308/IMG_20230630_194430_226.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1095650971725602836/5qf6wdzaxpyOywwc.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/917229929249271808/indomaret_nino.jpeg", + "https://cdn.discordapp.com/attachments/764396489916284939/878329404743356436/1589548461228468696.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/928424176962904084/FCAWgrIVQAAMMhO.png", + "https://cdn.discordapp.com/attachments/764396489916284939/828960515170238504/ShiroKitsune_-_2B_Cheongsam_30.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/903257740196081664/aff673a.png", + "https://cdn.discordapp.com/attachments/764396489916284939/825159777595686942/unknown.png", + "https://media.discordapp.net/attachments/549907740684713985/868321385972400208/Azami-Albedo-7.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/999372668342108301/unknown.png", + "https://cdn.discordapp.com/attachments/516203088458153994/1098954844401827860/facebook_1682081636883_7055161737906666673.jpg", + "https://cdn.discordapp.com/attachments/764396489916284939/1109554951442661386/IMG_20230520_020341.jpg" +] \ No newline at end of file diff --git a/src/storage/nsfw/cum.json b/src/storage/nsfw/cum.json new file mode 100644 index 0000000..0dfe4c9 --- /dev/null +++ b/src/storage/nsfw/cum.json @@ -0,0 +1,701 @@ +[ + "https://cdn.discordapp.com/attachments/786127715769909249/903031412880441404/VID_20211028_002332_265.mp4", + "https://cdn.discordapp.com/attachments/876734202802995221/887152150000578570/CumBlastCity_Cumshot_Compilation_-_XVIDEOS_com1.mp4", + "https://cdn.discordapp.com/attachments/902282394919391293/1050572215294369873/sssscs.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/864984299764580429/video_2021-06-14_19-38-27.mp4", + "https://cdn.discordapp.com/attachments/847840869138169866/863052312427233360/ImpoliteQuerulousBittern-mobile.mp4", + "https://cdn.discordapp.com/attachments/847840869138169866/863029785172115476/video0_3.mp4", + "https://cdn.discordapp.com/attachments/764337208844222525/996443156121931776/Cim.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999988052162256996/SexHouseCreampie_73.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104031956867498165/RDT_20230505_151521.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104530231001354331/AA_BG.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104668284470689834/7G23wXVq-N-BuUeZ.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104701216451207288/yuzune_boslo3.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104701216908398672/SophisticatedCourteousLhasaapso.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104701218409947226/swi7yp-39c325.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104701374656159784/viddit_508439b2.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104701377017544734/viddit_1d54e876.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104701432147497001/viddit_fd9fbe3c.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104701433791643748/viddit_f42bbf9a.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104794139297579048/1648725938582-1.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104883560743178322/aYDQHvFMO8mMUDjH.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1104973322845962340/nj42K7sK_720p.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1105108345347649586/MediumslateblueGoldMadagascarhissingroach.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1105238936932057099/2_5323577208516650223.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1106545566298689607/OvercookedEuphoricBasilisk-mobile_1.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1106853121201819708/EvenDetailedGilamonster-mobile.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1105380978853171230/1636720559019.webm", + "https://cdn.discordapp.com/attachments/794096059664171028/1107604290341707776/43045911a.webm", + "https://media.discordapp.net/attachments/794096059664171028/1104816244055609365/VID_20220613_002208_417.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1074648819867861032/Brazzers_Cumshot.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1107601761566466138/RDT_20230515_142950.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1104074618588901447/Brazzers_cum-11-1.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1104058341094854696/35.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1102639214828466298/WarpedFullGuanaco.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1102639215331791039/IMG_7907.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1102638227699027988/1641037930346.webm", + "https://cdn.discordapp.com/attachments/1092201049336578149/1102638119347552297/BlanchedalmondDimgreyAmurstarfish-mobile.mp4.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1099484642328985600/20230325_080239_1.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096197053698285750/discord_gg_themis_cum_22.webm", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096197054159654973/discord_gg_themis_cum_11.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096196921531568188/discord_gg_themis_cum_55.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096196922399793162/discord_gg_themis_cum_71.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096196922852790312/discord_gg_themis_cum_30.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096196923398033459/discord_gg_themis_cum_37.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096196923892965426/discord_gg_themis_cum_78.mov", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096196924371128453/discord_gg_themis_cum_47.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096196924895404143/discord_gg_themis_cum_51.mov", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096195762217553930/discord_gg_themis_cum_32.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096195557762019469/discord_gg_themis_cum_48.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096195558277906522/discord_gg_themis_cum_60.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096194578815664238/discord_gg_themis_cum_46.webm", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096194579289616554/discord_gg_themis_cum_35.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096194579675480225/discord_gg_themis_cum_75.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096194469830873108/discord_gg_themis_cum_25.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096194470204157962/discord_gg_themis_cum_53.webm", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096194470757793933/discord_gg_themis_cum_34.mov", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096194471198208090/discord_gg_themis_cum_79.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096194141827907714/discord_gg_themis_cum_56.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096194142377349120/discord_gg_themis_cum_57.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096194143186866206/discord_gg_themis_cum_70.mov", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193991382413472/discord_gg_themis_cum_80.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193991873151016/discord_gg_themis_cum_68.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193888160587846/discord_gg_themis_cum_72.mov", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193888575815862/discord_gg_themis_cum_21.mov", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193879243489280/discord_gg_themis_cum_66.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193879608402030/discord_gg_themis_cum_73.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193858590740571/discord_gg_themis_cum_29.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193859102453950/discord_gg_themis_cum_49.mov", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193859614167050/discord_gg_themis_cum_58.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193860230721596/discord_gg_themis_cum_33.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193860616589422/discord_gg_themis_cum_18.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193531619577896/discord_gg_themis_cum_76.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193532076752966/discord_gg_themis_cum_59.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193532697514145/discord_gg_themis_cum_50.mov", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193533066608771/discord_gg_themis_cum_65.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193494407725076/discord_gg_themis_cum_67.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193491572367462/discord_gg_themis_cum_62.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193485700346006/discord_gg_themis_cum_26.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193486279147610/discord_gg_themis_cum_52.mov", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193486656647348/discord_gg_themis_cum_63.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1096193487055098026/discord_gg_themis_cum_36.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1095314845240406036/20220829_0605065.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1095314846137987092/video-1.mp4", + "https://cdn.discordapp.com/attachments/1092201049336578149/1095314846708408340/CumInMouth1-1.mp4", + "https://media.discordapp.net/attachments/959884126373167144/1098604565634490449/gordugum_en_guzel_bosalma.mp4", + "https://media.discordapp.net/attachments/959884126373167144/1098604579089825792/miafitz_sut_iciyo.mp4", + "https://media.discordapp.net/attachments/959884126373167144/1096139763943231508/spermparty.mp4", + "https://media.discordapp.net/attachments/959884126373167144/1094368148192497724/sikimartikkalkmiyoyardimedin.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1021974337735102515/cee5c2_8185336_1.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1021296847559598110/671414060988959327.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1021247213827006554/fingering_20.mp4", + "https://media.discordapp.net/attachments/786125649232003072/1015555098803441724/1655830711505.webm", + "https://cdn.discordapp.com/attachments/1054201930886426734/1056756288907907092/Screenshot_20221226-074735_Instagram.png", + "https://cdn.discordapp.com/attachments/1054201930886426734/1056780969690017833/PornTurkeyFeet_13.mp4", + "https://cdn.discordapp.com/attachments/1054201930886426734/1056780970549846066/PornTurkeyFeet_8.mp4", + "https://cdn.discordapp.com/attachments/1054201930886426734/1056780971527114822/PornTurkeyFeet_10.mp4", + "https://cdn.discordapp.com/attachments/1054201930886426734/1056780984277811241/PornTurkeyFeet_7.mp4", + "https://cdn.discordapp.com/attachments/1054201930886426734/1056780985951338527/PornTurkeyFeet_4.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1056622281960468561/VID_20221226_001851_095.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1056553636576108594/video_2022-12-22_16-39-12.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1056464457859092520/k-358047768247279617.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1056459403169120256/LawfulPresentAfricanmolesnake-mobile.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1056444421983449149/44VIAPa.mp4", + "https://cdn.discordapp.com/attachments/971503496815865866/998398264900583504/cumtycoonwhy_7.mp4", + "https://media.discordapp.net/attachments/1023544799288111205/1030838890661167155/MenacingRelievedZooplankton-mobile.mp4", + "https://cdn.discordapp.com/attachments/1004852465709101157/1020380460448223282/discord.ggssex_10.mov", + "https://cdn.discordapp.com/attachments/1004853454059094036/1020329459380920370/discord.ggssex_25.mp4", + "https://cdn.discordapp.com/attachments/1004852465709101157/1020380301463146516/discord.ggssex_50.mp4", + "https://media.discordapp.net/attachments/878002095163314196/896924742416752690/15.webm", + "https://media.discordapp.net/attachments/979103092266123264/1019070865494782022/DependentDistortedInchworm.webm", + "https://cdn.discordapp.com/attachments/840021281964425236/895624037902991391/ImportantPointlessParakeet-mobile.mp4", + "https://media.discordapp.net/attachments/998331825904701496/1014694177969295390/SEXHAUSE_Cum26.mp4", + "https://media.discordapp.net/attachments/998331825904701496/1004412128440111115/SEXHOUSE_cum35.mp4", + "https://media.discordapp.net/attachments/998331826433171508/999629118301806592/SEXHOUSE_HandJop2.mp4", + "https://media.discordapp.net/attachments/998331826433171508/999629062165250058/SEXHOUSE_HandJop4.webm", + "https://cdn.discordapp.com/attachments/1023545122488598538/1037463982098890895/KnobbyBrightAsianelephant-mobile.mp4", + "https://media.discordapp.net/attachments/998331826433171508/999628999762395146/SEXHOUSE_HandJop6.mp4", + "https://media.discordapp.net/attachments/840021281964425236/1053521372292325467/Video.mp4", + "https://cdn.discordapp.com/attachments/1093554784746868898/1094209800323223592/hardcore_3.mp4", + "https://cdn.discordapp.com/attachments/1004852465709101157/1020375657844310187/discord.ggssex_18.mp4", + "https://media.discordapp.net/attachments/1040314941246275624/1069884993247129630/FrillyWatchfulLungfish-mobile.mov", + "https://cdn.discordapp.com/attachments/510589886932451348/1113752511959019581/eva_elfie_1.webm", + "https://cdn.discordapp.com/attachments/1073583648588181604/1073683254793752668/SexHouseCum34.mov", + "https://cdn.discordapp.com/attachments/840021281964425236/973631599331639336/3105aa8e2473c64a42b5ff42c0324cfd.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620888574800002/OnlyGods_3.mov", + "https://cdn.discordapp.com/attachments/1091500370439721020/1093521875537235998/OnlyNudes.mp4", + "https://media.discordapp.net/attachments/794096059664171028/1053888733574873198/VID_20220318_113030_913_1.mp4", + "https://cdn.discordapp.com/attachments/976381345045565450/1009589543697125416/yjXtCi7-1.mp4", + "https://cdn.discordapp.com/attachments/976381345045565450/1009589055421423698/9g56aha758891.mp4", + "https://cdn.discordapp.com/attachments/976381345045565450/1008668093616238633/video0-7.mp4", + "https://cdn.discordapp.com/attachments/976381345045565450/1007787205487493120/DisguisedHardKingsnake-mobile.mp4", + "https://cdn.discordapp.com/attachments/976381345045565450/1007787205009363135/503e5d39ce96adc4a43b706817703a46L810970.webm", + "https://cdn.discordapp.com/attachments/997622762543779861/1004899859054211184/video0-1.mp4?size=4096", + "https://cdn.discordapp.com/attachments/794096059664171028/807746757345673236/Video_20.02.18_18_49_29.mp4", + "https://media.discordapp.net/attachments/785000532254130186/1006586888498466898/2021-12-11_-_Greatessentialgalapagossealion_Mobile.mov", + "https://media.discordapp.net/attachments/988851855310331928/1070911030743543858/AnotherBlondSiskin-mobile.mov", + "https://media.discordapp.net/attachments/794096059664171028/1095676871640895518/Kw6AJ-Pr3VUpZe52.mp4", + "https://media.discordapp.net/attachments/794096059664171028/1099407451792625664/InShot_20230315_184037396.mp4", + "https://media.discordapp.net/attachments/976381345045565450/1095506338097938553/she-drains-my-bfs-cock-like-a-pro-f09f92a6f09f988b.mp4", + "https://media.discordapp.net/attachments/976381345045565450/1095505748743700630/video0-12.mp4", + "https://media.discordapp.net/attachments/976381345045565450/1095501697838747749/Video_2.mov", + "https://cdn.discordapp.com/attachments/1048388585268707328/1098933412150136862/RDT_20230421_071954.mp4", + "https://media.discordapp.net/attachments/763860707544137759/991564391889784883/lBr7xD4eOkuWkUhV.mp4", + "https://cdn.discordapp.com/attachments/1040518880503812106/1040612490540765194/fuckingamteur.mov.mp4", + "https://cdn.discordapp.com/attachments/884152591141965824/987257815326412800/DiscreteExcellentUnicorn-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639612639105085/LightcyanDependentIbadanmalimbe-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639613075292210/ObviousSillyTerrier-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639664707194961/HideousInternalPolyp-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639665034334239/IndolentHeavyWoodborer-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639665793519616/JointSaneZebraswallowtailbutterfly-mobile.mp4", + "https://media.discordapp.net/attachments/763860707544137759/1100954507661291580/iK9Nl1o.mp4", + "https://media.discordapp.net/attachments/978639868777336902/999302316941381672/V-8fo2vU0chHndqd.mp4", + "https://media.discordapp.net/attachments/978639868777336902/999302366757126194/BoilingFelineGuillemot-mobile.mp4", + "https://media.discordapp.net/attachments/978639868777336902/999302373778411550/fsqwq4.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966784001069162626/Brazzers_Facesitting_36.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966784009902379058/Brazzers_Facesitting_38.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966784017846378586/Brazzers_Facesitting_1.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517315467817040/BEST_SEX_1.mov", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517313739763842/BEST_SEX_1.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517322329698504/BEST_SEX_5.mov", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517320194789426/BEST_SEX_12.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517320563900527/BEST_SEX_13.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517321222402088/BEST_SEX_14.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517326259757207/BEST_SEX_11.mp4", + "https://cdn.discordapp.com/attachments/969279996805939260/975470702847197324/RFSfeet4.mp4", + "https://cdn.discordapp.com/attachments/969279996805939260/975476424305680394/RFSfeet3.mp4", + "https://cdn.discordapp.com/attachments/969279996805939260/975483279702634536/RFSfeet2.webm", + "https://media.discordapp.net/attachments/975394785433108510/1006143562255192084/1657985037603.mp4", + "https://media.discordapp.net/attachments/975394785433108510/1006143569159000144/1657285762972.mp4", + "https://media.discordapp.net/attachments/975394785433108510/1006143577123983441/1657331614137.mp4", + "https://cdn.discordapp.com/attachments/969279996805939260/975471179093639168/RFSfeet6.mp4", + "https://media.discordapp.net/attachments/832658295339876362/1015789303198126222/trim.59F7E05D-06A2-4BB1-8AC8-3D47B82DFD36.mov", + "https://media.discordapp.net/attachments/829124344985944075/1015728918118015116/VID_20220820_170322_399.mp4", + "https://cdn.discordapp.com/attachments/969279996805939260/977967000318017546/rfsfeet5.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020899/1079031937152339968/BEST_SEX_11.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020899/1079031935633985688/BEST_SEX_8.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020899/1079031935046787092/BEST_SEX_1.mov", + "https://cdn.discordapp.com/attachments/902435785805013062/902442495080792084/SPOILER_3_1.mp4", + "https://cdn.discordapp.com/attachments/979103092266123264/1015769452257742938/RedThickNewtnutria-mobile.mp4", + "https://cdn.discordapp.com/attachments/884802196573679706/885739333968093264/Catching_my_Slutty_Step_Sister_Lulu_Chu_trying_to_Sneak_out_of_the_House.mp4", + "https://el.phncdn.com/pics/gifs/035/866/411/35866411a.webm", + "https://el.phncdn.com/pics/gifs/021/025/311/21025311a.webm", + "https://cdn.discordapp.com/attachments/794096059664171028/891493341500432394/video0-5.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/893759804294725672/ahaj.mp4", + "https://cdn.discordapp.com/attachments/838649491237109790/864526449377542184/VID_20210617_192432_548.mp4", + "https://cdn.discordapp.com/attachments/838649491237109790/838649547714592818/MundaneIroncladEyra-mobile.mp4", + "https://cdn.discordapp.com/attachments/794096059664171028/1068444922899869706/42741501a.webm", + "https://media.discordapp.net/attachments/976381345045565450/1005886606726668359/MulticoloredIdolizedMetamorphosis.mp4", + "https://cdn.discordapp.com/attachments/1040314941246275624/1059588013711175801/cm.mp4", + "https://media.discordapp.net/attachments/794096059664171028/1099679536532168744/VID_20230423_155353_915.mp4", + "https://media.discordapp.net/attachments/794096059664171028/1100893404134649966/I_had_to_give_this_little_slut_a_facial_-_Cum_Licking_GIFs___MOTHERLESS_COM_TM__Original.mp4", + "https://media.discordapp.net/attachments/794096059664171028/1101059438539972618/1663444227730090.webm", + "https://media.discordapp.net/attachments/794096059664171028/1095676873092120636/EyBYFY7kZYKEETwE.mp4", + "https://media.discordapp.net/attachments/794096059664171028/1095676872429424660/u5DIMJTIjbr3u83-.mp4", + "https://media.discordapp.net/attachments/794096059664171028/1095676871045300364/P71O5lVv_GUPfhH8.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1097629132227100692/Pixei_Videos_83.mp4", + "https://media.discordapp.net/attachments/764337208844222525/1096536624982130768/gMPSVm9.mp4", + "https://media.discordapp.net/attachments/794096059664171028/1096935647639523348/video02.mp4", + "https://media.discordapp.net/attachments/1004412043266375802/1004416429581418556/HideousPlaintiveNurseshark-mobile.mp4", + "https://cdn.discordapp.com/attachments/979103092266123264/1019070865494782022/DependentDistortedInchworm.webm", + "https://media.discordapp.net/attachments/975396845025112094/999215370256793600/FluffySecondhandGoral-mobile.mov", + "https://media.discordapp.net/attachments/794096059664171028/827648022879010876/video0.mp4", + "https://media.discordapp.net/attachments/973985883118272512/983486774007463936/Qmqfmwi.mp4", + "https://media.discordapp.net/attachments/976381345045565450/978379968180543518/video.mp4", + "https://cdn.discordapp.com/attachments/847840869138169866/863026013881106442/Belle_Delphine_All_Sextape__Nudes_Video_2.mov", + "https://cdn.discordapp.com/attachments/847840869138169866/863033974238740510/video0_2.mp4", + "https://cdn.discordapp.com/attachments/847840869138169866/863052089793445958/ConventionalDecimalDutchshepherddog-mobile.mp4", + "https://cdn.discordapp.com/attachments/847840869138169866/863023157849882634/video_2021-04-19_02-19-18.mp4", + "https://cdn.discordapp.com/attachments/510589886932451348/1089089036708229232/HarmoniousSelfreliantAttwatersprairiechicken.mp4", + "https://cdn.discordapp.com/attachments/510589886932451348/1088657410685685770/8dn3NRU.mp4", + "https://cdn.discordapp.com/attachments/510589886932451348/1088657210139226132/PointlessHideousLemming-mobile.mp4", + "https://cdn.discordapp.com/attachments/547899442141855765/668274029056098325/video0.mov", + "https://cdn.discordapp.com/attachments/545855252910440448/910522889730658324/Kyler_Quinn.mp4", + "https://cdn.discordapp.com/attachments/783048916866170910/1042420790932553758/RightHighlevelDrongo.mp4", + "https://cdn.discordapp.com/attachments/783048955327938600/1071739063947767888/TwinLegalFlyingfox-mobile.mp4", + "https://cdn.discordapp.com/attachments/783048955327938600/1071152784168189972/PurpleVisibleMountainlion-mobile.mp4", + "https://cdn.discordapp.com/attachments/541316189293641778/1090289305202725036/lv_0_20230318092509.mp4", + "https://cdn.discordapp.com/attachments/510589886932451348/1090046565286166559/8o5PKDT.mp4", + "https://cdn.discordapp.com/attachments/510589886932451348/1089220511877312512/SAzbCUQ.mp4", + "https://cdn.discordapp.com/attachments/510589886932451348/1092774318095732777/rKx7D9b.mp4", + "https://cdn.discordapp.com/attachments/510589886932451348/1092515225011507210/yW3hNJ9e0vPSmYJE.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/957698725608849498/ezgif.com-gif-maker.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/945600133091971082/1632539159617.webm", + "https://cdn.discordapp.com/attachments/785000532254130186/1021377976077656144/CreampieChantalDanielle.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1045680462200316004/F4yb3aq5T18bIfDO.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/996891561629593610/a387a658-ede0-4c54-8763-849656837e77.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1116479481910153258/white.mp4", + "https://media.discordapp.net/attachments/510245922739847179/1057108075519156354/image0-1.jpg", + "https://cdn.discordapp.com/attachments/1089812254091907072/1090450267142631465/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/785000532254130186/1128425279707156560/qXv_AHobQqUO08WT.mp4", + "https://cdn.discordapp.com/attachments/997583549362348102/999042022180671578/video0_6.mov", + "https://cdn.discordapp.com/attachments/785000532254130186/1130463928632217780/discord.gg-pantyhose_2.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/978949819815059496/PullCream.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/996941799916568658/creampie.mov", + "https://i0.nekobot.xyz/4/1/8/911278afaf0a3ce354dc0f2b061a8.gif", + "https://cdn.discordapp.com/attachments/1089812254091907072/1090450069737705493/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/785000532254130186/1123240248663609415/xvideos.com_edc15a57f5d4238d696f809b2a066fd7_1.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1023722261984858213/Brew.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1089128128015765575/1ODiAHZ.mp4", + "https://media.discordapp.net/attachments/785000532254130186/919721224169472080/chubby-creampie-gif-2.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/964035337145950268/video0-4-2.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1041442765139103854/8pBEOS8EiUvuEgEr.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/862761581649461279/1789.mp4", + "https://media.discordapp.net/attachments/785000532254130186/1044006052506640474/WiQyDh5.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/902632488902459432/VID_20211026_200615_240.mp4", + "https://media.discordapp.net/attachments/1020002212266647594/1020361450746822717/7ee3b156b3bb220781cbd9242418f.gif", + "https://media.discordapp.net/attachments/785000532254130186/1062009425084284969/VID_20230109_160429_626.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/950603688844599306/RPMvEeoywJI2Xm4.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1062217995809734756/Video-2.mp4.mov", + "https://cdn.discordapp.com/attachments/785000532254130186/1046481285373235351/IMG_20221127_225926_365.jpg", + "https://cdn.discordapp.com/attachments/510245922739847179/858786704176578590/image.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/818314543502983168/961_1000.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1023722277688311928/oeo.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/976763285523271731/Sorbetero_sa_Umaga_Buntisero_sa_Gabi.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1012090923846471842/ShortJointArizonaalligatorlizard-mobile_1.mp4", + "https://cdn.discordapp.com/attachments/1033101518284542013/1056762252675526686/VID_20210930_010216_124.mp4", + "https://cdn.discordapp.com/attachments/1089812254091907072/1092350942382403676/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1053805264773582888/55e9e030-c249-4bd8-ad36-3d75b08c03b4.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/864193639516340264/zxcz.mp4", + "https://cdn.discordapp.com/attachments/1089812254091907072/1090450434684108870/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/921684449794596874/twitter_20211213_165845.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/827656815025193010/image0.jpg", + "https://cdn.discordapp.com/attachments/783054673527177216/952376580473258054/nYZfpyPElFlMTusu.mp4", + "https://cdn.discordapp.com/attachments/1178802159047942255/1196336602138542110/2022-01-18_2334352002-ABUL6f7N.mp4?ex=65c9b748&is=65b74248&hm=a4c49840d10fa40b95563d63d154664f4f206b92185372bbcf885fe4bd4a7b50&", + "https://cdn.discordapp.com/attachments/1178802159047942255/1196336613312172202/video_23110-06-2022_09-39-56.mp4?ex=65c9b74b&is=65b7424b&hm=a783cbcba5530f3cbb65dc5bc7b94ce8e13490be05cf26b65e98ad9c9c028fb5&", + "https://cdn.discordapp.com/attachments/1178802159047942255/1196336642328379533/RDT_20230719_130358.mp4?ex=65c9b752&is=65b74252&hm=311045fdd38be083b94489f039bd19d6d5d235e02b0c6beb9605aa8c4fd07a4c&", + "https://cdn.discordapp.com/attachments/1178802159047942255/1196336676751032331/discord.ggssex_25.mp4?ex=65c9b75a&is=65b7425a&hm=6ca50d50d32843e08801de636131898d66a0e0a470f4ab33b69ea0ca0a6d101c&", + "https://cdn.discordapp.com/attachments/1178802159047942255/1196336697533800449/VID-20210721-WA0006_1.mp4?ex=65c9b75f&is=65b7425f&hm=1f9ec005888681a3b2bcda2dd24f8ce0f8212a3251465fab39180d7763ad1d57&", + "https://cdn.discordapp.com/attachments/1178802159047942255/1196336705536544778/video0_10.mp4?ex=65c9b761&is=65b74261&hm=f77207855912288c6cfb8fa045e306926f1b1ea8d5f9acc92121321fe7381ce1&", + "https://cdn.discordapp.com/attachments/1178802159047942255/1196336725849550938/VID-20210721-WA0006.mp4?ex=65c9b766&is=65b74266&hm=0b12d0fb140ad5fd00912d57c5b6144accebcdfb21624d2d0f704e8ba27b3450&", + "https://cdn.discordapp.com/attachments/1178802159047942255/1196336729280491560/RDT_20230614_011005.mp4?ex=65c9b767&is=65b74267&hm=6db0b151fc41500ba546f80ee49dd531927f4141da1479feb42b46e6a8c46d44&", + "https://cdn.discordapp.com/attachments/1178802159047942255/1196336732514299944/discord.ggssex_50.mp4?ex=65c9b767&is=65b74267&hm=ef51c24f36c438292d3ea882791a2896fef4af624507affa6d3fb925384ed58f&", + "https://cdn.discordapp.com/attachments/1178802159047942255/1198749753706561706/Nastu_bez_stanika1.mov?ex=65c94434&is=65b6cf34&hm=5635c3bc291a959af2cd650a5e4d0d0aca2f50224fb12482640c01cf71baa08d&", + "https://cdn.discordapp.com/attachments/510245922739847179/1131931774860148837/VID_20230721_025210_184.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1131648522467430440/Snapchat-1367426682.mp4", + "https://media.discordapp.net/attachments/488420860194193429/1130988243119251468/Rissa-Learning-The-Hard-Way-1080p_1.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1129323602668429372/RDT_20221214_131655.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1129309958249394257/1105067.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1129237078065020948/RDT_20230713_085906.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1128964824299208804/70036379_026_4dee.jpg", + "https://cdn.discordapp.com/attachments/1108093706562715760/1115636891212054638/trim.6F6E3A08-B27E-4393-9C20-0F748BD5D300.mov", + "https://cdn.discordapp.com/attachments/1033101518284542013/1088070386459082753/trim.62D5D312-4699-45F8-94F8-E27FC7AFCCC1.mov", + "https://cdn.discordapp.com/attachments/785000532254130186/1127878718585581628/Screen_Recording_20230710_112245_Samsung_Internet.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1128043974746181702/HardtofindImpracticalFrenchbulldog-mobile.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1125920358898344037/RDT_20230704_232950.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1124615029224914984/HalEy_PIE.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1123163702342987816/15266172_048_1d59.jpg", + "https://cdn.discordapp.com/attachments/510245922739847179/1122930620465684551/drips.jpeg", + "https://cdn.discordapp.com/attachments/510245922739847179/1122504921271513098/PreciousStingyAmazontreeboa-mobile.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1122459213038362644/BubblyDarksalmonVole-mobile.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1115683506769629214/BmQJDSw3tCWoNvGI.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1113396550534701096/pWg_HHngH_.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1113394940639203328/RDT_20230517_011932.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1113394699739336735/RDT_20230530_225435.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1113389914365636708/1683879129654773.webm", + "https://cdn.discordapp.com/attachments/510245922739847179/1113087501716963418/RDT_20230517_011612.mp4", + "https://media.discordapp.net/attachments/785000532254130186/1110918040276709416/RDT_20230524_150611.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1112489362148560977/DASH_1080_-_2022-04-04T113340.713.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1112489234767560775/3928099602e6f6798ad0.gif", + "https://cdn.discordapp.com/attachments/510245922739847179/1112489220397871155/1605403417269.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1112095595323195412/VerT916_CRMPIE.mp4", + "https://cdn.discordapp.com/attachments/1002130791519748177/1014345546514837514/sc_bg3.mp4", + "https://cdn.discordapp.com/attachments/971503438821203999/1032226078963531776/video0.mp4", + "https://cdn.discordapp.com/attachments/1009536282931761192/1033231785779273768/75058be33bbf2fcf3b0635a7204fa629.webm", + "https://media.discordapp.net/attachments/998331825904701495/999996708421390466/SexHouseCreampie_126.mp4", + "https://media.discordapp.net/attachments/998331825904701495/999988144915087453/SexHouseCreampie_75.mp4", + "https://media.discordapp.net/attachments/998331825904701495/999988049754734713/SexHouseCreampie_69.mp4", + "https://cdn.discordapp.com/attachments/774682603495096380/1035756585240252446/vMUiemy.mp4", + "https://media.discordapp.net/attachments/763860707544137759/779653945727516732/Untitled_5_360p.mp4", + "https://cdn.discordapp.com/attachments/969922585053765652/976954567558320168/DASH_1080_-_2022-04-04T113602.725.mp4", + "https://cdn.discordapp.com/attachments/969922585053765652/976954570246864936/lOTv44HUjpB7.mp4", + "https://cdn.discordapp.com/attachments/921112602468294676/966780739637084181/VID_20210826_044154_607.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999299553150914670/SexHouseCreampie_6.mov", + "https://cdn.discordapp.com/attachments/980064515355983932/999308976552415323/trim.76BA07B8-6403-4EF6-92FC-0954C037461F.MOV", + "https://cdn.discordapp.com/attachments/976381364184158248/1008485161266053280/nYZfpyPElFlMTusu.mp4", + "https://cdn.discordapp.com/attachments/976381364184158248/988718430028955648/1654747470029.webm", + "https://cdn.discordapp.com/attachments/976381364184158248/988718389897887764/1654930876740.webm", + "https://media.discordapp.net/attachments/921112602468294676/966780739637084181/VID_20210826_044154_607.mp4", + "https://cdn.discordapp.com/attachments/818072940528664576/818245764178116638/video0.mp4", + "https://cdn.discordapp.com/attachments/831928094435966986/844281789505601586/video0-52.mov", + "https://cdn.discordapp.com/attachments/969922585053765652/975048128375947355/RFT_7.mp4", + "https://cdn.discordapp.com/attachments/969922585053765652/975048123175039006/RFT_1.mp4", + "https://cdn.discordapp.com/attachments/969922585053765652/976954557714276414/VID_20220315_145244_731.mp4", + "https://cdn.discordapp.com/attachments/969922585053765652/976954565477929002/DASH_1080_-_2022-04-04T113153.436.mp4", + "https://cdn.discordapp.com/attachments/975396818974281818/1074697369209274388/zyqrApG2ybdqELAQ.mp4", + "https://cdn.discordapp.com/attachments/975396818974281818/1080810819991900200/discord_s2s_creampie.mp4", + "https://cdn.discordapp.com/attachments/975396818974281818/1080810845996593223/gg_s2s_creampie.mov.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/999309160929828954/trim.0D143E10-E05E-4330-9DFE-D64E3B64398F.MOV", + "https://cdn.discordapp.com/attachments/980064515355983932/999309190759731210/trim.EDB4B75C-21EC-4B53-9C5B-AC65C3B728E2.MOV", + "https://cdn.discordapp.com/attachments/980064515355983932/999309190256394270/trim.8056FF0A-ABFC-4441-949D-FCB3DA558F99.MOV", + "https://cdn.discordapp.com/attachments/980064515355983932/999309189539188806/trim.B56C85B0-AD25-485C-A7F2-2B55C8502F4E.MOV", + "https://cdn.discordapp.com/attachments/980064515355983932/999309221365547068/trim.12BC977F-DEB4-4526-A2AC-B23E41A0C3AF.MOV", + "https://cdn.discordapp.com/attachments/980064515355983932/999309264701116497/trim.E4C2A145-C1EA-4838-A77E-FCA164DE4F8F.MOV", + "https://cdn.discordapp.com/attachments/980064515355983932/1002888524162408519/XBYmsqQtIbaY.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1002928657477681172/DASH_1080_-_2022-04-04T113153.436.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1002928658794684486/1653064795347.webm", + "https://cdn.discordapp.com/attachments/980064515355983932/1002928662053658674/MeatyAfraidWhelp-mobile.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1002928661705527356/9Mm4H4Ie17SqrCUU.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1002928659939741767/DASH_1080_1.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1003270214940643418/VID_20210826_044154_607.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1003270379764187258/BitesizedDismalFallowdeer-mobile.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1018082691289202698/KeyGrippingMeerkat-mobile.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1031124370027986954/RgrCJgZZ8D7C.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1031125102294728734/video0-1.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1038051135753310218/Brazzers_TimereSun_4.webm", + "https://cdn.discordapp.com/attachments/980064515355983932/1038051133916188732/Brazzers_TimereSun_17.mp4", + "https://cdn.discordapp.com/attachments/980064515355983932/1038051132662108171/Brazzers_TimereSun_27-1.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1120288160719589427/She_Gets_A_CreamPie.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1120161532152664116/1676659192257360.webm", + "https://media.discordapp.net/attachments/959210679678693416/1119791433335975976/FyxTs70XoAAD5pi.png", + "https://cdn.discordapp.com/attachments/510245922739847179/1119718389083029535/22488367.gif", + "https://media.discordapp.net/attachments/1079869441388597289/1119008580943761538/img.gif", + "https://cdn.discordapp.com/attachments/510245922739847179/1117539469164290159/RicATinder_CloSEUP.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999308236912074782/SexHouseCreampie_22.webm", + "https://cdn.discordapp.com/attachments/510245922739847179/1117013619004166285/KvU8NgHPnA.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1116595565334106202/1686136954430797.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1116498468047945768/image0.gif", + "https://cdn.discordapp.com/attachments/510245922739847179/1116497890618114058/image0.gif", + "https://cdn.discordapp.com/attachments/510245922739847179/1116497598283526184/image0.gif", + "https://cdn.discordapp.com/attachments/510245922739847179/1116333836410822696/20220113_492058_.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1116252689995665449/1686113265700787.webm", + "https://cdn.discordapp.com/attachments/510245922739847179/1116243938043498556/Snapchat-1789266213.jpg", + "https://i.redd.it/g230p0mmsk4b1.gif", + "https://www.redgifs.com/watch/giddylightgrayeft", + "https://cdn.discordapp.com/attachments/510245922739847179/1115182300771127306/PPros_HOllYM_III.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1115182264335212644/PPros_HOllYM_II.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1115182113310908496/PPros_HOllYM_I.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1115007456796483634/1685852366247741.webm", + "https://cdn.discordapp.com/attachments/510245922739847179/1114948886541381692/01caa855-80f3-467d-a1bd-0766760a93a22.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1114646629186797660/SeparateMediumorchidAsiaticgreaterfreshwaterclam-mobile.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1114351983218933811/rapidsave.com_jm5na7sxun3b1.gif", + "https://cdn.discordapp.com/attachments/510245922739847179/1114115550134677634/PeTit_CreamPie_MV.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1115383084402094140/WFiWNdDi3kXvKmeX.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1115128132240949318/rapidsave.com_DASH_1080.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1114960881634254888/image0-1-1.jpg", + "https://cdn.discordapp.com/attachments/785000532254130186/1114472440383418408/Valerica_Steele_-_Sexy_Girl_With_New_Tits_-_2of2.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1114472392278945812/Valerica_Steele_-_Sexy_Girl_With_New_Tits_-_1of2.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1114190015900160000/RDT_20230530_164754.mp4", + "https://cdn.discordapp.com/attachments/723496717399490651/1026433132280430662/DistinctFrivolousFreshwatereel.mp4", + "https://cdn.discordapp.com/attachments/723496717399490651/1073024573274062968/Tumblr_l_537883339615841.gif", + "https://cdn.discordapp.com/attachments/723496717399490651/1073024125750222928/image0-2.gif", + "https://cdn.discordapp.com/attachments/723496717399490651/1070984289757433906/cuckold-and-hotwife-cheating-caption_001.gif", + "https://cdn.discordapp.com/attachments/723496717399490651/1070201243999424573/y77RPeY.mp4", + "https://cdn.discordapp.com/attachments/723496717399490651/1060325545570729994/Tumblr_l_184190730473975.gif", + "https://cdn.discordapp.com/attachments/723496717399490651/1058906455627018390/viddit_12c8bec6.mp4", + "https://cdn.discordapp.com/attachments/723496717399490651/1021953240616673280/RaE_RAW_.mp4", + "https://cdn.discordapp.com/attachments/723496717399490651/1007396481667432458/FixedAdvancedDrongo.mp4", + "https://cdn.discordapp.com/attachments/723496717399490651/1022262328076533790/Analpie.mp4", + "https://cdn.discordapp.com/attachments/723496717399490651/1023774417916018718/XKFsr2m.mp4", + "https://cdn.discordapp.com/attachments/723496717399490651/1024465937887404082/video-1660387035.mp4", + "https://cdn.discordapp.com/attachments/923288817451036713/1065456012812898345/discordggmylf_10.mp4", + "https://cdn.discordapp.com/attachments/723496717399490651/1004023728616775680/DimwittedUprightTurtledove-mobile.mp4", + "https://cdn.discordapp.com/attachments/507653705546596382/1082270055267582022/VID_20230305_235512_519.mp4", + "https://cdn.discordapp.com/attachments/783048997275041823/1083319076740411392/480P_600K_164907321.mp4", + "https://cdn.discordapp.com/attachments/391240349047062531/1069499690808262737/video0-5.mp4", + "https://cdn.discordapp.com/attachments/723496717399490651/1107568869519937566/RMhardCo_20230512_5.mov", + "https://cdn.discordapp.com/attachments/723496717399490651/1078611725747769384/Video.mov", + "https://cdn.discordapp.com/attachments/783048997275041823/1055163591906562110/SociableImpassionedIberianmidwifetoad-mobile.mp4", + "https://cdn.discordapp.com/attachments/395563842979233792/522543347009847297/28e59ee.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1069458666861899806/multi.mp4", + "https://cdn.discordapp.com/attachments/1033083656933216256/1056764811804938330/video0-10.mp4", + "https://cdn.discordapp.com/attachments/1033083656933216256/1056764838879170670/VID_20210502_024421_287.mp4", + "https://cdn.discordapp.com/attachments/1033083656933216256/1056764838522662922/VID_20211120_184328_752.mp4", + "https://cdn.discordapp.com/attachments/1033083656933216256/1056764946173665320/video08.mp4", + "https://cdn.discordapp.com/attachments/1033083656933216256/1056764971062669353/1615665520936.webm", + "https://cdn.discordapp.com/attachments/1033083656933216256/1056764972362903642/VID_20211028_095218_560.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999298592177127514/SexHouseCreampie_3.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999298592995016814/SexHouseCreampie_4.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999300246863630417/SexHouseCreampie_7.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999300246498717796/SexHouseCreampie_6.webm", + "https://media.discordapp.net/attachments/786125649232003072/1045536754557522050/VID_20221125_110709_476.mp4", + "https://cdn.discordapp.com/attachments/908805083557425294/915018932019142746/EbpAjRyh1tMh.webm", + "https://cdn.discordapp.com/attachments/913929051540975646/921324846217048124/AV46723.mp4", + "https://cdn.discordapp.com/attachments/908805083557425294/920554922397810708/1789.mp4", + "https://media.discordapp.net/attachments/785000532254130186/953851721728286730/video0-9.mov", + "https://cdn.discordapp.com/attachments/794096059664171028/812117582643331092/Painting_myself_with_his_cum_is_so_hot.mp4", + "https://cdn.discordapp.com/attachments/1001618507236126740/1006338602130751568/cilekten_hediye_5-1.mp4", + "https://cdn.discordapp.com/attachments/1001618507236126740/1006339189668839464/CuoQ5T2.mp4", + "https://cdn.discordapp.com/attachments/1001618507236126740/1002722230989504592/CLUPCITY.CUM3.mov", + "https://media.discordapp.net/attachments/785000532254130186/971221297499602984/7YaSYSI.mp4", + "https://media.discordapp.net/attachments/945002179343822959/948719528433582161/VIDEO-2021-04-07-22-50-11.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999305820523208815/SexHouseCreampie_22.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999308303370825748/SexHouseCreampie_29.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999308302917836860/SexHouseCreampie_28.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999308302414512210/SexHouseCreampie_28.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999308301936377856/SexHouseCreampie_27.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999310920176128120/SexHouseCreampie_30.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999310920545218642/SexHouseCreampie_30.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999310921090482326/SexHouseCreampie_31.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999310980016250940/SexHouseCreampie_32.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999311480723873863/SexHouseCreampie_35.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999311479918575616/SexHouseCreampie_34.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999311479562047508/SexHouseCreampie_34.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999310980708323449/SexHouseCreampie_33.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999314790101037086/SexHouseCreampie_43.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999314789589336186/SexHouseCreampie_42.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999314788381364254/SexHouseCreampie_40.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999314787970318336/SexHouseCreampie_40.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999314790612729896/SexHouseCreampie_44.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999315087263268884/SexHouseCreampie_36.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999315088697720833/SexHouseCreampie_37.mov", + "https://cdn.discordapp.com/attachments/998331825904701495/999315089045852201/SexHouseCreampie_37.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999315089482064012/SexHouseCreampie_38.mov", + "https://cdn.discordapp.com/attachments/510245922739847179/1113856328654401637/1685459990544920.webm", + "https://cdn.discordapp.com/attachments/785000532254130186/1113899021510131742/E5786FBE-02AF-4253-A438-D23D13D5D647.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1113859115375149156/Screenshots_2023-05-31-13-54-29.png", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111380771786203268/Redgifs-thirdpinkpangolin.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111380709844713573/Redgifs-perujaggedstonefly.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111380690408325130/imgur-tZeoQxk.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111380673664667739/Redgifs-limegreendutifuloropendula.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111380580416893018/imgur-FgNrK0q.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111380574926553149/Redgifs-lonelyclearstilt.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111380125548822638/Brazzers_Creampie3.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111379768672264222/Redgifs-trustingimmaterialcopperhead.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111379737466638346/O60G8fm.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111379697046138880/LdQPn5z.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111379671846768640/RDT_20230429_113142.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111379559733014628/RDT_20230417_020439.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111379328710738082/RDT_20230421_221407.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111379064679317595/FH9FF5x.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111378976758321163/mFJ7i0o.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111378956483055746/SPOILER_FinalVideo_1647050982.599225.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111378657596940399/Redgifs-hardtofindthismassospondylus.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111378613464473732/18_covered_20230429__1652169336298119168_1_16304285173420154900.mp4", + "https://cdn.discordapp.com/attachments/1053809637956255814/1111378206612787341/1681741146028.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1111380672771260426/xvideos.com_09a57ff2dbb93f5a29f9bafe8f02e3f0.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1110918040276709416/RDT_20230524_150611.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1110056132816404490/let_me_cum_deep_inside_her_pulsating.mp4", + "https://media.discordapp.net/attachments/771793844520878091/789983035755331604/7ee3b156b3bb220781cbd9242418f.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1109428664002687067/29292183.gif", + "https://cdn.discordapp.com/attachments/510245922739847179/1108815643253424239/TemptingEasygoingEyra-mobile.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1108785434869387444/cheesed_to_meet_you.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107279848629620806/www.3movs.com---gina-gerson-got-cumload-in-her-fucked-ass_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107279249431334962/www.3movs.com---alexis-andrews-gets-fucked-and-facialed-by-tony-rubino_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107278347236544573/www.3movs.com---adria-rae-gets-fucked-and-facialed-behind-her-bf-s-back_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107278242303459438/www.3movs.com---jojo-kiss-got-cumshots-on-her-stomach_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107277754593988649/www.3movs.com---alice-visby-got-cumshots-on-her-chest-and-tits_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107277487504896031/www.3movs.com---aidra-fox-got-jizz-load-on-her-tongue-after-pussy-fucking_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107275230575075358/www.3movs.com---desiree-dulce-gets-fucked-and-facialed-by-xander_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107275176749568060/www.3movs.com---madison-ivy-gets-facialed-after-pussy-fucking_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107274993244573727/www.3movs.com---luxurymur-got-jizz-in-her-mouth-after-pussy-fucked_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107274937133191318/www.3movs.com---eden-west-got-cum-in-her-mouth-after-pussy-fucking_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107272588809490515/www.3movs.com---carolina-vogue-got-jizz-in-her-fucked-ass_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107272020279963709/www.3movs.com---dana-dearmond-gets-cumshot-in-her-mouth-after-anal-fucking_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107271757200629830/www.3movs.com---alice-fantasy-gets-fucked-and-creampied_lq.mp4", + "https://cdn.discordapp.com/attachments/1103357072424304641/1107271550136225862/www.3movs.com---blonde-chloe-couture-gets-facialed-by-jay-smooth_lq.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1103372656893497517/SilverWeirdRay.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1103368428724699226/MountainousScholarlySulphurbutterfly.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1103346936402169967/43864881a.webm", + "https://cdn.discordapp.com/attachments/1013418777997750372/1103346775764504656/43871821a.webm", + "https://cdn.discordapp.com/attachments/1013418777997750372/1103346654528147516/43875031a.webm", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025653174171873302/8lgZsnU.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025653058677518377/GoodnaturedFaintDore-mobile.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025652930210189332/DarkorchidMetallicMerganser-mobile.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025652910685696012/AccurateRudeIberianmidwifetoad-mobile.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025652720532733992/wtyfyGg.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025652672537313300/WelldocumentedDizzyEquine-mobile.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025652604077879326/CylindricalFavorableBorzoi-mobile.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025652563514761246/UnsightlyWellinformedBluebird-mobile.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025651645775876097/ArcticDownrightAsiansmallclawedotter-mobile.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025651536027734107/FeistyAdolescentCheetah-mobile.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025651506977972254/CrushingNextScorpion-mobile.mp4", + "https://cdn.discordapp.com/attachments/1013418777997750372/1025651380775563264/FearfulMistyIggypops-mobile.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/940000526366543922/b4a2b3e1-ed0a-4892-81c8-575d4951af1f.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/887205998476029972/SPOILER_xvideos.com_69934443b4f060393aeeb608d5f0391f-1.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/887205975109558342/SPOILER_xvideos.com_3f609742312a8bfaa65672f67e53f9eb.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/876416872751435776/Redgifs-bothspectacularauk.mov", + "https://cdn.discordapp.com/attachments/864513958203359262/870127433205039134/xvideos.com_35c390fa0e5556e944d3a8493146a2b5.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/870127431359545354/xvideos.com_c70ed91e7c803a87d80a7442e7f276b7.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/870127430105464862/xvideos.com_9bc5f8c9321b77228997e40154e223c2.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/870127055658946581/xvideos.com_3d0c7e9b3095e1896bbc03b7c883abb7.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/870127053737959444/xvideos.com_d21c9bf52c9e1856936d63b2ced5adae.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/864618458187825188/video0.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/864524074239524904/Ayumi_Kase.webm", + "https://cdn.discordapp.com/attachments/864513958203359262/864523454493229086/ActualMediumturquoiseGentoopenguin-mobile.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/864523453650305034/tumblr_qvllesuXTv1z7tpb5_720.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/864517257425322034/HollowClutteredKiskadee.mp4", + "https://cdn.discordapp.com/attachments/864513958203359262/864517256606908436/1882891a.webm", + "https://cdn.discordapp.com/attachments/864513958203359262/864515427278258236/IMG_5455.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1107380887735238747/1683604967125878-1.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1107376616289599668/1683552272322994.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1106715807024693309/1683551598685934.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1106711586573385769/1683387931690148.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1106643451862319216/1683630183093164.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1106641793136738364/1682925655188247.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1106623471116615861/RDT_20230512_181818.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1106220297494995074/18195123.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1106218921721352212/27875589.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1106218771405869186/27604831.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1106217143164477522/26030961.gif", + "https://cdn.discordapp.com/attachments/510245922739847179/1105775420231663696/40799851a.webm", + "https://cdn.discordapp.com/attachments/510245922739847179/1105598337886978148/FaroffUnpleasantAffenpinscher-mobile.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1104715307727208559/RDT_20230507_125850.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1104052235165515796/42586602_083_c583.jpg", + "https://cdn.discordapp.com/attachments/510245922739847179/1103991991374708798/475bf491-e5fb-410e-9f8c-1b4497954a16.mov", + "https://cdn.discordapp.com/attachments/510245922739847179/1103777592441581620/VID_20230502_2324482175_1.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1103858067831017542/FGwBUBliUt1z6csL.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1103654488629321790/twitter_20211113_112902.mp4", + "https://realbooru.com/images/16/4a/164a58c66b3279de4a995633b4b727b5.gif", + "https://realbooru.com/images/a5/79/a57915b6284ef55a3c9d20e0f9d3091f.gif", + "https://media.discordapp.net/attachments/508800757483569154/1069337232231637073/anal_001-70.gif", + "https://media.discordapp.net/attachments/510245922739847179/1069626374349930526/nT_x0biss4856ch1uicrat97ypa.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1101788061869801503/RDT_20230429_113142.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1101758412137701426/18_covered_20230429__1652169336298119168_1_16304285173420154900.mp4", + "https://media.discordapp.net/attachments/510245922739847179/1073572379378323476/lmi0bkjhscr91.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1100442607051604009/Analpie.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1098351321544921188/RDT_20230419_225149.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1098956491156889700/encode20230421181326.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1098876987105353738/encode20230421123136.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1098610788069019791/nT_xiajqrv36sxirjr5pbyq1ut1.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1098543813682790420/RDT_20230415_205623.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1099191630365466634/IMG_20230422_072755_118.jpg", + "https://cdn.discordapp.com/attachments/785000532254130186/1099065699697168596/RDT_20230421_221407.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1098956641619165204/encode20230421181326.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1098920099597004890/RDT_20230421_133546.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1098691964603469914/VID_20230420_212544_827.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1098283920124022824/38126251a.webm", + "https://cdn.discordapp.com/attachments/510245922739847179/1098102974091366400/20230419_141059.jpg", + "https://cdn.discordapp.com/attachments/510245922739847179/1097787684203810897/VID_202303036476960.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1098226819284615248/RDT_20230419_153443.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1097890014110687262/RDT_20230418_171827.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1097830652717568020/19270870.png", + "https://cdn.discordapp.com/attachments/785000532254130186/1097539405884964874/Brazzers_Creampie3.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1097527239098249276/1681741146028.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1097500741486248007/RDT_20230417_153514.mp4", + "https://media.discordapp.net/attachments/670577219470360586/861885119954026526/121c520.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1097306385756196974/RDT_20230417_020439.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1096912808647602236/0gpzxqu5wyhdfa53oml0x_source-MWbbOvMK.mp4", + "https://media.discordapp.net/attachments/763860707544137759/1096667891560095874/LimitedDeepWalleye.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1096667891560095874/LimitedDeepWalleye.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1096630583175692338/trim.46CE62D3-F251-4CB8-90F6-2F831A214CDE.mov.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1096486368777097256/b6CbXLT5Of8AJiU0.mp4_tag12.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/1045764545567805561/2560x1440.3.webp", + "https://cdn.discordapp.com/attachments/849298408840757310/1037195788641648712/Creampied_slut_anal_.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/980564491685228614/8012d3f67f96f24e0261864a0e322ae5.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/979945768968409119/154_1000.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/979945645618122752/569_1000.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/979945577196445726/R.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/915736101707186186/video0.mov", + "https://redgifs.com/watch/downrightthornyhorseshoebat", + "https://cdn.discordapp.com/attachments/849298408840757310/911041499490287656/xzSz0NK.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/911041489004544010/ShadyFlawedJerboa-mobile.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/911041487268089936/PristinePlasticEskimodog-mobile.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/911041484256600064/PuzzlingMiserableHoki-mobile.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/911041471996637214/InfamousElementaryAgouti-mobile.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/911041466548228096/BitesizedBeneficialSkimmer-mobile.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/904857137598054410/porno-gif-porn--vaginal-porn-6941306.gif", + "https://cdn.discordapp.com/attachments/863761824516407316/872871527547281468/video2.mov", + "https://cdn.discordapp.com/attachments/849298408840757310/891237924828499979/video0_5.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/888205528621252638/35078432a.webm", + "https://cdn.discordapp.com/attachments/849298408840757310/888201278113595412/tumblr_odwqcfmYuA1vvb8iho2_500.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/888201277975195678/tumblr_odwqcfmYuA1vvb8iho1_500.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/888201274284200006/tumblr_odwqcfmYuA1vvb8iho3_500.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/888201269074853898/tumblr_mb8at5gedL1rdt7neo1_500.jpg", + "https://cdn.discordapp.com/attachments/849298408840757310/888201246190731274/tumblr_omb2yfCCKS1va8aj5o1_500.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/888201243879677992/tumblr_ntp26naJl21u0dx4fo1_400.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/888201243208585276/tumblr_o4mmzv5llI1uqnf3ho1_250.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/888201238976561162/tumblr_o626z2C4V31v81fhdo1_400.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/887107295631245352/video0_3.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/887106708806172692/creampie65.mp4", + "https://cdn.discordapp.com/attachments/731201039516303381/885316099627950110/4d44aa6d-de71-42d0-92ad-20f314289dda.gif", + "https://cdn.discordapp.com/attachments/731201039516303381/885316195132244028/nude.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/883717743495491624/video0.mp4", + "https://cdn.discordapp.com/attachments/731201055945130005/876478307300937768/zsvqt1j-1.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/878011232697847829/creampie62.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/878011133708087386/creampie53.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/878011015244161054/creampie46.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/878010858217828414/creampie64.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/855258540368592896/tumblr_nraqtvk0DA1uqpjjd.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/855258368678953000/UnfortunateLastingIggypops-mobile.mov", + "https://cdn.discordapp.com/attachments/849298408840757310/855258025525641256/EvergreenElderlyGlowworm.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/855257791199838248/a68062d5b6020d15d8883f68d27951db.webm", + "https://cdn.discordapp.com/attachments/849298408840757310/855257652858191882/486f69ffd7871ed72f59f04ec3da1f36.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/855257391247130634/Screenrecorder-2021-04-19-21-46-35-25500.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/855257200510763008/i-love-getting-my-pussy-filled-after-being-9y5gp6fm9l.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/855256909464338499/filling-her-up-apxzsjfeom.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/855256871082786826/24437951a.webm", + "https://cdn.discordapp.com/attachments/783048997275041823/803763703039787088/video0.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/855086140792766484/044e5fcc-57d2-4d4e-8317-34ac3394bde3.gif", + "https://cdn.discordapp.com/attachments/849298408840757310/855085005063585812/20200918_120706.jpg", + "https://cdn.discordapp.com/attachments/849298408840757310/855084994250539008/rgDT9Q0.png", + "https://cdn.discordapp.com/attachments/849298408840757310/855084988621258783/zl7uu8k6zrv51.jpg", + "https://cdn.discordapp.com/attachments/849298408840757310/855084984841666560/image4-V6d6Shg.jpg", + "https://cdn.discordapp.com/attachments/849298408840757310/855084980921565205/c8t9wuzatxp51.png", + "https://cdn.discordapp.com/attachments/849298408840757310/855084976026550303/20201213_010818.jpg", + "https://cdn.discordapp.com/attachments/849298408840757310/855084972292702248/20201111_031859.jpg", + "https://cdn.discordapp.com/attachments/849298408840757310/855084969172008970/20201128_234401.jpg", + "https://cdn.discordapp.com/attachments/849298408840757310/855084966807470121/91921eff8ca260c7af31f1122e5aa557.jpg", + "https://cdn.discordapp.com/attachments/849298408840757310/855084964684890112/ff70c95dbfb8396be9683097b9f5af47131901b4.jpg", + "https://cdn.discordapp.com/attachments/849298408840757310/855084960510902333/mhnd-bvdjX9CVFb7hxsLUkgq11wJOrOmbWr4F2wAdrc.png", + "https://cdn.discordapp.com/attachments/849298408840757310/849470965998288906/TediousImpartialAlaskanhusky-mobile.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/849395401814704138/HarmoniousEqualHarborseal-mobile.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/849311271191052298/file_540x720_002846_2.jpg", + "https://cdn.discordapp.com/attachments/849298408840757310/849298788984029245/bdsmlr-17935-iagVPBBxzQ.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1084094772433670185/tnUmlEe-1.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1083821023297814639/WMIDconcat-TNOZ-021.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1083342941734580284/WMIDa-MIGD-726.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1083132877593649303/WMIDb-HNDS-043.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1083132845104566463/WMIDa-HNDS-043.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1082670539941892126/WMIDa-JUFE-258.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1082667831172280351/XRMany-1.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1081911005010989116/PWmfLQd.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1081910992558112798/Hie979D.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1081910978440085644/fiJ4yHv.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1081864983694033019/FtgrKWI.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1081864283589185596/WMIDconcat-ENKI-039.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1080863149487558686/69c9dc8b34d3333d2d6df06379e443a2.webm", + "https://cdn.discordapp.com/attachments/785000532254130186/1080863123013115904/d2b6c3c089ece142502c84e64f6e2c95.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1080749367004233789/RDT_20230302_011138.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1080743657239494676/IMG_3697.MOV", + "https://cdn.discordapp.com/attachments/785000532254130186/1080423905103196180/R.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1080076389161631805/Squirting_Creampie_y1n3a0.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1079819879953223680/ssstwitter_1654945598.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1079819737237827715/Fishnets.mp4", + "https://media.discordapp.net/attachments/946455960635986071/1076700803257090148/HummingAnchoredOriole.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1077626864673247263/impregnation_cre-191.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1077626560481329262/042_1000.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1077626026668085339/tumblr_nhrp8upomK1u7erbao1_250.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1077625798422442054/69175-eating-creampie.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1077625589143453726/110949-creampie.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1077625220447342684/R_1.gif", + "https://media.discordapp.net/attachments/763860707544137759/999401473668558869/DarkslateblueMessyHare-mobile.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1077017230644105279/vid_360p.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1076729956580720670/video.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1076348644262936617/video.mov", + "https://cdn.discordapp.com/attachments/785000532254130186/1076217056602620085/tumblr_n564e9b1he1tt4poqo1_400.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1076216870828523540/Lindsey_Love_depois_de_ser_comida_por_strap_on_usado_por_Mike_Love.gif", + "https://media.discordapp.net/attachments/785000532254130186/1056722476698173452/VID_20211124163419.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1075547032716066989/1676407273661787.webm", + "https://cdn.discordapp.com/attachments/785000532254130186/1074999336821346425/VID_20230214_120148_767.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1074690211960856626/1676296479066.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1074151640132751421/tnUmlEe-1.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1074117644099268669/a258b356d6eb4547add0d6124e13fd01.gif", + "https://media.discordapp.net/attachments/510245922739847179/1064348842872553482/27784616-1.gif", + "https://cdn.discordapp.com/attachments/785000532254130186/1073918897297817601/BCtSUfK.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1073857268648529960/RDT_20230211_084230.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1073062654844870666/tnUmlEe.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1072885553604874260/SuperImaginativeLemur-mobile.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1072234515960955053/HardtofindLightskyblueElkhound.mp4", + "https://media.discordapp.net/attachments/510245922739847179/1038743026140463134/it_makes_me_want_the_same.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1070903072114610218/riG9AAM.mp4", + "https://media.discordapp.net/attachments/510245922739847179/1069458666861899806/multi.mp4", + "https://media.discordapp.net/attachments/510245922739847179/1068565243267121313/EB0A974A-477E-4F81-87F5-F9AEC5389350.mp4", + "https://media.discordapp.net/attachments/510245922739847179/1066993922376749116/CoolDisguisedGrayling.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1070292283502624848/lOTv44HUjpB7.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1069784009741189201/GranularBetterDodobird-mobile.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1056722476698173452/VID_20211124163419.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1066454303331594343/Creampie-2.mp4", + "https://media.discordapp.net/attachments/510245922739847179/1065669326419533935/db901c19-9a05-469a-b31c-d0dac47bf62a.gif", + "https://media.discordapp.net/attachments/510245922739847179/1065669325459038259/image0-1.jpg", + "https://cdn.discordapp.com/attachments/424284294395985961/1057275533102166067/486f69ffd7871ed72f59f04ec3da1f36.vid.pg.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1094223476476350585/Vinna_reed_6_1_porncube_new_porn_hd_anal_double_anal_double_penetration_-_BEST_XXX_TUBE_52.gif", + "https://cdn.discordapp.com/attachments/510245922739847179/1094184114581667890/IMG_20230408_103348_722.jpg", + "https://cdn.discordapp.com/attachments/510245922739847179/1093471986379915265/TheRealBrittFit_CRMPIE.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1092511870944038912/74e4ba7a1726ded5fd147bb420dfb320ecefbc26.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1092527409867264080/BvVB1atmU-Lpxr8U.mp4", + "https://cdn.discordapp.com/attachments/510245922739847179/1091675152539979776/RDT_20230401_114409.mp4", + "https://cdn.discordapp.com/attachments/785000532254130186/1090969458060836864/avw8U1-UZ_ub4BSE.mp4", + "https://media.discordapp.net/attachments/946455960635986071/1071947808204140635/multi.mp4", + "https://cdn.discordapp.com/attachments/849298408840757310/1071381655811530804/bleedTwitterERyGM62KP3pmv.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/databaseTypes.json b/src/storage/nsfw/databaseTypes.json new file mode 100644 index 0000000..4fc30d9 --- /dev/null +++ b/src/storage/nsfw/databaseTypes.json @@ -0,0 +1,28 @@ +[ + "anal", + "asian", + "ass", + "bdsm", + "black", + "blowjob", + "boobs", + "cosplay", + "cum", + "facesitting", + "family", + "gay", + "hardcore", + "hentai", + "iranian", + "lesbian", + "milf", + "pov", + "public", + "random", + "solo", + "squirt", + "teen", + "tiktok", + "toys", + "transgender" +] \ No newline at end of file diff --git a/src/storage/nsfw/facesitting.json b/src/storage/nsfw/facesitting.json new file mode 100644 index 0000000..ca7d9e4 --- /dev/null +++ b/src/storage/nsfw/facesitting.json @@ -0,0 +1,54 @@ +[ + "https://cdn.discordapp.com/attachments/966756085002272806/966784001069162626/Brazzers_Facesitting_36.mp4", + "https://cdn.discordapp.com/attachments/1092201775160905759/1092219477137051678/IMG_20210929_081245_109.mp4", + "https://cdn.discordapp.com/attachments/1092201775160905759/1092219439941963827/GlamorousFeistyAlligatorsnappingturtle-mobile.mp4", + "https://cdn.discordapp.com/attachments/1092201775160905759/1092219420367147129/IMG_2895.mp4", + "https://cdn.discordapp.com/attachments/1092201775160905759/1092219419809288212/CFEYA7i6TdPUuPhvT5yCdNgNhOXlVpZE.mp4", + "https://cdn.discordapp.com/attachments/1092201775160905759/1092219393431318578/mustafawsu-20210104-0001.mp4", + "https://cdn.discordapp.com/attachments/1092201775160905759/1092219379887898635/Snapinsta.app_video_329633921_153270531002128_7259688632441476535_n.mp4", + "https://cdn.discordapp.com/attachments/849310174048682024/904407881414225960/FavoriteDeeppinkNurseshark-mobile.mp4", + "https://cdn.discordapp.com/attachments/849310174048682024/887388657793794059/ExhaustedAlarmedDogwoodtwigborer-mobile.mp4", + "https://cdn.discordapp.com/attachments/849310174048682024/887108382731952188/video0_2.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966784009902379058/Brazzers_Facesitting_38.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966783980143792228/Brazzers_Facesitting_30.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966783984782680175/Brazzers_Facesitting_25.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966784017846378586/Brazzers_Facesitting_1.mp4", + "https://media.discordapp.net/attachments/978639868777336902/999302373778411550/fsqwq4.mp4", + "https://media.discordapp.net/attachments/978639868777336902/999302366757126194/BoilingFelineGuillemot-mobile.mp4", + "https://media.discordapp.net/attachments/978639868777336902/999302316941381672/V-8fo2vU0chHndqd.mp4", + "https://cdn.discordapp.com/attachments/978639868777336902/999302366757126194/BoilingFelineGuillemot-mobile.mp4", + "https://cdn.discordapp.com/attachments/978639868777336902/999302373778411550/fsqwq4.mp4", + "https://cdn.discordapp.com/attachments/978639868777336902/1064623343636066525/BrazzerssFaceSitting.jpg", + "https://cdn.discordapp.com/attachments/849310174048682024/918688342521049138/Dillion-Harper-teen-asshole-ate-out.gif", + "https://cdn.discordapp.com/attachments/849310174048682024/915227109369208902/ff1b6f14-91ef-4fdf-811b-bcdf6d327235.gif", + "https://cdn.discordapp.com/attachments/849310174048682024/910583915335548938/tumblr_omfmc7H0m01w76o5vo1_500.gif", + "https://cdn.discordapp.com/attachments/849310174048682024/904857930606727178/qzQwBFH.gif", + "https://cdn.discordapp.com/attachments/849310174048682024/904857912197910538/LK7bjYls46.gif", + "https://cdn.discordapp.com/attachments/849310174048682024/887145753347244052/01gif-misc143.gif", + "https://cdn.discordapp.com/attachments/849310174048682024/887145709286064199/01gif-misc142.gif", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517322329698504/BEST_SEX_5.mov", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517313739763842/BEST_SEX_1.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517315467817040/BEST_SEX_1.mov", + "https://cdn.discordapp.com/attachments/988851856182767654/992046932539220078/E252AB5C-2FC0-42AB-B038-5B5AB07FA303-1326-000003A3F686FC09.mov", + "https://cdn.discordapp.com/attachments/988851856182767655/1006292526900199557/BubblyDownrightRook-mobile.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/1006292536299630602/yzu4lB0.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/992048031581089822/Untitled_1.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/1005866986762412093/video-1655143176.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517325819359252/BEST_SEX_10.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1070791735116042260/BEST_PORN_2.mov", + "https://cdn.discordapp.com/attachments/1070790506126254100/1070791438222233682/BEST_PORN_12.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1070791435361730620/BEST_PORN_6.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1068853431072215110/facesitting1.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1066835454932029581/facesitting2.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1068853431307079680/facesitting2.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1074372013931643040/AbandonedScornfulAlligator.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517325446062091/BEST_SEX_3.mov", + "https://cdn.discordapp.com/attachments/1066334227257380937/1073697229241585714/video_2023-02-09_00-27-05.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1071502563515584752/Discord.mp4.ZonnaX.ZONNAX11.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1071499965181993050/video_2023-02-04_22-07-22.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1070383110715347104/facesitting1.MP4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517320194789426/BEST_SEX_12.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517320563900527/BEST_SEX_13.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517321222402088/BEST_SEX_14.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517326259757207/BEST_SEX_11.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/family.json b/src/storage/nsfw/family.json new file mode 100644 index 0000000..8f08509 --- /dev/null +++ b/src/storage/nsfw/family.json @@ -0,0 +1,21 @@ +[ + "https://cdn.discordapp.com/attachments/998331825426546755/1023491974692601866/SexHouseAmator6.mp4", + "https://cdn.discordapp.com/attachments/826202644888158218/826672572594389031/video0-17.mp4", + "https://cdn.discordapp.com/attachments/979103092266123264/1021218299532550174/FUCKING_my_stepSISTERs_SLUTTY_holes_MP4_High_Quality.mp4", + "https://cdn.discordapp.com/attachments/979103092266123264/1024463797924147260/video-1660387035.mp4", + "https://cdn.discordapp.com/attachments/861528923535704074/918243489639186432/LinenUncomfortablePika-mobile.mp4", + "https://video.twimg.com/amplify_video/1536459588534403075/vid/1280x692/MU1YHtyCVRttxzi-.mp4?tag=14", + "https://cdn.discordapp.com/attachments/912913817229471764/914155977178251274/xkXxaVXevoI_GiQL.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140079465832468/porn_16.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140352653459526/1231231.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937655864500234/VID_20211130_161317_905.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146348771721236/xvideos.com_e0cbe1711afa14c7199d8c9fd296970a.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146347937050634/xvideos.com_f3fa79f2c99e3fd9bad2df2f775df1e1-1.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1048338292107657286/trim.316EA845-C41E-427C-B2DA-697CA8B015E8.mov", + "https://cdn.discordapp.com/attachments/715597787420426260/792249882420314112/Step_dad_and_daughters_family_threesome_sex.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/827332511758680114/Step-Sis_Caught_Masturbating_During_Yoga_Session.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146225098469397/xvideos.com_b6bc62375676c51cd68b8c0b523efc19.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146181007962182/xvideos.com_7c8e1f56c2d567b97e136f4ccd57290b-1.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146185990795304/xvideos.com_71ef12f74aa36d3bcccb25deaf3cb292.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146293453037609/xvideos.com_d8b3c99880f20707d4a22c719e70610f-1.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/gay.json b/src/storage/nsfw/gay.json new file mode 100644 index 0000000..c0f7423 --- /dev/null +++ b/src/storage/nsfw/gay.json @@ -0,0 +1,499 @@ +[ + "https://cdn.discordapp.com/attachments/876734344033611816/893287524724793344/Cute_twink_gets_his_first_interracial_bareback_gangbang.mp4", + "https://cdn.discordapp.com/attachments/876734344033611816/891534416566976562/He_picked_up_his_classmate_and_put_dick.mp4", + "https://cdn.discordapp.com/attachments/876734344033611816/888944733072805889/DP_fucked_twink_gets_punished_for_stealing_with_his_daddy.mp4", + "https://cdn.discordapp.com/attachments/980067620013359114/1013519703827816458/1626052898380815200.mp4", + "https://cdn.discordapp.com/attachments/980067620013359114/1013519414215323768/VID_20220103_022528_805.mp4", + "https://cdn.discordapp.com/attachments/980067620013359114/1013519490614566994/VID_20220629_151154_842.mp4", + "https://cdn.discordapp.com/attachments/980067620013359114/1013519579336683520/twitter_20220526_091118.mp4", + "https://cdn.discordapp.com/attachments/1040314634219044934/1042111279512436798/video0-43.mp4", + "https://cdn.discordapp.com/attachments/914131657622167582/1025869244757459004/downloadfihhle-3.mp4", + "https://cdn.discordapp.com/attachments/924907162378043392/1000719545729814568/PushySorrowfulHerald-mobile.mp4", + "https://cdn.discordapp.com/attachments/980067620013359114/1013519544968552479/twitter_20220530_160121.mp4", + "https://media.discordapp.net/attachments/960313977408200774/960330878486196224/video5773708520079755963.mp4", + "https://cdn.discordapp.com/attachments/643131604285390848/1113649012533383228/RoughVastGalapagossealion-mobile.mp4.mp4", + "https://cdn.discordapp.com/attachments/643131604285390848/1113649059316650014/20210911-210000-ParadoxLife-id4750294.mp4", + "https://cdn.discordapp.com/attachments/643131604285390848/1113649086227292220/wbThhtl66LVuwDxH.mp4_tag14.mp4", + "https://cdn.discordapp.com/attachments/350655486657429508/883514441474408458/video0.mp4", + "https://cdn.discordapp.com/attachments/350655486657429508/886284330421334126/video0.mp4", + "https://cdn.discordapp.com/attachments/350655486657429508/879386681843781683/video0.mp4", + "https://cdn.discordapp.com/attachments/350655486657429508/871412849019338792/video0.mp4", + "https://cdn.discordapp.com/attachments/350655486657429508/854761064284684288/video0.mp4", + "https://media.discordapp.net/attachments/975397474166517880/984462400352821248/GargantuanEmbarrassedShorebird.mp4", + "https://media.discordapp.net/attachments/975397474166517880/984462414709919754/video0-1.mp4", + "https://media.discordapp.net/attachments/975397474166517880/997808188831314020/video5474128430855362451.mp4", + "https://media.discordapp.net/attachments/975397474166517880/997808188915187742/video5775960319893441587.mp4", + "https://cdn.discordapp.com/attachments/945643785432498206/1087093765438709850/SPOILER_femboy.mp4", + "https://cdn.discordapp.com/attachments/960313977408200774/960330879463489566/video5775960319893441587.mp4", + "https://cdn.discordapp.com/attachments/960313977408200774/960330878486196224/video5773708520079755963.mp4", + "https://cdn.discordapp.com/attachments/960313977408200774/960330878117113926/video5773708520079755890.mp4", + "https://cdn.discordapp.com/attachments/638630704552345623/856664344547819540/xvideos.com_19cfaafe57398af9f84a40837b1a22d1-1.mp4", + "https://cdn.discordapp.com/attachments/638630704552345623/818723449915834378/video0.mp4", + "https://cdn.discordapp.com/attachments/470582112433602572/909137643646906388/GargantuanEmbarrassedShorebird.mp4", + "https://media.discordapp.net/attachments/963012256591913010/1001438660266315857/79569e2f-cb80-4a07-804b-5672eb08023e.mp4", + "https://media.discordapp.net/attachments/963012256591913010/1001438658584379462/Porntube_gay5.mp4", + "https://cdn.discordapp.com/attachments/971503618337419284/974399438997061652/rs6J7Ic-rOq3mDc.mp4", + "https://media.discordapp.net/attachments/998331826433171507/1010301313654980648/SEXHAUSE_Gay.mp4", + "https://cdn.discordapp.com/attachments/914131657622167582/1039321265401512087/ElementaryObedientBagworm-mobile.mp4", + "https://cdn.discordapp.com/attachments/1099073830531637258/1099134443911925760/-6040795049042920944.mp4", + "https://cdn.discordapp.com/attachments/876734344033611816/886776523544215552/Deep_throat_bbc_dick.mp4", + "https://cdn.discordapp.com/attachments/350655486657429508/839280418062467093/video0.mp4", + "https://cdn.discordapp.com/attachments/350655486657429508/839280418662514698/video1.mp4", + "https://cdn.discordapp.com/attachments/350655486657429508/836241077295775784/video0.mp4", + "https://media.discordapp.net/attachments/1005505298745794591/1010222976244908102/BRO_MOMENT.mp4", + "https://cdn.discordapp.com/attachments/876734344033611816/897636807129317446/Hunk_gets_facialized_by_bbc.mp4", + "https://cdn.discordapp.com/attachments/914131657622167582/1017659006300454942/ssstwitter.com_1662207435314.mp4", + "https://cdn.discordapp.com/attachments/914131657622167582/1022619420104871946/1663520264616510.webm", + "https://cdn.discordapp.com/attachments/914131657622167582/1021872334182817832/twitter_20220723_104900.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1085959707287638057/IMG_5617-1.jpg", + "https://cdn.discordapp.com/attachments/1067894897333514260/1123636736770187264/received_990969555422523.mp4", + "https://media.discordapp.net/attachments/930205288357834782/950422773556207666/result_1.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1128117717325590528/Screen_Recording_20230710_175508_Chrome.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1127962264960499812/Tumblr_l_624442357912910.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1127808496054849576/Tumblr_l_193385597839756.jpg", + "https://cdn.discordapp.com/attachments/990364397396451368/991836960165462107/rz4NRRVQBhIMTd_3.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1127649440052818002/Tumblr_l_573331340480248.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1127649279213830284/Tumblr_l_573433845996254.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1127649244715696322/Tumblr_l_573837666331663.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1127629829018222663/02C16C16-481B-4197-B97B-CA8BC1AC6049.mov", + "https://media.discordapp.net/attachments/862551844362780682/1121666377342783549/received_641214737920320.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1127313076761403423/Tumblr_l_539015120974972.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1127097376016977920/22491d6bd96c1124.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1126908826457743380/lv_0_20230707181158.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1126530998541234266/Merry_Christmas-1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1126122991932162089/In7dctyk2Vw.jpg", + "https://media.discordapp.net/attachments/1070885638104174772/1098861304342646814/7257d4c805c94837916c2055a4608911.mov", + "https://cdn.discordapp.com/attachments/793594846153539604/1126076390446469201/image0.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1126053174940274718/redditsave.com_daily_thug_post_1_the_thug_shaker-z3waksb9jaw81.mp4", + "https://cdn.discordapp.com/attachments/639240841591783466/752843621467947009/image0.gif", + "https://media.discordapp.net/attachments/932210631099166750/1119068769218732092/2023-06-16-03-58-07.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1125668829503160350/OpulentFearfulAntarcticfurseal-mobile_1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1125608097168232458/Tumblr_l_309393025414670.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1125592011500691476/kDKoLCyFHJNe6XXj.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1125547395632074873/rapidsave.com_-c2imfghlz2pa1_1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1125356273907531886/RecordIt-A72D137C-D11D-460D-B399-CC446934CDD3.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1125283077132918864/Snapchat-1772598198.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1125184353681555506/onika.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1124857737608691762/Tumblr_l_193405513427680.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1124641945302597702/rapidsave.com_-c2imfghlz2pa1.mp4", + "https://www.youtube.com/watch?v=m4QO5jyEw2E", + "https://cdn.discordapp.com/attachments/793594846153539604/1123982732813422732/RDT_20230629_172440.mp4", + "https://cdn.discordapp.com/attachments/1122681162427551777/1123325154940960818/acf26f7d-700f-4c52-b50e-2ad9b2e38526.mov", + "https://cdn.discordapp.com/attachments/639832202309271593/1041132562191503410/video0-2.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1120613399122956459/Tumblr_l_222709971473735.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1120613373063725086/Tumblr_l_223545900560862.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1120247574574678046/VID_20230619_035959_564.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1120092473419645071/HmNfhzRY1-hf1jpE.webm", + "https://cdn.discordapp.com/attachments/793594846153539604/1119638664759218226/YES_KING.mp4", + "https://video.twimg.com/ext_tw_video/1663283337769648129/pu/vid/720x1280/hL99aOH_BeUcKVlv.mp4?tag=12", + "https://cdn.discordapp.com/attachments/793594846153539604/1119136965741252638/ssstwitter.com_1686893378408.mp4", + "https://media.discordapp.net/attachments/793594846153539604/1009284534111584387/bros_being_bros.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1118700350984163409/157ce35702af314795849b87cb462c57.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1118700170121580564/interracial_blowjob_14.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1115709881207500821/RDT_20230424_193420.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1112057464855199754/WrathfulApprehensiveKoalabear-mobile.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1112041824329138338/QFAHi4ag-kxv4Gva.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1111638341260169338/20221104_035919.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1111615554319564870/tumblr_n0m652DEVB1rm40aso1_500.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1111355992375033917/gtqoBdswlelAXweJ.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1111355490740478083/JY6QCup-eeTOMQ2s.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1121380541552394283/17Fpmtpvhp8s2AS1.mov", + "https://cdn.discordapp.com/attachments/793594846153539604/1121355161097490492/16873179285600.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1121354155160776745/16872890372731.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1121352216037568573/video_2023-06-11_00-42-10.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1121150308165357678/22491d6bd96c1124.mp4", + "https://cdn.discordapp.com/attachments/860539149046906920/1121134225609990235/Snapchat-182910043.mp4", + "https://cdn.discordapp.com/attachments/1062449010599809076/1120861060606468167/VID_20230505_180124_007.mp4", + "https://cdn.discordapp.com/attachments/639832202309271593/1099646275927945366/GoldMediumgoldenrodBunting-mobile.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1118470761406025809/2mFp2lWn638.jpg", + "https://video.twimg.com/ext_tw_video/1667914800855236614/pu/vid/720x1280/o58mEMf4YF0m_MRF.mp4?tag=12", + "https://cdn.discordapp.com/attachments/793594846153539604/1118139248143507476/YouCut_20230613_142408930.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1117879199580037150/IMG_20230612_210632_405.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1117363117295419413/ssstwitter.com_1686470470615.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1117197915111297216/Q_SZc-vgHTEl_Flw.mp4", + "https://cdn05.bdsmlr.com/uploads/photos/2019/03/295659/bdsmlr-295659-7MaqjHNewJ.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1116970511281422386/onika-1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1116969855350997023/onika.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1116838640354607164/lv_0_20230129124154.mov", + "https://cdn.discordapp.com/attachments/793594846153539604/1115386717365620856/48lwlmPtBc8-wEYn.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1115385113648320582/InShot_20230606_065722471.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1115319135073730620/20230606_023833.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1115139614135554048/Thug_Hunter_trailer_5.mov", + "https://cdn.discordapp.com/attachments/877697684486639637/929924877933223936/Thug_Hunter.mp4", + "https://media.discordapp.net/attachments/1084417469038473317/1108853911219093674/6B7F100D-03A9-45D9-A3B7-C335F6F67D35.gif", + "https://media.discordapp.net/attachments/766693175145398322/921075281538728027/image0.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1114255955790671922/EE9UVN5b4TjRzZNa.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1043194082983428167/serdarabi31_1060552840232484865360P.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1113564346329616436/VID_20230326_210727_920.mp4", + "https://cdn.discordapp.com/attachments/963012256591913010/1001437431637229598/nT_c8rjffchhh3f6dyejakd4uf7_1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1112858476448845924/VID_20230529_144005_420.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1110996679911550997/WiddC2zmcDXZvXCh.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1110950340557287495/1412141.mp4", + "https://media.discordapp.net/attachments/1014504146126262323/1021378867958648913/young_twink_facial.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1110777149184561162/Sd6o6hqUG3fe6Ven.mp4", + "https://media.discordapp.net/attachments/1077574951848136705/1091091975266123886/giphygun.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1110207470116286546/VID-20230511-WA0014.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1110193462613114890/v7d11q78MWQ.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1110193439515095140/0Zrows8vFZU.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1110193417725681744/sASXNKwVuJM.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1110193402819117166/rGUStW8FAEw.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1110193386817855498/dBhUOemOIo8.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1110193362029510776/kw03avHJdrs.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1110170739077828618/VID_20230522_130717_313.mp4", + "https://media.discordapp.net/attachments/988862412260274176/1104467915589300275/0DC76E57-1A24-48DE-A065-D59D2D84B549.gif", + "https://media.discordapp.net/attachments/793594846153539604/1107460861305561149/doc_2022-04-14_17-30-04.mp4", + "https://101hotguys.com/wp-content/uploads/2023/03/guy_cumming_04.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1108606590623428638/received_803813857595167.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1108503852606566521/rapidsave.com_-b2sh6nzl46ta1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1108421185185779742/RPReplay_Final1680221124.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1108912020813787157/JfJ_YMkTV_TmBFCU.mp4", + "https://media.discordapp.net/attachments/793594846153539604/1105821569806254180/1579982787_20253657.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1108264532075368479/images_31.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1108125908440727562/JqAtEoxGx4I.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1108125892896620574/jou5TiVXbWY.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1107964211960758343/VuyrmyYAowo.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1107887637299204136/SPU-3Q7hkVA.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1107887630168895508/cT-_ytuA7Pg.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1107887607444144148/nLW8gTbTkq8.jpg", + "https://media.discordapp.net/attachments/793594846153539604/1024384083788312756/6B7F100D-03A9-45D9-A3B7-C335F6F67D35.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1107685085542629487/L8roQ2g63cg.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1107509105389740122/video_2023-05-13_01-47-30.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1107508974137380864/ProductiveSelfishSeaurchin-mobile-1.mov", + "https://cdn.discordapp.com/attachments/793594846153539604/1107508940113199185/video_2023-05-08_01-08-27.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1107460861305561149/doc_2022-04-14_17-30-04.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1107407526410072205/Not_gay_BUT.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1107395591157317674/gif-maker-2_01H0CW9FGXHKYCE1F2E3RQD5SZ.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1107242310653198426/daddy_im_cumming.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1107209577566568469/Nj5YmbocNEU.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1107209526261841940/Un_bqyiRbAI.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1107099822621741056/Sg6K6o3NWqAAPI6r.mp4", + "https://media.discordapp.net/attachments/639832202309271593/1106912152113127505/SeagreenIgnorantBuzzard-mobile.mp4", + "https://video.twimg.com/ext_tw_video/1657160433462136835/pu/vid/720x720/xsVwBol7QIJKPXur.mp4?tag=12", + "https://cdn.discordapp.com/attachments/793594846153539604/1106876664178282496/URTOcNIcU6shIXJR.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1100754695800233984/tumblr_n0m652DEVB1rm40aso1_500.gif", + "https://cdn.discordapp.com/attachments/1096073349257498644/1098186091879747584/received_1228397251369698.mov", + "https://i.gyazo.com/24719391f46a7e653622488cc7d02aee.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1106696781267480658/preview.mp4.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1106566139066196019/6aqflq0xcJo.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1106566091905454121/xuJxQjx0bqc.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1106566068807401614/jC7tjE6fYtM.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1106566041745760426/i5DZAxLwopE.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1106565430979604510/XOmXGXVPYjk.jpg", + "https://101hotguys.com/wp-content/uploads/2023/03/beautiful_fuck_21.gif", + "https://cdn.discordapp.com/attachments/1098241573369683999/1106319916346376364/oHFvidbq.gif", + "https://cdn.discordapp.com/attachments/1092165011746599073/1105541322133225616/trim.E85F19F4-01A9-46AC-8C51-3343B0BEF4FD.mov", + "https://cdn.discordapp.com/attachments/793594846153539604/1105821569420382318/gay-sex-gif-smutty-com_001.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1105777161161408512/bigdog.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1105613233211047987/kbCOiVgt-1-1_1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1105165421063192687/image-18_1.png", + "https://cdn.discordapp.com/attachments/793594846153539604/1105031611889762374/Snapchat-1846383561.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1105006222735843398/zVr75VLHu4A.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1105006205920878612/GnO2K-XEqbo.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1105006196341084230/GBkljTiMTI.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1105006184789966889/EU7Fa0-V8ec.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1105006168474140732/jGJNkyPmrQc.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1104984444420501586/video_2023-03-14_21-30-41.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1104983319126491217/video_2022-11-20_03-28-26.mp4", + "https://media.discordapp.net/attachments/793594846153539604/1100754695800233984/tumblr_n0m652DEVB1rm40aso1_500.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1104605314160001044/jasonluv.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1104535349591543819/IMG_6176.MP4", + "https://cdn.discordapp.com/attachments/793594846153539604/1104470312667594793/ssstwitter.com_1683394515569.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1104203365430341743/0506.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1104121660598124674/bigdog.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1104060261427597424/VID_20230505_180124_007.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1103751610192101474/4_ogNh3c6w1An51P.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1103750387237933207/Untitled.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1103750334507131120/VID_20230423_054601_466.mov", + "https://cdn.discordapp.com/attachments/793594846153539604/1103723312720392212/hump_day.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1103622620332687360/16831101123650.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1103577029045133322/rapidsave.com_-zk14793z0rta1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1103576621803389029/received_1206816333074846.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1103416743310929950/lv_0_20230320101953.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1102317325128056872/10-inch-bbc-dmv-looking-for-fun-v0-kmnyqw7z6lx91.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1086248322580365372/ssstwitter.com_1679051794394.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1101968375263019088/rapidsave.com_-z0hmcq8y0lwa1.mp4", + "https://wetgif.com/wp-content/uploads/gay-porn-gifs-76.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1101014439555239986/GU_fqrAwy8nAF4_i.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1101014430537498684/PXHmLgubvk-P8Rra.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1101014395116605450/8CE-6YDH30G9hIow.mp4", + "https://media.discordapp.net/attachments/975869689077047356/1019652503085776907/ezgif-5-bf50bc049b.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1100360652607983637/VID_816580326_235913_599.mp4", + "https://cdn.discordapp.com/attachments/1055556030001578046/1099468672189333564/received_711520134104275.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1099458865319399585/luckiest_man_in_the_room.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1099458799959556217/kiss-make-out.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1099458668145164378/gay-kissing.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1099458513044000798/rapidsave.com_-zk14793z0rta1.mp4", + "https://media.discordapp.net/attachments/839901938413469696/1098663584646574090/shots_fired.gif", + "https://cdn.discordapp.com/attachments/824394363667873913/1097260003800404008/myjnia_wystep.gif", + "https://media.discordapp.net/attachments/839901938413469696/1096519203055472680/HUGEPYTHON.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1099285949239803944/1663012042134719_1.mp4", + "https://media.discordapp.net/attachments/793594846153539604/1091165839526477924/bdsmlr-777449-kay4ofrYVX.gif", + "https://media.discordapp.net/attachments/918497377499906089/1064232516006985778/image0-1.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1099075642869432470/wiwi_1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1099073574649733261/9c6M-XmkrVEcgLwF-1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1099057520577884170/bdsmlr-11243591-0M4RMmijry.gif", + "https://cdn.discordapp.com/attachments/887365854914809958/1009824798706237450/Wip.mp4", + "https://cdn.discordapp.com/attachments/987024039698661417/1004128610627625011/trim.4B9F7E4C-9047-4236-B4BD-5E58F74BD3D6_Bounce.webm", + "https://cdn.discordapp.com/attachments/793594846153539604/1098768800507240478/Screen_Recording_20230210_225408_Chrome.mp4", + "https://media.discordapp.net/attachments/748698258100060292/1005936069298098340/cm-chat-media-video-1bd541f99-11e4-5d89-972b-34e7f2396fda81700.mov", + "https://cdn.discordapp.com/attachments/793594846153539604/1098369499398418502/RPReplay_Final1680221124.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1098369262147612833/rapidsave.com_-zk14793z0rta1.mp4", + "https://media.discordapp.net/attachments/974387289193078877/977762987983134720/cachedGif.gif", + "https://media.discordapp.net/attachments/878213122857533523/947083729204039711/1737324307.gif", + "https://cdn.discordapp.com/attachments/829475719632781322/1096142894148100127/Snapchat-1605971306.mp4", + "https://cdn.discordapp.com/attachments/829475719632781322/1096530185681125487/20230412_201649_001.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1096902869833240626/red_2.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1096902700609835129/randomthugfootage218418.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1096836309974261780/ssstwitter.com_1681576451808.mp4", + "https://media.discordapp.net/attachments/318465436637200384/823866966943072316/e8a6025c-5667-4743-bf99-83cef4397418_1.gif", + "https://media.discordapp.net/attachments/967508971529326672/967609827578744882/Di_Drone_Strike-1.gif", + "https://media.discordapp.net/attachments/793594846153539604/1081953209272238160/EisHOkdEF3-VQm0y.mov", + "https://media.discordapp.net/attachments/1043474440421392394/1073199046434492456/ViAPBPBc.mp4", + "https://cdn.discordapp.com/attachments/731099242914906142/905408802352951306/6_1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1096724913013919804/rapidsave.com_-zk6vqkg6cwta1.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1096702280503398410/lv_0_20230415005935.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1096522148950065233/fmEScikDPZk.jpg", + "https://cdn.discordapp.com/attachments/1091487873200558151/1096489828650070058/ezgif-1-d7ba0b300e80.gif_1.gif", + "https://media.discordapp.net/attachments/662669534498390043/861483812436705280/15470898521730.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1096237581936644116/VID_20230414_125445_232.mp4", + "https://101hotguys.com/wp-content/uploads/2019/12/Double_penetration%20gay_04.gif", + "https://101hotguys.com/wp-content/uploads/2020/02/Gabriel_and_Daniel_05.gif", + "https://101hotguys.com/wp-content/uploads/2020/02/Gabriel_and_Daniel_01.gif", + "https://101hotguys.com/wp-content/uploads/2020/02/fuck_boy_05.gif", + "https://porngifmag.com/content/2018/12/lustbox-cockyboys-levi-karter-carter-dane-jimmy-durano_001.gif", + "https://onlyhotguys.com/wp-content/uploads/2023/03/fuck1.gif", + "https://101hotguys.com/wp-content/uploads/2020/05/ass_lick_03.gif", + "https://101hotguys.com/wp-content/uploads/2023/03/beautiful_fuck_04.gif", + "https://101hotguys.com/wp-content/uploads/2020/05/ass_lick_04.gif", + "http://hunk.ws/wp-content/uploads/2021/11/1917.gif", + "https://101hotguys.com/wp-content/uploads/2020/05/ass_lick_05.gif", + "https://101hotguys.com/wp-content/uploads/2020/05/ass_lick_01.gif", + "https://media.discordapp.net/attachments/793594846153539604/1065246626609893376/twl37njd31291.gif", + "https://wetgif.com/wp-content/uploads/gay-porn-gifs-73.gif", + "https://101hotguys.com/wp-content/uploads/2020/05/big_toys_05a.gif", + "https://media.discordapp.net/attachments/793594846153539604/832336583058653214/df71c7b16a459113cef67597ef649acb.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/850771128795267112/a2ba7994b518e3c9c76a1fa12ab901c0.gif", + "https://101hotguys.com/wp-content/uploads/2020/05/cum_is_so_sweet_15.gif", + "https://media.discordapp.net/attachments/793594846153539604/1007678251151400991/FDC0E165-6FD9-4001-9004-FD3AE1D684BC.gif", + "https://101hotguys.com/wp-content/uploads/2020/05/cum_is_so_sweet_13.gif", + "https://media.discordapp.net/attachments/793594846153539604/1010196351738466344/B89BEF0D-78F1-4A9D-80E6-ECDD24CE8ED0.gif", + "https://101hotguys.com/wp-content/uploads/2020/05/cum_is_so_sweet_10.gif", + "https://101hotguys.com/wp-content/uploads/2020/08/Naked%20Twink%20Wanking%20and%20Cumming%207.gif", + "https://101hotguys.com/wp-content/uploads/2023/03/naughty_series_02.gif", + "https://101hotguys.com/wp-content/uploads/2020/08/Naked%20Muscle%20Stud%20Wanks%20and%20Cums%202.gif", + "https://onlyhotguys.com/wp-content/uploads/2023/01/gay4.gif", + "https://media.discordapp.net/attachments/793594846153539604/1039560872751808623/Lusciousnet_I_Wouldnt_Mind_Being_An_1469174659.gif", + "https://101hotguys.com/wp-content/uploads/2020/08/hot_cumming_01.gif", + "https://media.discordapp.net/attachments/988862412260274176/1062775416785489970/caption-5.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/882409023784243210/tumblr_ojn3vxoPNE1shlq2wo1_500.gif", + "https://101hotguys.com/wp-content/uploads/2019/12/Double_penetration%20gay_01.gif", + "https://media.discordapp.net/attachments/793594846153539604/1007678343505776701/B252659C-368B-4460-AE61-E7F7DFD8D4CA.gif", + "https://101hotguys.com/wp-content/uploads/2020/11/hot_cum_16.gif", + "https://101hotguys.com/wp-content/uploads/2020/11/hot_cum_11.gif", + "http://www.wetwetpics.com/en/image/909124.gif", + "https://101hotguys.com/wp-content/uploads/2020/11/hot_cum_09.gif", + "https://101hotguys.com/wp-content/uploads/2020/11/hot_cum_08.gif", + "https://wetgif.com/wp-content/uploads/gay-porn-gifs-54.gif", + "https://101hotguys.com/wp-content/uploads/2020/11/hot_cum_05.gif", + "https://101hotguys.com/wp-content/uploads/2020/11/hot_anal_02.gif", + "https://101hotguys.com/wp-content/uploads/2020/11/hot_anal_01.gif", + "https://101hotguys.com/wp-content/uploads/2021/03/Dante_Colle_is_a_gorgeous_bareback_slut_06.gif", + "https://api-cdn.rule34.xxx/images/1225/f8a5dea209780acbee7da9e7fcb0016c.gif", + "https://101hotguys.com/wp-content/uploads/2021/03/Dante_Colle_is_a_gorgeous_bareback_slut_05.gif", + "https://101hotguys.com/wp-content/uploads/2021/03/Dante_Colle_is_a_gorgeous_bareback_slut_01.gif", + "https://101hotguys.com/wp-content/uploads/2021/03/guys_cumming_02.gif", + "https://wetgif.com/wp-content/uploads/gay-porn-gifs-48.gif", + "https://101hotguys.com/wp-content/uploads/2023/03/good_cock_suck_03.gif", + "https://101hotguys.com/wp-content/uploads/2021/03/randy_kaleb_bareback_02.gif", + "https://101hotguys.com/wp-content/uploads/2021/03/Charge_Me_Up_08.gif", + "https://101hotguys.com/wp-content/uploads/2021/03/Charge_Me_Up_02.gif", + "http://www.welovenudes.net/wp-content/uploads/2017/08/pheonix_fellington-black-gay-xxx-gif.gif", + "https://101hotguys.com/wp-content/uploads/2021/05/exchanging_cum_11.gif", + "https://101hotguys.com/wp-content/uploads/2021/05/exchanging_cum_06.gif", + "https://101hotguys.com/wp-content/uploads/2021/05/exchanging_cum_04.gif", + "https://media.discordapp.net/attachments/793594846153539604/1081914378758139954/image0-1.gif", + "https://media.discordapp.net/attachments/793594846153539604/832335118189592596/tumblr_npp0i9FW1p1s8xa66o2_500.gif", + "http://www.wetwetpics.com/en/image/gay-double-penetration-gif-5.gif", + "https://media.discordapp.net/attachments/793594846153539604/1044379781854134333/9Cloud.us_0049-70886386478_Ilikeitall425_Hungdudes_Squeeze_The_.gif", + "https://media.discordapp.net/attachments/1039930513697280080/1067776462846971956/attachment.gif", + "https://media.discordapp.net/attachments/793594846153539604/1078568938113343529/projectmx-20230224-154645-000-resize.gif", + "https://porngifmag.com/content/2018/12/lustbox-cockyboys-levi-karter-carter-dane-jimmy-durano_005.gif", + "https://101hotguys.com/wp-content/uploads/2021/07/Everett_05.gif", + "https://cdn.discordapp.com/attachments/974875412125589504/1063349615094677535/IMG_0834.gif", + "https://101hotguys.com/wp-content/uploads/2021/07/submission_04.gif", + "https://101hotguys.com/wp-content/uploads/2021/07/submission_05.gif", + "https://101hotguys.com/wp-content/uploads/2023/03/naughty_series_05.gif", + "https://wetgif.com/wp-content/uploads/gay-porn-gifs-5.gif", + "https://101hotguys.com/wp-content/uploads/2023/03/beautiful_fuck_03.gif", + "https://101hotguys.com/wp-content/uploads/2021/08/cum_hole_05.gif", + "https://101hotguys.com/wp-content/uploads/2023/03/beautiful_fuck_28.gif", + "https://101hotguys.com/wp-content/uploads/2021/08/cum_hole_08.gif", + "https://101hotguys.com/wp-content/uploads/2022/11/group_sex_hot_guys_07.gif", + "https://media.discordapp.net/attachments/1033794350959837195/1095009236800516136/1679944812021.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1095010695914995732/20230410_222257.jpg", + "https://media.discordapp.net/attachments/1035149317813579777/1035996271363756082/SPOILER_Cock_eye.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1094932616282652732/lv_0_20230408140547.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1094931395111030875/threesome-blowjob-cum-gay-porn-gifs.gif", + "https://cdn.discordapp.com/attachments/308448739943776256/897921734668345374/VID_20210617_202405_792.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1094773529070804992/bdsmlr-11193323-HN6CSXBrKv.gif", + "https://101hotguys.com/wp-content/uploads/2023/03/beautiful_fuck_02.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1042276189001224242/Snapchat-1762773146.mp4", + "https://media.discordapp.net/attachments/793594846153539604/1078427975000797275/doc506797935_647431320.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1093978164147007558/ssstik.io_1680887134778.mp4", + "https://media.discordapp.net/attachments/1007617991309013054/1017471534564118599/tumblr_lg6pepYQft1qfi50mo1_400.gif", + "https://media.discordapp.net/attachments/793594846153539604/1020328357692452864/KEPTSECRET-AND-ROBTHELLIST-TRAILER-GIF-2.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1093592704509812866/ezgif-3-3e56811fcc.gif", + "https://media.discordapp.net/attachments/853300945253564416/1008367164878753833/final_60bc48055de15900fb35f1f5_608972.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1093693650850025522/Fs_mQ__WcAQ0xhM.png", + "https://media.discordapp.net/attachments/986203508099383337/1057929529034801202/ezgif.com-gif-maker_3.gif", + "https://media.discordapp.net/attachments/793594846153539604/1091595723268706384/bdsmlr-10794513-JX7b9a6xAn.gif", + "https://cdn.discordapp.com/attachments/1007689568809656372/1093079649195663380/1680447863025.gif", + "https://media.discordapp.net/attachments/959312567627567114/968285545400795226/688_1000.gif", + "https://realbooru.com/images/e1/92/e1927e75305e84665f70e82a06e8ea56.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1093022667680010331/nT_vje9hy074uujynz7t75t41fe.mp4", + "https://cdn.discordapp.com/attachments/781573533838344193/1089769516193550486/trim.F5BCA48C-2C0D-46D7-9A24-43B063BB42F0.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1092897852725924000/d9139660a1591b52.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1091993264254619668/16745488356810.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1091844625729327154/1661976361887949.webm", + "https://media.discordapp.net/attachments/939844072313585664/1000854674615832716/SPOILER_toxikcz.gif", + "https://media.discordapp.net/attachments/793594846153539604/954805312601325638/tumblr_n0m652DEVB1rm40aso1_500.gif", + "https://realbooru.com/images/a8/fe/a8fe2fe353e1b64d6e46d59fd640b9b4.gif", + "https://cdn.discordapp.com/emojis/1081482339898626058.gif?size=48&quality=lossless", + "https://media.discordapp.net/attachments/1020792958477406283/1090954888499965992/2023-03-30_160329.gif", + "https://media.discordapp.net/attachments/528793773346652160/946186374359449620/caption.gif", + "https://media.discordapp.net/attachments/902641226984095795/902661908920959006/IMG_1988.gif", + "https://media.discordapp.net/attachments/507943964976873484/1058945345842860032/image0-8.gif", + "https://media.discordapp.net/attachments/878431660822110238/1078003057436131368/caption-3.gif", + "https://media.discordapp.net/attachments/793594846153539604/1090128959200575498/IMG_2276.MP4", + "https://media.discordapp.net/attachments/827190285716684820/833716256355778582/20210314_170457.gif", + "https://media.discordapp.net/attachments/457701905464950795/907221198075756554/GIF-210211_160604.gif", + "https://media.discordapp.net/attachments/904760503207870484/991309665843564554/2022-06-28-19-49-45.gif", + "https://media.discordapp.net/attachments/1069446540562808852/1070507198616174743/tCorlgQL.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1092819217176350791/received_295583724886226.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1092740523636297838/5.mp4", + "https://cdn.discordapp.com/attachments/808427053207781397/860655713819164703/sensuaIhyung_1398075034871205889320P.mp4", + "https://media.discordapp.net/attachments/909634088858701845/944189036539555870/caption.gif", + "https://media.discordapp.net/attachments/802188418846425118/1011245722487758868/caption-2.gif", + "https://media.discordapp.net/attachments/859894503607369738/862052008739602442/image0.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1092395722416078848/eb8c77be2599e016c74f0a5564d39be7.png", + "https://cdn.discordapp.com/attachments/793594846153539604/1088259234451443813/Fk-6sKeWAAIpQlq.png", + "https://cdn.discordapp.com/attachments/793594846153539604/1088188807976845394/VID_20230322_125041_511.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1088031122228789308/VID_20230322_122639_149.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1087819709325516870/22685881.webp", + "https://cdn.discordapp.com/attachments/793594846153539604/1087753865039970345/VID_20230322_010504_713.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1087710531764367360/niggas_being_gay_2_1.mov", + "https://cdn.discordapp.com/attachments/793594846153539604/1087580502988435476/IMG_20230320_223512.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1087535616977272924/RDT_20230320_193653.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1087297774304895036/VID_20230320_115756_693.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1087114111495708722/Brazzers_Gay_3.jpeg", + "https://cdn.discordapp.com/attachments/793594846153539604/1087105496382718113/lv_0_20230319210649.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1086970870033023036/lv_0_20230319095540.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1091114097258549310/VID_20230320_115756_693.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1091094824783970304/FJeWSylWUAAHjnL-768x1024.jpeg", + "https://cdn.discordapp.com/attachments/1022972217350438932/1091077321781416076/fab20a73670c529d768c7164a1beac4beabc201c.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1090919903000789032/fade.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1090734318541873272/7fe451e831472ce7c6cf1df7164eec4d.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1090720937512550520/IMG_20230330_011630_572.jpg", + "https://media.discordapp.net/attachments/1068621122687484055/1086080521995559072/IMG_7721.png", + "https://cdn.discordapp.com/attachments/793594846153539604/1090658150388092998/ImaginativeFussyOropendula-mobile.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1090653162102337556/LightgreenBlindUngulate-mobile.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1090652789631352922/FrozenThoseSunbear-mobile.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1090635809104875580/vid_360p1.mp4", + "https://media.discordapp.net/attachments/617054493657530378/924709806571421746/0849DABF-104D-4235-9E81-3F6A75223EDD.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1086664910278246551/lv_0_20230225164952.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1082734537303404645/IMG_9405.MOV", + "https://cdn.discordapp.com/attachments/793594846153539604/1086612293963481148/83C308BC-D8B1-47FB-B528-F205E0008C1D.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1086530512685899816/trim.E8F3A976-E48A-4C31-B335-D14E89FD8AE1.mp4", + "https://cdn.discordapp.com/attachments/849299540263174174/1088773035810623579/651354.gif.mp4", + "https://cdn.discordapp.com/attachments/849299540263174174/1088773029896663150/Vont.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/1088773015564714025/tumblr_p3bvflRGLK1s61zw6o1_500.gif", + "https://cdn.discordapp.com/attachments/849299540263174174/1082183631780450325/ssstwitter.com_1677997137472.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/1082183536129355886/ssstwitter.com_1677997454199.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/1082183362590036128/ssstwitter.com_1677961384990.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/1082183324409282662/ssstwitter.com_1677969789312.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/1082183152832893029/pvnP3-R63rvxVet3.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/1082182929788190800/bdsmlr-33092-tFirmomByY.gif", + "https://cdn.discordapp.com/attachments/849299540263174174/1081338370090860604/7.jpg", + "https://cdn.discordapp.com/attachments/849299540263174174/1046207510656319579/meafTGgaaaamhwIN_1SeCNy2U1SxY13.jpg", + "https://cdn.discordapp.com/attachments/849299540263174174/1045583656359567371/preview.jpg", + "https://thumb-p0.xhcdn.com/a/eedlx_8PCjRZ1vZXo0k0uA/000/182/594/910_1000.gif", + "https://cc.boyfriendtv.com/thumbs/bftv-full/2021-02/62/aa85bd0622351180ab20e7577fb9b2b77.mp4-full-5.jpg", + "https://thumb-p6.xhcdn.com/a/ardX64wT6mDQ0vZ1xMnx3w/000/189/732/516_1000.gif", + "https://cdn.discordapp.com/attachments/849299540263174174/913896357583024129/video0.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/913895966334140496/cachedVideo.mp4", + "https://67.media.tumblr.com/3f3b992c4b43eb383b97abada0ee94e8/tumblr_nwqo1hMjpv1tvkj3to1_500.gif", + "https://cdn.discordapp.com/attachments/849299540263174174/913568530392301628/video0.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/909525901249740831/video0.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/909525840688218122/video0.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/900784223894511716/video0.mp4", + "https://cdn.discordapp.com/attachments/849299540263174174/900784175609684028/video0.mp4", + "https://cdn.discordapp.com/attachments/849299540263174174/900783257002598440/video0.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/896418423121272842/video0_13.mp4", + "https://cdn.discordapp.com/attachments/849299540263174174/896418421267365888/video0_6.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/889949447742685204/image0.png", + "https://cdn.discordapp.com/attachments/849299540263174174/889949277785309255/video0.mov", + "https://cdn.discordapp.com/attachments/849299540263174174/889949021253287957/video0.mp4", + "https://cdn.discordapp.com/attachments/849299540263174174/883385825847549992/video0.mp4", + "https://cdn.discordapp.com/attachments/849299540263174174/883385672356999209/video0.mp4", + "https://cdn.discordapp.com/attachments/849299540263174174/875812398378934302/jcij57nrdl361.jpg", + "https://cdn.discordapp.com/attachments/849299540263174174/865386701319831592/Just_posted_this_hot_ass_vid_with_AngelRiveraXXX_check_it_out.mp4", + "https://cdn.discordapp.com/attachments/849299540263174174/864953422532837407/841_1000.gif", + "https://cdn.discordapp.com/attachments/737811353133383691/859335802525581382/SPOILER_rnEdqpa.mp4", + "https://cdn.discordapp.com/attachments/731192496884809780/744027900885336204/image0-2.gif", + "https://cdn.discordapp.com/attachments/643131604285390848/734472549014044823/EdToo0hWAAEDlqI.png", + "https://cdn.discordapp.com/attachments/731192496884809780/769289256656306226/SPOILER_unknown.png", + "https://cdn.discordapp.com/attachments/731192496884809780/771345774956249088/tumblr_p3bvflRGLK1s61zw6o1_500.gif", + "https://cdn.discordapp.com/attachments/731192496884809780/829319643792801792/image0.gif", + "https://cdn.discordapp.com/attachments/731192496884809780/829319673786400848/image0.jpg", + "https://cdn.discordapp.com/attachments/731192496884809780/849307479460544562/IMG_20210531_053727.jpg", + "https://cdn.discordapp.com/attachments/731192496884809780/853321601927741470/tumblr_nymmm8Taby1u82muio1_400.gif", + "https://media.discordapp.net/attachments/731192496884809780/855540904864514098/IMG_20210618_052849.jpg?width=389&height=675", + "https://media.discordapp.net/attachments/716789969447944196/834337574196871178/Screenshot_2021-04-21_7.59.05_PM.png", + "https://cdn.discordapp.com/attachments/849299540263174174/856619408213147668/4258069_-_Enji_Todoroki_Keigo_Takami_My_Hero_Academia_Nyo.png", + "https://cdn.discordapp.com/attachments/849299540263174174/856619253036482560/tw5bwqslse271.png", + "https://video-cdn3.gelbooru.com/images/76/ae/76aeda857f6748374665f5fcbca90627.mp4", + "https://media.discordapp.net/attachments/280017688942739456/847672234196992020/7e5a8554663fcdf7d7ed870584a0648e_1.jpeg?width=812&height=676", + "https://media.discordapp.net/attachments/280017688942739456/848498884098916352/8ze30l5n7x071.png?width=550&height=676", + "https://media.discordapp.net/attachments/280017688942739456/848597575002095656/image0.jpg", + "https://media.discordapp.net/attachments/280017688942739456/848760260021321748/1622361621158.png?width=465&height=676", + "https://media.discordapp.net/attachments/280017688942739456/849344431870312468/sample_ac7d2da32574d5e1e5e6381ffe46cbf4.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1132198588169060352/RDT_20230719_0121485127550067812358232.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1132198477741441074/RDT_20230719_0127094882679778275474008.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1132198405150617660/RDT_20230719_0129028270556650488087732.jpg", + "https://cdn.discordapp.com/attachments/798550577315446794/1053668664521535528/lv_0_20221217114927.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1131667525516677271/Tumblr_l_67759271560345.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1131636767422959656/rapidsave.com_-86n1216swzxa1.mp4", + "https://media.discordapp.net/attachments/793594846153539604/1125608097411506247/Tumblr_l_308523693681080.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1131331642552754207/RDT_20230719_233921.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1131290251055345714/25560h.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1131189538350444645/VID_20230719_140551_468.mp4", + "https://cdn.discordapp.com/attachments/1030536566776545381/1107417596262883369/0514.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1131180517522407524/The_thug_shaker_xnfo2f.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1131109184235114526/tumblr_n7xkgeiHWG1sj5zi0o1_500.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1099993616593727488/FussyBrownBasenji-mobile.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1130567555627614329/VID_20230718_002903.mp4", + "https://media.discordapp.net/attachments/793594846153539604/1128690764197658635/Tumblr_l_727299391670272.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1130490218210918450/VID_20230420_101537_148.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1130193441226244286/g0ZlHL2DwEtmnGrr.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1129491044979982416/KTvt8MVH6LK-MuaE.mp4", + "https://media.discordapp.net/attachments/793594846153539604/1061208495342501898/7446849_240p.mp4", + "https://cdn.discordapp.com/attachments/1038503737955729479/1040355943231258654/serdar_anam_anam_full.mp4", + "https://101hotguys.com/wp-content/uploads/2019/10/interracial_blowjob_14.gif", + "https://media.discordapp.net/attachments/639240841591783466/752843621467947009/image0.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1129057798299324566/271e5c4c348262696944d59e4fa0b37c.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1128959890367447070/1864942350.gif", + "https://media.discordapp.net/attachments/977998891259682856/985325726754562108/5fb1f3674e47dbd276e851161b815e64.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1128840556164943952/20230713_020849.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1128838942716854424/20230713_020237.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1128838416180707441/20230713_020032.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1128824520254443581/VID_20230625_202602.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1128794698094497923/xS_JJBSl8EVRG2jU.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1128690763828580453/Tumblr_l_727324670746273.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1128690595909615716/Tumblr_l_728554930921731.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1128676805872717924/Tumblr_l_742053594008151.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1128544867853811822/RDT_20230706_210239.mp4", + "https://cdn.discordapp.com/attachments/793594846153539604/1128544428957630575/RDT_20230706_210409.mp4", + "https://cdn.discordapp.com/attachments/932210631099166750/1119068768820285450/2023-06-16-03-59-13.gif", + "https://cdn.discordapp.com/attachments/793594846153539604/1127649246334685224/Tumblr_l_573743442719350.jpg", + "https://cdn.discordapp.com/attachments/793594846153539604/1121354129281912942/16872890373322.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/hannah-owo.json b/src/storage/nsfw/hannah-owo.json new file mode 100644 index 0000000..73dfc37 --- /dev/null +++ b/src/storage/nsfw/hannah-owo.json @@ -0,0 +1,18 @@ +[ + "https://media.discordapp.net/attachments/953041973831430184/953361960844550234/949026325761519666.jpg", + "https://media.discordapp.net/attachments/953041973831430184/953361960563507250/949026325484675092.jpg", + "https://media.discordapp.net/attachments/953041973831430184/953361960332836864/949026325274972251.jpg", + "https://media.discordapp.net/attachments/953041973831430184/953361960060219403/949026324981375057.jpg", + "https://media.discordapp.net/attachments/953041973831430184/953361959754014720/949026338524790914.jpg", + "https://cdn.discordapp.com/attachments/953041973831430184/953362011050356786/949026481839951932.mp4", + "https://media.discordapp.net/attachments/953041973831430184/953361970936053830/949026480002834452.jpg", + "https://media.discordapp.net/attachments/953041973831430184/953361970646614067/949026340554813491.jpg", + "https://media.discordapp.net/attachments/953041973831430184/953361970382377000/949026340194091028.jpg", + "https://media.discordapp.net/attachments/953041973831430184/953361970034257981/949026338919047178.jpg", + "https://media.discordapp.net/attachments/953041973831430184/953361969774206976/949026481298894858.jpg", + "https://cdn.discordapp.com/attachments/1015916383193800746/1096362365798334536/Hannah_Owo_Sex_Tape_Hotel_PPV_Video_Leaked_-_DirtyShip.com.vd.default.mp4", + "https://cdn.discordapp.com/attachments/1015916383193800746/1096360357708177499/vid_480p.mp4", + "https://media.discordapp.net/attachments/953041973831430184/953361971430953011/949026480942350366.jpg", + "https://media.discordapp.net/attachments/953041973831430184/953361971187691530/949026480640385044.jpg", + "https://cdn.discordapp.com/attachments/923247935402156073/1011716736518733834/Hannah_Owo_Sex_Tape_Hotel_PPV_Video_Leaked_-_DirtyShip.com.vd.default.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/hardcore.json b/src/storage/nsfw/hardcore.json new file mode 100644 index 0000000..49be113 --- /dev/null +++ b/src/storage/nsfw/hardcore.json @@ -0,0 +1,351 @@ +[ + "https://cdn.discordapp.com/attachments/912463753138819102/1105730979181625344/Limgae_-_Boudica_2020_-_01.jpg", + "https://cdn.discordapp.com/attachments/912463753138819102/1104116681544040488/b4660bd2bb59fc5a4a84b99cb525ac41.jpg", + "https://cdn.discordapp.com/attachments/912463753138819102/1100600610799222835/a766473b198549ac8c79448982a4e04a_1.jpg", + "https://cdn.discordapp.com/attachments/912463753138819102/1100600597104824461/sample_35362e6b647c450f3d16ae136db89ec5_1.jpg", + "https://media.discordapp.net/attachments/976381338380808192/1016446996103581717/Lexi_Lore__Vienna_Black_In_We_Want_YouMP4_High_Quality_1.mp4", + "https://media.discordapp.net/attachments/976381338380808192/1016446997512855594/Step_dad_and_daughters_family_threesome_sex.mp4", + "https://media.discordapp.net/attachments/976381338380808192/1019711522001403964/DisfiguredRealisticAdeliepenguin-mobile.mp4", + "https://media.discordapp.net/attachments/976381338380808192/1019711522647314513/AmusedCriminalBagworm-mobile.mp4", + "https://media.discordapp.net/attachments/976381338380808192/1022815449844547625/received_409205923894284.mp4", + "https://media.discordapp.net/attachments/976381338380808192/1022815452122054696/FreePorn_DarkHub_Turk_2.mp4", + "https://media.discordapp.net/attachments/976381338380808192/1022815456362496000/QuaintCarefreeGallowaycow-mobile.mp4", + "https://cdn.discordapp.com/attachments/782360061414211614/791917815690035200/1_5118616447118999737.mp4", + "https://cdn.discordapp.com/attachments/860114896817618975/867331742825709598/7532.mp4", + "https://cdn.discordapp.com/attachments/860114896817618975/885556334102200350/orgy_-_001_-_002.mp4", + "https://cdn.discordapp.com/attachments/630518936475140157/806289555749732362/twitter_20210202_192443.mp4", + "https://cdn.discordapp.com/attachments/966410168390799430/969002212997070858/2_5314714449012069237.mp4", + "https://cdn.discordapp.com/attachments/966410168390799430/969002188095488081/FilthyScrawnyCormorant_1.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/790391612806529055/Stepmom_Shares_Her_Stepson_With_Her_Best_Friend_In_Wild_Threesome.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/790405643218976778/Step_Aunt_Has_Wild_Threesome_When_She_Visits_A_Family.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/792979045046288394/Pumpkin_Booty_Patch_With_Rose_Monroe_and_Valentina_Jewels.mp4", + "https://cdn.discordapp.com/attachments/860114896817618975/867338410439344148/video_2021-07-21_10-51-07.mp4", + "https://cdn.discordapp.com/attachments/915045879780618270/915252978246639696/video0_62.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/792791213463437362/Lexi_Lore__Vienna_Black_In_We_Want_YouMP4_High_Quality_1.mp4", + "https://media.discordapp.net/attachments/395565932535349249/626512207869378560/3some-2.webm", + "https://media.discordapp.net/attachments/395565932535349249/626512212349026335/4some-1.webm", + "https://media.discordapp.net/attachments/395565932535349249/625356515502456862/3some-5_Inter.webm", + "https://cdn.discordapp.com/attachments/715597787420426260/804557795650306098/VIXEN_A_true_swinger_couple_shares_everything.mp4", + "https://cdn.discordapp.com/attachments/985489487859687427/988756454536257566/RY2I0k3.mp4", + "https://cdn.discordapp.com/attachments/985489487859687427/989172802764562462/d83YbJk.mp4", + "https://cdn.discordapp.com/attachments/985489487859687427/989172910683979776/PaleStingyImperialeagle-mobile.mp4", + "https://cdn.discordapp.com/attachments/985489487859687427/989172721558650880/LightyellowIntentCoypu-mobile.mp4", + "https://cdn.discordapp.com/attachments/689831339880611884/788151926839574538/NataliePortmanSportsReporterBBCBlowbang_part1.mp4", + "https://media.discordapp.net/attachments/975400983611998208/985112176840818698/AlienatedFrankBaboon-mobile.mp4", + "https://media.discordapp.net/attachments/975400983611998208/985112184663199744/QuaintCarefreeGallowaycow-mobile.mp4", + "https://media.discordapp.net/attachments/975400983611998208/1000155802612539493/received_409205923894284.mp4", + "https://cdn.discordapp.com/attachments/966410168390799430/969002213647208448/trim.2A1B6FDA-B1DE-49B0-9740-1F78829C2D55.mov", + "https://cdn.discordapp.com/attachments/1043265990202503336/1043435320890363925/ruralfastglowwormredditmp4bot.mp4", + "https://cdn.discordapp.com/attachments/972521917229695007/972579378338885662/xvideos.com_d38a8786d983d2af25eabaa9d6d03529_442.mp4", + "https://cdn.discordapp.com/attachments/860114896817618975/877955736523669514/2_5332374358100806388.mp4", + "https://cdn.discordapp.com/attachments/860114896817618975/874352563510706296/IMG_7949.MP4", + "https://cdn.discordapp.com/attachments/860114896817618975/867336232584871956/31.mp4", + "https://cdn.discordapp.com/attachments/860114896817618975/870732829468803113/video_2021-07-30_20-42-37.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/871769551455547452/2274-38e51d6a25716dbd012de8d9fe6d2c86.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937714358255657/6lonKjGpBUl4.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937705550233670/tBy32da0oPkg.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937304876752936/VID_427531008_073611_178.mp4", + "https://cdn.discordapp.com/attachments/902282394919391293/1050571229578416138/RPReplay_Final1642343321.mov", + "https://cdn.discordapp.com/attachments/902282394919391293/1050571234829664367/RPReplay_Final1642342548.mov", + "https://cdn.discordapp.com/attachments/912913792982192168/917936077841518682/she_wants_it_rough.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935142717235240/hayFS0s.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/867931782597738496/tumblr_qvzj4qfemo1z69t0h.mp4", + "https://cdn.discordapp.com/attachments/976381343174897664/1006169729569914890/video0778.mp4", + "https://realbooru.com/images/c3/f5/c3f5462f56e1b8b821fb8f8221a4e08a.webm", + "https://media.discordapp.net/attachments/715597787420426260/785042983103758367/Natalie_Portman_Dredd_is_a_Tight_Fit.mp4", + "https://realbooru.com/images/33/e2/33e207e5cb0eb77bedbf8bb797678eb8.webm", + "https://realbooru.com/images/e1/e6/e1e600be60a2e3a0207b75d04d06460e.webm", + "https://cdn.discordapp.com/attachments/969639366639091712/977986025655775302/rfsblack.mp4", + "https://media.discordapp.net/attachments/838973435689697291/898373341805674496/qoorwCW.mp4", + "https://media.discordapp.net/attachments/838973435689697291/891843200233373706/video0.mp4", + "https://media.discordapp.net/attachments/838973435689697291/892516759708500018/video0.mov", + "https://media.discordapp.net/attachments/838973435689697291/887438449827786752/video0.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/806099619342975036/kFDsxT22332vO3mF.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/927775999893053450/CFNetworkDownload_Ofxrcx.tmp.mp4", + "https://cdn.discordapp.com/attachments/912463753138819102/1114665520550125628/ntnzv1ltwgv81.png", + "https://cdn.discordapp.com/attachments/912463753138819102/1113871206207193279/FxS87JLaUAAL8Xf.png", + "https://cdn.discordapp.com/attachments/508319536341319681/846459270036062298/OnqTKHOAzkkrJywrR6-BUr.mp4", + "https://cdn.discordapp.com/attachments/507801722073251842/666104313185042443/video0-21.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1056621476448575519/nnVtIMvBbvZQEudn.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1056541111868461056/VirtualOvercookedMartin-mobile.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1056541111105110026/SuperiorSlimHuemul-mobile.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1056458456606974003/BubblyDownrightRook-mobile.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1053807948108943460/ExpertImperturbableLeafcutterant-mobile.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1053721192709771294/VID_20221217_122505_223.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1053711109317722112/ssstwitter.com_1669566400614.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1051956566439497778/Gdm0vH3.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1051956567349661696/PleasedNavyMinnow-mobile.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1051956198338986056/bz-bdsm_1.mov", + "https://cdn.discordapp.com/attachments/1002877064749264907/1051956197823107183/bGCHXwqXmmyC__Rn.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1036227918818451506/tmnod9OKoENdr3Np.mp4", + "https://cdn.discordapp.com/attachments/963120406712164422/1088878258570940518/hardcore.png", + "https://cdn.discordapp.com/attachments/648577202920620033/1113231002458919072/verylongdildo.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1114902568204783636/RDT_20230314_203319.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1057197065010167888/IMG_0988.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1114470404073992232/Pyper_Prentice_Badteenspunished_Tied_Up_And_Punished_-_2of2.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1114470258368069702/Pyper_Prentice_Badteenspunished_Tied_Up_And_Punished_-_2of2.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1114469844214087751/Evilangel_-_RORY_KNOX_Double_Penetration_Threesome_-_5of5.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1114469793869869136/Evilangel_-_RORY_KNOX_Double_Penetration_Threesome_-_4of5.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1114469736512761888/Evilangel_-_RORY_KNOX_Double_Penetration_Threesome_-_3of5.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1114469010596184105/Evilangel_-_RORY_KNOX_Double_Penetration_Threesome_-_2of5.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1114468869730467920/Evilangel_-_RORY_KNOX_Double_Penetration_Threesome_-_1of5.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1113997857658249236/ssstwitter.com_1685663717445.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1113964883386572850/MgqBVht8W3m1pKnB.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1113961958283149382/6q16Q9Rl_720p-1.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1061752812977008721/VID_47271030_102710_801.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1060543319484141710/1650497207986.webm", + "https://cdn.discordapp.com/attachments/923288831808135229/1059857313445462036/Maryjane_Auryn_-_2_-_720p.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1053759582750654494/VID_27220422_044049_645.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1050382232998649886/QuaintWindingEquestrian.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1048706059797274785/VID_73110519_213723_354.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1048695094519288050/2_5219774562006211796.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1048130071929573426/HentaiHome_V.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1048127318004088843/d3qNfIi9iTgTBAYH.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1063893249900695552/ImmaculateMagentaGoitered-mobile.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1063185837241663590/BrazzersHardcore4.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1063185676515950622/brazzers_discord_hardcore3.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1063184753890689044/brazzers_discord_hardcore5.mp4", + "https://cdn.discordapp.com/attachments/923288831808135229/1063184371047219411/brazzers_discord_hardcore9.mp4", + "https://cdn.discordapp.com/attachments/882525723456327700/893948144461684796/7306581a.webm", + "https://cdn.discordapp.com/attachments/882525723456327700/893949590162800640/10102552a.webm", + "https://cdn.discordapp.com/attachments/882525723456327700/893947844539609089/5444802a.webm", + "https://cdn.discordapp.com/attachments/882525723456327700/893948140808454225/4643481a.webm", + "https://cdn.discordapp.com/attachments/923288831808135229/1063893250949263480/AfraidOccasionalNoolbenger-mobile.mp4", + "https://cdn.discordapp.com/attachments/882525723456327700/893954199585452092/GlamorousBeautifulAmericanmarten-mobile.mp4", + "https://cdn.discordapp.com/attachments/882525723456327700/893955011116142612/ee225883-9b98-454d-bd53-cc4bcc631e74.mp4", + "https://cdn.discordapp.com/attachments/882525723456327700/893955611904081950/Girl_Shows_Real_Ahegao_Face_while_Fapping_-_Pornhub.com.mp4", + "https://cdn.discordapp.com/attachments/838649491237109790/861038355771818054/35737371a.webm", + "https://cdn.discordapp.com/attachments/882525723456327700/893949801421475951/26560772a.webm", + "https://cdn.discordapp.com/attachments/882525723456327700/893949748833288202/25019491a.webm", + "https://cdn.discordapp.com/attachments/882525723456327700/893949693116178513/22480911a.webm", + "https://cdn.discordapp.com/attachments/882525723456327700/893958637431709747/videeo0-5.mp4", + "https://cdn.discordapp.com/attachments/882525723456327700/893958898271285348/ncn69h9.mp4", + "https://cdn.discordapp.com/attachments/882525723456327700/893958240860242000/VID_93390514_105219_914.mp4", + "https://cdn.discordapp.com/attachments/882525723456327700/893960799608012880/ObedientSubtleGodwit-mobile.mov", + "https://cdn.discordapp.com/attachments/882525723456327700/893949083859972156/BogusScrawnyAfricanhornbill-mobile.mp4", + "https://cdn.discordapp.com/attachments/882525723456327700/893949178215030845/1602566244551.webm", + "https://cdn.discordapp.com/attachments/882525723456327700/893949612539400192/1617956024315.mp4", + "https://cdn.discordapp.com/attachments/882525723456327700/893949800951738378/1608138917423.webm", + "https://cdn.discordapp.com/attachments/882525723456327700/883743853159522304/merry_christmas.mov", + "https://cdn.discordapp.com/attachments/763851419806990358/871520470447566888/japans_solution_to_population_decline.webm", + "https://cdn.discordapp.com/attachments/749058590035148940/801186854425854002/video0.mov", + "https://cdn.discordapp.com/attachments/882525723456327700/893948721744724049/7397611a.webm", + "https://cdn.discordapp.com/attachments/725051632198484038/820576537140920330/2_5364238363987544677.mp4", + "https://cdn.discordapp.com/attachments/882525723456327700/893861403356725259/video0.mp4", + "https://cdn.discordapp.com/attachments/902419664129372190/909158248928669726/-660866980660541411.MP4", + "https://cdn.discordapp.com/attachments/902419664129372190/909158092661485588/1248217227154324656.MP4", + "https://cdn.discordapp.com/attachments/1002131007446732861/1013645748769927248/sc_bg15.mp4", + "https://cdn.discordapp.com/attachments/838649491237109790/852704238353514506/WildImprobableIbex-mobile.mp4", + "https://cdn.discordapp.com/attachments/966410168390799430/969002189135708280/PleasedNearLeopardseal-mobile.mp4", + "https://media.discordapp.net/attachments/803253166455521280/1054907543564058664/Garganta_profunda_insuperable_-_Xpaja_.mp4", + "https://cdn.discordapp.com/attachments/1023546150277632101/1028259431537983508/WarmheartedDrearyVerdin-mobile.mp4", + "https://cdn.discordapp.com/attachments/1023546150277632101/1060891392743837786/IllFairFattaileddunnart-mobile.mp4", + "https://cdn.discordapp.com/attachments/966410168390799430/969002200254804028/QuaintOptimalGoshawk-mobile.mp4", + "https://cdn.discordapp.com/attachments/1034166050868166757/1054555452400226355/twitter_20220913_141854.mp4", + "https://cdn.discordapp.com/attachments/1034166050868166757/1054555451838173244/brazzers_hardcore67.mp4", + "https://cdn.discordapp.com/attachments/1034166050868166757/1054555451360030791/Brazzers_Hardcore5.webm", + "https://cdn.discordapp.com/attachments/1034166050868166757/1054555453142618162/brazzers_hardcore31.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/791505260006998036/TUSHY_Deep_Double_Penetration_Compilation.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/792249882420314112/Step_dad_and_daughters_family_threesome_sex.mp4", + "https://media.discordapp.net/attachments/395565932535349249/625356520573501456/4some-3_Inter.webm", + "https://media.discordapp.net/attachments/395565932535349249/625356517213863946/4some-1_Inter.webm", + "https://cdn.discordapp.com/attachments/518832599494295570/802446100996030534/video0.mp4", + "https://cdn.discordapp.com/attachments/700991664700784660/702472738849161286/AppropriateSneakyAurochs-mobile.mp4", + "https://media.discordapp.net/attachments/1067857824811597974/1067895361806540841/xvideos.com_abb7d510234f5526a3a90ff7734f467b.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1077582879032344646/twitter_20230221_155127.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1078870103770271824/OccasionalCheeryLangur-mobile.mp4", + "https://media.discordapp.net/attachments/852638828401393755/853115243348492308/g8wp2fX.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1113553730122547362/15b4992c3c2abb6e254a0fdec453fbfb.webm", + "https://cdn.discordapp.com/attachments/852638828401393755/1113502757572333729/RDT_20230504_221251.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1113469163453816842/RPReplay_Final1685388603.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1113310055912198185/trim.C8E0C5AC-B546-4605-AC39-256ABDD4ECCD-1.mov", + "https://cdn.discordapp.com/attachments/852638828401393755/1073575016077201438/191252_gif_1.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1113141885272342631/getvideo.page-GOHBkuWvMUEj2giJ.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111415975590494218/video_2023-04-05_01-30-22_1.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111415255625646120/Beautiful_ass_gets_spanked__3-1.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111414978088534046/EvenResponsibleArizonaalligatorlizard.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111414196542910554/RDT_20230408_183244.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111413966690848891/VID_20221229_235346_171_1.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111413219907616868/VID_20230324_052558_672.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111412922397233252/2_5449489380299247028.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111412871524515910/RDT_20230326_145740.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111412846606172230/LastingWiltedIndianhare.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111412821473906769/cachedVideo.mov", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111412485623390288/HotLikelyFlickertailsquirrel-mobile.mov", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111412044017696868/1663666485925381.webm", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111411830976421948/VID_20230220_173717_638.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111411401236426822/1679517493439.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111410904479834155/Heteros_Liberais_20221123_7.mp4", + "https://cdn.discordapp.com/attachments/1002877064749264907/1111410639857004554/y0Op6zW.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1111356974144168067/ForkedGrouchyWildebeast-mobile.mov", + "https://cdn.discordapp.com/attachments/852638828401393755/917006537669615676/PleasedDirtyUromastyxspinipes.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1080879404739219456/StupidWobblyPanther-mobile.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1013465212839538709/redditsave.com_is_that_joker-fe2jk65h3ak91.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1110455952106332190/ssstwitter.com_1684823698485.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1110455936847450184/ssstwitter.com_1684823671416.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1110167671498084362/1.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1110149107395334214/Snapchat-1035232673.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/892602683477876767/Gorgeous_babe_Sarah_Kay_k_and_brutally_fucked_in_BDSM_action_by_huge_guy.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/892587375904055356/Mini_gets_Tied_and_fucked.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/878467417049821244/My_First_BDSM_-_He_Tied_Up_and_Fucked_my_Mouth_and_Tight_Pussy.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/894368341765013545/Tiny_Black_Teen_With_Braces_Destroyed.mp4", + "https://cdn.discordapp.com/attachments/876734039619424276/880629131962904576/slaves_punished_and_humiliated_by_master_he_fucks_and_slaps_them.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1106997888669716580/RDT_20230513_202840.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1108799899962712104/KasugasFile_Blowjob5.mp4.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1108495691568910446/RDT_20230517_195542.mp4", + "https://media.discordapp.net/attachments/1001985548329689188/1002755280666370108/CLUPCITY.TURKISH.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1100012794033745950/RPReplay_Final1682284232.MOV", + "https://media.discordapp.net/attachments/689825827374104586/1022928783239544862/Cry_of_the_Banshee.mp4", + "https://media.discordapp.net/attachments/689825827374104586/1016176912655196190/twitter_20220904_204728.mp4", + "https://media.discordapp.net/attachments/689825827374104586/1031498621134327848/IcyCuddlyNewfoundlanddog-mobile.mp4", + "https://media.discordapp.net/attachments/689825827374104586/1031498559901683712/IndolentFoolishKittiwake-mobile.mp4", + "https://media.discordapp.net/attachments/689825827374104586/1065296250255187968/RDT_20230118_074546.mp4", + "https://media.discordapp.net/attachments/689825827374104586/1069320005382058104/RDT_20230129_101403.mp4", + "https://media.discordapp.net/attachments/689825827374104586/1069320004690002083/RDT_20230129_101300.mp4", + "https://media.discordapp.net/attachments/689825827374104586/1069320004060860557/RDT_20230129_101113.mp4", + "https://media.discordapp.net/attachments/1067067123089813514/1075137164859420822/happyvalentinesday.mp4", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104463069104570388/RDT_20230506_224004.mp4", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104462862275059842/RDT_20230506_223530.mp4", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104400679147163658/22890701a.webm", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104400572980936844/28311972a.webm", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104400478181269555/28249322a.webm", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104400283615903744/43908411a.webm", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104400110571499530/43731331a.webm", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104400053629620287/25462572a.webm", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104397941562687530/RDT_20230506_182136.mp4", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104397857907294228/RDT_20230506_182128.mp4", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104397768321159208/RDT_20230506_182109.mp4", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104396680570351726/RDT_20230506_181443.mp4", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104396641450082344/RDT_20230506_180556.mp4", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104396606310199478/RDT_20230506_181406.mp4", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104396538031124531/RDT_20230506_181431.mp4", + "https://cdn.discordapp.com/attachments/1104392366904840212/1104396478845292697/RDT_20230506_181557.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1108161040925069332/Hansel_Grettel.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1108153164890382459/2_5420247069694634624.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1107165495502848030/vBB9gxn-XNXDkBZv.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1106546202851422238/twitter_20210202_192220.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1106171836531744890/2_5388577488387444382.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1106171752750522398/readyflamboyanthoneyeater.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1106022841205411932/2_5337047480087349571_video-converter.com_2.mp4", + "https://cdn.discordapp.com/attachments/664792929541292053/1097181526749352096/RDT_20230324_220237.mp4", + "https://cdn.discordapp.com/attachments/648577202920620033/1103381125147144244/WhatsApp_Video_2021-03-16_at_16.54.58.mp4", + "https://media.discordapp.net/attachments/785000532254130186/1103858067831017542/FGwBUBliUt1z6csL.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1104084713917923451/VID_20230504_162825_824.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1104050850504126624/6Rc21erY0f9u4cKk.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1104019389768007741/twitter_20210718_001404.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1103939417292423178/ssstwitter.com_1683259681649.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1103673349202255972/trim.4A9FEBA9-20F1-48CC-8347-EC96652E1DA2.mov", + "https://cdn.discordapp.com/attachments/852638828401393755/1101948741235257405/UntriedScaredEmu.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1101564197613096980/Video_RANDIYONKAADDA2.0007_RANDIYONKAADDA2.000_2eqPHOzo_480p.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1099925431332909118/VID_20230424_065742_154.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1098999218766630994/cant_take_it_anymore.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1097563264541544539/ssstwitter.com_1681749110492.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1098761489059426435/VID-20230326-WA0003.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1098709575194124438/QuietLooseYellowhammer.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1098709074851406087/OffbeatAlarmingFeline.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1098708450827055126/TintedEmptyXoloitzcuintli.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1098707210319704214/floor_pov.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1098673390375673856/VID_20230420_201448_642.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1098646813206118500/RDT_20230420_182812.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1097963275964137673/video0.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1097581554068365403/DenialPlay-1.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1097309337183060019/RDT_20230417_014715.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1097304604988944535/RDT_20230417_021154.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1097283565202456806/RDT_20230417_010400.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1097271178860708003/RDT_20230417_001935.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1097172151997567006/RDT_20230416_174904.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1097153222797430794/e66c038427305b0ff55d41a23e7afe8a.webm", + "https://cdn.discordapp.com/attachments/852638828401393755/1096792607226601482/trim.F3245026-ABDA-49D6-8FBA-D1432291ADE9_2.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/880009624546336818/VID_20200619_003938_239.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1096399431705833532/xvideos.com_018e8b47f8fffd8b9d15a62c683bd83f.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1096398686478675968/RDT_20230329_174641.mp4", + "https://cdn.discordapp.com/attachments/1064300111582199959/1069035236257710080/rapidsave.com_CrleCkz.mov", + "https://cdn.discordapp.com/attachments/852638828401393755/1034504306889609237/HotLikelyFlickertailsquirrel-mobile.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1094208984459780206/RDT_20230408_183244.mp4", + "https://cdn.discordapp.com/attachments/859163697868308520/1067989652264456324/cachedVideo.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1088589606628368414/VID_20230324_052558_672.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1094719536143544350/Beautiful_ass_gets_spanked__3-1.mp4", + "https://media.discordapp.net/attachments/763860707544137759/1093077221637374012/VID-20220911-WA0172.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/796709106307956756/video0-8.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1093031283262754836/video_2023-04-05_01-30-22.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1091955695156461638/VID_20210724_021147_241.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1092153194399944794/EvenResponsibleArizonaalligatorlizard.mp4", + "https://media.discordapp.net/attachments/852638828401393755/1024647622373412935/dd35a4c2055d6de7a9e07f046aec3406.gif", + "https://media.discordapp.net/attachments/996537425532817519/1039305655972003940/bdsmlr-208979-SpquCrHkT2.gif", + "https://media.discordapp.net/attachments/526968291613212672/539904023470407719/18712197.gif", + "https://cdn.discordapp.com/attachments/852638828401393755/1092207882327568384/1617956024315-1.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1091208428598345798/VID_20221229_235346_171_1.mp4", + "https://cdn.discordapp.com/attachments/968522661166727218/1084649230272053308/HentaiHome_Random_4.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1090707920687214773/received_1748123315382590.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1090387153713905714/Double_Anal_Fist_and_XL_Strapon_Horse_Cock_Fuck.mp4", + "https://media.discordapp.net/attachments/995307799275905044/1059688228904509470/trim.9ACBAAAA-B551-49B9-BBFE-BE30C83CDD73.mov", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816540512858253/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816538604458064/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816535299334356/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816528286470194/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816499630977114/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816452554113034/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816410938232922/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816372065415379/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816350213087232/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816313332568144/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816308370706612/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816290263904266/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1095816249914699786/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360850951639040/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360783037476884/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360777769435227/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360772564308019/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360766042161152/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360739475423262/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360737512497242/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360723566444614/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360678548983918/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360673125740604/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360667744444558/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360641135775864/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360618952118282/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360603764543548/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360582075789342/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360547636367450/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360539105136720/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360516787245066/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360495345979512/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360474420596816/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360451578417162/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360439188426772/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360420515393576/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360383878139904/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360368963203122/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1092360349774254220/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449850555973633/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449848198774784/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449842423205938/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449839835328542/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449837784301651/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449835041234974/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449832415596575/OnlyNudes.webm", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449829710286848/OnlyNudes.webm", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449824861659226/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449821673984020/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449819174187139/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449814300397669/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449812706574336/OnlyNudes.webm", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449809388879932/OnlyNudes.webm", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449806155063336/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449802447290458/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449799293182003/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449797208612986/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449793991573546/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449789289766912/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449786836090930/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449775524053092/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449773032636496/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449769010315284/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449765143171204/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449762500743229/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449759547965481/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449754841939968/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449752665096252/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1090398157323640842/1090449748412084255/OnlyNudes.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/hentai.json b/src/storage/nsfw/hentai.json new file mode 100644 index 0000000..1c5c5c2 --- /dev/null +++ b/src/storage/nsfw/hentai.json @@ -0,0 +1,1256 @@ +[ + "https://cdn.discordapp.com/attachments/1015573574460915782/1019321361765761177/Monass2.mp4", + "https://video-cdn3.gelbooru.com/images/9f/a6/9fa66bfa3247d4c228ac60e75e2ea154.mp4", + "https://video-cdn3.gelbooru.com/images/0d/58/0d58d40036fde946c579867ae20d1603.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/905430693910310942/video1-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/900744281692729394/d24c27222ec6c3825e4370f487e65524.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/909321916886683718/video0.mp4", + "https://cdn.donmai.us/original/b8/30/b830143a754349be63401382a9e139a2.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/906453471463620618/video0-6.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/907843714163015711/5e60e995e2cba4efb22035930955ecb4.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/908567267481100359/VID-20211013-WA0265.mp4", + "https://cdn.donmai.us/original/3a/ca/3aca2764a74a7c9fb48e3a9510f2bf73.mp4", + "https://cdn.donmai.us/original/96/ab/96ab6bde25ba194b110c32ccf9df11d5.mp4", + "https://cdn.donmai.us/original/1d/37/1d37b72041dce664e3ad93c510e7de45.mp4", + "https://cdn.donmai.us/original/75/0f/750f5fe7986ea47ad88386c25d1b2668.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1047967102188924928/xvideos.com_a054d35107cacafe2453e2010025cae9.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1047968103096668201/xvideos.com_6e10c66ef9fb87e2793973e05fea0ae9.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1047968050772717669/xvideos.com_a054d35107cacafe2453e2010025cae9.mp4", + "https://cdn.donmai.us/original/9c/81/9c812e937820a28a5a6a59c1447084d2.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/802047636882456596/xvideos.com_c3c895e9703cf6f4ecdbeaeb40ee2f14.mp4", + "https://video-cdn3.gelbooru.com/images/4a/cf/4acf165a193bd84a8f6fa5eb72ec78fd.mp4", + "https://wwebm.rule34.xxx/images/2298/36a345712d18f82e87d1b2adf012cac6.mp4", + "https://unowebm.rule34.xxx/images/3507/aa9fe08bdaf08f2457c71d601e34de63.mp4", + "https://cdn.donmai.us/original/b0/65/b065e57418bd76c17026d722b393bd42.mp4", + "https://cdn.donmai.us/original/ac/bd/acbd5cf716c37e57f8febf28a51b773b.mp4", + "https://cdn.donmai.us/original/be/be/bebe63441e16847366fdd23dfabd9845.mp4", + "https://cdn.donmai.us/original/de/3b/de3b38dd2b7e556af72631000bde7bf2.mp4", + "https://cdn.donmai.us/original/bd/4a/bd4a6cb8e6b9930140d96e19971b7d34.mp4", + "https://cdn.donmai.us/original/eb/ed/ebedb0b2eee2288d9b71fa490653262f.mp4", + "https://cdn.donmai.us/original/61/44/61448e0042d4efedc186974722252e96.mp4", + "https://cdn.donmai.us/original/2f/6c/2f6cbf51e469f33d913da6e0ae328adf.mp4", + "https://cdn.donmai.us/original/cb/e5/cbe5da054de1b53d171f9dd29b779ca7.mp4", + "https://cdn.donmai.us/original/ea/34/ea3448101cae258d7411cc479e2c9905.mp4", + "https://cdn.donmai.us/original/ce/af/ceafdafab3f2f16e796c2f259e2a9cef.mp4", + "https://cdn.donmai.us/original/3f/e6/3fe63b2df72f832e9af192b1ee5020d7.mp4", + "https://cdn.donmai.us/original/c7/8f/c78f1d7b4c2dfdd3f0645d283bf65528.mp4", + "https://cdn.donmai.us/original/30/f2/30f2556a71fb648eacccccf3fb9bdfb4.mp4", + "https://cdn.donmai.us/original/b8/42/b842c93ce0331e1bf10d067da4efcc2a.mp4", + "https://cdn.donmai.us/original/4f/00/4f00408a80d710926310e49f26d73711.mp4", + "https://cdn.donmai.us/original/11/f9/11f9c0680d4913208827c929c9ea822b.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/925555777056415804/2021-11-18_00-18-48.mp4", + "https://cdn.discordapp.com/attachments/763508262753665055/895724307173474385/gelbooru.com_5351021_1boy_1girl_anal_animated_anus_ass_ass_grab_ass_juice_audio_bangs_blunt_bangs_bl.mp4", + "https://cdn.discordapp.com/attachments/845021575865696266/914207728933679144/VID_20211127_193450_559.mp4", + "https://cdn.discordapp.com/attachments/845021575865696266/914206736657829919/VID_20211127_193045_310.mp4", + "https://cdn.discordapp.com/attachments/845021575865696266/914205707706961940/VID_20211127_192052_091.mp4", + "https://cdn.discordapp.com/attachments/763508262753665055/907393279077810176/666c879d229feb85573d3c1137f65ca7.mp4", + "https://cdn.discordapp.com/attachments/909558504711409765/920796813638893588/VID_20211127_020944_798.mp4", + "https://cdn.discordapp.com/attachments/763508262753665055/902086810975473694/656db69bace6426d86419d82768cecf7-1.mp4", + "https://cdn.discordapp.com/attachments/763508262753665055/902851735201153065/Time_for_Eula_to_punish_you_-___Voiced_by_ayana_maria___Uncensored__https___t.co_4tsjdvQ1Cj_https___t.co_TeYwMYDgp3.mp4", + "https://api-cdn-mp4.rule34.xxx/images/4880/66cc1d77bc1330f1aea32159eb9a6247.mp4", + "https://media-cdn.lawlietbot.xyz/media/rule34/4600/1d645e9b595a0d64c8c7312548a29b0e.mp4", + "https://media-cdn2.lawlietbot.xyz/media/rule34/4565/e4aec54f6d45d0acb34a590fd30027cb.mp4", + "https://media-cdn.lawlietbot.xyz/media/rule34/2717/0e94db4039cc50d154f9d59832d7d9e7.mp4", + "https://api-cdn-mp4.rule34.xxx/images/2971/b89ae5819728d924ecabffdc64c095fc.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/924163586669027328/4bd2f0d37ca53f47d996392500daa135.mp4", + "https://video-cdn3.gelbooru.com/images/52/d8/52d8abe87cba38a5a71a5e8a7342b8c8.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/924462708152229968/xvideos.com_8c4c861fbae9d7f7aac31bf7960b49b1.mp4", + "https://cdn.donmai.us/original/b8/f0/b8f0c4be072895e537e326f5febd9558.mp4", + "https://cdn.donmai.us/original/12/d2/12d236cdf562fbacdee112787e2c35e0.mp4", + "https://cdn.donmai.us/original/2d/41/2d411b84817976aa2431dc24afb0507f.mp4", + "https://cdn.donmai.us/original/17/b5/17b5771bea9c138121d937a3a8ae2b88.mp4", + "https://cdn.donmai.us/original/30/7f/307fa8860c094d1a9927f6da6e398bc3.mp4", + "https://cdn.donmai.us/original/57/6e/576eb7e5204ef8c159b210efcd87b2e7.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/776344745206743090/Rainbow_six_siege.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/768025664091324426/Fucked_in_turn_two_twins_while_they_caressed_each_other.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/894134217460564008/AmpleJuicySquamata-mobile.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/796255643916828672/Compilation_of_Fornite_characters.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/787208208388849714/97d13051bc9e8407dcc722c8e8d5c9c6.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/827888893394681937/video0.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1049716474782175354/IMG_3225.mov", + "https://cdn.discordapp.com/attachments/944668553439760434/1049716414266744862/IMG_3225_1.mov", + "https://cdn.discordapp.com/attachments/902282394919391293/1050572112651374622/VID_3031.mp4", + "https://cdn.discordapp.com/attachments/902282394919391293/1050572112252903514/VID_3032.mp4", + "https://cdn.discordapp.com/attachments/763842545544462346/1061567297157873664/C1u1q4dEb6Ea1CI_.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1047228681992544356/felipe_godoy_rhrt.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1047196437831766046/Succubus_Yondara_Gibo_ga_Kita_1_scene_6.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1047196436690911252/Succubus_Yondara_Gibo_ga_Kita_1_scene_5.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1047057215783194634/a3e097d6bbccf38978b783a740fef4ae.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1047308547018473513/4dba680c7060af2f1c1945daa48d4fa8.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1046567081308606594/assumi-fucked-by-a-goblin-noname55_1080p.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1046282805446979635/1bb639ca0fdaa4b690c90acc00873eca_1-1.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1046567080289386566/Azure_Ryouka_vid_01B921d5ecdc9dc027a228e0edbbccab0f5.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1046282807468621904/0e0f5f618036d46336b51259c3ac8953.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1046282801047142450/st_louis_and_st_louis_azur_lane_drawn_by_cait_aron__e1d74193687248c7a8ed4b65f53b3839.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/1005397850370355280/LatinoHentai_Overflow_-_1_Uncensored_1080p_Sub_Eng.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/1005444869642276884/LatinoHentai_Overflow_-_2_Uncensored_1080p_Sub_Eng.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/1005444871512916068/LatinoHentai_Overflow_-_3_Uncensored_1080p_Sub_Eng.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/1005444940567941150/LatinoHentai_Overflow_-_4_Uncensored_1080p_Sub_Eng.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/968119001114878012/USED_2.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/968119000137625611/zzt9_6.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/968119002129911808/USED.mp4", + "https://cdn.discordapp.com/attachments/722539655374962738/1013097412384006154/VID_20220824_050223_579.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/955192114172547182/video0-1.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/958683423726260275/b46bb78683f7da06d50a64eb02bc77eb.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/961341202916065290/Drop_Out_Epiosde_2_scene_1.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/982961387909292114/adult_neptune_neptune_and_1_more_drawn_by_yuzutei__6c2432f51cfdf2598be5e15014c8d5ba.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/968119017585905704/USED_6.mp4", + "https://cdn.discordapp.com/attachments/722539655374962738/1013948442583765033/p9it94.webm", + "https://cdn.donmai.us/original/5c/55/5c55fe766639fd5db9c0aa2ea0cc1e26.mp4", + "https://cdn.donmai.us/original/bf/d4/bfd4d7d8f7e90eec705394cbb30e8cd3.mp4", + "https://cdn.discordapp.com/attachments/969278600132034590/975045028315533363/RFS_5.webm", + "https://media.discordapp.net/attachments/664792085274034207/1067311940826845214/unpasuoozeki_koyuibreast_suckingrating_explicitexplicita199b6f216112505f58333c51027110b.mp4", + "https://media.discordapp.net/attachments/664792085274034207/1068720719908851732/7c737bc022a585838030472c40e75107.mp4", + "https://media.discordapp.net/attachments/664792085274034207/1068720720424742942/af5d2775bd0d280abb0cf4aa7434e5a5.mp4", + "https://cdn.discordapp.com/attachments/899763415290097669/1068411273831788554/video0-177.mp4", + "https://media.discordapp.net/attachments/664792085274034207/1068411836015329370/kuon_bbselen_tatsukibreast_suckingrating_explicitexplicitb163ee33ebd9cc5e9836bed4076cf9c1.mp4", + "https://media.discordapp.net/attachments/664792085274034207/1068720713613193236/eb0251383063f438e02c6916d52fbb4c.mp4", + "https://cdn.discordapp.com/attachments/971503708988907561/1017793890083950642/20220907_18.mp4", + "https://cdn.discordapp.com/attachments/971503708988907561/998395531279749120/hentaitycoonwhy_3.mp4", + "https://cdn.discordapp.com/attachments/1031969016027291658/1032651156998062171/Kanojo_x_Kanojo_x_Kanojo_-_01_hentai60.com_001_001_001_001_001.mp4", + "https://cdn.discordapp.com/attachments/1042442274992300092/1075820742387707985/VID-20220302-WA0005.mp4", + "https://cdn.discordapp.com/attachments/1113836324282187937/1115737362509611019/video0-1.mp4", + "https://cdn.discordapp.com/attachments/1113836324282187937/1115737337821937684/video0.mp4", + "https://cdn.discordapp.com/attachments/1113836324282187937/1115737215369228298/LCMCiI4IEzwU7bh5.mp4", + "https://cdn.discordapp.com/attachments/1113836324282187937/1115737166614638672/hentaitycoonwhy_3.mp4", + "https://cdn.discordapp.com/attachments/1113836324282187937/1115737113137258506/discord.gg_hdporn_122.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/948303436561137695/Aibeya_scene_scene_3.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/953780544624263228/82be5b272645f00fae10295c09f6e560.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/943259659748376616/ZZUSEDeroge_de_subete_wa_kaiketsu_dekiru.mp4", + "https://cdn.discordapp.com/attachments/831934679950426193/887705533971312670/FranXX.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/841812720037789708/rikujoubu-joshi-wa-ore-no-nama-onaho-2-360p-v1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/800396514811707442/Overflow_-_Episode_4.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/800396590119780402/Overflow_-_Episode_5.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/800396455332020264/Overflow_-_Episode_3.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/1008740236471308298/c10b9347e6e852d40407d4a0ce9df441.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/1007487164772257852/a2a9539ccf8c1aa652663346ec895d3b.mp4", + "https://cdn.discordapp.com/attachments/1042442274992300092/1067807055894827068/Video_do_WhatsApp_de_2023-01-24_as_08.45.27.mp4", + "https://cdn.discordapp.com/attachments/1042442274992300092/1067079294024695878/VID-20230123-WA0022.mp4", + "https://cdn.discordapp.com/attachments/1042442274992300092/1067078300788334612/VID-20230123-WA0007.mp4", + "https://cdn.discordapp.com/attachments/715597918371053619/833197615822667818/86fb4361544fd760f7c08b5391341860.mp4", + "https://media-cdn2.lawlietbot.xyz/media/rule34/4309/c48f42182fcf4c536760768a21d31f7f.mp4?s=api-cdn-mp4", + "https://media-cdn.lawlietbot.xyz/media/rule34/4564/7e516269a752343c197d3d25ead2fc56.mp4?s=api-cdn-mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1046281761006559252/trim.F9C3AB3F-40A9-43D4-982C-5C1D1BC72AE5.mov", + "https://cdn.discordapp.com/attachments/729404903595966566/1046281760599707658/CesarDuranBrav1_1595574167579119616720P.mp4", + "https://media.discordapp.net/attachments/765363939734847508/1039919164560773180/video0.mp4", + "https://cdn.discordapp.com/attachments/889496469135048765/903115090000240710/KnownFrivolousWolf-mobile_1.mp4", + "https://cdn.discordapp.com/attachments/889496469135048765/897675942745493504/1487a28b0c3a6a42b7d384eae1635837-1.mp4", + "https://video-cdn3.gelbooru.com/images/eb/ed/ebedb0b2eee2288d9b71fa490653262f.mp4", + "https://cdn.discordapp.com/attachments/889496469135048765/893056239142043648/SalmonObedientAfricangoldencat-mobile.mp4", + "https://cdn.discordapp.com/attachments/889496469135048765/893056208829812736/153479048fa797e252b1c53244e063a9.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/829515400978235468/video0_1.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/776554825114583070/video0.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102249970540752936/Reis-Study-Break.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102249969991295047/Vora-gets-fucked-doggystyle.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102249969374736544/KDA-Akali-in-great-pose.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102250008167850014/yep.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102253644696518776/c8833f61d9caf4fcaed39c0812402691.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102080709927120927/lv_0_20230420134603.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102080712951222372/lv_0_20230420140126.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102080710614995025/lv_0_20230420135457.mp4", + "https://cdn.discordapp.com/attachments/838693786698776616/839496872720728084/e50f13cbf2426ca6919c1bb4a223083e.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1047586565720911882/chainsaw-man-maplestar_480p.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/1004427062553088050/video0-10-2.mov", + "https://cdn.discordapp.com/attachments/821831893623242792/827625492886192158/video0.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/844527950152859648/VID_20210517_234046_352.mp4", + "https://video-cdn3.gelbooru.com/images/b4/b4/b4b4a99502434fc22e3ab718b4d75ed8.mp4", + "https://cdn.discordapp.com/attachments/1083359853059252315/1083362654430695464/hangout_hentai_4.mp4", + "https://cdn.discordapp.com/attachments/1083359853059252315/1083362653122068500/hangout_hentai_3.mp4", + "https://cdn.discordapp.com/attachments/1083359853059252315/1083362655827394601/hangout_hentai_6.mp4", + "https://cdn.discordapp.com/attachments/1083359853059252315/1083362954793201724/hangout_hentai_pre_1.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102242389680214066/Kiriko-soft-face-fuck.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102242389193666730/Tracer-agreed-on-the-spot.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102242390401626192/Sexy-D.va-gets-fucked.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102244144035930152/VID-20230424-WA0005.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102248069107548271/VID-20230318-WA0037.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102248068608446534/VID-20230424-WA0006.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102249972335910922/viddit_ea4c788f.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102249971731935272/vh5ts3-025f75.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1102249971186671678/Creampie-in-Evelynn-POV.mp4", + "https://cdn.discordapp.com/attachments/1083359853059252315/1083362955883720774/hangout_hentai_pre_3.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1046281757911158945/trim.35DA8F3A-F4C9-4075-BC02-8AF330B4C0E2.mov", + "https://cdn.discordapp.com/attachments/923009950945542164/924609837751488572/IMG_20210326_150611_064.mp4", + "https://cdn.discordapp.com/attachments/1083359853059252315/1083362955292327946/hangout_hentai_pre_2.mp4", + "https://media.discordapp.net/attachments/966095079712387133/966162017373286500/Yae_4.mp4", + "https://media.discordapp.net/attachments/966095079712387133/966162909715644436/XXX_ANIME_BIG_BOOBS_NEIGHBOR_GIRL.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/811068618016030760/video0.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/884574873257652244/Old_Stuff_Cassie__Kitana_Sex.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/741196259133489212/Samus-Anal-Fuck.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/785808946459967498/eefdf7683707ddfe9c0a4a3175847dbf.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/832721465073336320/2021-04-11-Loba_Long_Loop.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/943259338867343400/ZZUSEDeroge_de_subete_wa_kaiketsu_dekiru_cutted.mp4", + "https://cdn.discordapp.com/attachments/877556361288896522/878767852256104468/SPOILER_xvideos.com_4929d42732d5396304c1eaa23fb29d79.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/802885191114817556/video0.mp4", + "https://cdn.discordapp.com/attachments/840999287525736458/915668514067591239/zzt9Itadaki_seieki.mp4", + "https://cdn.discordapp.com/attachments/863444681350447124/1024208640015609916/8b0c6f815f082ed2864b51ebd0405a5c.mp4", + "https://media-cdn2.lawlietbot.xyz/media/rule34/2590/5067829bc985c07df9ebd69a03d87570.mp4?s=api-cdn-mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/841775641669795860/3006774.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/831585948986900561/video0.mp4", + "https://cdn.discordapp.com/attachments/998331826433171509/1011246506378022933/VID_20210628_111947_496.mp4", + "https://media.discordapp.net/attachments/1010484539849703496/1020628080768864336/SexHouseDaily1.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1046567080830439584/ssstwitter.com_1668306713137.mp4", + "https://cdn.discordapp.com/attachments/729404903595966566/1046281760041861211/yamamura_sadako_the_ring_drawn_by_kumbomb_voice_actor_mimi_hung_voice_actor_and_suoiresnu__787eef8527ef8c86730e56a7995f7860.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115700812992237578/DVaRecognizedNopan720p.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115727655485067315/efe1ee894d409e430035bc46892ffe75.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115727796052955276/ddbf3e13c0528a48cf028f89da4f2d82.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115727987183190056/3953b7becac08d43e2001b3c10273bec.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115729737998942380/ebf8949bed861748a5364ab1ce4cea00.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115730429476089949/6424731e8870564361a37ec4797beb87.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115730795810795620/a45179c10377e6bc849e2155d7e6a1d6.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115730815146524802/3c8252f408fd09dc10e87d072cca5934.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115731108391305326/e64a35ac3a0fef21005a9218dbd457e4.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115949135154118696/twitter_20230607_152255.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115949634888683611/twitter_20230607_152454.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115956321687183440/twitter_20230607_154615.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115956371674898494/twitter_20230607_155151.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115957908308496505/97d0796d08e5ceca187a93532fa28bcb.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115959118369411132/d523e5f2722e6faa500f31d93c8e3f93.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115990741735444540/be359718e4553987b0f5ce273b09bf99.mp4", + "https://cdn.discordapp.com/attachments/549052172881625098/1115782456801505350/helsie-doggystyle-threedust.mp4", + "https://cdn.discordapp.com/attachments/1092202335209529374/1116595204452008037/video0.mp4", + "https://cdn.discordapp.com/attachments/773252210230427668/997344629227782176/SpankBang.com_chika_720p.mp4", + "https://cdn.discordapp.com/attachments/1001618652254195782/1005655132781948999/3320e30cd69a3907505c603b2bcc9457.mp4", + "https://cdn.discordapp.com/attachments/1001618652254195782/1016373684602155089/d93b47f4bf57fbe8cff75f18395a4e33.webm", + "https://cdn.discordapp.com/attachments/215424489989603328/802528098586853407/video0.mp4", + "https://cdn.discordapp.com/attachments/715598786646507520/834871037265969232/Meru_the_Succubus_OVA_2_1.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115433594614186114/2023-06-06T04-45-06.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115462266498850927/downloadfile-1.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115490997443498055/vid_720p.mp4", + "https://cdn.discordapp.com/attachments/812205145194496016/1115563711730569318/Night-Time-TV-with-Jinx.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1131810397251440650/2f240e8581404ca211ea41d61fa7241a.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130636419963043910/valkyrie-bounce-nude-dzooworks-4k_2160p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130636286705811616/pmv-hmv-take-it_1080p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130636186872987668/hmv-bon-chu_1080p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130636032140918884/01f4b5ec234d3baa80ad465004964383.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130635946203824228/4k-widowmaker-enjoying-the-night-life-activities-white-conseitnsfw_2160p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130635915719606282/kirikio-cinematic-yeero-4k_2160p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1132254929763967068/Collection-of-works-by-Najar_01_raw.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1132219454923755571/3-piece-1-480p-v1x-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1132194585540558858/video_1689939575966.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1132078421212663923/proxy.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1132026843600539689/twitter_20230320_204331.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131998080170995782/393bc5c1727a1ff2845ec6bb315650e5.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131950442260201482/37a8533fe8f5179edffd81c695540cb8.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131950202765463644/discordggtwerk.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131913552169541672/video_1689939575966.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131756088270782555/9a6211c0147517d278354f633dcd3326_video_360p_daisuki-na-haha-episode-1-free-hentai-stream.mp4.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131692956030611557/Collection-of-works-by-Najar_01_raw.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131684852828209182/video0-18-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131663578991173643/fff17b19c06d630c91779d8ad0cefecf.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131602165354463293/isekai-harem-monogatari-1-480p-v.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131544259934289930/499036.mov720.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131497719693840425/2ef4eef48fac0202f203910ab03a2733.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131486610622517299/maplestar_nier_horny_androids.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131470284713635890/video0-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131460128764338236/twitter_1669464367434289152__1687254282067_twitter_1669464367434289152_Video_-_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131362848006742067/video0-18.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131331848220459118/VID_20230719_140621_480.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131330781566992444/d100915e09422e0f8402242048a65c6d.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131324688702914660/Collection-of-works-by-Najar_01_raw.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131212707060776971/RDT_20230614_000300.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131099728688459836/6da6c0d5285262d117b825938775c051.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1131002200412393512/twitter_20220927_004914.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/810310194906791946/video0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130979674747576380/received_1207879343227371.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130847343424577586/71d465fc11ebac36a4a461e01d86f80d3d1546dd5178741c20b5a877233c6158_1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130620713221509302/39814-720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130574126956941372/6d9356aac0e9aba3fa5d91450e5444e9-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130564488723189800/she_fucks_her_co_worker_www.saveporn.net.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130564195038007356/VID_20230319_043458_365.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130563748298510467/c067a1a752144784adbb3aa5df9536a0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130563417304997908/Spy_x_Family_PART_2_FULL_PATRON.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130516147855437994/VID_20230305_215720_182.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130480977379065906/Chainsaw-Man_Hentai_Full_Patron_WM.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130463534103408801/51620.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130425987729997866/joshi-luck-5-480p-h1x-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130411620988878868/e6eb82b3837ef0535955572822e35a90.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130298974834786365/f359da1da38cffc76a3d31e31f72358e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130245243816644648/38dcf2b4abdbe39d5bedaf7da82295e7-3.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130235592035270797/J8_1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130232934671069245/doremy-sweet-ver-clothed-pespeso_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130189285853777940/received_982225629163185.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1131950710972481566/249b93aaf5671c2a4500009620345fa0.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1131940692327940288/e1f2797fe5d643605ed876264242ccbc.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1131697168890204240/3ef2cbbb1463ccf5831524aed11b8d93.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1131630957192040571/Watch_Ganyu_-_Ganyu...nkBang_4.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1131585763499319376/f4610ad27f2ea2ae29b828c7a2415097.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1130871181235470346/ssstwitter.com_1689690725104.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1130679039338741790/rxE6eCGcExgz6Qr7.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1130623532863340544/downloadfile.bin.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1130621490337951804/a19d17dbbfde2353197a9b1246fad09d.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1130615743596212284/d83dfb8331bfd2a3900f73f7969eb11d.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1130605161769869406/d2d9e6cea73019f005f6bf9d47ab3a4a_1.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130033501102690375/video0-4.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130033234047144086/ed3b11cdbb73287a72a2efa5060aed4e.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130033118351478794/5ee0155cd604522e91cf73cbb0e99ebf.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130033039674724383/video0-3.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130032997031235594/video0-2.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130032836070617088/video0-1.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130032772136841256/video0.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130032707863334963/yor-briar-jxh33_720p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1130032438052126770/Gamer_girl_2D_4K_Uncensored_No_text_Only_animation.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1129577644955021442/4cebd6fba81d9263626d70922ade1e4f.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1129314720638304337/lv_0_20230630193758.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1128909102890881164/izayoi_sakuya_touhou_drawn_by_nurunurubouzu__8338465666ed0b40492f3402165d8708.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1128689763432538243/haruno_sakura_and_uzumaki_naruto_naruto_and_1_more_drawn_by_angelyeah_nami955_voice_actor_and_random_tide__1849c6670056c40201ec9ebc1ee593ad.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1128688806221058069/ExcitedCleverAtlanticsharpnosepuffer-mobile_2.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1128586052404248636/RottenEuphoricMadagascarhissingroach-mobile.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1128585826142523412/ExcitedCleverAtlanticsharpnosepuffer-mobile_2.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1128536644266508388/mp4chainsaw_man_himeno_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130184710862155878/peeing_Busty_Wife_Japanese_anime_hentai_porn_sex_xxx_XXX______Olympics720P.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130140302053744741/SkyblueRepulsiveEmperorshrimp-mobile-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130139752541192253/komi_shouko_komi_san_wa_komyushou_desu_drawn_by_nekololisama_and_zerodiamonds_voice_actor__98c0e0aed592c66acac4285e4312b355.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130114061816823859/195283.7268.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130112804217688135/joshi-luck-5-480p-h1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130020804818649118/yor-briar-jxh33_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1130018547695882411/Nil01_sex.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129910302209749062/21373.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129897336265519194/Otome.Hime.Episode.1.DUB.FHD.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129800745798094948/P9z9IEQmeUuEWnzJ.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129707866601816084/VID_20230508_120429_914.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129642153828700221/4666342_alternate_217146.720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129584717658861629/Yorha-No.2-Type-B-and-Yorha-No.9-Type-S-Maplestar-Nier-Automata-Animated-Hentai-Video.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129523885814067260/YouCut_20220908_205947880.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129500322168053840/eecd9e1383f92eb26fc9f162e30c1d9c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129500277737799791/7acdfe3d9b388108be8669f18a82764b.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129396380507586590/lover-in-law-1-720p-v2u.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129320882494525520/48e75408a515d82eac78126a85ebb5c5.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129317894757560330/P9z9IEQmeUuEWnzJ.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129314333269176320/lv_0_20230630193758.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129308636305428601/fe3ff141ebf4d2f8095870e99852e3d6.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129206747475755018/Class-de-Otoko-wa-Boku-Hitori_01_raw.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129092959137181776/e92f1698f017a7c7fc791ed3899481f6.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1129050443792789514/sadako.mp4", + "https://media.discordapp.net/attachments/765363939734847508/1005359498317279343/68aeb7e2c0f8678d4ed082d20a467789.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128909494412398623/haruno_sakura_and_uzumaki_naruto_naruto_and_1_more_drawn_by_angelyeah_nami955_voice_actor_and_random_tide__1849c6670056c40201ec9ebc1ee593ad.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128661375619711066/2f6cbf51e469f33d913da6e0ae328adf.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128561814523887696/37a8533fe8f5179edffd81c695540cb8.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128430691756032081/79.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128424908599337001/0c4cb32c2c656b358f01e9b743b2024e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128419521217171556/fuzzy-lips-episode-1-unc.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1128220935107911710/b404c484829e18a883e3d499ebe13db1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128333585481486407/GlitteringJumboBarb.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128225787812782161/1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128197337911677008/joshi-luck-3-720p-v2x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128186687768494221/kimi-wa-yasashiku-netorareru-the-animation-4.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128081190470037606/overflow-season-1-720p-v1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128070243764420648/0d0000e314cc8f598d5b5b1cd87246ed_video_720p_araiya-san-ore-to-aitsu-ga-onnayu-de-season-episode-1-free-hentai-stream.mp4.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1128020400815747212/Spy_x_Family_PART_2_FULL_PATRON.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127966759157243944/PicsArt_11-09-01.53.25.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127951225393000458/Class-de-Otoko-wa-Boku-Hitori_01_raw.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127862006200942644/1627545141468.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127806811551047771/40d58a92__.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127806729011343470/39c78dc4__.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127713306791129178/7ddd7cb127827158690dc8c836e4b837.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127711523448565800/lv_0_20230630193758.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127701835180937367/shinobu-fucked-japanese-voice_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127698357129854986/48047830e2946a8ae16bf49c91676188.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127669143370477638/trim.DC7DD3D2-FE43-4C41-8666-83E371654902.MOV", + "https://cdn.discordapp.com/attachments/710303054183792670/1127945244281937961/cammy-white-back-street-alley-whore-v2-pt-br_1080p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1127293373334691931/Topsy-Turvy_1080_h264.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127639335781531789/SpankBang.com_touhouworkingsakuya_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127600413550588025/3e97fe69659eef5d4c174a935ea3d960.mp4", + "https://media.discordapp.net/attachments/827278001154031647/978041943693070436/720.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127466424294707280/mp4chainsaw_man_himeno_1620p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127407511515967498/tenioha-1-480p-v1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127343750683828224/rumi-usagiyama-my-hero-academia-ocarina_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127317046837915668/1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127310913700106333/VID_20230610_002344_405.mp4", + "https://cdn.discordapp.com/attachments/1108093182476038274/1127187123376758865/SkyblueRepulsiveEmperorshrimp-mobile.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127157975870607431/810345e455d4ddd90c27c07309d322e3.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1127008125912895629/ssstwitter.com_1688769513889.mp4", + "https://media.discordapp.net/attachments/933767763628011530/1126335428044267612/J8_1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1126950183993868319/SPOILER_kiss-hug-1-480p-v1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1126857269502545970/c067a1a752144784adbb3aa5df9536a0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1126826091915518002/0bec521e4f6b1729ccab3714c3c26db5.mp4", + "https://cdn.discordapp.com/attachments/884103975153049663/1126667632570011768/ea06fa717016427963b9a89e574f2ccb.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1126615441494773760/lv_0_20230706234602.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1126572379544506388/Ironmouse_1080.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1126560098081312959/mp4chainsaw_man_himeno_1080p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1127604908099645530/S_sukebe-elf-tanbouki-1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126553760789954563/vid_720p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126550541313523844/Watch_HMV_-_NTR_MILF...nkBang_7.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126548184487968889/Season_Of_Loss_Tsugumi_HMV.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126503200250396712/downloadfile-2.bin.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126503122907451433/88ba4752e23676ee5e06a4d1c539eea0.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126502697261072457/3818277881692460217.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126502624838045696/91462aca04949999b6129e7098be8479.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126501907914035230/downloadfile.bin.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1124391798761078905/wI_rjXaLCWRa8Qmj.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1124309329982533713/qsawd7dl609b1.gif", + "https://media-cdn.lawlietbot.xyz/media/danbooru/c0/05/c0058156c77ecac38f404d83e14051d3.mp4?s=cdn", + "https://media-cdn.lawlietbot.xyz/media/danbooru/c3/61/c3610c5bcf41a543035afda9d01ce604.mp4?s=cdn", + "https://media-cdn.lawlietbot.xyz/media/danbooru/58/89/5889f3214ff33e1fad25c9450f789e1e.mp4?s=cdn", + "https://media-cdn2.lawlietbot.xyz/media/danbooru/bd/4a/bd4a6cb8e6b9930140d96e19971b7d34.mp4?s=cdn", + "https://media-cdn.lawlietbot.xyz/media/danbooru/ca/06/ca06c1127c8996669196070a3fde3f01.mp4?s=cdn", + "https://cdn.discordapp.com/attachments/765363939734847508/1089178038060720239/4k-chainsaw-power-theobrobine_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1126030780284534784/kimi-ga-suki-1-360p-v1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1126019764645527633/4179361044676001b0e1205b9085732b.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1126019630503297064/Aibeya_The_Animation.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125951081671831582/IMG_9061.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125934703569031208/e7fd9aa23744526f5e1fbe50c06114c2.mp4", + "https://media.discordapp.net/attachments/813469008405594112/1000238299279007825/LatinoHentai_Overflow_-_8_Uncensored_1080p_Sub_Eng.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125840250372104192/f1787941784d59eecd6141caf0973fba.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125495657550061608/ed4c4cc8c135c07181e8081b7290fc7b.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125472798576476200/549e18977426a6fedde9684719afa41c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125434787931373642/Kinsou-no-Vermeil-Hentai-Animation-by-JXH.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125407979571773470/received_840421354081039.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125400955756757133/video_2023-07-03_15-20-58.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125393696452526171/VID_20220212_143955_379.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125393258298736720/9c67e70d80cee8a98ff970eb9527b4eb.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125389383583924254/144f66_1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125375306614714428/48c823768e7615ffbd8f20b01f2263be.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125375260385087568/d6e18daabea022690337def451b7772c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125239150707224636/spy-classroom-lily-tosaka-chicken-farm_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125230417558126662/lv_0_20230428141636.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125224470009876570/5c305956e7e5462b82026c3987cb8cf5.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125211548730806383/99f62d0cb5402d9478d9873d930bf447.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125196255723790406/b6b00232e060fa49f0ef7588ae3d9509.mov", + "https://cdn.discordapp.com/attachments/765363939734847508/1125147753899622520/rinjo18-asuna-and-toki-threesome_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125123620499374170/Class-de-Otoko-wa-Boku-Hitori_01_raw.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1125007761822990357/4ff0e1438dbc92b963335e609e95134c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1124984502918336562/549e18977426a6fedde9684719afa41c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1124972753796210698/spy-classroom-lily-tosaka-chicken-farm_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1124873720087978024/5b37247cbf9d7c87898cba7377a37649.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1124861022029746206/VID_20220804_143113_660.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1124833783141638265/VID_20230411_125759_233.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1124766432501170186/3394790.mov720.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1124762299715047536/7d9dc846d69204a7a9c62647f69b571c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1124753110255014030/overflow-season-1-360p-v1x_1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1124303327627321365/lv_0_20230630193758.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1124244344791113758/SpankBang.com_roleplayerh_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123930762127884288/images-2_7.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123862589659697222/4705d6980a6db5a1915b992e5fdfb626.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123655217930579978/afc358d4a418d9b8d9cc636c0a1eae9a.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123541405600596070/7ca6474e509c3294200cce4a07d780f6.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123524590812004393/vid_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123499515077480618/3-piece-1-480p-v1x-1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126226410751664228/05a4a9025522b83fb9768b05fcb5925d.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126218505797242961/downloadfile.bin.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1126218319041658890/a43ace5438d74f6a75ab86334c18b047.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1125881941200220210/d402ef3683d47af2b39eceeb6859432e.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1125880494274383983/551f0306dd6fefc0f3299cee6ed37860.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1125448077877182495/Yuffie-showing-off-her-shinobi-interrogation-technique.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1125064136443830333/shenhe_1_full.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1124347962458394686/3T00JfMtyKaM-Os.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1124167704501309562/NsceneOne_Piece_-_Ep5271080P.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1123595349785837580/mfvip.fanbox.cc.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1123557790347174009/InFJscyEyTMFshL2.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123496739006058496/kiss-hug-1-480p-v1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123445465007005787/71bd5b0c47e11f5db8675ca10484f5bd.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123408709817729074/7b2e4e99bd5bc6e7532376e9f444db45.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123401633049608212/311fe267ad236d151512deee4762da3d.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123401532126285916/b93690455af2fa0d6a98f101c1d49d4e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123187895616950352/2f6cbf51e469f33d913da6e0ae328adf.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123115864615571487/3e97fe69659eef5d4c174a935ea3d960.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123109167306129488/shinobu-fucked-japanese-voice_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123020174803611679/VID_20230627_012413_641.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1123020094193287299/VID_20230627_012557_272.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122974023664549950/7847569-720p.mp4", + "https://media.discordapp.net/attachments/765363939734847508/967890310011187250/CC78798B-266B-4D4E-B9BE-4827008FC0B9.mov", + "https://cdn.discordapp.com/attachments/765363939734847508/1122872298039431198/Video.Guru_20230626_094726011.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122866187689271377/6a639da96c29b411353371ad3c4729d0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122859362105442344/VID-20211219-WA0026.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122855932901212211/39353d790d1d624b98a9229f62ac5591.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122809413439332423/joshi-luck-5-480p-h1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122647370392412230/9641f0a64e2e1dfabf5701fde62cad84.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122647301068967936/VID_20230625_013140_373.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122647272551874591/VID_20230625_013031_688.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122647239337193472/VID_20230625_013037_506.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122621919540293752/e8bb332e6dde301fc911eedab0e2e57e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122505326277709865/Nier_Horny_Androids_Maplestar_PATRON_ONLY.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122462246686175282/4176c0e14cb9439d573bf49ef0c03d23.webm", + "https://cdn.discordapp.com/attachments/765363939734847508/1122430596715663360/koharu_hanako_and_sensei_blue_archive_drawn_by_yuzutei__6f943638344b5338fd4b398a4cad3915.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1123445647144657046/downloadfile.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1123439307441582220/lily-tyviania2_1080p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1123035933655179264/downloadfile-2.bin.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122920167253483550/1684984355496541.webm", + "https://cdn.discordapp.com/attachments/710303054183792670/1122920066292383905/8d34f048c97cdfa2b1c4af68109153d4.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122919900000829540/DBa7K.webm", + "https://cdn.discordapp.com/attachments/710303054183792670/1122919849606271177/viddit_8f5ab5c2.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122919794484711544/1662406795752523.webm", + "https://cdn.discordapp.com/attachments/710303054183792670/1122919749328851046/9b0c09750a8196d4b2a3ce43a3e2ba47.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122919705875841125/56e84c6b9c891d4050561ef54afcf465.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122919682928808017/df531d405fba8d9dcb4bdfbad8f354b3.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122794332336967680/xvideos.com_3e0c081b93cb60d454896f4d0591aff9.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122582012369313863/ela-throat-fuck_1080p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122515804836073572/f4610ad27f2ea2ae29b828c7a2415097.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122502438746861658/Purah-runs-some-experiments-on-Link.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1122406670572736673/ae760410aa471fbbc9fc55c57dbc3fd1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122422890005020693/cBBm0Nm-Gbb2hKXG.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122189399292133436/cf473eb8a0f4d48234d0e8e86ed1b5b8.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1122075305922805870/IMG_7234.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1121962001430745149/received_809362607430804.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1121961865745010770/received_591330692989076.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1121959328283365507/b909e9856f7ca9165a4fd4da27f08292.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1121821698946256958/4986265209520.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1118831638848213022/by_from_Fantia_Kemono.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1118684470363566103/InShot_20230615_021719822.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1116908167243243571/c1982612bcb7f27f20400dffa1841807.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1116736607727394898/d30c659d_a.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1116041022619787377/08674c60f11b408280092a827388f38e.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1115669015990378656/downloadfile-2.bin_1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112704677679730760/11.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112704391628210267/10.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112703793876975736/ssstwitter.com_1685353868455.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112703300639404172/ssstwitter.com_1685353748430.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112702934770274334/4.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112702677260959846/Minus8_-_Koopa_Troopa_with_no_pant.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112585674034524160/ANT-HA_WIP_21.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112585097384833074/ANT-HA_WIP_19.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112293690472398888/3115905_360.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112270793821393017/Joshi_Luck_4.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112270516959588372/Joshi_Luck_3.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112259689334452264/Spy_x_Family_PART_2_FULL_PATRON.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1112012187398049943/Nier_Horny_Androids_Maplestar_PATRON_ONLY.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1110765023590092810/773a2ef731e2eaf2a25b1b7fd055523c.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1107544196128178216/Sono_bisque_doll_wa_koi_wo_suru_Marin_houriigurei_-_XVIDEOS98.COM.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1107158669763817512/be6ec87411198947aa1c0fc12c20d82a.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1121146030424064000/VID_20230616_175752_198.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1121101620873269268/c15646e4e13d1116932b8917d2f0de50.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1121072593240330321/khaommd-examination_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1121063926793248848/47e9b9e298af808081b237b29e257a1a.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1121472667934011453/94f43d0c54f965fed19f856972ad828d.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1121408641862475787/zvXij_.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1120844076229611661/Byleth__The_ultimate_training_course_.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1120843995032060074/A_holiday_with_peach_www.saveporn.net.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1120606368374738986/Watch_NTRMAN_Season_...nkBang_3.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1120236135965278289/test-of-faith-derpixon_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/807977848451235840/All.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1119611818864812032/imouto-wa-gal-kawaii-1-720p-v1x.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1119455060770955324/111bad5ef51c501f3d5bf0990896e354.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1119389624616357961/eecd9e1383f92eb26fc9f162e30c1d9c.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1118562467317026986/Dva_Gets_Expelled1080P.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1117504823823179896/Fuck_Session_02_Yor_4K.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1117498452553764944/58c6b3a8f33c6dab93b571f4f710c492.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1118479923313655828/2_5429516038616133284.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1118479802534473770/2_5440832508641945534.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1118479521503518820/2_5429516038616133295.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1118479296680448050/2_5467915382704583517.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1118479176836579409/2_5206532396148601190.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1118048840470249502/9d5d544810dd7d6607e27cbdd2e0212a.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1118007772810842122/Rpl.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1117921500155101336/ahsoka-blowjob-redmoa-4k_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115751424660340786/nier-human-desire-1080hq-esp-sub-maplestar_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115728035321221180/GlitteringJumboBarb.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1115941917218320446/zOfcdYf2pCZmS0Gc.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1115941778831441950/Play_Giirls_1080x1812.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1115941701849186355/wS__3_lnLr_JQl08.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1115941589689303051/insangssudaa_1006x720.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1115884111324786848/861709702df6dd7641321a9d00f44f3d.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1115026910221701150/Kaisa-gets-some-help-in-blowjob-Sound-update.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1115008139209756713/1685849657219041.webm", + "https://media.discordapp.net/attachments/507802320411820033/1098496823599054858/829ff8f30b26f426f10df5336233b8b9.gif", + "https://cdn.discordapp.com/attachments/765363939734847508/1115574343703990273/23123saxd.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115572422016503918/f2a85286e9514dcd2ddfa0d9f7c22df0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115564350535634975/trim.D944AE19-AA85-4E30-8E52-4C3869AA1369.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115559481724649472/3394790.mov720.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115526289500151918/ssstwitter.com_1681808375733.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115465236753952878/tears-of-the-kingdom-purah-theobrobine_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115400886949249056/StrictFractalMousebird.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115398580916727818/VID_20220727_003102_735.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115362935708074114/3735139322433.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115349724455772351/lv_0_20230519222511.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115284571974553640/SpankBang.com_shiroko_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115273421039878234/QuietPracticalShoveler-mobile.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115273383421157386/937204fd65b4b9bf968d4b79d92decfe.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115214604889497670/74f7e5baba2c2d5b398732f56d0414e2d81db59eb514f6138bf28853fae5f25c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115145448341127229/K_KimiOmouKoi1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115145402149240932/E_enjo-kouhai-7.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115144914301362176/Hajimete-no-Hitozuma-Episode-5-English-Subbed.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115136008065908756/RPReplay_Final1685861403.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115044528626344006/madoka-x-ray-najar_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115037346614751322/VID_20230605_032703_435.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115014775416557658/4k-mythra-pyra-nekololisama_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115009396762746890/ddc47fcdebc11c16bb3b4f29f3f6d456.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1115002521098915951/39814-720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114997598772801636/f28cdb77a9bbc98e276b55ed73089f86.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114995748908585050/6a16ac422db9d078589a3949cdfb06c1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114981758501404772/f0ba9d0573da682ef85fd15b3b01a929.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114899527275647059/Play_Giirls-1665003714027847682-20230603_200314-vid1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114852720747233370/video0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114835729508466728/7ddd7cb127827158690dc8c836e4b837.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114785978322796616/79a8e39e6e44aa8ad612d7b9d435ad30.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114753938852429905/c8cf8b51192bc0d3fbde64766ea9d2e9.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114698441168277625/twitter_20230320_204331.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114622075156574299/c15646e4e13d1116932b8917d2f0de50.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114622053379756052/2d815c827ec746368835c13740f761c6.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114568991214678068/VID_20230603_235757_091.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114554069038665789/TrevoButEvil-1664732552484257793-20230603_043544-vid1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114553878910865579/6f86c7ffb637533c7202fb3db9bbf698.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1112756878234091530/VZeesGf.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114499527836184657/1654230941986967553_1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114485305735659520/mr2DHiqZN5fONQg6.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114451506205302794/d344d3bd00929d613ee3c3d9e7e750e7.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114451238566772776/video_converter_.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114342466380906496/057fa1a79916eca1e8ac5f8da933a525.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114332245751255120/d0ed7eba8d73f64f52243b2d94893282.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114301154503962706/Metro_ruchane.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114259810834202736/twitter_20230602_233019.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114257902006435981/twitter_20230602_232133.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114211775794135140/04cebeaa3ad828c1d15a77080ce9758e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114155988895936543/7bc58d161b8138a756c0f0255857370b.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114130983717982238/d_275907s1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114083497586479164/mirror-maiden-pov-studio34_360.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114048305840791653/31-03-patreon_update02.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114039539934167070/db9b633f619fa957dea94c89c12f36d0.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1115286211167273070/d5118cdf445035cc7bb1b27a9b534998.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1115152151321247825/b51665c71990a15c97e7d24cfa025a0e.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1115108033777897493/dda62fe5f58d0f2f0118c8f2c0f1fea2.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1115005142731870268/downloadfile.bin.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1114955773575958648/aea7ad5ba02b3e1b58a844b629ce3124.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1114954655450022019/downloadfile.bin_3.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1114954589259714590/fa0fe97e3da0fd943095dd1eee05b95f.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1114845592233967627/downloadfile.bin.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1114424107942039562/120_human_longer_p_1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1114407869153038457/A_Night_in_Mondstadt_-_Happy_Accident_Full_HD.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1114307152958455829/Komis_Mom.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1114107984096788521/barefoot_ayaka_120.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1113952030713708655/3D_Korean_Hentai_Ani...kidmo_3.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113928134522318878/47e9b9e298af808081b237b29e257a1a.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1113825175201402950/1a8555639d831133bb2b0728a7c60176.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1113532980950994964/getvideo.page-oXDICKyjkQ6wDxPB.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113877884826824756/VID_20230305_215720_182.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113827616449904680/MajesticWhiteGrackle.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113743862532427786/195283.7268.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113696297380229201/a3f1bc3f58f3d2c96d33cd5d961a27fc.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113682158079451136/ganyuh.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113604876019175434/0b9811e5f9db59ea67d59c8b1b4e6e8d.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113574290638516336/2_5449526441572053323.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1113907528665927741/Alt_version_Jean_awake.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1113820258885709956/dragk_snyder_kokomi_full_1_1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1113600506561052692/95ca509f944a437ef54b42762e7c7e4f.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113499355073232937/82ee81c82d47527cee25750ff7895195_prob3-3x-RIFE-RIFE4.0-72fps.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113468037530656768/video0_127.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113369129315995658/trim.57020A30-95EE-4DDB-B82A-B3554BCC97F7.mov", + "https://cdn.discordapp.com/attachments/765363939734847508/1113307925163802706/joshi-luck-1-480p-v1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113287865833631796/miruko-s-workout-clothed-nude-speedosausage_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113196871964442695/nier-human-desire-1080hq-esp-sub-maplestar_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113192239112392795/CleverSaltyGelding.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113191432048607353/PeacefulFarflungBigmouthbass.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113187782878298122/DisgustingBlackandwhiteKinglet.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113184078469025812/DarkgreenCommonFlyingfish.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113177605005389945/GlitteringJumboBarb.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113175812879945839/ThinForkedHadrosaurus.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113021640264130602/XRecorder_30052023_1525392.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113020333046370304/27435e1fb43bf7b40fb5722b26f22943.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1112952078386602065/a3c9e7cfebe97f9b949bc0e27aec29da.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1112874693595250789/Project_Number_29_540p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1112293554186887288/f28cdb77a9bbc98e276b55ed73089f86.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1112820058561986651/VID_20230529_220849_854.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1112819569543884830/VID_20230529_220640_402.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1112819467592925305/VID_20230529_220349_801.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1112801660595609753/805579beda7bdb6f01013918c7780ff3.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1112786807789211688/896907cab2c3c0d6526ea276f3683814.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1113175838192582726/Video.Guru_20230530_204110329.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1113175589319356527/Video.Guru_20230530_204041011.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1113113665382662184/ssstwitter.com_1685395177410.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113505946728157275/lv_0_20230519222206.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113505365166915594/Spy_x_Family_PART_2_FULL_PATRON.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113507212820742184/Video.Guru_20230530_204110329.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1113507123918274612/Video.Guru_20230530_204041011.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111598954015096843/VID_20230526_131200_890.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111490784013856828/VID_20230519_161530_683.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111371969338806272/1cd7d8f151b4ef2682a1de63e339c6f2.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111315866827636766/Nier_Horny_Androids_-_Maplestar.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111303712934215720/1e58c3193e3d2ce4cf59be3c3e1f47ce.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111303649025589298/7acdfe3d9b388108be8669f18a82764b.mp4", + "https://media.discordapp.net/attachments/973465832183197726/1060294094619942984/prinz-heinrich-rinhee_360.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111260520159379537/lv_0_20230519222019.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111248672550817852/Uzaki_Bath_1440p_FINAL.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1111261333636251748/4ae222014608775cd1e6fc36310dec29.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111225666264903760/b919a249efe19b58c1a8dce2d7ff736e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111170293617147915/twitter_20230420_062741.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111139009910014002/3328a5ed5beb34251227653f32bc64c9.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1111047792081784874/2_5462985859760397965.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1110952957140271255/ryuko-maenchu-alternate_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1110952617196138526/RDT_20230411_214514.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1110949058941571132/kto-hochet-ksenomorfa-trahnut_480p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1110601570040676512/baikena3b81f7c12e5bf04503f10afcfb4f85e.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1110390245423325235/SmoothEveryPinemarten.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1109893596657766430/660096103449075712_.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1109910793597767700/Mini_HD_2D_H_animation_Kosaka_Wakamo_Blue_Archive_by.Rinhee_Uncen.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1109895164123684865/20f7508c0c9a95bb57a61794b76ed3ea.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1109313069529714779/194444.mov480.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1109253683042062466/video0-22.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1109243104688611328/lv_0_20230519220131.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1109161805453991956/3-piece-1-480p-v1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1109161002488049814/kaede-to-suzu-2-480p-v1x.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1109337224891334736/downloadfile-1.bin.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1109333489905574036/downloadfile.bin.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1109325267769507912/cfaf16a5241af3828aa7b580d53df440.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1109536102181769356/1659385373187887105_1280x720.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1109616746790404197/VID_20230521_035730.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1109583323774333119/VID_20230520_091739_650.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1109845597445423274/93b8d714ee24373e3ee47383da236ed9.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1109777261953036388/f7b9501832a196a3d4df3f3cefa0fbd9.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1109763730226548766/lv_0_20230519003041.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1109578580641452224/be231b4f098c63102859378adfee9f16.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108944808090804315/79f8cb1d7073c6c8a88306e6fb0cc795.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1108854001572773918/naruto-hinata-hyuuga-naruto-uzumaki-1080p-angelyeah_1080p_1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108641361235820564/peeing_Busty_Wife_Japanese_anime_hentai_porn_sex_xxx_XXX______Olympics720P.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108621628520271892/b93752baf771e7ecb7afd090b7b5ad54.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108581020166533150/video0-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108580993339752560/27.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108580633120354314/26.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108579972509081691/24.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108449464261283844/IMG_9061.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108424204623298620/vid_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108417542927679568/19.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108417120024395896/21.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108416675025539102/20.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108413727998484480/trim.67CF0D66-28CC-42B2-BBF6-316DD080C92D.mov", + "https://cdn.discordapp.com/attachments/765363939734847508/1108399253971275807/a138f8513937bd1f5a45c0a108156eb0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108290838573875232/VID_33250924_154627_323.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1108715901764775936/e335ad8280b351f549039d1f288664e1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1108598380747305011/11fa0b2a0fc75e36ba209ee206c04b1b.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1108323575431188500/twitter_20230517_155314.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1108323225341009950/twitter_20230517_155355.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1107796381898391612/2acc264b4dbcc792a366fa595ce1ee43.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108217734216556684/23.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108217349363990548/18.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108216778196275300/17.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108108629753725039/eecd9e1383f92eb26fc9f162e30c1d9c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108083674500567120/cfaf16a5241af3828aa7b580d53df440.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108061926979805224/15.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108061619822538842/14.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1108061287092584559/13.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107999378385403924/10.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107999049564557392/9.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107998743636234250/8.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107873961838121081/7.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107873406411620403/6.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107872898196185098/5.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107767260208173199/video0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107744434398953582/4.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107743989974716498/2.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107743298845683853/1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107731050177777744/c0fe6f08c51c1f3d2097d7c34ecab0d8.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1107729995318698014/cellvore_2023-02-08-13-47-26_1675860446562.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1108264819771064371/power_and_denji_chainsaw_man_drawn_by_kumbomb_voice_actor_mimi_hung_voice_actor_and_suoiresnu__1901d01f1b576bd1e7617193646c98fc.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1107890557356875896/08b8208a8327f96898bf561e9236e0b9.webm", + "https://vxtwitter.com/21karaagebo/status/1658052560794812420", + "https://cdn.discordapp.com/attachments/710303054183792670/1107696816063000756/ec78f60a85a2b689cf3f3f80d31ee80a.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1107457355370741781/66262070c575b1204fc5e003006157bc.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1106674836366958662/40099361a.webm", + "https://cdn.discordapp.com/attachments/507802320411820033/1105962938134704178/YouCut_20230226_005137543.mp4", + "https://uswebm.rule34.xxx//images/6893/52929a98e8f5364218df02aca08d9096.mp4?7863263", + "https://cdn.discordapp.com/attachments/507802320411820033/1103731513071247490/9becf3d9a22729d657f083428cc5c1ea.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1103163905162883082/HexManiac2.webm", + "https://cdn.discordapp.com/attachments/507802320411820033/1103163474676297738/Android_21_2.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1102647826938339369/lv_0_20230203190912.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1100112145330475058/179397.mov720.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1098715692452294676/received_3410417705942727.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1098496823599054858/829ff8f30b26f426f10df5336233b8b9.gif", + "https://cdn.discordapp.com/attachments/507802320411820033/1097773598590120016/3bc57d44e335d1200c58f9611c89d97c.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1096191930590822541/D.va-penetrated-by-tentacles.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1095052506821832745/received_587202346663714.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1095050100528660511/shylily-waterring_1080p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1095048983098962070/Spy_X_Family_Part_2_-_Maplestar.mp4", + "https://cdn.discordapp.com/attachments/1094413750842433618/1094599317173567529/LopsidedBlueWhelp-mobile.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1094688754448470076/13e5f576-9b4a-4b85-a61c-487a2b93fb9b.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1093953699740655727/a5c40371b86d1a974bac7ae0988c4716.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1093953286442332250/073e0b7a85c5950cd95935a1cd384e46.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1093341812506243122/a8754d866791a0b91796fc22513705c9.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1093296189811724439/1129dd51e82b6f8b85acdda8af9e87b4.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1093186444769636372/643566393432915969_1006x720.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1092896643478716646/2023-04-04_21-37-20.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1092561100526059560/000272904085d1ad73e9b3e31016368d.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1092561077650333756/12194352f58783251f5b73f54e77440b.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1092558344184664064/94f43d0c54f965fed19f856972ad828d.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1092558084930539551/4cc55dbd094562e21fbe3b4729a672d6.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1092557827886809109/2a162ea99cbf8f718e0acbfe928c5b09.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1092557419604869120/0f91f50408e2093bd37f4af1d3ea0a9a.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1092545904730456176/0dac90a1f7a4f1f02ca47cc11ff7189f.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1092234068898349076/992a48a4de6b8745351ff0aecc288b6a.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1090119152280281228/nicole-waterson-when-alone-at-home_1080p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1089320047991857152/8c0b74812197588be943f689a3fe6b42.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1089319274964861009/48e75408a515d82eac78126a85ebb5c5.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1088593170994053201/yor-briar-nivaris-art_480p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1088144323159277598/erciyuanmhfx_1619522487120982016_1288x720.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1087757838417412166/6bef4ca04170444e742128f3f0165104.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1086768084779548702/final_62715c04022d2100a1d34f86_981703-1-1.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1086605117521924146/P9z9IEQmeUuEWnzJ.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1086406686610313348/ssstwitter.com_1662444826894.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1084819000057397351/ScornfulTidyHarpseal-mobile.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1084120206227550248/262aaf4a4c7280dd4debfd4a3e4e6cdf.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1083813039171698769/00.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1083181744162877540/683401fda3a4007ab6631d1401df8a73.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1083181713838051419/e15298e5e3a41bdfc6d5e7dd6532ee77.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1083181677477634088/5732648b47a1fffb3ba2e0d488889739.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1081931806867214377/CheerfulPepperyFinnishspitz-mobile.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1079033672449142794/rapidsave.com_KZIlGop.mov", + "https://media.discordapp.net/attachments/765363939734847508/863939268983521310/Cartoon_milf_Aunt_Cass_from_Big_hero_six_get_fucked.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1078153398752383086/Bumstar_KDA_League_of_Legends_Hentai_Derpixon_-480p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1078150716641771600/Kiriko_Riding_Yeero_1080p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1078139992326549626/haruno_sakura_and_uzumaki_naruto_naruto_and_1_more_drawn_by_angelyeah__740db26ae2fedc922b2c7b0fce0bca91.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1077852817517203496/Lovely-night-with-Maid-Viper.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1077851956850196500/Ada-Wong-getting-a-sample-of-fluid.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1077583234654806126/1b1cf19491a905b00c8522fe5e3acc3b.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1077369140223946772/Ashe-Pull-out-Game-Sound-Update.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1077000609842069525/cDcagVuDmAgfNBFR.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1076744652184621156/Kiriko-and-D.va-competing-Blacked-Sound-update.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1076744391944843357/D.va-and-Kiriko-sideway-creampie-Sound-update-Blacked.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1076744020237226034/Ahri-in-academy.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1076743710613708810/Evelynn-Reverse-Ride-POV.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1076743300209446922/Fucking-KDA-Akali-POV.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1076743088782987264/Chun-Li-3-holes-stuffed.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1075413284792049745/12.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1074730042753552465/55941.mov.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1074729634597449829/9572.mov.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1074729404346945556/199924.mov480.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1074613572279214160/2d_hentai_Touhou_short_animation_-480p.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1074295382680535181/216396.mov480.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1074295222864982087/LDkgtST.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1074092787743600710/150568.mov480.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1073773516031266846/238203.mov480.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1073773308539052234/136577.mov480.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1073773145812635779/241895.mov480.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1073773038241325126/234470.mov480.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1073772751531286610/237271.mov480.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1073687449387143228/Hls_1602511824062144513_1280x720.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1073429203824943264/Stu028_-_Jean_1080.mp4.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1073254559352373258/HA1623651506636349440_1280x720.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1071654535916945428/cCwGBJaLJo4AaIz0.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1071166884214476890/HMV_Rikka_fellatio_10bit.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1071140221644710101/1619894970852282369_1920x1080.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1071140054308761750/1598130972473663489_1280x720.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1071139903833907321/HentaiGod_xx_1621464936890392576_854x480.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1071139731766784190/animechhi9_1621349595748900864_720x400.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1069095328122417162/Mesudachi_-_Episode_2.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1069021768016203848/LewdFroggo_-_MonaTravis.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1068899347317669998/1053235.mp4", + "https://cdn.discordapp.com/attachments/507802320411820033/1068774021426065468/HealthyFrozenBoa-mobile.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1106979644546220072/ssstwitter.com_1681087519136.mp4", + "https://media.discordapp.net/attachments/765363939734847508/1106822387632181299/82ee81c82d47527cee25750ff7895195_prob3-3x-RIFE-RIFE4.0-72fps.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1106949758519607346/fr_bro.mp4", + "https://media-cdn2.lawlietbot.xyz/media/danbooru/32/a3/32a3a36dffe7fa56eaabb6ed096bafa2.mp4?s=cdn", + "https://cdn.discordapp.com/attachments/765363939734847508/1106830332428292166/2ea457f1318d3ff4fe30141d2ef05322.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1106822387632181299/82ee81c82d47527cee25750ff7895195_prob3-3x-RIFE-RIFE4.0-72fps.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1106658931666858084/Momiji_sech.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1076504606428901386/d0d92863aacb066ef7fb31282ad9c097.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1106604871672664136/downloadfile.bin.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1106457689330028544/VID_20230512_083848_079.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1106348508262441030/video0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1105940520364154930/diives_dublado_em_pt_br.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1106029801795502110/kkm8a0ui1nw81.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1105632696010551336/hentai_explosion_hmv.webm.webm", + "https://cdn.discordapp.com/attachments/765363939734847508/1105632619867164762/New_Clover-1.webm", + "https://cdn.discordapp.com/attachments/765363939734847508/1105632471074226216/Close_Up.webm", + "https://cdn.discordapp.com/attachments/765363939734847508/1105632399561347132/1640662299183.webm", + "https://cdn.discordapp.com/attachments/765363939734847508/1105632329021534238/Sunny_Christmas_12-13_by_Sunny.webm", + "https://cdn.discordapp.com/attachments/765363939734847508/1105632248318930964/HMV_-_New_Level.webm", + "https://cdn.discordapp.com/attachments/765363939734847508/1105632161656209498/Saimin_Fiyacraka_HMV.webm", + "https://cdn.discordapp.com/attachments/710303054183792670/1105795315963023390/3.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1105795148849356891/2.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1105794611219288185/1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/961587932890800149/c83285090326b259496c7b6969392e11.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1105431002802814976/VID_20230509_121429_831.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1105430794274623518/c9cc8f2419f997ceb1e14c39881445ba.mp4", + "https://cdn.donmai.us/original/1b/57/1b576a9804b3872210202dbd4c5fdac7.webm", + "https://cdn.discordapp.com/attachments/765363939734847508/1105171508780879914/vid_480p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1105112698691260456/e04a63a8868a2fa901160ad544ec1989.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1105059856584560730/VID_20230508_120429_914.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1105043914878103552/daab59f21213aa43a26edfd2c58d5162.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1105038491194245140/89a98522bc759d0905658fb0fafc85f2.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104995367998734342/Live2D_B.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104850485627846807/VID_20230507_222052_682.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104842910123434014/VID_20230507_213230_127.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1105504585033990214/d7d8463c8e4e8cda83ae7d1769e06915.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1105189772827312208/20220819_1.mp4", + "https://media-cdn2.lawlietbot.xyz/media/rule34/5248/f3274831b874bdfc5be253d457a34d21.mp4?s=api-cdn-mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104535097161547886/4th-of-july-tansau_360.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104479879581409332/7eb4eef87bed320562ed9ca7a40bb567.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104434087009210519/S_Sakusei_Byoutou_The_Animation_Tachibana_Edition.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104415931620397166/bbe3af837eaf4fc14bbb8f3c62e02c14.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104334219074875455/6a639da96c29b411353371ad3c4729d0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104819923257151611/video0-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104770718190805082/dc9da74597ecd47b2848fb4d68fce77a.mp4", + "https://media-cdn2.lawlietbot.xyz/media/rule34/4276/413ee4ff9f6186647138e3cd00c0c0e1.mp4?s=api-cdn-mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1104235580289724426/mutualtimetogether.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1104203555092561960/KYARO05978696.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1104040865443364874/e46f6f9d72377ed888127b2c4ddce028.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1104003867575865445/pbpyx0qbgiwa1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1103977321427378197/kitagawa-marin-theobrobine_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1103756121224790076/sussy.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1103433687762227310/f662ba40676294d636c99d100a88c826.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1103324671358795836/VID_20230503_015025_118.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1103480376455876690/qzBXjws.mp4", + "https://media.discordapp.net/attachments/765363939734847508/1100575928813375488/51a72c0e335f4428bc7f5cd46c5ae0bc.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1103304392276443156/eecd9e1383f92eb26fc9f162e30c1d9c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1103257717516292096/aeb43bb8cc7b2ad1b35d8760804e37f4.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1103214464679026708/VID_20230503_094721_914.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102840240462368788/One_Piece_Hot_Nami_Nico_Robin_And_Perona_Part_1-480p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102671644226486343/qnze03-a25a01.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102604707081486427/karin_blue_archive_drawn_by_cait_aron__3ec38cea8ef6e717393547a0b47c7bc4.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102577379102175322/7acdfe3d9b388108be8669f18a82764b.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102461348463513610/0161b87fc16cfd40a2d0dd36180ce24f8d4b1df8ba46bc97fe24cb22414c91b6.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102394718391910480/YouCut_20221123_001235027.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102321834332000276/YouCut_20220913_225821150.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1102616705756307476/SlimyLightgraySeagull-mobile.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102190736574779452/lv_0_20230430140916.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102080708035493898/lv_0_20230420125015.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102042757075304500/MediumBrownAldabratortoise.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1102037496918982716/SpankBang.com_genshinimpactshenhe2dhentai_480p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101937679165309118/74522a9047684578da39837fa8fca102.mp4", + "https://media.discordapp.net/attachments/973465832183197726/1094007579631436009/Araiya-sanoreToAitsuGaOnnayuEp.5_e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101850085307985920/da9cd4eeb43b55700c911310a232266b.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101835034018709504/Watch_My_Mother_Episode_1_English_-_Hentai_Play_1.mp4", + "https://cdn.discordapp.com/attachments/609147447658283013/620612347043512320/tvrkujlq72b31.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101752239653138502/xvideos.com_ba59817d0d346f59d0448f4dbe535b8d1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101706108508315758/VID_20230419_091959_606.mp4", + "https://cdn.discordapp.com/attachments/630397588092354561/946310232773099540/1fe2f27c1d91f3612f5c46be3bd0d6b5.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101666639461748776/Class-de-Otoko-wa-Boku-Hitori_01_raw.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101649488365494282/YouCut_20220908_205947880.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101622267718406225/aa6836b97d72f3549b48f893d6e4ab95.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101607139048431726/OuziNjkXqEupiqaw.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101521844642779247/eddfb960503e03ab99f2dc1ba6b6f02a.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101516856633864192/noelle-silva-and-asta-anal-creampie-space-panda_480p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101467421954543719/lv_0_20230428141636.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101249662847037450/VID_20230427_220807_774.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1101831101426700298/VID_20230429181855.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1101252984463171714/96373ec380f390bb9b229fc20968f983.mp4", + "https://media.discordapp.net/attachments/973465832183197726/1097107276906643518/5F4F75AA-E264-4E21-97F0-2109FBDF0E29.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101950339793567846/f97fe89f0647c7af6e46ecf0d89ea2bc.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101205559866314833/ba29f5bde41b5d6012a73f19a96052ec.mp4", + "https://media.discordapp.net/attachments/765363939734847508/1099317482046632017/video_2023-04-22_15-57-52.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101013128772333658/shigure_and_shigure_blue_archive__de19a21657a3eafc1227badd555ac6f3.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101012425853128814/noa_blue_archive_drawn_by_mumu_mumunyan__1fa761c19c9846eae201e1c79a2e5d9d.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1101011285644156979/kaede_blue_archive_drawn_by_mumu_mumunyan__300b735e9cd228663df36f774e54882a.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100919694896156792/c25e0ee9765abf02f4877c989fcccaa8-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100695755339087872/SpankBang.com_animetitsjob_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100591611571867648/3630637.mov480.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100575928813375488/51a72c0e335f4428bc7f5cd46c5ae0bc.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100574610153545789/d68aebe1f2c5e7c19908fa7536e22845.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100560502075179138/c51993321e5b7046f72f5982dce5ef95.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100539046754795580/e72584cdb8b8ddcd757311a136eb7d6b.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100513137138077736/wow.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100350204139552828/VID_20230420_153644_083.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100313992326565888/d8ecb4c083ce19089de72cee03578f52.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100241255935528990/BadAssDownloader_-_480p_MY_MOMMY_IS_A_BIG_TITTY_SUCCUBUS_PT.2.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100235256625365102/LikelyTemptingHorseshoecrab-mobile.mov", + "https://cdn.discordapp.com/attachments/765363939734847508/1100224089890758746/lisa-and-aether-theobrobine2_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100137563781615756/karin_blue_archive_drawn_by_cait_aron__3ec38cea8ef6e717393547a0b47c7bc4.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100129429658804264/VID_20230424_213848_039.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100079763005128735/VID_20230419_232410_477.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1100078869681295370/VID_20230423_005925_400.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100499377728016494/VID_20230425_213831_238.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100499287206547586/VID_20230425_213840_094.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100499216838705253/VID_20230425_213857_002.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100499184496431124/VID_20230425_213906_416.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100499111658127470/VID_20230425_213911_344.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100499040375951471/VID_20230425_213929_446.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100499006674702367/VID_20230425_213934_080.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100498913762496542/VID_20230425_213935_418.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100498890349879398/VID_20230425_213959_828.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100498847802855554/VID_20230425_214028_252.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1100498782648541214/VID_20230425_214109_299.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099886427145248808/00eeef8431eae5c648f8eda936e2883a.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099869894180352041/lv_0_20230423221838.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099858710010019980/44c2ebec9b168feb527989eecd98c431.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099858491960729604/Koumi-jima_Shuu_7_de_Umeru_Mesu_tachi_-_Episode_1_-_Part_2.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099842952743891044/8d407ec788a4bd532106028d720c0e5a.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099795753959948359/36c14ed26e74c6b267b6d618d8749131.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099795687446695986/3642fa1ada49eda4ee8efcb3791f48ef.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099658894390870037/restinbreast.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099721911442874378/Exga_20230423_4.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099665406106533929/FirsthandCautiousAltiplanochinchillamouse-mobile.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099665146672054292/GratefulTurbulentSiamesecat-mobile.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099664965624934532/SurefootedRoughTerrapin-mobile.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099572693503856691/ac09451410950d80d929a61e6d97573c.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099555279605088296/5764509171972845286d893e65c0dea0.mp4", + "https://cdn.discordapp.com/attachments/1020310204656660554/1091837046592655410/VID_20220525_071157_397_528x480-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099328487199871067/2_5260530417211027299.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099321083297009735/VID_20230421_234527_714.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099317915498586172/inubashiri_momiji_touhou_drawn_by_peso_cheese_company__54b29388780f40b6005e710a403822f7.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099317482046632017/video_2023-04-22_15-57-52.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099274698887532634/2_5296459845866627161.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099268260282777652/c51993321e5b7046f72f5982dce5ef95.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099266477359632384/IMG_2030.MP4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099258910717788210/kaho_blue_archive_drawn_by_mumu_mumunyan__2bfd819c79b391d4f0948fb7ee4a593e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099060006827077713/VID_20230411_125759_233.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1099050249831579810/sQoUNKF.mp4", + "https://media.discordapp.net/attachments/532298437014585346/1098698052442792046/4666342_alternate_217146.720p.mp4", + "https://media.discordapp.net/attachments/532298437014585346/1052722202803453982/JHa6n4Ju0JsVZKwY.mp4", + "https://media.discordapp.net/attachments/445553658910736385/1098828468764029018/chgamsi_1080p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098924299345215570/downloadfile.mp4", + "https://cdn.discordapp.com/attachments/813503255199481927/1052287510337830962/VID_20221213_211409_032.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1046721409918980167/244001835afdbe1bf634da4d4f302af7.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098714921841197206/trim.0B412041-6DFC-4516-948E-4CED9DB733F6.MOV", + "https://cdn.discordapp.com/attachments/765363939734847508/1098714803238875327/trim.E05EAD9F-53A7-426F-89CD-554BC6ABDAE7.MOV", + "https://cdn.discordapp.com/attachments/765363939734847508/1098706451612061757/375ba685de164529571c6ef0b3dd9ca6.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099311872408289410/328c2276c1368ee3d2a5288a134ceaac.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099233227216011364/VID_20230420_044032_644.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099233209658642582/CompetentIdleEnglishpointer-mobile.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099233191207899208/VID_20230420_044603_446.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099233084794224720/60298b02ac839f76714f08a8ae04099e.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1099233038149357608/blowjob.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1098648752723611779/SeveralVirtuousScallop.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098563288838705192/2c55f4a743269bd78bb6c1df9af64f64.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098559942484557834/37fc01a07b87e263e4fc9557fec8181a.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098521680193785866/images-2_6L14033358.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098491864027496478/lv_0_20230420021305.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098483676746100756/ssstwitter.com_1681969288235.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098482479721103411/765a3e112342bdde8f596c6e468a4d89.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098481304854601839/c4430c561ca014e1b639d7fa3565ed19.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098472908780748820/Nil01_sexloop_B_NM.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098466816994574357/twitter_20230420_062741.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098456783963574375/qswezypowerfuck.mov.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098332240955580518/5a24ede3121d74399ca8ee4464d8c513.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1098332173498597486/st_louis_and_st_louis_azur_lane_drawn_by_cait_aron__e1d74193687248c7a8ed4b65f53b3839.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097987369292005546/772c29b380bcd1d8eaa8f6e35cc65250.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097908652712661103/Class-de-Otoko-wa-Boku-Hitori_01_raw.mp4", + "https://cdn.discordapp.com/attachments/609147447658283013/1093251816696860843/VID_20230405_204118_862.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097850083686490112/ssstwitter.com_1681818214296.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097829406526951454/VID_20230416_182358_913.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097808744487845948/ssstwitter.com_1681808375733.mp4", + "https://media.discordapp.net/attachments/765363939734847508/823405594005209118/video0.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097634753097781288/ssstwitter.com_1681766891472.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097620074073956432/1U1zvNKbDSKsoJHX.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1098378083523903508/a4a337370d01829beca12d6a5fde9ba9_1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1098099945053114478/IMG_7418.MOV", + "https://cdn.discordapp.com/attachments/710303054183792670/1097998422411313314/12_Tifa_Lockhart_3_part_2_4k.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097519706543509504/18070eaef796fa26568a76d66e5a213c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097393098591572028/7d45859a639016c3380b0a43a7359b66.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097350630240157796/a454fde8f8d91022ba329e16bf6ddc5d.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097350264832393216/a80279d5a6c82dbc5c795bdb0e0e70fd.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097344267984306217/7a7afca55fb2054c7b348444a7d08fe1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097344033120075847/3316d47602b89291d9810609983ec8cc.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097343886654971914/a098d005c8d7d68724ff665719068a8e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097343815678951466/a48c78aae6787c3518bff69e1d858822.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097343740244394114/d8b38c473894b4e5f9a6c34207dd92bf.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097201387818991829/downloadfile.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1097131960884797530/Jason_and_Momo_Animation_www.yesdownloader.com.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096987671810805770/67242b1ec0b1b2e3bcf63a80ee9c16bc.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1097085785271971950/At2Rsse_-_Imgur.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1097040374305931264/ashe-long-deep-strokes-fennochik_360.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1097032304540516472/phazon-experiment-b-en-sub-espanol_480p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096861578663571576/original_drawn_by_tomin1032__7570184f23ebfbfe85710caff292c08b.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096861289629880390/VID_20221108_014916_261.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096843462873198745/video_2023-04-15_20-06-39.mp4", + "https://media.discordapp.net/attachments/1093244949899788289/1096835793940664441/VID_20230415_203204_600.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096828540646854696/8fc1964e3fb73aa20eed8c9d5d1d5a1c.mp4", + "https://cdn.discordapp.com/attachments/1078799584702234684/1096326942761955398/2_5249334292168839711.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096693599149756496/96c367cdc18f994d757db2fe1270b967.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096686143594045472/56e84c6b9c891d4050561ef54afcf465.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096686040741331004/689015016c0daef3a24872ed44ad81e3.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096558450651176971/iforgorskuII.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096510183963889804/e6a6630ce33c5cda6a9dd986774956a1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096509881214849174/92e02a6e3397c8d25a9940b80f3d5f1e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096404774926176356/517443daea019373407b3b92ed2f5ed6.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1096815791460057108/3727662_-_Hex_Maniac_NPC_trainer_Porkyman_animated_skello-on-sale_sound.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1096774948506304653/06338deca48bd7dd302291e6010a3db7.mp4", + "https://media.discordapp.net/attachments/765363939734847508/1092094827740536852/VID_20230402_180231_660.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096068771313106984/twitter_20230413_184537.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1096037611031777400/received_609243753775827.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095948052382089267/b6ed78161eedd84f032c369dd85d380f.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095895156009484348/patreon.comBewb.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095692881789989005/reisalin_stout_klaudia_valentz_and_serri_glaus_atelier_and_2_more_drawn_by_cait_aron__89a30fd4533e494c3dfc1071e101681c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095692543188029450/2_5195371751831248596.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095650331746111538/453996.mov480.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095641330950086696/7151b341533743df0eaa818ce29007cc.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095613264471273503/T_TsunpuriVol.1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095550399571832842/7092d3906a293a77294a2a1e80d8baf8.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095467236409483346/d8ecb4c083ce19089de72cee03578f52.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095461375012245585/18070eaef796fa26568a76d66e5a213c.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095443911511650365/c67b111a726ebda8f4a1c294c82890d1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095432069892538388/1_4965709168930456250.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095415117065244672/VID-20230220-WA0071.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095385515991249037/480.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095331985314025502/f47218d3ff0b578678dcad736a0fab19_2.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095275140310380544/FANZA.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095265388373229658/d8ecb4c083ce19089de72cee03578f52.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095262444047315074/VID_20230308_003335_333.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095235489671434320/karin_blue_archive_drawn_by_cait_aron__3ec38cea8ef6e717393547a0b47c7bc4.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095222495042359386/1659891150615863.webm", + "https://cdn.discordapp.com/attachments/765363939734847508/1095066092482859078/92f04b7c242cf3a95590f4a60f4653a8.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1095519728077897808/CxD93QB.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094588437430026350/Futei_with..._The_Animation_Ep1-subbed_1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094568686704148531/28e7a669e6b5ee771f8d0b343141950b.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094510376231649320/34qh4fkybxv71.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094502528537874482/video_2023-04-09_09-04-31.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094502227013537812/video_2023-04-09_09-03-15.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094346052552904724/f47218d3ff0b578678dcad736a0fab19.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094284261122646136/pink_prob3-3x-RIFE-RIFE4.0-72fps.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094266382494998589/video_2023-04-08_17-26-21.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094264539341668533/video_2023-04-08_17-18-54.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094263095649640548/video_2023-04-08_17-13-19.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094261233890373662/video_2023-04-08_17-05-53.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095013285490864200/7151b341533743df0eaa818ce29007cc.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1095001046805381220/video_2023-04-08_17-26-21.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094922280666144768/f9bb4e6dfdf5b9b4eb0fd34df38855ab.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094739578415489154/f182a0ca85586498a35e7bf2df4e4141.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094738939639779480/cellvore_2023-02-08-13-47-26_1675860446562.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094736914050994268/video0-5.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094732185489121320/harem-camp-season-1-360p-v1x.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094710362324090980/kokomi-sangonomiya-nsfw-double-penetration-anal-3d-sex-porno-hentai-by-thiccwithaq-genshin-impact.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1094876956463468565/Cammy-Training-Incidents.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1094876919624900679/Aerith-gets-her-hair-pulled-and-fucked-hard.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1094830444958187530/AngryJuicyKilldeer-mobile.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1094830327928721529/A10xRq3_-_Imgur.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1094140210956222506/NekoPoi_My_Mother_The_Animation_-_01_by_XTER_720Pnekopoi.care.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093995064440664134/ssstwitter.com_1680898932223.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093995033604128768/pink_prob3-3x-RIFE-RIFE4.0-72fps.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093978813278470215/7b578baa1ee571cc8e6ebe48ef728f3e.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093970445209980958/d084f38d1411253a366cd9ed07457821.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093925636994769017/IMG_6911.MP4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093923268970422322/d91f886a2d1319fbcac65225262818ee.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093919264316080198/video_2023-04-07_18-26-52.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093918917346468001/video_2023-04-07_18-25-00.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093792185180233788/9919fd9e96fada8b1dc2452ca5f011b5.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093642083304214528/aa6836b97d72f3549b48f893d6e4ab95.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1093778943590539344/downloadfile.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1093736749571776602/Chun-li-needs-a-plumber-extra-help.mp4", + "https://media.discordapp.net/attachments/1054908700176945192/1086626723740794920/H_HHH_Triple_Ecchi_01.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093382149467557988/trim.454872C9-ED52-47CA-AC07-3C67C8ED6593.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093234984250265671/ssstwitter.com_1680717885396.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093179512344285274/VID_20230329_154001_464.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093122353187270746/video_2023-04-05_13-40-22.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093122099373166622/3480339.mov.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093118844106723389/3185144.mov.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1093116989934940170/3423455.mov.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092965524658466846/a2b49cfe0ac9e9403499b1f949778df1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1092898698083717140/part2.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1092898475529732257/IdolizedSneakyBeardeddragon.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092828785914691616/SpankBang.com_janaj_480p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092718651360165990/3d41f2b5008bebb122268dc5ff5b9136.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/976964458721181716/2_5289685544274498185.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092651564470108190/haruno_sakura_and_uzumaki_naruto_naruto_and_1_more_drawn_by_angelyeah__740db26ae2fedc922b2c7b0fce0bca91.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092567561222230076/Derpixon.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1092850631712198707/f2a85286e9514dcd2ddfa0d9f7c22df0.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1092661876455903243/Class_de_Otoko_wa_Boku_Hitori_1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1092545995910418582/Widowmaker-proneboned-cumshot.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1091291011927527544/bb56b972cad429d3c88915f460bd6489.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092503828810694676/xvideos.com_e4610ff7ec7ffafa0f0e71e06edb172f-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092361257245478962/dark_magician_girl_yu_gi_oh_drawn_by_nekololisama_and_zerodiamonds_voice_actor__a78f3bfa00a7e28d48a63580b1ebc0a6.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092352543440515122/original_drawn_by_saltyicecream__17b5771bea9c138121d937a3a8ae2b88.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092227928642813992/3591cb78b59a483bbcef204670787dab.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092227811508498452/VID_20230322_001033_682.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092227501788500008/VID_20230321_233249_346.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092161337142034462/82ee81c82d47527cee25750ff7895195_prob3-3x-RIFE-RIFE4.0-72fps.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092094827740536852/VID_20230402_180231_660.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092077888997695552/4Qjt2A5.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092063893741912194/Motoko-Kusanagi-gets-fucked_1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092030470612598804/images-2_6.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1092013865337897011/47a47ff769b9fc37825871565d8c8d8b.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1026495756514893855/ep2-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1091860555410718760/a3c9e7cfebe97f9b949bc0e27aec29da.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1091521874460156005/622d75076b3d0a0ed4b8bca2e869e248.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1091311086126506004/v9eaOzluAvIecHG8.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1092119443217338448/IMG_7234.MOV", + "https://cdn.discordapp.com/attachments/710303054183792670/1091766093112164454/1c8a55f15b2aa20a37296eb123a8c87f.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1091178018178859008/37b5d32b2b25a03a6626db16264a2a99.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1091177813257769100/3682c40756178503088cc2a9a9532e51.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1091156731666640896/Newgrounds.com_Everything_By_Everyone_2.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1091079998598807692/3605270.mov480.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1090995315429097583/VID_20230325_211554_234.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1090973447485653042/boudica-fate-toniwing_720p.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1090960984941805568/1280x720-Dpq1q9BVGmGRCUKo.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1091197278540288081/DependableUnpleasantGarpike-mobile.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1090765203035144252/900bg0f0v0e0tc3535c3.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1090761869142270143/42b13447f10d80336c90696634ff1d84.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1090760802954383370/ByDBJ43.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1083808448061395034/771534757.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1090663803609428138/37a8533fe8f5179edffd81c695540cb8.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1090537021254152313/mei1_full23-1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1078310369560363128/b45e190a365533975e0a4e2d0764f606.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1078283908845682759/VioletNude.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1090317984909762651/f502029d020b8a7226660b4d0b988f99.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1090289560249966694/Widowmaker-Anal-Fisting-D.va_.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1090288971717816380/Honey-lemon-bouncy-ass.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1088935276501549136/zzt9kamuo_cut.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1088933383998021742/dc3addded0f2fd7ed334e0789595477c.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1088931573656715344/vid_720p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1088903153543561338/7e59038d95f2c1c4a2e8fc553657a48e.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1088332857472204830/45f4894dd2f59b06116881683d512e7a.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1087854287176089751/jinx-4k_2160p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1087808413016277093/80388f2d3e17af878c871ff9c3853526.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1087392844546834582/65d3c2d820f6987a40261a164e507684.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1087345894648709220/5200eb8a864de0d97269c03375b5ed91.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1086922541790150676/swing_out_sisters_part_1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1086921597656514560/Koumi-jima_Shuu_7_de_Umeru_Mesu_tachi_-_Episode_1_-_Part_1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1086902950863056906/SpankBang.com_consomeyorgrindswithherbuttocksspyxfamily_720p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1086764329497538580/965f3a240a270629210b6cd78f9b5ff4.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1086700886643986502/c0df1d7605ea02cfa368b36d9bde9f17.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1086626784218464276/376cfc3c90f0e0d5d427e1be690fe80f.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1086443433293533324/a76fc48ddbd4123b9fe60b921f54ffaa.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1086028789005430892/ef2690aa88292d052e105ff3f8570252.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1085983944316559400/9f2c13a38c325e7e42b31fd4dccc6a90.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1085722019162763364/4k-mercy-elevator-incident-nude-anianiboy_1080p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1085704710402621440/T9LskdQ_-_Imgur.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1085586958492913826/b5f2394f00d8fe0b1d858873f0a0276a.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1085349595799892071/a67c5ac4-a6d6-4a64-9447-61cc52fa46c5.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1085309851908976700/603883433717497e66fe3938dc92fad2.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1085214558672662569/ab44650290fe09dcd073b8fbf07e13e1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1084862452937789530/6584ba97d7aa036a644b449de1c58b3b.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1084601622883225690/1f4cbf464414d9a22caf48777e28bb8b.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1083880428135530597/262aaf4a4c7280dd4debfd4a3e4e6cdf.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1083840549229969539/425dc32bfd2fba0b10f16062edbe49d4.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1083542899926499398/3d22381039c24b6843bdc2a494e8fe66.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1083510541189906642/60fps_YunYun_Have_Sex_JHX33MP4_High_Quality.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1083046318357884968/96373ec380f390bb9b229fc20968f983.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1082413097886695505/aa52eae9c36a4509fe34d286edd658d0.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1082350654544154674/bronya2_720p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1082290761082605608/39c4495111d099199b548a92aa665aaf.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1081579455912357978/e11432f43bdeba268709a1ff9421d307.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1081063004461867048/Fucked_a_young_titted_student_in_stockingsMP4_High_Quality.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1080807801401651220/e5d9666492c307099ae34f766879d19b.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1080584223909478560/VID_20230301_104454_096.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1079581326564393020/616b0126b1997b8603e648a753af0cc4.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078802231865913354/VID_20230224_171333_924.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078802142908911808/VID_20230224_171343_816.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078801652443791520/VID_20230224_171154_199.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078801616972546189/VID_20230224_171201_130.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078801161735385189/VID_20230224_170952_190.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078800652576239706/VID_20230224_170633_496.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078800603276378213/VID_20230224_170722_651.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078773992334311454/8593884658a1c999921417fbae91a593.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078772098559914035/9b89b26f921de245cd0380b52fc5698d.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078697403613454436/3c3ef686eb4f976ae617189d6d1bf90c.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078696131900489838/3ec38cea8ef6e717393547a0b47c7bc4.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078341621898293419/4eWgYTVTgxGJMZUP.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078174045167689818/5b557f51affec8f64f887a4fb0ffcce4.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078130327853211728/0b0732f838457a3a9986dbf3d858ef3e.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1078006930880073859/44a6075e47017e2d13fac648979aa862.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1077838535681384458/8bb709675d9a75bde0dfefbf06888cf0.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1077742696665464913/eb899daa7266b5f8924cfe23c4430dd8.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1077580779481215077/545a3805aeeddefd5af5e8473baaf586.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1077440210838753280/VID_20220910_210809_871-1.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1077397641417207808/740db26ae2fedc922b2c7b0fce0bca91.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1077299753244700773/maplestar-spy-x-family-part-2-animation2_1080p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1076363849562857523/VID-20200928-WA0225.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1076358486587351080/51yrSTl.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1076268644021047418/SPOILER_yeero.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1076268599121035334/SPOILER_HD_MERCY.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1075947224120438815/4c40308c1e9f4411b63a840b18d0abc7.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1075947202385547345/f6cc4b3dc5a1479ea34d56eda9121af0.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1075891010003026000/VID_20230216_162447_486.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1075890946299924500/VID_20230216_162457_004.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1075890833921954002/VID_20230216_162534_634.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1075890051931717692/Aqua_KonoSuba__Bien_folladaMP4_High_Quality.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1075103109354901534/VID_20230214_121422_845.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1075102980212260905/VID_20230214_121418_571.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1074801109522206790/20554.mov.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1074800667169935401/55941.mov.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1074800488320602162/150568.mov480.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1074756860449665084/216396.mov480.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1074730648729829417/199924.mov480.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073776148091260928/241895.mov480.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073776041639804968/136577.mov480.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073775882965090335/237271.mov480.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073775738622328872/234470.mov480.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073775623333478420/238203.mov480.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073325406192668854/VID_29591229_155954_012.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073281296207458325/hikari-doggy-style-consome_480p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073279658122022942/yor-beach-missionary-white-ver-consome_480p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073274268323946516/kitagawa-mrine-doggy-style_480p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073267282358304981/chainsaw-man-makima-kizu_720p.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1073192581518864445/9b22bdd8b39b990fc85f23a0da37d93b.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1072798639526793257/1153755.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1072578013616668743/VID_20230207_130115_812.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1072577975280742501/VID_20230207_130112_297.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1072534188529569862/VID_20230207_094717_658.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1072533213479710802/VID_20230207_094709_002.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1072405632336011294/xvideos.com_9479a122e7a2412993a821cd27d03a7c-2.mp4", + "https://cdn.discordapp.com/attachments/710303054183792670/1072192175674232863/fujiwara-chika-laceysx_720p.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/iranian.json b/src/storage/nsfw/iranian.json new file mode 100644 index 0000000..382029e --- /dev/null +++ b/src/storage/nsfw/iranian.json @@ -0,0 +1,90 @@ +[ + "https://media.discordapp.net/attachments/919487740695953418/973324720084754452/2_5357224209946775484.mp4", + "https://cdn.discordapp.com/attachments/1059432710331969566/1088186275942641664/VID_20230117_185609.mp4", + "https://media.discordapp.net/attachments/938656031024754688/1000727657379541093/-6653372352519705584.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1083345650374156379/VID_20230307_153527_846.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1071369012417679421/VID_20230204_014753_658.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1068482629831237704/VID_20230127_014419_361.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1088969313815363594/video_2023-03-20_17-09-21.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1084231667515932824/16623194256314fb4173a0e.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1089537922228834484/VID_20230326_030140_316.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1082646357367607407/VID_20230307_153216_286.mp4", + "https://cdn.discordapp.com/attachments/1079529988300210346/1085523563689300049/InShot_20230220_000221174.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1091350054910042122/VID_20220320_230401_835.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1090573772131663982/QZ_40_125_41_.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1090574049312247818/InShot_20221003_113459013.mp4", + "https://cdn.discordapp.com/attachments/1065229634356129874/1090577678010159184/video_2023-03-29_13-29-56.mp4", + "https://cdn.discordapp.com/attachments/1079529988300210346/1085541784039460974/InShot_20230228_012801796.mp4", + "https://cdn.discordapp.com/attachments/1079529988300210346/1085526372908269568/InShot_20230226_161225828.mp4", + "https://cdn.discordapp.com/attachments/1079529988300210346/1085525753845792939/InShot_20230219_005339222.mp4", + "https://cdn.discordapp.com/attachments/1079529988300210346/1085525448487882822/InShot_20230224_162637424.mp4", + "https://cdn.discordapp.com/attachments/1079529988300210346/1085525075240951858/InShot_20230221_004530764.mp4", + "https://cdn.discordapp.com/attachments/1086018336292352110/1092122348737544332/iran_irani480p.mp4", + "https://cdn.discordapp.com/attachments/1086018336292352110/1092125495149211688/Gooshti_01720p.mp4", + "https://cdn.discordapp.com/attachments/1086018336292352110/1092126816480792636/Madam_720p.mp4", + "https://cdn.discordapp.com/attachments/855523580930031666/855539088152068136/xvideos.com_f8021d8c5cf733f4ead431f6fc56d33c.mp4", + "https://cdn.discordapp.com/attachments/831898075315437588/952892678683656292/Franxx.mp4?size=4096", + "https://cdn.discordapp.com/attachments/831898075315437588/952893091847733248/Franxx.mp4?size=4096", + "https://cdn.discordapp.com/attachments/831898075315437588/973620978527637554/Franxx.mp4?size=4096", + "https://cdn.discordapp.com/attachments/831898075315437588/951776299742031902/Franxx.mp4?size=4096", + "https://cdn.discordapp.com/attachments/831898075315437588/866666303170019358/Franxx.mp4", + "https://cdn.discordapp.com/attachments/831898075315437588/864460457485664286/Franxx.mp4", + "https://cdn.discordapp.com/attachments/831898075315437588/864460546668494848/Franxx.mp4", + "https://cdn.discordapp.com/attachments/831898075315437588/864494687392759809/Franxx.mp4", + "https://cdn.discordapp.com/attachments/938656031024754688/955777918531952690/khdamo_zeidm.mp4", + "https://cdn.discordapp.com/attachments/938656031024754688/984906083397161032/RT_36.mp4", + "https://cdn.discordapp.com/attachments/938656031024754688/984912611353174056/RT_14.mp4", + "https://cdn.discordapp.com/attachments/938656031024754688/987280348746502154/LK_14.mp4", + "https://cdn.discordapp.com/attachments/938656031024754688/1000727625104363571/-3571100781772591082.mp4", + "https://cdn.discordapp.com/attachments/938656031024754688/1000727657379541093/-6653372352519705584.mp4", + "https://cdn.discordapp.com/attachments/938656031024754688/1000727706184470548/1166199873118418968.mp4", + "https://cdn.discordapp.com/attachments/938656031024754688/1000727854042067095/6316906441430358669.mp4", + "https://cdn.discordapp.com/attachments/951906942652141589/1001209644225679461/444.mp4", + "https://cdn.discordapp.com/attachments/951906942652141589/1001201836616851587/narges.mp4", + "https://cdn.discordapp.com/attachments/951906942652141589/1001195055454887976/ampol111.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/871884655123652670/xvideos.com_e54a99aa3c763741e76b40f5be859df8.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/882367788885373000/VID_20210901_004652_476.mp4", + "https://media.discordapp.net/attachments/938656031024754688/944983201158418432/4_6048694780458699539.mp4", + "https://cdn.discordapp.com/attachments/951906942652141589/1001912498598981714/Great_Sex_in_the_Kitchen_-_Pornhub.com.mp4", + "https://cdn.discordapp.com/attachments/951906942652141589/1001191564711837828/2022_099_066612000000.mp4", + "https://media.discordapp.net/attachments/915719078935658499/915722986617724968/V4204.mp4", + "https://cdn.discordapp.com/attachments/865308075712053249/865573906856673290/video0-4.mp4", + "https://media.discordapp.net/attachments/794094661723095040/902673337812152350/9966.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/873233092381376552/VID_20210806_193500_684.mp4", + "https://cdn.discordapp.com/attachments/831898075315437588/885603497171636264/FranXX.mp4", + "https://media.discordapp.net/attachments/831898075315437588/864460457485664286/Franxx.mp4", + "https://cdn.discordapp.com/attachments/823863225397018645/852683924060766288/VID-20210602-WA0002.mp4", + "https://cdn.discordapp.com/attachments/951906942652141589/969191157953335376/part3_2.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/897512902842540072/SPOILER_xvideos.com_0ee43cfdb156cf792fca54883c14526e.mp4", + "https://cdn.discordapp.com/attachments/951906942652141589/969267627820220506/2.mp4", + "https://cdn.discordapp.com/attachments/938656031024754688/938659892905013358/4_5983468353379895538.mp4", + "https://media.discordapp.net/attachments/940318091794083840/1023919113027985418/IMG_5501.mp4", + "https://cdn.discordapp.com/attachments/838128144165765190/838369534439194624/IMG_20210502_012001_757.mp4", + "https://cdn.discordapp.com/attachments/831898075315437588/840316929293549579/live_jadid.mp4", + "https://media.discordapp.net/attachments/831898075315437588/941614313259536384/Franxx.mp4", + "https://cdn.discordapp.com/attachments/936365995491213354/936366811212050452/VID-20211226-WA0090_1.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/929493123317514250/compress_video.mov", + "https://cdn.discordapp.com/attachments/838946417334681650/901295788423004170/VID_20211023_052708_937.mp4", + "https://cdn.discordapp.com/attachments/951906942652141589/1001187012335902750/2_5258147234347748299.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/923890414031896607/7159eb3b-27be-45fe-a81f-0897ecb168a3.mp4", + "https://cdn.discordapp.com/attachments/951906942652141589/969268511455199332/4_5778253956983556453.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/961231098384351283/compress_video.mov", + "https://cdn.discordapp.com/attachments/621883947508432917/989230748542320740/barrobax_14010323_223904690.mp4", + "https://cdn.discordapp.com/attachments/830735543138385930/845558994834817034/SuperMassive24204505.mp4", + "https://cdn.discordapp.com/attachments/830735543138385930/845902350794620967/SuperMassive43536241.mp4", + "https://cdn.discordapp.com/attachments/831898075315437588/839884106279550976/irani_1.mp4", + "https://cdn.discordapp.com/attachments/830735543138385930/841542808455872533/SuperMassive93402700.mp4", + "https://cdn.discordapp.com/attachments/932349476331454475/939523082601766942/V253.mp4", + "https://cdn.discordapp.com/attachments/932349476331454475/939523081720979466/V163.mp4", + "https://cdn.discordapp.com/attachments/932349476331454475/939522951278112778/V162.mp4", + "https://cdn.discordapp.com/attachments/932349476331454475/939522764732248094/Ir_4.mp4", + "https://cdn.discordapp.com/attachments/932349476331454475/939522632804630578/video_2021-08-26_08-11-27.mp4", + "https://cdn.discordapp.com/attachments/932156443539406898/945992678439542794/2.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/913931654710558730/video0.mov", + "https://cdn.discordapp.com/attachments/838946417334681650/914462840629383248/2a2f6fc5-63bd-4395-a056-634c72fa9a15.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/935110835091689492/compress_video.mov", + "https://cdn.discordapp.com/attachments/838946417334681650/940000499028086784/e62d8789-bfb2-4cdf-8f2c-02ee8e4405c1.mp4", + "https://cdn.discordapp.com/attachments/838128144165765190/838837219627499550/VID_20210503_175901_918.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/898383471314100224/VID_20211013_055304_405.mp4", + "https://cdn.discordapp.com/attachments/951906942652141589/990298123580620870/z-1655885887.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/lana-rhodas.json b/src/storage/nsfw/lana-rhodas.json new file mode 100644 index 0000000..17a2fbe --- /dev/null +++ b/src/storage/nsfw/lana-rhodas.json @@ -0,0 +1,59 @@ +[ + "https://cdn.discordapp.com/attachments/789616216892899335/1094323368787976313/UHPqP2J.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/1090644802380497038/adriana-chechik-lana-rhoades-markus-dupree-3.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/1080537122710237276/ofg9RrvL25694057.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/1069705202309013574/SecondhandNippyBronco-mobile.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/1069656525393641522/lana_rhoades4.jpg", + "https://i.redd.it/n3gl16fku0ea1.gif", + "https://cdn.discordapp.com/attachments/789616216892899335/1066617731702603796/xVIhl7T0a8n5nLdR.mp4", + "https://ocdn012.bdsmlr.com/uploads/photos/2021/01/64145/bdsmlr-64145-0YgWjEPDr3.gif", + "https://cdn.discordapp.com/attachments/789616216892899335/1057107156844957796/Lana_riding_comp.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/1056352876814930020/dst8_001.mp4", + "https://i.redd.it/9vlk8inzkp7a1.jpg", + "https://i.redd.it/gkugnqxoob7a1.gif", + "https://cdn.discordapp.com/attachments/789616216892899335/1050546736017461328/32527556_172_5985.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/1049258113091518474/76157450_061_3dc8.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/1049258065226108928/27174037_011_7c52.jpg", + "https://cdn.discordapp.com/attachments/949023673761804308/1042301509712490516/CuteObviousVenomoussnake-mobile.mp4", + "https://realbooru.com/images/4d/62/4d626f28c4a457fcdbc356369c362241.gif", + "https://cdn.discordapp.com/attachments/789616216892899335/1040254797137322045/LanaRhoadesTushy.png", + "https://cdn.discordapp.com/attachments/789616216892899335/1036955298176446464/lana_rhoades.jpg", + "https://i.redd.it/fqn374lzewd81.gif", + "https://media.discordapp.net/attachments/789616216892899335/989568817887854642/l74bj2ffi3e81.gif", + "https://cdn.discordapp.com/attachments/789616216892899335/1023075218660536360/27.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/1019097384858427452/AliveDodgerblueIberianemeraldlizard-mobile.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/1019097363425538078/IlliterateAcceptableJackrabbit-mobile.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/1007140422994382928/f_0000b1.jpeg", + "https://cdn.discordapp.com/attachments/789616216892899335/1005194511678451742/RDT_20210814_0940258326356689839227853.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/1004592201235435610/DimwittedPeskyCatbird.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/1004239521333923850/JMjSqdF.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/1001606828184051832/unknown.png", + "https://cdn.discordapp.com/attachments/789616216892899335/1001097111510724708/10344997_013_2933.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/1001096911375302656/10344997_010_48cb.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/993953789591687239/BlaringDearestBlackpanther-mobile.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/993953530492747786/UnwieldyGlitteringAntelopegroundsquirrel-mobile.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/993912583629307934/lana_rhoades_jules_jordan_com_192.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/993911864469762088/63.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/993911773684056164/50.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/993494148525068369/SameFreshHectorsdolphin-mobile.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/991127403386642593/315.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/991127355613519903/281.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/991127299816706158/270.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/991127101493223454/166.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/991126990100906104/143.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/989568876008333352/mE2FMkA.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/989568817887854642/l74bj2ffi3e81.gif", + "https://cdn.discordapp.com/attachments/789616216892899335/989568769762410587/f8k9h6gwh6e81.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/989568767866601522/qc23ehzxv9e81.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/989568676678238218/d2ildlad1ze81.gif", + "https://cdn.discordapp.com/attachments/789616216892899335/989568510764150804/ztuca3ug2qe81.jpg", + "https://cdn.discordapp.com/attachments/789616216892899335/983428364582916106/EiIJWpIXcAI9N2s.jpeg", + "https://cdn.discordapp.com/attachments/789616216892899335/983428277991530526/EiIJX9RXkAQM9uN.jpeg", + "https://cdn.discordapp.com/attachments/789616216892899335/983335209460203530/EhjuNaiXgAMByNH.jpeg", + "https://cdn.discordapp.com/attachments/789616216892899335/981771012473491496/DelayedImmediateDesertpupfish-mobile.mp4", + "https://cdn.discordapp.com/attachments/789616216892899335/981046045008080936/ETb0zlZWoAEfT0y.jpeg", + "https://cdn.discordapp.com/attachments/789616216892899335/981044124822171678/EQ1hoNPU0AAD2pH.jpeg", + "https://cdn.discordapp.com/attachments/789616216892899335/981044092597309440/EQ1hnXBUYAAlyen.jpeg", + "https://cdn.discordapp.com/attachments/789616216892899335/981041017342001172/DVcdoQ7X4AEufaQ.jpeg", + "https://cdn.discordapp.com/attachments/789616216892899335/981040283527557140/DuUO_OtXgAAjxaJ.jpeg" +] \ No newline at end of file diff --git a/src/storage/nsfw/lesbian.json b/src/storage/nsfw/lesbian.json new file mode 100644 index 0000000..d360a09 --- /dev/null +++ b/src/storage/nsfw/lesbian.json @@ -0,0 +1,172 @@ +[ + "https://cdn.discordapp.com/attachments/916448350155444285/916682696107896842/video0-2.mp4", + "https://cdn.discordapp.com/attachments/545843791873966080/837533146013892638/Kendra_Spade_and_EMily_Willis_Lesbian.mp4", + "https://media.discordapp.net/attachments/883228349399453706/883296394822168576/AVB1_Abigail_Mac_and_Darcie_Dolce_-_Horny_Gamer_Girls.mp4", + "https://media.discordapp.net/attachments/883228349399453706/883302503855321128/AVB3_Abigail_Mac_and_Darcie_Dolce_-_Horny_Gamer_Girls.mp4", + "https://media.discordapp.net/attachments/883228349399453706/883305486919815198/AVB4_Abigail_Mac_and_Darcie_Dolce_-_Horny_Gamer_Girls.mp4", + "https://media.discordapp.net/attachments/883228349399453706/883312084895563806/AVB5_Abigail_Mac_and_Darcie_Dolce_-_Horny_Gamer_Girls.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/795917905479991316/7104822_hd.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/795922200652939274/720P_1500K_221341541.mp4", + "https://media.discordapp.net/attachments/883228349399453706/883299120142503996/AVB2_Abigail_Mac_and_Darcie_Dolce_-_Horny_Gamer_Girls.mp4", + "https://cdn.discordapp.com/attachments/878002095163314196/1007997102460252190/STczv1qS4snwDAXu.mp4", + "https://cdn.discordapp.com/attachments/506760996682203137/986996801200595015/-_-___-_-_.mp4", + "https://media.discordapp.net/attachments/963017889848373278/994376328671412344/UWFQRPY.mp4", + "https://media.discordapp.net/attachments/963017889848373278/994376330072313877/CrispDangerousSwift-mobile.mov", + "https://cdn.discordapp.com/attachments/506760996682203137/1044809678045057144/VID_269440705_121942_526.mp4", + "https://cdn.discordapp.com/attachments/506760996682203137/1041503850626023444/video2.mp4", + "https://cdn.discordapp.com/attachments/506760996682203137/1041160772623016006/No_Running...__W__Its...wpv81E.mp4", + "https://cdn.discordapp.com/attachments/506760996682203137/1039698180478074910/UWFQRPY.mp4", + "https://cdn.discordapp.com/attachments/506760996682203137/1037789277238595634/PointlessGorgeousXiphosuran.mp4", + "https://cdn.discordapp.com/attachments/506760996682203137/1031049245526077550/video0-2.mp4.mov", + "https://cdn.discordapp.com/attachments/506760996682203137/988087210433716243/FairCircularCockerspaniel-mobile.mp4", + "https://cdn.discordapp.com/attachments/506760996682203137/988087205056638986/kbqvia9.mp4", + "https://cdn.discordapp.com/attachments/914131419029209088/914143302851383296/video1_1.mp4", + "https://cdn.discordapp.com/attachments/506760996682203137/1044809875546439810/RunnyPrettyNewt-mobile.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1012191175672872970/Video.mov", + "https://media.discordapp.net/attachments/763851444910293022/1011747536794562640/ScientificFamousChrysalis-mobile.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1097302645858910218/RDT_20230417_021931.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1099795504981876736/VID_20230423_233249_617.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1100838736654237726/VID_20230424_185911_013.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1037650523882537000/j-E4GIcvhtmHx2XA.mp4", + "https://media.discordapp.net/attachments/1063754105287360543/1063796065414959184/1eedf2c6af83ac43b76dd78325f327e4.mp4", + "https://cdn.discordapp.com/attachments/727910771693977600/899271199673163856/OrdinaryUnsteadyAracari.webm", + "https://cdn.discordapp.com/attachments/763851444910293022/974846556014522389/1617219461291.mp4?size=4096", + "https://cdn.discordapp.com/attachments/763851444910293022/956936036032839791/UnevenScrawnyRhinocerosbeetle-mobile.mp4?size=4096", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079036988398772274/BEST_SEX_9.mp4", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079036998934863922/BEST_SEX_4.mp4", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079036996942573649/BEST_SEX_1.mov", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079037003913498684/BEST_SEX_4.webm", + "https://cdn.discordapp.com/attachments/763851444910293022/1085581242352812132/VID_20230315_225904_420.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/976182486654656542/KBOP6544.mp4?size=4096", + "https://cdn.discordapp.com/attachments/1091851803508867143/1094976658240438302/Discord_-_LESBIAN_-_SexBEBIN.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1010375893618806805/trim.CB93D058-0AE1-4E95-B50F-BCBAE2CD06E3.mov", + "https://media.discordapp.net/attachments/956622864319123466/959497924839100446/bd4894c1-a2a8-4ad5-afd9-181ae7b623e8.mp4", + "https://cdn.discordapp.com/attachments/1001618584352587846/1038547411053842493/ScientificFamousChrysalis-mobile.mp4", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079037004928520212/BEST_SEX_39.mp4", + "https://cdn.discordapp.com/attachments/1040314677101613157/1041125335502164058/redditsave.com_UtilizedTroubledReindeer_1.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1109503909023723550/discord.gg-pantyhose.mp4", + "https://cdn.discordapp.com/attachments/979103092266123264/1025086696255127582/Adorable_lesbian_teen_scissoring_with_milf_vnjcjo.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1082258928001368124/VID_20230131_201320_8242.mp4", + "https://cdn.discordapp.com/attachments/506760996682203137/1031049301473894471/YGMuZYGsE9E7CTaJ.mp4", + "https://cdn.discordapp.com/attachments/1001618584352587846/1023204994389913680/video.twimg.com_tweet_video_FC12v60VUAUO1JA.mp4", + "https://cdn.discordapp.com/attachments/506760996682203137/1037132739511603292/qA_UTgsshM9w2D8z.mp4", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079037004349710387/BEST_SEX_38.mp4", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079037005423456397/BEST_SEX_40.mp4", + "https://cdn.discordapp.com/attachments/763851749164974081/1111000339085283471/Bondage_Anal.mp4", + "https://cdn.discordapp.com/attachments/763851749164974081/1110602898934595695/1684858380568.mp4", + "https://cdn.discordapp.com/attachments/838946417334681650/897512543990460426/SPOILER_xvideos.com_f267350a1bdf14443b4e7f48e8a8e5d3.mp4", + "https://cdn.discordapp.com/attachments/710801502457036871/998868797526114355/straponfun.mp4", + "https://cdn.discordapp.com/attachments/1015502409381982238/1015503350319562802/viddit_39b8d877.mov", + "https://cdn.discordapp.com/attachments/763851444910293022/966743394841948220/OverdueQuirkyAndalusianhorse-mobile.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1102299611248480446/RDT_20230430_073629.mp4", + "https://cdn.discordapp.com/attachments/1001618584352587846/1027840273503485952/sPcbZNn.mp4", + "https://cdn.discordapp.com/attachments/1080519442301198416/1087339377417539625/Hard_Porn_LesbianVidoes_07.mp4", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079036982866493500/BEST_SEX_6.mov", + "https://cdn.discordapp.com/attachments/763851444910293022/1084831047511986306/VID_20230313_060539_134.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1076180454979424266/CCCrHHl3ZnwFliMS.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1075732547457253377/VID_20230216_015256_766.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1075538075977007284/VID_20230214_135914_051.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/955861137126203442/USZZQwVnulpr.mp4", + "https://cdn.discordapp.com/attachments/958442350160523304/958923885384966195/Porntube_Lessbian_94.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1077298021009727488/VID_20230220_213624_783.mp4", + "https://cdn.discordapp.com/attachments/508774373612584994/932930352916340766/kcKDgVjiKcPqCAuO.mp4", + "https://cdn.discordapp.com/attachments/915250745668927500/973952252949712937/video0_2.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1110423229618720788/34e89194aeb548a58acd8e914822cb80_024DF35333DCBF830F51ED152454B898_video_dashinit.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1111034498663071964/Bizzy-12.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1049307674082283630/10000000_613697713304163_2615547684482147841_n.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1049833500217458758/video0_2_1.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1109776840039608400/Brazzers_Lessbian_18.mp4.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1109503909023723550/discord.gg-pantyhose.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1055119061819859016/PRTY_GAMES_SPIN_THE_BOTTLEXXX.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1055119061241049178/video0-2_1.mov.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1055119060586745856/twitter_20221218_020929.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1055118790993662053/redditsave.com_DASH_1080_1_1.mp4", + "https://media.discordapp.net/attachments/783049117642391553/1052584517715624006/MadeupLightAtlanticspadefish-mobile.mp4", + "https://media.discordapp.net/attachments/783049117642391553/1053993781206208532/HandsomeColorfulCowrie.mp4", + "https://realbooru.com/images/9a/a1/9aa1e7eb5d5db46b8addbe72ddaa8549.webm", + "https://cdn.discordapp.com/attachments/1080519442301198416/1088957631491743834/les.mp4", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079036998448336986/BEST_SEX_3.mp4", + "https://cdn.discordapp.com/attachments/1001618584352587846/1015771091916050503/video1-3.mp4", + "https://cdn.discordapp.com/attachments/1001618584352587846/1004057478394282085/CLUBCITY.LEZ.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1098993055522095174/FatherlyChocolateCassowary.mov", + "https://media.discordapp.net/attachments/508774373612584994/1108743306705379369/2_5199771439019858437.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1121600290056056912/SpeedyPolishedKinglet.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1081395145821388851/VID_20230218_232920_054.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1105230495496806460/Make_Your_Sex_Day_-_TikTok_18.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1109618059527848016/Screen_Recording_20230520_101053_Chrome2.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1101875450013290506/VID_20230429_170439_358.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1108529351726739516/MeatyPowerlessSpidermonkey.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/871833169123495936/20210802_221307.jpg", + "https://cdn.discordapp.com/attachments/763851444910293022/907302835065085952/0183.jpg", + "https://cdn.discordapp.com/attachments/763851444910293022/916449045445214238/59737819_121_24d5.jpg", + "https://cdn.discordapp.com/attachments/763851444910293022/932291005187776622/received_1847353425467072.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/994525974181978112/1617219461291.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/911325207615143977/VID_20211119_130109_666.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1105224994918768670/Make_Your_Sex_Day_-_TikTok_18-18.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/824962543072182302/video0.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1111383302260142100/comn7e0r2z081.jpg", + "https://cdn.discordapp.com/attachments/763851444910293022/1128290848254218250/VID_20230711_143912_268.mp4", + "https://cdn.discordapp.com/attachments/849299517752082462/917468065933971496/FaroffGlitteringSlothbear-mobile.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1104229979904036995/Screen_Recording_20230505_211436_Chrome.mp4", + "https://cdn.discordapp.com/attachments/849100928366805062/865777209130090506/xAWgvdxWEojb68gv.mp4", + "https://media.discordapp.net/attachments/508774373612584994/1081307583790465146/VID_20230303_200714_675.mp4", + "https://cdn.discordapp.com/attachments/849100928366805062/865776941348028476/Lana_11_001.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/824531505606164510/video0.mov", + "https://cdn.discordapp.com/attachments/763851444910293022/790621734004719616/Screenshot_20201216-094901_1.png", + "https://cdn.discordapp.com/attachments/763851444910293022/1026639107373404170/hairycomplicatedchrysalis.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1087893110073344063/312.gif", + "https://cdn.discordapp.com/attachments/763851444910293022/1026488520447115264/1080P_4000K_378075992.mp4-00.04.05.599-00.08.04.582.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/841361331822657586/Jgff.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/853898600462286848/GrumpyFlashySunfish-mobile.mov", + "https://cdn.discordapp.com/attachments/763851444910293022/1131186586571251854/VID_20230719_143050_349.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/846739542224273448/video-www_xvideos_com-16199130763591.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1102652197205979277/ColorlessCheeryMoose.mp4", + "https://media.discordapp.net/attachments/988851855692017671/1055337322448695396/YTVx6Va.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1127812054787555409/IMG-20230526-WA0001.jpg", + "https://cdn.discordapp.com/attachments/763851444910293022/1078591211918610513/RDT_20230224_021535.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1106439310594539530/RDT_20230501_015819.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/974247314711519302/OutgoingGenuineFoxterrier-mobile.mp4", + "https://cdn.discordapp.com/attachments/849299517752082462/915225663605202994/BouncyInfatuatedBuzzard.gif", + "https://cdn.discordapp.com/attachments/763851444910293022/1100838736008323102/2hBfTKy.mp4", + "https://cdn.discordapp.com/attachments/998331826433171510/1014695325354696704/SEXHAUSE_Lezbiyen86.mp4", + "https://cdn.discordapp.com/attachments/998331826433171510/1014695322255106078/SEXHAUSE_Lezbiyen8192.mp4", + "https://i0.nekobot.xyz/1/a/a/4cfdd00fc1a6cac857153875e42fe.gif", + "https://cdn.discordapp.com/attachments/763851444910293022/937854126207942676/VUNKMCn61CzB5eElMgVlsT25Zmi2di8rhyAm9VEVws8.png", + "https://cdn.discordapp.com/attachments/763851444910293022/901651523501694976/viddit_bdedf3f6.mp4", + "https://cdn.boob.bot/Gifs/1750.gif", + "https://cdn.discordapp.com/attachments/1015502409381982238/1068594597581832203/discord.gg_dndnsfw_2.mov", + "https://cdn.discordapp.com/attachments/1015502409381982238/1054275202726514730/pornxxvideox-1593365362153730048-20221117_160800-vid1.mp4", + "https://cdn.discordapp.com/attachments/1015502409381982238/1054275184741335050/5285189851681918522.mp4", + "https://cdn.discordapp.com/attachments/1015502409381982238/1054275179276144700/856577-1.mov", + "https://cdn.discordapp.com/attachments/763851444910293022/1076264108372004984/5af940a4911de3bed4b91f720e15436e.mov", + "https://cdn.discordapp.com/attachments/763851444910293022/882328123398586388/horny-lesbian-gives-her-lover-one-delicious-pussy-e6c7rp7lvr-364x604.mp4", + "https://media.discordapp.net/attachments/220304194463203328/865521504749617152/bdsmlr-10257114-FpPNsyGMLF.gif", + "https://cdn.discordapp.com/attachments/998331826433171510/1006607387685294121/SEXHOUSE_lezbiyen17.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1094412598809722890/trim.4C5BCF6A-65CF-4825-9591-E98F13844875.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/902312181612310678/video0_2.mp4", + "https://cdn.discordapp.com/attachments/896489698623647774/1118227763929821316/OILED_BT.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/996152700632825886/VID_20220711_233303_830.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1016925114715078676/received_1001462953813812.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1121085886902304919/PRTY_GAMES_SPIN_THE_BOTTLEXXX.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1076899266498408478/VID_20230218_202824_906.mp4", + "https://cdn.discordapp.com/attachments/849299517752082462/855253740482985984/video0.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1006439488702119976/Ezgif_3_B6B47127A9.gif", + "https://cdn.discordapp.com/attachments/763851444910293022/1039148412454588496/1073968.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/839779745281605642/desconocido.jpeg", + "https://cdn.discordapp.com/attachments/1031067157217411082/1045073408175640728/video0-6_1.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1086026739433619656/Three_lesbian_kissing480P.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1019018462028382308/unknown.png", + "https://media.discordapp.net/attachments/912108405139832903/938172227944337438/8YjtlBc.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1100140383264063588/Nud3Cloud_Telegram_10.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/976612810626834432/video0_2.mp4?size=4096", + "https://cdn.discordapp.com/attachments/763851444910293022/1029674073002885120/5e822809c171b.mp4", + "https://cdn.discordapp.com/attachments/849299517752082462/915227245717643284/fKVaY3w.gif", + "https://media.discordapp.net/attachments/508774373612584994/888553521450999818/08muw.jpg", + "https://cdn.discordapp.com/attachments/849299517752082462/931369914193838130/HeartyTanAlaskankleekai.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1122269935624802439/discord.gg-pantyhose_1.mov", + "https://cdn.discordapp.com/attachments/763851444910293022/1055460898728325210/IMG_3563.MOV", + "https://cdn.discordapp.com/attachments/763851444910293022/1078266422293172254/cb97a2d03ef038df1cc177a869376c9733cf0126.mp4", + "https://cdn.discordapp.com/attachments/849299517752082462/986769794395168838/SpiritedCapitalGreatdane.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1090745358352654336/10461380.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1100153033058435193/IMG_20230424_231239_994.jpg" +] \ No newline at end of file diff --git a/src/storage/nsfw/milf.json b/src/storage/nsfw/milf.json new file mode 100644 index 0000000..910cab8 --- /dev/null +++ b/src/storage/nsfw/milf.json @@ -0,0 +1,178 @@ +[ + "https://cdn.discordapp.com/attachments/912913792982192168/914141030650114058/PropertySex_-_College_student_fucks_hot_ass_real_estate_agent.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130890416873492/video0_2.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/804615711255166996/PURE_TABOO_Priest_Takes_Advantage_Of_A_Desperate_Bride-To-Be.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/866863514172522506/xvideos.com_739c93e7aef15702df777a7c405de7cb.mp4", + "https://video.twimg.com/amplify_video/1538437701984198656/vid/960x720/cde4Tgr9oOVwuNqk.mp4?tag=14", + "https://video.twimg.com/amplify_video/1503909366134501376/vid/720x720/9QDDhBy6OSl9gAyp.mp4?tag=14", + "https://video.twimg.com/ext_tw_video/1170440780915326978/pu/vid/1280x720/1ilGceHA9H0dOTxW.mp4?tag=10", + "https://video.twimg.com/ext_tw_video/1163015275047989248/pu/vid/1280x720/TG7j2D74o20117DL.mp4?tag=10", + "https://cdn.discordapp.com/attachments/785000059225636894/1115753335941758977/VID_20230518_234941_711.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/977631980214714429/UnlinedLividAardvark-mobile.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979407756123594772/video0-3.mov", + "https://cdn.discordapp.com/attachments/977623660544274463/979407819314978886/ThickCornsilkBat.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979407849702719598/1651184394260.webm", + "https://cdn.discordapp.com/attachments/977623660544274463/979407960612679710/ThosePointlessFieldmouse.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979408251965804634/AXdNhMaq-LMI9KiP.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979408406022594560/QuarrelsomeAcclaimedCusimanse-mobile_1.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979408453476962344/video0-3-1.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979408542148726894/VID_20220316_212652_367.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979408581487132712/telegram_video-20.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979408627226001489/NuttyDevotedRedstart-mobile.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979408818754711582/VID_20220228_113313_285.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979409025902993428/video_2021-05-05_20-46-48-1.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979409169587240980/DASH_1080.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/979409310658465802/fav.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/983058450940575805/f-reveal-hope-this-makes-your-cock-hard-p-7spcbo5jlu.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/983058509891506226/VID_20220314_164111_818.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/999306613502529546/trim.1702BBC3-4FA7-44EC-A357-94EA507C2AA0.MOV", + "https://cdn.discordapp.com/attachments/882333042071449630/916726062778564628/AngelaGabbie.mov", + "https://media.discordapp.net/attachments/763851801346572298/975126665418117140/ThickCornsilkBat.mp4", + "https://cdn.discordapp.com/attachments/648347497995042818/1116227011187314828/Be_honest_would_you_fuck_a_40yo_mom_of_3_143oah8.mp4", + "https://cdn.discordapp.com/attachments/648347497995042818/1116227794008035348/Should_I_make_you_pregnant_mom_143qpvl.mp4", + "https://cdn.discordapp.com/attachments/648347497995042818/1116229184537231380/Mom_Lets_Me_Practice_Kissing_Before_My_Big_Date_104eauv.mp4", + "https://cdn.discordapp.com/attachments/648347497995042818/1116230775474487346/Step-Mom_Creampie_139cxo1.mp4", + "https://cdn.discordapp.com/attachments/648347497995042818/1116563336688042044/Your_cock._My_mouth._1448250.mp4", + "https://cdn.discordapp.com/attachments/648347497995042818/1116563509543718962/Some_Milfs_are_hairy_some_Milfs_are_not._But_all_M_10yq1fc.mp4", + "https://cdn.discordapp.com/attachments/648347497995042818/1116595906758840390/1685846810855784.webm", + "https://cdn.discordapp.com/attachments/648347497995042818/1116667775822352394/16106462a.webm", + "https://cdn.discordapp.com/attachments/763860707544137759/959639288671252520/PervMom_-_Mommy_Loves_Her_Stepsons_Dick.mp4", + "https://media.discordapp.net/attachments/976381347436298281/1008683115536982086/JaggedCriticalZebraswallowtailbutterfly-mobile.mp4", + "https://media.discordapp.net/attachments/976381347436298281/1008683116405194792/SexHouse_Milf37.mp4", + "https://media.discordapp.net/attachments/976381347436298281/1008683121509679144/telegram_video-20.mov", + "https://media.discordapp.net/attachments/976381347436298281/1014171695554252830/video0-2.mp4", + "https://media.discordapp.net/attachments/976381347436298281/1014171695948496977/video0-7.mp4", + "https://media.discordapp.net/attachments/763851801346572298/974469056738504704/FrayedDarksalmonBrahmancow.mp4", + "https://media.discordapp.net/attachments/763851801346572298/975126933509648424/FatTrustyOlingo.mp4", + "https://media.discordapp.net/attachments/763851801346572298/969307499784192050/2NFzs9.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/929961704132063272/video0-82.mov", + "https://cdn.discordapp.com/attachments/763851801346572298/929961702957666314/Video-1.mov", + "https://cdn.discordapp.com/attachments/763851801346572298/940076597569003551/1640928215976.webm", + "https://cdn.discordapp.com/attachments/763851801346572298/950148096405430342/redditsave.com_SandyIdleGemsbuck.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/950046878681141258/vBxwDCJQSrELv5g9.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/937032766145560586/BBC-Latino_20220129_2_1.mp4", + "https://cdn.discordapp.com/attachments/924229880470724619/947468276324237352/K1E7JeK.mp4", + "https://cdn.discordapp.com/attachments/924229880470724619/947467885817790495/DapperWobblySnake-mobile.mp4", + "https://cdn.discordapp.com/attachments/924229880470724619/947467860496748554/GrippingSplendidIcterinewarbler-mobile.mp4", + "https://cdn.discordapp.com/attachments/571934216833466378/1063200442441552023/ShyBoringIndianringneckparakeet-mobile.mp4", + "https://cdn.discordapp.com/attachments/571934216833466378/1063107427886706728/viddit_10566290.mp4", + "https://cdn.discordapp.com/attachments/571934216833466378/1047400185308905502/VID_20221012_011617_516.mp4", + "https://cdn.discordapp.com/attachments/571934216833466378/1045894197812670494/VID_20221012_000434_819.mp4", + "https://cdn.discordapp.com/attachments/571934216833466378/1045177282911797308/VID-20210318-WA0035.mp4", + "https://cdn.discordapp.com/attachments/571934216833466378/1045170026359050370/VID_20221012_000811_962.mp4", + "https://video.twimg.com/ext_tw_video/1306854037984342017/pu/vid/640x360/8BUIllSNCTRqyuto.mp4", + "https://video.twimg.com/ext_tw_video/1363924961681956869/pu/vid/1280x720/1V7oM0dynZHEowgY.mp4?tag=10", + "https://video.twimg.com/ext_tw_video/1363550468031598594/pu/vid/1280x720/UD1zVw1eufIvS_BC.mp4?tag=10", + "https://cdn.discordapp.com/attachments/1080120635759542332/1087666586019713044/SexHouse_Milf37.mp4", + "https://cdn.discordapp.com/attachments/1080120635759542332/1087666585336029255/Tecavuz_Lisa_Wait.mov", + "https://cdn.discordapp.com/attachments/1080120635759542332/1087666584899833917/Tecavuz_OrangeConfusedWaterbuffalo-mobile.mov", + "https://cdn.discordapp.com/attachments/1080120635759542332/1087666586820821032/redditsave.com_SandyIdleGemsbuck.mp4", + "https://cdn.discordapp.com/attachments/1080120635759542332/1087666587273797725/pKdCrl29bis1X4Vm.mp4", + "https://cdn.discordapp.com/attachments/1080120635759542332/1087666589320618014/milf.mp4.mp4", + "https://cdn.discordapp.com/attachments/1080120635759542332/1087666588485959701/nT_2vq6j0pc8z67rk9ktxp9krd6.mp4", + "https://cdn.discordapp.com/attachments/1080120635759542332/1087666588913782804/MILF_Porn_GIFs_on_xCafe_-_page_4_5.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/951949002549657670/Svelte_blonde_nympho_with_tight_tits_Julia_Ann_gets_nude_to_be_fucked_doggy.mp4", + "https://cdn.discordapp.com/attachments/763851749164974081/1067398569918734418/1_5167992675349037230_1.mp4", + "https://cdn.discordapp.com/attachments/763851749164974081/1066082198777778176/VID_20230120_224941_237.mp4", + "https://cdn.discordapp.com/attachments/940314344275738694/953715160067997726/Brazzers_Anal8765.mp4", + "https://cdn.discordapp.com/attachments/940314344275738694/953715326594453595/LazyTenseEquine-mobile.mp4", + "https://cdn.discordapp.com/attachments/940314344275738694/953715066425974894/Brazzers_Anal3456.mp4", + "https://media.discordapp.net/attachments/814832725159968810/882025218158247997/video0.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/950148095755304980/pKdCrl29bis1X4Vm.mp4", + "https://cdn.discordapp.com/attachments/976381347436298281/984019328808669184/EAEBEA40-E070-45DF-A4CA-2C96C07FE8EB-2222-000001403584EB45.mov", + "https://media.discordapp.net/attachments/763851801346572298/973862306255622174/2017-04-15-Exclusive_BTS_for_Subscribers.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/983058685213417472/video0-3-1.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/983058646831337522/FrenchLimpingVaquita-mobile.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/983058606318567434/telegram_video-20-1.mp4", + "https://cdn.discordapp.com/attachments/1042241934204338276/1043596111820095589/video0_2.mov", + "https://cdn.discordapp.com/attachments/1042241934204338276/1042448657892519967/dinomilfoo.mp4", + "https://cdn.discordapp.com/attachments/971503784377344050/991168571524788224/video0_5.mp4", + "https://cdn.discordapp.com/attachments/971503784377344050/991437432052514936/video0.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/801342267456749608/Big_Cock_Stepson_Fucks_Big_Tit_Milf_Step_Mom_Ryan_Keely.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/802056700718743562/Doll_Like_MILF_Fucks_Random_Sauna_Guy.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/802764305387749416/Panty_Sniffing_Stepson_Fucks_Horny_Mom_Cherrie_Deville.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/803171159897145364/russian_mom.mp4", + "https://media.discordapp.net/attachments/648347497995042818/1076346159993466992/milf_hot_handjob.webm", + "https://media.discordapp.net/attachments/960693075984937008/967876970144747590/video0-1.mp4", + "https://cdn.discordapp.com/attachments/1070739030251159672/1079034407572221962/BEST_SEX_15.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/797393520549298196/Caught_Spying_On_His_Moms_Big_Boobs.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/797372481165066250/Stepmom_Natasha_Nice_Here_To_Help.mp4", + "https://cdn.discordapp.com/attachments/295647862317121536/970944019221843968/trim.6FFF4C81-5798-4080-A759-76B2BE59E8E0.mov", + "https://cdn.discordapp.com/attachments/648347497995042818/847193643835326514/video0.mp4", + "https://cdn.discordapp.com/attachments/648347497995042818/847193653616705606/video0.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/786060504996904970/KFC_public_lush_control_and_creampie_in_the_bathroom.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/911048619061293166/epic_TRY_NOT_TO_CUM_challenge_PART_THREE_romantic_sex_and_orgasm_compilation.mp4", + "https://media.discordapp.net/attachments/395565932535349249/626512207869378560/3some-2.webm", + "https://cdn.discordapp.com/attachments/1002130791519748177/1014351414161592400/-6584691852115338500.mp4", + "https://cdn.discordapp.com/attachments/620754213462474752/961414238310633483/PleasantSiennaNoddy-mobile.mp4", + "https://cdn.discordapp.com/attachments/976381347436298281/1016435613198717019/video0.mp4", + "https://cdn.discordapp.com/attachments/1035448274032791562/1040918329507983380/video0-1-1.mov", + "https://cdn.discordapp.com/attachments/1035448274032791562/1041266956877172797/JampackedPerfumedFlickertailsquirrel-mobile.mp4", + "https://cdn.discordapp.com/attachments/976381347436298281/1016435612540215306/Brazzers_TimereSun_5.mp4", + "https://cdn.discordapp.com/attachments/1035448274032791562/1044736973488791562/VID_20220720_070557_002.mp4", + "https://media.discordapp.net/attachments/763851801346572298/1062529092081168384/milf_fun.mp4", + "https://cdn.discordapp.com/attachments/996105005364945026/1031395516157796372/momsteachsex_i_fucked_my_step_mom_on_mothers_day_trailer_480_1.mp4", + "https://cdn.discordapp.com/attachments/1080120635759542332/1087666586472685638/RFS_4.mov", + "https://cdn.discordapp.com/attachments/648347497995042818/1095331176044056586/CHERIE_DEVILLE_-_BLACK_FOR_WIFE.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/1018203617888587886/video0.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1116062033398481016/YouCut_20230312_133143379.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/987099451304861705/AnotherStickyAntarcticfurseal.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1019467887418810428/MerryLoathsomeBlackandtancoonhound.mp4", + "https://media.discordapp.net/attachments/1030547911416754237/1031982453130276945/20221012_093521.jpg", + "https://cdn.discordapp.com/attachments/977623660544274463/979409206014799893/Snaptik_7069380621612633390_ava-addams.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/943488514501263410/1.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/931044975439925248/video0_1.mov", + "https://cdn.discordapp.com/attachments/763851801346572298/1095331412464373870/CHERIE_DEVILLE_-_BLACK_FOR_WIFE.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1120398655074074707/XkvhX9O.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1126150036607225856/rapidsave.com_Kds5uNO.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/977629747997708348/SpanishEquatorialSifaka-mobile.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/885960600524562452/9khnx73dai071.jpg", + "https://cdn.discordapp.com/attachments/648347497995042818/1131957135517945946/29311513_013_4956.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/1058111575157919784/2274091_18b.png", + "https://cdn.discordapp.com/attachments/865328241652400128/865394751644631050/744_1000.gif", + "https://cdn.discordapp.com/attachments/763851801346572298/1030633421732597820/Internet_20221004_022515_18.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/1121417894539038820/Screenshot_2023-06-21-15-36-19-886-edit_com.discord.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/1099002602278109306/RYAN_KEELY_-_BLACKED.mp4", + "https://cdn.discordapp.com/attachments/722069212797075487/740234620427173938/-0010.mp4", + "https://cdn.discordapp.com/attachments/1035448274032791562/1044734631360073779/video0-1.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1122970973239509052/YouCut_20220730_082115013.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1078777000795320340/RDT_20230224_130304.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/993610980481306705/Watch_Free_BBCSLUTWIFE4U2_Porn_Video_-_Anon-V.com_Original.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1109772619743502357/Hardcore_P-chap_7.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1024369854305796196/unknown.png", + "https://cdn.discordapp.com/attachments/865328241652400128/865396570869989387/gifcandy-milf-31.gif", + "https://cdn.discordapp.com/attachments/648347497995042818/1099320577086455858/pornstars-like-it-big-how-i-became-a-pornstar-01-17-2011_720p.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1118658472318337104/IMG_20230614_233558_570.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/944614125256982588/ExhaustedWideeyedBear.mp4", + "https://cdn.discordapp.com/attachments/865328241652400128/865396588997509180/gifcandy-milf-48.gif", + "https://cdn.discordapp.com/attachments/763851801346572298/1079025266938085426/Screen_Recording_20230217_171058_Brave_1.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1123584087601455145/hCzfRLs.mp4", + "https://cdn.discordapp.com/attachments/648347497995042818/1116265994252460122/31789054a380764ac53.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/862283913057402890/VID_20210531_165927_752.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1129453792937660426/Step_Mom_Wants_All_Your_Cum.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/942798208260784208/Alexis_fawx.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/909578274315857990/RDT_20211114_1759075096103552817803186.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/782541080398135296/8bcf0b8.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/1126918212051804210/VID_20230707_225015_461.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/973412413225451540/milf-anyone-into-a-natural-mom-bod-XoeY6z.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/951331734325166090/f-reveal-hope-this-makes-your-cock-hard-p-7spcbo5jlu.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1128321790159114302/Screenshot_2023-07-11-22-47-38-835_com.wildberries.ru-edit.jpg", + "https://cdn.discordapp.com/attachments/924229880470724619/939535710287978516/GrayDismalElver-mobile.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1040006908997795941/unknown.png", + "https://media.discordapp.net/attachments/648347497995042818/1064787627917713508/27932462.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/884189203376795658/aGpovr7_700b.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/773340607552815154/image0.png", + "https://media.discordapp.net/attachments/648347497995042818/1082858577384976404/RDT_20230307_174322.mp4", + "https://cdn.discordapp.com/attachments/1042241934204338276/1042449793038946304/gg.sanalseks_98521908521895712821312218947127412.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/953741729796866098/VID_20220316_212652_367.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1098615220462694441/IMG_20230420_172341.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/995152341999304804/EPORNER.COM_-_upgTpBQc1uY_Blond_teen_gangbang_first_time_Mia_Khalifa_Tries_A_Big_Black_Dick_480.mp4", + "https://cdn.discordapp.com/attachments/924229880470724619/947468234838409256/HMavyqz.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1123238811485343764/VID-20230624-WA0014.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/993282768073138186/VID_20220704_013012_990.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1119080917999292447/IMG_4056.jpg", + "https://cdn.discordapp.com/attachments/763851801346572298/1097272617783799818/24974405.webp", + "https://cdn.discordapp.com/attachments/571934216833466378/1116475262025080862/antabuse_pro_bridgette_b_and_bel.mp4", + "https://cdn.discordapp.com/attachments/838631106210955264/920312544541933598/57281a1a-06d6-4e9b-9468-fade62c6e4bd.mp4", + "https://cdn.discordapp.com/attachments/763851801346572298/1011778705686806628/20220822_170543.jpg" +] \ No newline at end of file diff --git a/src/storage/nsfw/nekoApiTypes.json b/src/storage/nsfw/nekoApiTypes.json new file mode 100644 index 0000000..750a479 --- /dev/null +++ b/src/storage/nsfw/nekoApiTypes.json @@ -0,0 +1,10 @@ +[ + "ass", + "thigh", + "boobs", + "pussy", + "feet", + "anal", + "blowjob", + "4k" +] \ No newline at end of file diff --git a/src/storage/nsfw/pov.json b/src/storage/nsfw/pov.json new file mode 100644 index 0000000..61e0041 --- /dev/null +++ b/src/storage/nsfw/pov.json @@ -0,0 +1,63 @@ +[ + "https://cdn.discordapp.com/attachments/708228721596694528/975072257951031306/io0.mov", + "https://cdn.discordapp.com/attachments/708228721596694528/1111394243920007318/video_2022-06-25_16-02-51.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1121009172050350150/discord.gg-pantyhose_3.mov", + "https://cdn.discordapp.com/attachments/763860707544137759/1096369058275934218/4HisY8GJV6jNpgrd.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/957806121064730644/image0201.png", + "https://cdn.discordapp.com/attachments/1033644802849386516/1116883265807204385/1684379827579261.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1121830610097410088/1686412311121303.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1096184285439987802/VID_20221214_195414_214-1.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1117733619247632404/lv_0_20230612153240.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/999757214040457266/56.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/996390879885537290/204x.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1106709617246994532/1683624859567181.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1118598067692781618/1684552458079148.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/1111388684567199765/Xs3avYd_-_Imgur.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1119316578236895282/1685744739056051.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1106709544140279868/1683551111943612.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1119309936933994568/1685670197053895.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1118598313713868842/1684530351303312_1.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/1128983296219562054/GAT_21_720p.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1103379138263404645/1682639308087284.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1119897433191755886/1686214066966754.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1118941256937111605/1685384579073239.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1114710182035984424/1190213.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/1110150048819458048/20230516-113140-moonster7710-id5689450.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1120043836677292104/1686047764320358.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/942191461938655352/u3SISdEx_720p.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/968973302456545340/MinorInfiniteHarborporpoise-mobile.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/1125642086440505495/SPOILER_pomp_8.MP4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1102756337525461093/warm.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1118277663644192959/1684832234570202.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1126201320857161838/4_5814628361430896265.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/998186147941457980/227.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/984414053285900298/3D468-1.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1116884902349115403/1684316283368020.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1106705417150660658/1683314104911382.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/996409233690079312/21740019.gif", + "https://cdn.discordapp.com/attachments/1033644802849386516/1117813856320901150/4HisY8GJV6jNpgrd.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1119889716435750912/1686184010976894.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/980123281329897552/20220528_105451.gif", + "https://cdn.discordapp.com/attachments/1033644802849386516/1104472085239181382/HingeHookup_1634802761853292551360P.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/940995207682465802/ChubbySandybrownBlackbuck-mobile.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/999621145936539709/21-07-22_1418191803639943168_p0.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1107358404504195143/ForsakenRunnyYardant-1.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/941746300045635594/video0.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/975803865997910127/2072357156.gif", + "https://cdn.discordapp.com/attachments/1033644802849386516/1107377393959702538/1683565177676064.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1106705148639727737/1683313787024167.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1118277607901888565/1685209123938718.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/1026491472083685436/VID_20221003061744.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1107774127022026772/pN9rJrYmkV-Aky9G.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1102377626636669018/1682509119034384.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/957240832300298300/FB_IMG_1642024297411.jpg", + "https://cdn.discordapp.com/attachments/1033644802849386516/1117248569150287982/Val_Steele_MrLuckyPOV_-_1of2.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/1021536010657611796/video.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/1082038645491519560/kLwAudt_-_Imgur.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/996222158697144461/video1.mov", + "https://cdn.discordapp.com/attachments/1033644802849386516/1116323748816109698/video_1.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1120137588234272859/nKIsEzB.mp4", + "https://cdn.discordapp.com/attachments/1033644802849386516/1106709484597940294/1683550834720768.mp4", + "https://cdn.discordapp.com/attachments/708228721596694528/941418723565273148/bdsmlr-10222890-om63AKPUFF.gif", + "https://cdn.discordapp.com/attachments/1033644802849386516/1115129005524398121/cm-chat-media-video-1503c9831-9126-387a-be4f-fa3edf95317c48600.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/public.json b/src/storage/nsfw/public.json new file mode 100644 index 0000000..c83f760 --- /dev/null +++ b/src/storage/nsfw/public.json @@ -0,0 +1,33 @@ +[ + "https://cdn.discordapp.com/attachments/686780791191109636/1103695220576624760/AaE59uN.mp4", + "https://cdn.discordapp.com/attachments/686780791191109636/1098063026000769054/9569b0f1-0b31-4c88-b7a1-7a7a92a8e0ac.mp4", + "https://cdn.discordapp.com/attachments/686780791191109636/1099427411973636106/PrizeThankfulIberianemeraldlizard-mobile.mp4", + "https://cdn.discordapp.com/attachments/686780791191109636/1096448967400763433/Brazzers_discord_2.mp4", + "https://cdn.discordapp.com/attachments/686780791191109636/1096449297135976518/SexHouse_Public38.mp4", + "https://cdn.discordapp.com/attachments/686780791191109636/1100053162573967510/DarkmagentaPowerfulNatterjacktoad.mp4", + "https://cdn.discordapp.com/attachments/849299698618597407/904861499141529610/m2RsSMEb1.gif", + "https://cdn.discordapp.com/attachments/849299698618597407/895709704678944788/thumb1.png", + "https://cdn.discordapp.com/attachments/849299698618597407/877419724647043072/WorthlessSlushyPanther-mobile.mp4", + "https://cdn.discordapp.com/attachments/849299698618597407/881234746108182569/unknown.png", + "https://media.discordapp.net/attachments/971503829298327582/972589868360282172/1507207462381752323264P.mp4", + "https://cdn.discordapp.com/attachments/686780791191109636/1103340515652534442/AlarmingJubilantDogwoodclubgall.mp4", + "https://cdn.discordapp.com/attachments/849299698618597407/904857822091694150/porn-gifs-porn--public-porn-6928756.gif", + "https://cdn.discordapp.com/attachments/686780791191109636/1107115148746952734/50743652_003_6f91.jpg", + "https://media.discordapp.net/attachments/511257077797093426/1096822617706614875/trim.80189D2E-112E-4BBE-AF0D-013B7A04BEA4.mp4", + "https://bobsvagene.club/wp-content/uploads/2018/06/public_disg-1389.gif", + "https://cdn.discordapp.com/attachments/849299698618597407/895709600077197392/26367_screen.png", + "https://cdn.discordapp.com/attachments/686780791191109636/1096449014574100511/E5S8mIo.mp4", + "https://cdn.discordapp.com/attachments/686780791191109636/1110581129959985313/1048674278.jpg", + "https://cdn.discordapp.com/attachments/686780791191109636/1096449151903993947/SexHouse_Public57.mp4", + "https://cdn.discordapp.com/attachments/430335914040885258/1106764273696378950/RDT_20230512_204931.mp4", + "https://media.discordapp.net/attachments/971503829298327582/972589697371103302/VID_20220324_010017_168.mp4", + "https://media.discordapp.net/attachments/838038184290025512/844223730728960020/image0.gif", + "https://cdn.discordapp.com/attachments/763851444910293022/1085581242352812132/VID_20230315_225904_420.mp4", + "https://cdn.discordapp.com/attachments/980064220743868466/1002319133662269460/1658138907280122.mp4", + "https://redgifs.com/watch/trustworthysalmonshelduck", + "https://cdn.discordapp.com/attachments/849299698618597407/895710488648876072/meaAaGwObaaaamh7O5PRKR7iBgIaWoN9.png", + "https://cdn.discordapp.com/attachments/849299698618597407/990095293993353226/165089625761.mp4", + "https://cdn.discordapp.com/attachments/849299698618597407/895711242675703818/19ddc61af8f213d2c43c17204efab297.png", + "https://cdn.discordapp.com/attachments/686780791191109636/1115172688714014810/Public_Pickups_-_Rihanna.mp4", + "https://cdn.discordapp.com/attachments/1004853584883622028/1020342448842621020/discord.ggssex_43.mov" +] \ No newline at end of file diff --git a/src/storage/nsfw/random.json b/src/storage/nsfw/random.json new file mode 100644 index 0000000..0cc7f35 --- /dev/null +++ b/src/storage/nsfw/random.json @@ -0,0 +1,1446 @@ +[ + "https://cdn.discordapp.com/attachments/979103092266123264/1018704954199900200/redditsave.com_DASH_1080_3.mp4", + "https://cdn.discordapp.com/attachments/980061519536599080/1002900458173648966/R7w4Jc9IWsUXDqO9.mp4", + "https://cdn.discordapp.com/attachments/980061519536599080/1002899877367390308/PleasedSturdyClam-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914116972885704734/939464.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914116448757112852/5.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117578564190228/FemininePoorArrowana-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117178725367808/Egv8Q_L9WUUTVloZ.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117117471780874/DroopySpecificNightingale-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117071636398110/CautiousFluidKite-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117033329827860/Bratty_sis_Gabriella_Lopez_-_XVIDEOS.COM_sd.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117905329827840/molly_jane_in_fucking_my_step-dad_infront_of_mom.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117842599817216/Lana_Rhoades_-_XVIDEOS.COM_sd.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117733401128980/IMG_20201208_002802_664.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117694599610408/https___t.co_AkINhQLMY6.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117636634333184/g8wp2fX.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118141452353567/received_2406803449625647.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118130698166322/received_424599222182381.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118080622383134/qot87iqOy5sVGAnW.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118030873731152/Q3FpmpX.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914117988658085898/PURGATORYX_Genie_Wishes_Vol_2_Part_2_with_Bella_Rolland_and_La_Sirena_69_-_XVIDEOS.COM_sd.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118483858567248/VID_20201117_094827_380.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118261484970054/StrongFabulousBalloonfish-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118262655164427/TABOO._HE_FUCKED_STE...NOWING_1.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118264530030652/ShockingJitteryIndianglassfish-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118169344495707/received_2856494034636334.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118480117264404/VID_20201225_111551_162.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118480746385498/VID_20210104_153702_892.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118481748828230/VID_20210104_154610_102.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118482717720656/VID_20200815_160856_853.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118483174907974/VID_20200824_170147_659.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119321729523722/video0_6.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119322669027348/video0_1.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119323235282984/video0_2.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119324313223178/video0_3.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914118479358078976/VID_20201117_095010_852.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119604241051718/video0-4.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119605302222909/video0.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119493314293780/video0_7.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119320039223306/video0_4.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119320789987388/video0_5.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119867546865664/xvideos.com_59a491c72d35856ff3dc2109ceff49f6.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119852946489344/xvideos.com_41eb916530d6585c0d534870e8d2d64d.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119741042462770/vixen_kendra_sunderland_finally_fucked_by_her_fathers_friend.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119629322993714/video3.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119603364458496/video0-1-1.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914127242009903164/3JDFSFK.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119989970239529/ZGad3Bu7qTpO0sdm.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119919069712404/xvideos.com_e6d750115ade0695c1b351195ba99b38.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119909989040128/xvideos.com_89e2790edc216589d4bb170b7a903542.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914119906260312084/xvideos.com_e6d750115ade0695c1b351195ba99b38_1.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/917931438115016744/goten1.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/917931439041945660/q2tw8cczgdjBQRsE0-1.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914127380061224970/BlondAnotherBirdofparadise-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914127380740722700/blondpeche_1.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/914127383076962364/BrilliantCreamyHalibut-mobile-1.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/917931603458670632/VID_20211203_142956_646.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/917931604410765312/VID_20211203_143120_728.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/917931605773910067/VID_20211203_143301_850.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/917931436110118982/Redgifs-viciousintentsiamesecat.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/917931437443919902/2_5339059448927225076.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/917931598782021652/VID_20211203_142359_043.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/917931600413601884/VID_20211203_142436_407.mp4", + "https://cdn.discordapp.com/attachments/912913775437447178/917931602296840302/VID_20211203_142915_274.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130298130817044/PartialPowerlessAfricanaugurbuzzard-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130298759946250/pinesoul69.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130725916274758/uu9sLsq.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130638620205106/Tina_Angel.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130295203196948/PortlyGrimLemming-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130296297885716/reaction_to_anal.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130297329709156/rIHrNarayprumQ9E1gBGs1LKpG2-HVU9GH9IEQfw5a0.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130890416873492/video0_2.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130756744400896/VID_20210311_172254_417.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130724737654794/V07Z84m.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130725291327558/VibrantSafeBear-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130725576527902/UncommonVeneratedBumblebee-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130991491207178/video0_6.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130992254550056/video0_5.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130888055463936/video0_3.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130889116647444/video0_4.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914130889968070686/video0_1.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914131140749697044/video-1595852454.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914131142431637554/WickedPossibleArrowana-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914131143203356684/video0.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914131143555706900/video0_2_copy.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914131144415514624/video0-1.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914133849347326012/assg.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914131434506158131/xvideos.com_a618b0fab5200480b9db4498242319b1.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914131403598331934/xvideos.com_58db076c5f8379404ad74fa1afbd043b.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914131404772769872/xvideos.com_1514bd7a192d8ff90054506edef014b4.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914131180096466974/xvideos.com_6f7b4cd23171d52df928e26a67e57c17.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914133840526712854/b34e1331d950dc6cff093455d47552cb.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914133846562308106/goten1.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914133847199875092/HotpinkCrookedHedgehog-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914133848189710336/5552751a_1.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914133848646885376/analpassionvids_1459962841226645504360P.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134054151012372/PalegreenDevotedAplomadofalcon.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914133943849218068/InShot_20210923_174748201.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914133944692252682/Le_doy_rico_por_el_culo_a_la_novia_de_mi_amigo_Kenzie_ReevesMP4_High_Quality.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914133945451429929/IMG_20211101_030225_358.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914133839503314954/AttachedSandybrownCranefly-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134102591025202/VID_20211027_151831_754.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134103333429298/VID_20211101_224548_610.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134104176467968/VID_20211116_001758_008.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134105254408212/UnnaturalAgitatedArgusfish-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134106017763338/UnusualShyWaterdogs-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134676623478864/SarcasticOrganicKid-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134222166442004/VID_20211117_181234_963.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134222602657792/VID_20211121_221357_791.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134223407968266/video_2021-07-23_18-38-08.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914134224418770974/VID_20211117_092447_822.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917934976429883462/11.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917934949389185054/2_5424729598212441830.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914135499273306132/video0_2.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914135500200214538/video4.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/914135500938420284/video_2021-07-23_18-38-08.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935113172578424/cSQb1iK.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935107111784488/aaaaa.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935052954939453/614355476.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935032054718474/180555252.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935013822103572/46f0eca052bbfa1cb5e710f1a86af4c5.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914139998398324776/My.Friends.Hot.Mom.81.CD1_-_1of9.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914139965103947836/video0.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914139966022496286/xvideos.com_a1f23fdaef108e9d9b56ad2e6319daa9.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914139967238836224/xvideos.com_896cf5c01888a3fb7f32c0593a844bbc.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914139968908193832/QuickActiveBandicoot-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140352653459526/1231231.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140339286208532/182714597.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140077591003186/VID_20210531_165927_752.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140079465832468/porn_16.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140081261002772/video0_14.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140645923360788/xvideos.com_4a8b1670592d125a9402c97f9ca72298.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140646988730368/PristineHotpinkDachshund-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140647928262666/PertinentDarkslateblueAstarte-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140447172100146/whitehardcore5.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140448325505024/test.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140749191331860/CorruptPuzzlingWaterdragons-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140750197960745/foxy_di.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140751330435072/video0_1.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140752592924672/VID_20210407_133724_853.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140644690239498/nicolexbruce4.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140797279039508/VID_20210406_175255_508.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140798587658250/VID_20210408_184454_053.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140799300677653/VID_20210325_153659_231.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140800294735872/SinfulGranularIndianpangolin-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140801024528434/vid2.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140876689780786/holy_moly_-_n3bula.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140877465718814/You_were_born_to_make_his_milk_-_WankBank2020.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140878354923550/VID_366330829_174127_038.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140879361540186/LinenUncomfortablePika-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140880070406184/ArtisticCarefreeGilamonster-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141030650114058/PropertySex_-_College_student_fucks_hot_ass_real_estate_agent.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140975507595374/Sucked_His_Soul_Out_www.xhamsterdownload.com.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140975901835274/VID_345710613_015953_060.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140977415987220/956416.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914140978187743282/954210.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141199768616990/ReadyCommonAmethystinepython-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141200590704660/PORN.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141082542030898/QBpFnbG.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141082885976124/VID_346750616_075047_746.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141083976491099/Nancy_A_-_Passionate_Morning_Sex_01.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141489167233034/BowedAgedEft-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141489817354290/HappyDesertedAngora-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141482544414740/GrimCheerfulBumblebee-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141197814091856/VID_20210408_185203_077.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141198837510234/video_2021-03-16_20-43-00.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141731879002172/WanHomelyKob-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141484612198400/PrestigiousBreakableDouglasfirbarkbeetle-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141485820166205/KindlyMagnificentIslandcanary-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141486617100288/ThisWhisperedAnura-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141487581777940/FatherlyMinorEthiopianwolf-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917935799855640576/NaiveCrushingCrayfish-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917935705341169674/jtbrHIZ.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917935703185297438/Jose_Tittyfuck.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141730759114802/CreativeLinedGenet-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/914141731459592272/xwsJeumWFSSZxAV0.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917936090151788544/Snapchat-1299738760.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917936077841518682/she_wants_it_rough.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917935963844513832/rki00498_mhb_w.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917935914934763530/PleasedDirtyUromastyxspinipes.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917935849042239498/received_1132242277189861.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935163596496917/IllfatedLivelyBordercollie-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935142717235240/hayFS0s.mp4", + "https://cdn.discordapp.com/attachments/912913784945913886/917935118478368768/ColdDarkgreenIberianchiffchaff.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917936129859264512/Tittyfuck_cumshot.mp4", + "https://cdn.discordapp.com/attachments/912913792982192168/917936117288955904/Titfuck_.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914144958418661476/AntiqueJitteryBunting-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914144959060394064/VID_20210409_134117_715.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914144931625455637/Melody_Foxx_POV_02.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914144899916501002/video0.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914144901002821672/Melody_Foxx_POV_01.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145037657456670/BabyishOblongKiskadee-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145033547038720/e284de174ca09fc0.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145028526469130/VID_20210309_180320_172.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145004707016734/IMG_6265.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914144957118447686/Melody_Foxx_POV_03.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145172630147112/7v_E9BJ0UZHYY9mz.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145157950091385/h7OV-RiThkM52PjA.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145105483554826/6MalVfTm9ADbW5yU.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145091776561182/G78mrz6AkYh2bEWJ.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145057148399646/ThirdAridTapaculo-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145252208705587/UglyImmaculateGalah-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145240716300358/Y8jBgQLTA_3AOHM0.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145213675622450/BothLoathsomeFruitfly-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145197376544828/FavorableFailingAldabratortoise-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145187297648670/Create_free_dirty_tinder_account.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145759786590258/kVxLWIqdRNExEkjE.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145427392176128/l6WjibEnAd2yV68l.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145368437047296/2b-UplB8avsE4Mm-.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145296756379718/4RnLMC0HiElA8s-4.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145292599840788/video0-78.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145953085288478/PitifulDirectCoral-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145953932517426/QDtP_nelf7IFI3D0.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145757420982342/MajorPoliteAmericancrow-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145757907550228/PalatableGrimyFoxterrier-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145758599589888/ForcefulClearcutAmericanquarterhorse.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146045292855326/UntimelySoupyBittern.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146046127517726/video0-1-3.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146046672789544/video0-2-2.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146047847190579/video0-3-2.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145952330289192/ScratchySilverBoubou.webmt2.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146181007962182/xvideos.com_7c8e1f56c2d567b97e136f4ccd57290b-1.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146042692390912/video0-7-1.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146043422191646/video0-10-2.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146044009386045/video0-11-2.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146044655329320/video0-14-1.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146261966413844/xvideos.com_d7e7e7da0620bf0ac79019dcb5e46ecc.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146225098469397/xvideos.com_b6bc62375676c51cd68b8c0b523efc19.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146217422893076/xvideos.com_532f857c84217bbfcd204eccd6c1d942.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146185990795304/xvideos.com_71ef12f74aa36d3bcccb25deaf3cb292.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146178646560778/xvideos.com_3a1d50f5544d1d9bf192ebb2c35f8188-1.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146348771721236/xvideos.com_e0cbe1711afa14c7199d8c9fd296970a.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146347937050634/xvideos.com_f3fa79f2c99e3fd9bad2df2f775df1e1-1.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146339904962620/xvideos.com_df1e72583bccaeb383ac8df6ad18e8fe.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146293453037609/xvideos.com_d8b3c99880f20707d4a22c719e70610f-1.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146278882029658/xvideos.com_d7f39bed25b1c4a23c9267d46982425e-1.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/917936362408259604/VID_20211117_175422_577.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/917936350215422012/VID_20211115_150251_750.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/917936332775501924/twitter_20211113_121811.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/917936314010198056/twitter_20211113_112902.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914146776091594812/xvideos.com_06448bff6aeb024a4d5f500556e183e2.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/917936481509736458/VID_20211130_153331_483.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/917936475801276457/VID_20211130_153033_026.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/917936439851896842/VID_20211130_145910_339.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/917936412328861736/VID_20211130_145453_304.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/917936393513205760/VID_20211130_141900_418.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914152505842233384/2_5368629495601303004.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914152506823680020/2_5370807623840959974.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914152507851276328/2_5422516238356056303.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914152508371402832/ff37e57fff34360a.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914152508820172800/0Y8VRxQ.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153186305134623/2_5427243391031182722.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153186896519208/2_5467476235183459236.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153187672481912/6QR5NRKriakt4y4O.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153168080896010/720P_4000K_366830562.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914152505426989066/2_5197288947922765630.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153605307711548/BNrtxvlb-f5v7BmT.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153605924266004/ArtisticCarefreeGilamonster-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153476412551188/177029969_831231477787519_1089295096456585614_n.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153183641743420/7eMrZCI_-_Imgur.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153184686141460/720P_4000K_366428502.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153725931716618/cSQb1iK.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153726531489862/ce177785-b3f1-4d36-8010-6395dbc20861.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153660114690108/bratty_sis_right_under_moms_nose.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153662715162724/BrilliantUnfinishedAndeancat-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153604611444746/AwesomeViciousLimpkin-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153947877507142/EasyRoyalNorwayrat-mobile.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153948980580392/LittlePeacefulCopperbutterfly.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153950360514580/CylindricalLeadingPheasant.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153951069356112/D-gWsV1ac-ylD2U3.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153724430123028/ColdDarkgreenIberianchiffchaff.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914154765024374824/QwxwAhK3HCmchIJ5.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914154382516441119/Nikki_Brooks_-_My_Stuck_Step-Mom_-_XVIDEOS.COM_sd.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914154385041391626/Pie.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914154385821560862/PrudentPushyIndiancow.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914153962859544586/Marcella_squirting_session.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155767773409320/tumblr_qx6itl1Hge1z9nx7r.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155768192851999/twitter_20211113_112902.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155769274974208/Screen_Recording_20210503-100947_Chrome_1.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914154763107565599/received_285354806713896.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914154763992580146/received_2510970542547220.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155803756355624/VID_20211117_175422_577.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155804473585714/video0.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155805207572530/TXE95CXOpBXro4ZF.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155806214197248/UyzLVnK.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155766934544414/squidgame.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914156085391274055/xvideos.com_36de669593e4200ceaca04f308786b8b.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155975655686144/video2-3.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155976314196058/video6-1.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155977178251274/xkXxaVXevoI_GiQL.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914155978830802954/video0-15.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914156426438524928/xvideos.com_9afe4842f7018a2eff7e8ee1dc206959.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914156159487844422/xvideos.com_96ffc97e2629f12dd4ec6f2279e24e8c.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914156159731113984/xvideos.com_76f98440f65e4ef16e872778ad3860c3.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914156130429718538/xvideos.com_68c566d68a558a6de0b0d38f46d7d5e5.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/914156099488325652/xvideos.com_daf9de20b7d1ab8f11bf521f9c13b037-1.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937384681766930/VID_20211205_165559_418.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937363404091452/VID_20211207_170757_452.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937304876752936/VID_427531008_073611_178.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937285054496768/video0_15.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937277177565214/wihgahwg.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937714358255657/6lonKjGpBUl4.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937705550233670/tBy32da0oPkg.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937655864500234/VID_20211130_161317_905.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937630753218590/VID_20211130_161545_404.mp4", + "https://cdn.discordapp.com/attachments/912913817229471764/917937419230269450/VID_20211203_121520_070.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/917936513164120105/VID_20211130_153436_845.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1038645792937873419/RecentCrimsonYellowbellylizard-mobile.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1038647259744710696/ImmaculateFractalVaquita-mobile.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1039256817798217800/BigAssAddict-1528067947327016961-20220521_133923-vid1.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1039256950292086875/zclrr3T.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1039263122172678215/1627445589821.webm", + "https://media.discordapp.net/attachments/644851830844686336/1039653347852042372/GyliGLeolEiA7LjC_1.mp4", + "https://media.discordapp.net/attachments/899763415508221985/1009834440849096796/2021-10-15_09.28.54.mov", + "https://media.discordapp.net/attachments/861586446095351818/1039195609208467567/AoFu4r5.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1040057852158562324/eruOUSlJI60ZYlAL.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1040350967478112367/20200612-rX5Ze3.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1040793196365619221/VID_20220421_014749_067.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1039680214583758859/RecklessDimgrayKentrosaurus-mobile.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1039684252641542245/ScrawnyAchingFly-mobile.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1045519630199955456/VID_20221027_003900_201.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1045142163589177365/Video_Aug_13_9_39_32_AM.mov.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1041193925483966574/UnsightlyWebbedBrontosaurus-mobile.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1041199961175494727/VivaciousShamefulKakarikis-mobile.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1041203094454816819/OverjoyedLightyellowPoodle-mobile.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1059906205255991366/Dd1BlDHmfGb0bLjT.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1053267372309491762/AncientImperturbableBetafish.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1047404345248989184/trim.FBC7023F-6AFD-4737-9E36-7EE894C41661.mov", + "https://media.discordapp.net/attachments/644851830844686336/1045142556691943575/Video_Jul_14_4_03_11_PM.mov.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1045157127771140166/EscortFunda.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1062591597625221190/Dinner_Is_Served_So_Dive_Right_In.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1062712984897585192/42303271a.webm", + "https://media.discordapp.net/attachments/644851830844686336/1059906025433612318/6d586Aw0od_db2oG.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1064088540096495697/5138991a.webm", + "https://media.discordapp.net/attachments/644851830844686336/1064088666949038160/24567971a.webm", + "https://media.discordapp.net/attachments/644851830844686336/1064269972911685702/brazzers_discord_7.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1060669712767393873/Sry_Its_A_Slow_Day_Feeling_Lazy_In_Bed_2.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1061349763213181048/WeepyVapidTayra-mobile.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1065246302780264488/FatBandonkadonkAss.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1065676151479091200/RDT_20230119_165031.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1068071465058041936/NIRVANA_21_1.mp4", + "https://media.discordapp.net/attachments/644851830844686336/1063922705176481802/RDT_20230114_234602.mp4", + "https://cdn.discordapp.com/attachments/1040667073057149038/1048402548056399902/video0_4_2.mp4", + "https://cdn.discordapp.com/attachments/988851856182767654/992046932539220078/E252AB5C-2FC0-42AB-B038-5B5AB07FA303-1326-000003A3F686FC09.mov", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620889468190740/OnlyGods_9.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620890655178782/RPReplay_Final1642981422.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620943230775447/video_2021-01-12_20-18-09.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620942840692837/trim.2DB1CA11-5D5F-45CE-963C-60D9FBC7F6B3.mov", + "https://media.discordapp.net/attachments/978639868777336902/999302316941381672/V-8fo2vU0chHndqd.mp4", + "https://media.discordapp.net/attachments/978639868777336902/999302366757126194/BoilingFelineGuillemot-mobile.mp4", + "https://media.discordapp.net/attachments/978639868777336902/999302373778411550/fsqwq4.mp4", + "https://cdn.discordapp.com/attachments/1002006043188007002/1076642547482493029/x9COY0oT_720p.mp4", + "https://cdn.discordapp.com/attachments/801561599197315072/802026276260151336/8337171a.webm", + "https://cdn.discordapp.com/attachments/1054201930886426734/1056780969690017833/PornTurkeyFeet_13.mp4", + "https://cdn.discordapp.com/attachments/1054201930886426734/1056780970126217246/98750682_464220448218816_58771089828804785-20546.mp4", + "https://cdn.discordapp.com/attachments/983810825011736576/984423447260184646/IMG_2077.mp4", + "https://cdn.discordapp.com/attachments/914131657622167582/995020927957991444/video0-1-1.mov", + "https://cdn.discordapp.com/attachments/914131657622167582/984932532367818812/SuperGayShit.mp4", + "https://cdn.discordapp.com/attachments/818080515461873704/972549199910543420/2_5447531613946649525.MP4", + "https://cdn.discordapp.com/attachments/1035448270627024906/1076545831919964220/C96C9C29-C5A4-4A48-BB61-F2008D3413F7.mov", + "https://cdn.discordapp.com/attachments/1035448270627024906/1076545876111151135/417C1862-ECDF-40D3-939C-B565457D4157.mov", + "https://cdn.discordapp.com/attachments/1035448270627024906/1043865285142261790/i8zeywI.mp4", + "https://cdn.discordapp.com/attachments/1035448270627024906/1043865284626358342/UMVMcmA.mp4", + "https://cdn.discordapp.com/attachments/1035448270627024906/1043863641591652382/1491436055102320641606P.mp4", + "https://cdn.discordapp.com/attachments/1035448270627024906/1043856641608667256/ImpossibleLeafyDuckbillcat.mp4", + "https://cdn.discordapp.com/attachments/1035448270627024906/1041133307217313823/PersonalClosedKinglet-mobile.mp4", + "https://cdn.discordapp.com/attachments/1035448270627024906/1076547833097900203/41763352-1AF3-4191-A2A7-B01743964FF8.mov", + "https://cdn.discordapp.com/attachments/1035448270627024906/1076547006497038448/7F2C9AF4-5BE2-48C8-A4E0-48017B56CBEA.mov", + "https://cdn.discordapp.com/attachments/884802196573679706/903451071924535346/Korean_model_striptease_hot.mp4", + "https://cdn.discordapp.com/attachments/1053037611578560563/1053376549946151012/Bizzy.mp4", + "https://cdn.discordapp.com/attachments/1053037611578560563/1062109889872277504/Bizzy.mp4", + "https://cdn.discordapp.com/attachments/1053037611578560563/1057795950355152957/Bizzy.mp4", + "https://cdn.discordapp.com/attachments/1053037611578560563/1053378694992891955/Bizzy.mp4", + "https://cdn.discordapp.com/attachments/571967965755473935/785962788467376138/31ce27f8.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/791970081088864276/Hot_Amateur_Teen_Sex_-_Girl_with_natural_huge_tits_fucked_hard.mp4", + "https://cdn.discordapp.com/attachments/571967965755473935/782126864771579934/Amateur_Slut_feedin_her_man.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/789695719258849300/Newbie_Michelle_Anderson.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/790476660381581322/Tcheca_com_corpo_escultural_transando_por_dinheiro.mp4", + "https://cdn.discordapp.com/attachments/1061543753418023032/1064525166354378824/nsfw51_sex.mp4", + "https://cdn.discordapp.com/attachments/1061543753418023032/1064525167482650654/nsfw55_public.mp4", + "https://cdn.discordapp.com/attachments/1061543753418023032/1064525168392818728/nsfw53_threesome.mp4", + "https://cdn.discordapp.com/attachments/1061543753418023032/1064525168770297916/nsfw52_blowjob.mp4", + "https://cdn.discordapp.com/attachments/1061543753418023032/1064525169151987772/nsfw57_affair_sex.mp4", + "https://cdn.discordapp.com/attachments/1001888583168307371/1076638037510979644/video0.mp4", + "https://cdn.discordapp.com/attachments/1032767424749113434/1076635964123918396/VID-20220217-WA0054.mp4", + "https://cdn.discordapp.com/attachments/1032767424749113434/1076636604883537990/viddit_e21185c0.mp4", + "https://cdn.discordapp.com/attachments/1032767424749113434/1076636980500234350/viddit_1503c312.mp4", + "https://cdn.discordapp.com/attachments/1032767424749113434/1076637510584782959/viddit_ab31ac0a.mp4", + "https://cdn.discordapp.com/attachments/1032767424749113434/1076637146770841600/viddit_fe157842.mp4", + "https://media.discordapp.net/attachments/975394785433108510/1006143569159000144/1657285762972.mp4", + "https://cdn.discordapp.com/attachments/1054201930886426734/1056780970549846066/PornTurkeyFeet_8.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318529598324746/480P_2000K_382840642.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318480264925246/video1_1.mp4", + "https://cdn.discordapp.com/attachments/1032767424749113434/1076635529153618070/viddit_60d539ef.mp4", + "https://media.discordapp.net/attachments/975394785433108510/1006143577123983441/1657331614137.mp4", + "https://media.discordapp.net/attachments/906943562443268157/1054916037562351656/39606621a.webm", + "https://cdn.discordapp.com/attachments/969279996805939260/975483279702634536/RFSfeet2.webm", + "https://cdn.discordapp.com/attachments/1063753397632770068/1063777919660470282/1135884.mp4", + "https://media.discordapp.net/attachments/829124344985944075/1015728918118015116/VID_20220820_170322_399.mp4", + "https://media.discordapp.net/attachments/832658295339876362/1015789303198126222/trim.59F7E05D-06A2-4BB1-8AC8-3D47B82DFD36.mov", + "https://cdn.discordapp.com/attachments/969279996805939260/975471179093639168/RFSfeet6.mp4", + "https://cdn.discordapp.com/attachments/1001888583168307371/1076632567509438475/RDT_20221220_230625.mp4", + "https://media.discordapp.net/attachments/1063753936684716082/1063791992456351834/trim.986556E2-6A53-437F-948A-4DA582013637.mp4", + "https://cdn.discordapp.com/attachments/976381354646331413/1005589709638074530/cachedVideo.MP4", + "https://media.discordapp.net/attachments/997622719845781584/999523051551080468/DecentPinkAxisdeer.mov", + "https://media.discordapp.net/attachments/997622719845781584/999523051127459890/ZhXvb4K.mp4", + "https://media.discordapp.net/attachments/997622719845781584/999523050385059931/VID-20220507-WA0116.mp4", + "https://cdn.discordapp.com/attachments/1004775649615040633/1004834521407045755/video0-1-1-1.mp4", + "https://media.discordapp.net/attachments/956622922880020510/1010037022527848528/Z_-_Play_or_control_her_squirt_through_your_phone_with_App_control_Smart_Worldwide_Shipping_GET_60_OFF_DISCOUNT.mp4", + "https://cdn.discordapp.com/attachments/976381347436298281/985267198245367848/1640928215976.webm", + "https://cdn.discordapp.com/attachments/924229633166163988/947474263911321650/RemarkableDearNilgai-mobile.mp4", + "https://media.discordapp.net/attachments/924229633166163988/947474199348379718/PushyHairyAsiaticgreaterfreshwaterclam-mobile.mp4", + "https://media.discordapp.net/attachments/924229633166163988/947474144864399370/ActualBlackGnu-mobile.mp4", + "https://media.discordapp.net/attachments/924229633166163988/947474163944259614/PleasedUntrueShrew-mobile.mp4", + "https://media.discordapp.net/attachments/924229633166163988/947474012592824400/LightheartedGlossyBasilisk-mobile.mp4", + "https://cdn.discordapp.com/attachments/721267440985833472/823176738070462474/HeftyHotpinkBobcat-mobile.mp4", + "https://realbooru.com/images/b7/43/b743a2692069e341029821a27fc54227.webm", + "https://cdn.discordapp.com/attachments/1017491656724988067/1061321759531483156/Male___Female_58_1.mp4", + "https://cdn.discordapp.com/attachments/1017491656724988067/1061322186863947857/VID_20230107_100505_174.mp4", + "https://cdn.discordapp.com/attachments/1017491656724988067/1061322557313265715/VID_20230107_103550_785.mp4", + "https://media.discordapp.net/attachments/1043265990907134107/1043469483366428692/twitter_20220530_191752.mp4", + "https://cdn.discordapp.com/attachments/1080120829989372036/1086285162985304175/RDT_20230314_192621.mp4", + "https://cdn.discordapp.com/attachments/1080120829989372036/1086285162649751694/IMG_6405.MOV", + "https://cdn.discordapp.com/attachments/1073583610373865474/1078383359346090114/0_7.mp4", + "https://cdn.discordapp.com/attachments/1073583610373865474/1078383359790698647/0_1.webm", + "https://cdn.discordapp.com/attachments/1073583610373865474/1078383357156667462/0_6.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035072834977913/BEST_SEX_10.mp4", + "https://cdn.discordapp.com/attachments/1002006043188007002/1076642568680505435/ass.mp4", + "https://media.discordapp.net/attachments/1063753994813579314/1063793521947050074/U1wzoZV.mp4", + "https://media.discordapp.net/attachments/1063753994813579314/1063793282636849182/UnlinedGrimDog-mobile.mp4.mov.mp4", + "https://cdn.discordapp.com/attachments/1080120829989372036/1086285164390391868/VID_20230315_004916_662.mp4", + "https://cdn.discordapp.com/attachments/1080120829989372036/1086285163614441562/VID_20230311_184653_089.mp4", + "https://cdn.discordapp.com/attachments/1080120829989372036/1086285164742709268/VID_20230315_235856_841.mp4", + "https://cdn.discordapp.com/attachments/1080120829989372036/1086285163312455720/VID-20211202-WA0019.mp4", + "https://cdn.discordapp.com/attachments/801561599197315072/802026191611363388/18497691a.webm", + "https://media.discordapp.net/attachments/1004853615611093115/1020656934170415154/discord_43.mp4", + "https://cdn.discordapp.com/attachments/816406926673182800/1017827685818450001/cummdrainerr_1637450454610.mp4", + "https://cdn.discordapp.com/attachments/816406926673182800/1022431853216538696/2022-05-10_05.32.42.mov", + "https://cdn.discordapp.com/attachments/816406926673182800/1026661546669117590/video0_4.mp4", + "https://media.discordapp.net/attachments/816406926673182800/910380482678652948/twerkteamco_1637014545379430.mp4", + "https://cdn.discordapp.com/attachments/816406926673182800/1030081969016537171/trim.02D7A469-83E2-4817-8848-B3859181F03B.mov", + "https://cdn.discordapp.com/attachments/921112062162272338/962863745426677760/sut.mp4", + "https://cdn.discordapp.com/attachments/921112062162272338/961309107506262016/by.enezpacino_4.mp4", + "https://cdn.discordapp.com/attachments/921111741700636723/1070715275495882864/VID_101131018_002741_331.mp4", + "https://cdn.discordapp.com/attachments/980061519536599080/1002899877761658990/ActualLightsalmonRoach.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1095807787969302588/video1-1_100324.mp4", + "https://cdn.discordapp.com/attachments/1001618584352587846/1004057478394282085/CLUBCITY.LEZ.mp4", + "https://cdn.discordapp.com/attachments/1043265989816614924/1048488561281867796/brazzers_discord9.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1083031741687672852/C27421F9-3ABB-4FC3-9844-46A3519A2610.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1082680979694555206/RDT_20230307_145751.mp4", + "https://cdn.discordapp.com/attachments/763851749164974081/1084196067136000113/anl_1.mp4.mp4", + "https://cdn.discordapp.com/attachments/763851749164974081/1072732899532615730/MerryYouthfulNightcrawler.mp4", + "https://cdn.discordapp.com/attachments/1080120257588514906/1088957461861507152/Porn_Gir5-1620988699852021760-20230202_063317-vid1.mp4", + "https://media.discordapp.net/attachments/559955668316979242/1014468684330324058/COUPLE_DATING__20220831_2.mp4", + "https://cdn.discordapp.com/attachments/1017491171783741480/1061396469535477791/RotatingExcitableMassospondylus.mov", + "https://cdn.discordapp.com/attachments/1017491171783741480/1061395490501050480/VID_20220509_124710_169.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1093225006441435136/RDT_20230405_171534.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1096062076037910558/video_2021-06-15_16-31-18.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1096428494600282202/VID_20230405_231338_565.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1097164545706967151/Bfapf6ZpBtFOdBb9.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1097163953479626752/0gx76t1wgzk7fn2hliy9v_source-VEV6Ba1O.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1097494763248304218/2_5317055210483360648.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1097385065987723405/414P7BJ.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1100085306608336956/VID_20230424_183833_666.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1100087910981701702/VID_20230424_185335_993.mp4", + "https://cdn.discordapp.com/attachments/980061519536599080/1002899878340468817/555198055062_status_1b610b7ca9b646fa80147caf64d0e5e1.mp4", + "https://cdn.discordapp.com/attachments/1080120943944417380/1087670625352552501/psy33.mp4", + "https://cdn.discordapp.com/attachments/1080120943944417380/1087670624920547438/VID_20220608_225036_974.mp4", + "https://cdn.discordapp.com/attachments/1080120943944417380/1087670624283000892/VID-20201229-WA0006.mp4", + "https://cdn.discordapp.com/attachments/1080120943944417380/1087670625771978792/psy32.mp4", + "https://cdn.discordapp.com/attachments/1080120943944417380/1087670626652782654/psy6.mp4", + "https://cdn.discordapp.com/attachments/1080120943944417380/1087670626208190494/psy8.mp4", + "https://cdn.discordapp.com/attachments/1080120943944417380/1087670627135131668/psy1.mp4", + "https://media.discordapp.net/attachments/763851801346572298/1088270740844978237/QuarrelsomeAcclaimedCusimanse-mobile_1.mp4", + "https://cdn.discordapp.com/attachments/979103092266123264/1013923474735120464/1658809192167021.webm", + "https://cdn.discordapp.com/attachments/969922585053765652/976954565477929002/DASH_1080_-_2022-04-04T113153.436.mp4", + "https://cdn.discordapp.com/attachments/969922585053765652/975048128375947355/RFT_7.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1100373852153987083/RDT_20230425_144651.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1100373669466873956/RDT_20230425_144948.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1100271770872848435/2_5226942544595661533.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/1101137031133921370/rapidsave.com_FJBmSvI.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/1101137030248935566/RDT_20230427_154438.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/1101137030697717860/RDT_20230427_154737.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1102606880095862824/Nickiitheboss_Fitness_Models__Short_Video720P_HD.mp4", + "https://cdn.discordapp.com/attachments/1095415507034832926/1095417767240421508/SpecificFlusteredBlueshark.mp4.mp4", + "https://cdn.discordapp.com/attachments/1095415507034832926/1095417913227358218/InsubstantialMeatyWhitepelican-mobile.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1100548746917449798/WhatsApp_Video_2023-04-24_at_17.16.31.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1100824821950066819/WHnEuRG.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1100824822650507315/D5YWPwD.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1100824823569068032/kek6EDS.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1100824824168849488/RbGN06x.mp4", + "https://cdn.discordapp.com/attachments/1080120829989372036/1086285164038074499/InShot_20230315_183729717.mp4", + "https://cdn.discordapp.com/attachments/1080120829989372036/1086285165522853888/InShot_20230316_190552472.mp4", + "https://cdn.discordapp.com/attachments/1080120829989372036/1088951745549434971/ass.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020896/1079027789094727690/BEST_SEX_33.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020896/1079027814214414346/BEST_SEX_37.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020896/1079027823261515816/BEST_SEX_2.mov", + "https://cdn.discordapp.com/attachments/1070739028586020896/1079027822816936046/BEST_SEX_1.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020896/1079027823693537461/BEST_SEX_39.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020896/1079027829490065510/BEST_SEX_4.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020896/1079027827845898290/BEST_SEX_5.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020896/1079027828986744892/BEST_SEX_3.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020896/1079027834405793842/BEST_SEX_1.mov", + "https://cdn.discordapp.com/attachments/1070739028586020896/1079027833499824210/BEST_SEX_6.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1091641775715790929/VID_20230401_143340_888.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1096843592741425274/DASH_1080_1.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1096797201474261055/AnaCams_d0f7d5c39805a16f92119cdfb605815e-dBgOpcYP.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1097013222302810182/VID_20230416_101831_959.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1097163836420784279/CAzQcSVrhAaLysNO.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1097221467143413891/wXfa0yE.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1100374151069437984/RDT_20230425_144112.mp4", + "https://media.discordapp.net/attachments/788255701809627156/1100374095226486914/RDT_20230425_144121.mp4", + "https://cdn.discordapp.com/attachments/1073583601045733427/1078382188871041084/Brazzers_Amateur_48.mp4", + "https://cdn.discordapp.com/attachments/1073583601045733427/1078382189491789946/Brazzers_Amateur_54.mp4", + "https://cdn.discordapp.com/attachments/1073583601045733427/1073607935554498561/brazzers.amateur11.mov", + "https://cdn.discordapp.com/attachments/1073583601045733427/1073607936686948372/pRFCEYw_-_Imgur.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1097184503388188694/adnettr.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1096909673585713192/ncPtbw6_2.mov", + "https://media.discordapp.net/attachments/786127715769909249/1096885271951323206/RDT_20230324_173929_1.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1096800520787738685/jwNa2JPW_720p.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1097338887602446356/VID_20230417_045220_216.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1097292023742079037/discordggifsaturk.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1097304785339818054/RDT_20230417_021109.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1097263621098192936/VID_20230417_015329_726.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1097526535575056494/1681740985450.mp4", + "https://cdn.discordapp.com/attachments/1080121537576833174/1091306667691479081/ssstwitter.com_1664032884202.mp4", + "https://cdn.discordapp.com/attachments/1080121537576833174/1094008940339146782/vahsi_clgn_binicilik_xHamster.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1100489884176756846/video0.mp4", + "https://media.discordapp.net/attachments/763860707544137759/1100882468153851954/Being_a_stepsister_is_so_HARD_I_have_to_fuck_my_stepbrother_all_the_time_www.saveporn.net.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1053711109317722112/ssstwitter.com_1669566400614.mp4", + "https://cdn.discordapp.com/attachments/1073583601045733427/1078382187642093659/Brazzers_Amateur_60.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1097222257664852069/anna.ralphs-2022-01-08-2324071917-Guys-a-new-video-is-ready-JF2NBbZ6AZr7lZyx44h4jPJHOdRwpMEK.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/946303107585933322/PaltryMiserlyTapaculo-mobile.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/946303107212673034/ImpoliteInsignificantCrab-mobile.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/927775999893053450/CFNetworkDownload_Ofxrcx.tmp.mp4", + "https://media.discordapp.net/attachments/950113747505123388/950127840635015178/video0-6.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/953521401749459024/VID_20220316_000311_664.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/1078870103770271824/OccasionalCheeryLangur-mobile.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1077582879032344646/twitter_20230221_155127.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/926994505486446592/madbl.pushurdate.com-eae02f020989efd14bb539857cb12a05mp4.mp4", + "https://media.discordapp.net/attachments/976381365207568404/1005917217755517028/86_Tikt0k_Nud3Cloud2_Telegram.mp4", + "https://media.discordapp.net/attachments/975391330874327080/1006143344923132036/RFS_3.mp4", + "https://media.discordapp.net/attachments/975391330874327080/1006143334189907998/WhatsApp_Video_2021-09-01_at_22.32.22.mp4", + "https://media.discordapp.net/attachments/975391330874327080/1006143373125627984/ClearLowBlackandtancoonhound-mobile.mp4", + "https://media.discordapp.net/attachments/975391330874327080/1006143374044172288/VID_20220721_182442_603.mp4", + "https://media.discordapp.net/attachments/975391330874327080/1006143376325873674/SpecificFlusteredBlueshark.mp4.mov", + "https://media.discordapp.net/attachments/975391330874327080/1006143374170005584/1657254241800.mp4", + "https://media.discordapp.net/attachments/975391330874327080/1006143373767344128/-3520466069656980655.mp4", + "https://cdn.discordapp.com/attachments/829098486698999828/835125471447482408/BiodegradableGlisteningAustralianfurseal-mobile.mp4", + "https://media.discordapp.net/attachments/963003219997499392/985651272852054036/Snapchat-1727673714.mp4", + "https://media.discordapp.net/attachments/963003219997499392/985651271300161536/Snapchat-1080360193.mp4", + "https://cdn.discordapp.com/attachments/959558716854784021/959573102134714368/video-1596523421-1.mp4", + "https://cdn.discordapp.com/attachments/969690812239720499/975042999635570738/RFS_4.mov", + "https://cdn.discordapp.com/attachments/969690812239720499/976945131632615494/DASH_1080_1.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/998210598393360415/Ia74ZKC7VJhDJ_q2.mp4", + "https://cdn.discordapp.com/attachments/852638828401393755/998210570350235738/pin9XBtp3d_ecd-t.mp4", + "https://media.discordapp.net/attachments/976381365207568404/1005253558620405851/TheAmengers_3.mp4", + "https://media.discordapp.net/attachments/816406926673182800/960632557106516008/sweetie_ass__3.mp4", + "https://media.discordapp.net/attachments/976381365207568404/1005253599099629588/viddit_00832ba1.mp4", + "https://cdn.discordapp.com/attachments/971504033766457364/974392273280303144/madebyphub_Sar_Klf_Tofas_001.mp4", + "https://cdn.discordapp.com/attachments/971504033766457364/974392348618407936/872485e4-c52f-4629-aa82-9bf44b56c12c.mp4", + "https://cdn.discordapp.com/attachments/829098110050631690/873954300483751946/Redhub_2.mp4", + "https://cdn.discordapp.com/attachments/990364215128760360/1076135237400150046/Brazzers_Turkish63.mp4", + "https://cdn.discordapp.com/attachments/990364215128760360/1076865728835227728/4_6010132463836204379.mp4", + "https://cdn.discordapp.com/attachments/763787095071916123/805410560375128104/2_5197533125403477617.mp4", + "https://cdn.discordapp.com/attachments/350628478196121600/851143322240024626/iwKu8K_f14D9TMZh.mp4", + "https://media.discordapp.net/attachments/976381355753603132/1022602502014783638/Snapchat-1471465123.mp4", + "https://media.discordapp.net/attachments/976381355753603132/1023179293188169769/twitter_20220430_204008.mp4", + "https://media.discordapp.net/attachments/976381355753603132/1023179318014259241/VID_20200425_002609_644.mp4", + "https://media.discordapp.net/attachments/976381355753603132/1023179318521757736/video0-36.mp4", + "https://media.discordapp.net/attachments/976381355753603132/1023179319163506748/Snapchat-1569004506.mp4", + "https://media.discordapp.net/attachments/963008337690128415/963398246582063124/video0-48.mp4", + "https://media.discordapp.net/attachments/899376193239912478/1005648505433489448/video0.mp4", + "https://media.discordapp.net/attachments/976381354646331413/1006544543375704094/EPORNER.COM_-_rgw2ZeKqNI1_Octokuro_Video_Porno_Masturbandose_1080.mp4", + "https://media.discordapp.net/attachments/976381354646331413/1026939111019388988/photok_export_VID_38041207_222300_617.mp4", + "https://media.discordapp.net/attachments/976381354646331413/1026939147274948608/photok_export_iremmm1524-20220913-0001.mp4", + "https://cdn.discordapp.com/attachments/863619521779990535/892224995135213598/video0.mov", + "https://cdn.discordapp.com/attachments/863619521779990535/877395961721282560/video0.mov", + "https://cdn.discordapp.com/attachments/863619521779990535/874856509383770142/video0.mov", + "https://cdn.discordapp.com/attachments/863619521779990535/869538289550499910/video0-2-2.mp4", + "https://media.discordapp.net/attachments/1001618597069737994/1015769987513847919/1625778083429.mp4", + "https://media.discordapp.net/attachments/999056947506593862/1035988481027080325/Sparky29430221_1457418075591036934720P.mp4", + "https://cdn.discordapp.com/attachments/998331826902941749/1012297616844918804/SexHouseTurkish3.mp4", + "https://cdn.discordapp.com/attachments/998331826902941749/1012297615838298152/SexHouseTurkish4.mp4", + "https://cdn.discordapp.com/attachments/998331826902941749/1012297440881295430/SexHouseTurkish5.mp4", + "https://media.discordapp.net/attachments/971503829298327582/972589868360282172/1507207462381752323264P.mp4", + "https://media.discordapp.net/attachments/971503829298327582/972589697371103302/VID_20220324_010017_168.mp4", + "https://media.discordapp.net/attachments/971503829298327582/972589868964274205/trim.070D2459-79C6-4519-93D6-60F080BE9DE7.mov", + "https://media.discordapp.net/attachments/971503829298327582/972589697090064435/VID_20220324_000911_969.mp4", + "https://cdn.discordapp.com/attachments/976381349395050526/1011781084649885756/Brazzers_Public1219.mp4", + "https://cdn.discordapp.com/attachments/976381349395050526/1011781084305956956/CloseScarceTapir-mobile.mp4", + "https://cdn.discordapp.com/attachments/976381349395050526/1011781083995586640/SweatyIcyWaterthrush-mobile.mp4", + "https://cdn.discordapp.com/attachments/976381349395050526/1011781083462910032/AlvDPJXDLAGmnS8JjlyFB92pFQueXRJ4-2.mp4", + "https://cdn.discordapp.com/attachments/976381349395050526/1010674389789974528/6-y0LKCcl.mp4", + "https://media.discordapp.net/attachments/921446271359783012/962463265114439720/public_enez.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/792295289661947914/Muslim_MILF_Fucks_Teen_Cock_In_Gym-_Anissa_Kate.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/792295851203493908/Hot_muslim_slut_in_hijab_cant_wait_any_longer_and_needs_a_cock_before_her_marria.mp4", + "https://cdn.discordapp.com/attachments/969279996805939260/977967000318017546/rfsfeet5.mp4", + "https://cdn.discordapp.com/attachments/969279996805939260/975476424305680394/RFSfeet3.mp4", + "https://cdn.discordapp.com/attachments/831898075315437588/890890263365570600/FranXX.mp4", + "https://cdn.discordapp.com/attachments/794094661723095040/955033077606932540/2_5292232631679718402.mp4", + "https://media.discordapp.net/attachments/821808057880543284/854723506809864222/pornbel_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1088944654940127292/VID_20230324_233807_719.mp4", + "https://media.discordapp.net/attachments/542579140931354624/1093224054653194390/xvideos.com_fc953b2753a2778c307350342a48a17d.mp4", + "https://media.discordapp.net/attachments/976381343174897664/1006169730173911050/video0.mp4", + "https://media.discordapp.net/attachments/1091500487016194138/1093219141298704504/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802047/1070789308782481448/BEST_PORN_1.mov", + "https://cdn.discordapp.com/attachments/971796887600525333/986366303105331260/xvideos.com_dd3478d139dc78d2f9c247e3d93cf2b4.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/801709714366005258/the_shy_son_and_the_busty_mom.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/802056302733688853/Hot_Stepmom_Brianna_Rose_Cleans_Off_Her_Clumsy_Stepson.mp4", + "https://cdn.discordapp.com/attachments/1065229502235553902/1074432918346268742/8c0ddd10d2b2a871804fe8fa56cc0517015c5e73c5ea9ae59edcf485ee36d804.webm", + "https://cdn.discordapp.com/attachments/1065229502235553902/1074433163855675563/36075341a.webm", + "https://cdn.discordapp.com/attachments/1065229502235553902/1074433173292859472/41478071a.webm", + "https://media.discordapp.net/attachments/899763415508221985/995553056747954176/GrayEssentialHerald.mp4", + "https://cdn.discordapp.com/attachments/901698775226146856/1080071378134380617/cm-chat-media-video-10a9321af-278d-52d3-987b-180ad4121f873300.MOV", + "https://cdn.discordapp.com/attachments/901698775226146856/1075964733322166372/RDT_20230212_010452.mp4", + "https://cdn.discordapp.com/attachments/1025001315316797480/1060217492754137178/pussy_boy_he_him_on_Twitter-_-Ive_been_nominated_for_best_ftm_star_for_GayVNAwards_GAYVN__Make_sure_to_vote_for_your_favorite_creators_EVERY_DAY_https-__t.co_MBXyZO3ziC-___Twitter.mp4", + "https://cdn.discordapp.com/attachments/979103092266123264/1021218299532550174/FUCKING_my_stepSISTERs_SLUTTY_holes_MP4_High_Quality.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/780259209513664522/Trickery_-_Blue_Hair_Teen_Jewelz_Blu_Tricks_Student_Into_Sex.mp4", + "https://cdn.discordapp.com/attachments/884802196573679706/902716386625867886/Step_Sisters_BFF_Are_you_going_to_play_with_your_present.mp4", + "https://cdn.discordapp.com/attachments/910073467733438505/1009631508950159430/xvideos.com_d224d725ee567df8bca56a8e8a1c76ef.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/959639288671252520/PervMom_-_Mommy_Loves_Her_Stepsons_Dick.mp4", + "https://cdn.discordapp.com/attachments/876734202802995221/901996702167339148/Making_Riley_Reid_Squirt.mp4", + "https://media.discordapp.net/attachments/971503203466248272/991281963094782062/Tcheca_com_corpo_escultural_transando_por_dinheiro.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/813346453224816711/xvideos.com_6e23c150b57bdd39f247ac510a5844eb.mp4", + "https://media.discordapp.net/attachments/800248614772539443/1097186591212064819/12uenjvqeb.mp4", + "https://media.discordapp.net/attachments/998331826433171511/1013163721364885504/SEXHOUSE_MASTURBATION.mp4", + "https://media.discordapp.net/attachments/998331826902941752/999004137683435570/SexHouseSquirt113.mov", + "https://media.discordapp.net/attachments/998331826902941752/999003674942648381/SexHouseSquirt101.mov", + "https://cdn.discordapp.com/attachments/1017868780849868802/1039409838297452575/This-is-sensitive-1-1.mp4", + "https://cdn.discordapp.com/attachments/998331826433171510/1011244154476576778/1658138150860205.mp4", + "https://media.discordapp.net/attachments/998331826433171511/1056700300074950686/videomast.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1097888258446348328/RDT_20230418_171536.mp4", + "https://cdn.discordapp.com/attachments/997622744063676517/1010307466908663828/KPLt4j2.mp4", + "https://cdn.discordapp.com/attachments/901698775226146856/1083555215564886078/VID_20230309_195740_698.mp4", + "https://cdn.discordapp.com/attachments/901698775226146856/1082831472500682792/VID_20230307_193325_631.mp4", + "https://cdn.discordapp.com/attachments/901698775226146856/1082757623549546496/5_6183962619372635227.mp4", + "https://media.discordapp.net/attachments/998331826433171514/1015178145416105984/trim.61A200C1-A293-425E-BE2B-9CDADF8A724F.mov", + "https://media.discordapp.net/attachments/998331826433171511/1002940105264218183/SEXHOUSE_Masturbation9.mp4", + "https://realbooru.com/images/31/c0/31c0761a65f88ac14a766eb3ddb78f4b.webm", + "https://cdn.discordapp.com/attachments/1001888583168307371/1064604518962188399/VID_20210723_022331_465-1.mp4", + "https://cdn.discordapp.com/attachments/800248614772539443/967148503992242216/t5g5ka_533Mdpsg3.mp4", + "https://cdn.discordapp.com/attachments/800248614772539443/1102090157240369212/WFtXRDA5z5t3ju0V.mp4", + "https://cdn.discordapp.com/attachments/800248614772539443/1101638832891379732/QPoP6FG.mp4", + "https://cdn.discordapp.com/attachments/800248614772539443/1103767932129005688/VID_20230504_223924_272.mp4", + "https://cdn.discordapp.com/attachments/1002006043188007002/1076642051514454107/brazzers_discord_10.mov", + "https://cdn.discordapp.com/attachments/976381359520112670/1007874020403851324/YouthfulIvoryHawaiianmonkseal-mobile.mp4", + "https://media.discordapp.net/attachments/836605277108305961/865860039243857970/Franxx.mp4", + "https://cdn.discordapp.com/attachments/667586190894956570/880177520694157363/video0.mov", + "https://cdn.discordapp.com/attachments/1004852241804574880/1020395176633565204/discord_20.mp4", + "https://cdn.discordapp.com/attachments/1004852241804574880/1020391457414189196/discord_29.mp4", + "https://media.discordapp.net/attachments/836605277108305961/874613005827063868/FranXX.mp4", + "https://media.discordapp.net/attachments/832658295339876362/942980919134920744/VividGleefulXerus-mobile.mp4", + "https://media.discordapp.net/attachments/832658295339876362/1017266085692702750/9RaoSRyCtVU2uUiE.mp4_tag14.mp4", + "https://media.discordapp.net/attachments/975394785433108510/1006143562255192084/1657985037603.mp4", + "https://cdn.discordapp.com/attachments/509492599267262474/1098147346472251514/ScientificDangerousClumber.mp4", + "https://cdn.discordapp.com/attachments/1004852241804574880/1020395181201178654/discord_17.mp4", + "https://cdn.discordapp.com/attachments/1070739028586020899/1079031935633985688/BEST_SEX_8.mp4", + "https://cdn.discordapp.com/attachments/686780791191109636/1096449151903993947/SexHouse_Public57.mp4", + "https://cdn.discordapp.com/attachments/849299698618597407/877419724647043072/WorthlessSlushyPanther-mobile.mp4", + "https://cdn.discordapp.com/attachments/1004853584883622028/1020343903196565604/discord.ggssex_17.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639534658584576/WideeyedCleverLeopard-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639610470649936/RemoteHelplessXiphosuran-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639610856505376/RundownPureRedpoll-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639611204644894/RunnyAffectionateOxen-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639611548581989/SupportiveUnripeAfricanwildcat-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639665793519616/JointSaneZebraswallowtailbutterfly-mobile.mp4", + "https://cdn.discordapp.com/attachments/971503215252221984/1045376516835520632/IMG_7351.mp4", + "https://cdn.discordapp.com/attachments/1004851938740936835/1020374600514814083/discord_9.mp4", + "https://cdn.discordapp.com/attachments/1004851938740936835/1020376514946142298/discord_60.mov", + "https://cdn.discordapp.com/attachments/1004851938740936835/1020376515432689746/discord_51.mov", + "https://cdn.discordapp.com/attachments/1004851938740936835/1020376516191862784/discord_52.mov", + "https://cdn.discordapp.com/attachments/1004851938740936835/1020376516766466078/discord_53.mov", + "https://cdn.discordapp.com/attachments/715597787420426260/827332511758680114/Step-Sis_Caught_Masturbating_During_Yoga_Session.mp4", + "https://cdn.discordapp.com/attachments/894660646464004148/995784569657769994/dvjvo8chzja91.mp4", + "https://cdn.discordapp.com/attachments/965351276688855081/965357282533736498/Brazzers_Bdsm11.mp4", + "https://cdn.discordapp.com/attachments/996105005364945026/1031395516157796372/momsteachsex_i_fucked_my_step_mom_on_mothers_day_trailer_480_1.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639532578226279/WingedFalseSolenodon-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639532917956638/AppropriateGrayEmperorshrimp-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639533433847929/VoluminousOrderlySable-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639533840711700/WealthyStunningPika-mobile.mp4", + "https://cdn.discordapp.com/attachments/1005240811698532543/1009639534285312000/WelltodoSeveralYnambu-mobile.mp4", + "https://cdn.discordapp.com/attachments/942237158972985385/966827120980533278/FaithfulBuoyantAmericancrocodile-mobile.mp4", + "https://cdn.discordapp.com/attachments/942237158972985385/966826788422570074/MediumorchidTurbulentXuanhuasaurus-mobile.mp4", + "https://cdn.discordapp.com/attachments/942237158972985385/966824536995668049/StraightShockedServal-mobile.mp4", + "https://cdn.discordapp.com/attachments/1001888583168307371/1076628248613638164/images_41.png", + "https://cdn.discordapp.com/attachments/1001888583168307371/1076628251016970341/unknown_3.png", + "https://cdn.discordapp.com/attachments/1001888583168307371/1076628288451121202/images_40.png", + "https://cdn.discordapp.com/attachments/1001888583168307371/1076630196398067733/3553373840965729900.mp4", + "https://cdn.discordapp.com/attachments/1001888583168307371/1076634505932177408/976207.mp4", + "https://cdn.discordapp.com/attachments/988401447609708564/990042611060449360/lela_big_ass_anal.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/806010765432979516/Angelina_Jolie_cougar_POV.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/785404474516570143/Teen_Aubry_With_Braces_Lets_Stepbrother_Cum_In_Her_Mouth.mp4", + "https://cdn.discordapp.com/attachments/921112062162272338/958322102577033257/trim.848FCC92-8C28-4434-BABB-40281244CA84.mov", + "https://cdn.discordapp.com/attachments/1099034799496241272/1102006761851998370/VID-20230430-WA0164.mp4", + "https://cdn.discordapp.com/attachments/1073583648588181604/1073683256458891295/VID_20230202_214634_289.mp4", + "https://cdn.discordapp.com/attachments/979103092266123264/1015769452257742938/RedThickNewtnutria-mobile.mp4", + "https://cdn.discordapp.com/attachments/763851749164974081/1085564480789946549/VID_20230314_190623_316.mp4", + "https://cdn.discordapp.com/attachments/1073583590916501565/1073606355082039457/NudeVilla_Premium_Ass_1.webm", + "https://media.discordapp.net/attachments/829124344985944075/1105883571035574273/IMG-5393.jpg", + "https://media.discordapp.net/attachments/829124344985944075/1105883571299811399/IMG_20230410_151956.jpg", + "https://media.discordapp.net/attachments/829124344985944075/1105883571568250900/IMG_20230505_193034_969.jpg", + "https://media.discordapp.net/attachments/829124344985944075/1105883571874443324/IMG_5708.png", + "https://media.discordapp.net/attachments/829124344985944075/1105883572449054883/IMG_5906.png", + "https://media.discordapp.net/attachments/829124344985944075/1105883437186961498/IMG_6009.jpg", + "https://media.discordapp.net/attachments/829124344985944075/1105883437463765122/IMG_6016.jpg", + "https://media.discordapp.net/attachments/829124344985944075/1105883437732208751/IMG_6022.jpg", + "https://media.discordapp.net/attachments/829124344985944075/1105883438009045092/IMG_6028.jpg", + "https://media.discordapp.net/attachments/829124344985944075/1105883438344568973/IMG_6035.jpg", + "https://media.discordapp.net/attachments/763860707544137759/1100798547928043520/VID_20220924_145903_165.mp4", + "https://cdn.discordapp.com/attachments/1080121537576833174/1098190697212940350/ltZoom67-1648389511490211840-20230418_211419-vid1.mp4", + "https://media.discordapp.net/attachments/786127715769909249/1096456499959693484/baddy8k-1681068421545.mp4", + "https://media.discordapp.net/attachments/818465976139776000/1108780810036854824/HKd8N2qePGN5jx94.mp4", + "https://cdn.discordapp.com/attachments/1080120257588514906/1088754326522056754/masne_skarpetki_i_okulary.mov", + "https://cdn.discordapp.com/attachments/715597787420426260/825218144715931698/Busty_Buffy_gets_rewarded_with_cumshot_for_titjob.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620890277679134/OnlyGods_13.mp4", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620891158491267/video0-6.mov", + "https://cdn.discordapp.com/attachments/1015405107917094932/1076620888574800002/OnlyGods_3.mov", + "https://cdn.discordapp.com/attachments/1107001683151691846/1107020933652304003/onlyporn_anal_3_2.mp4", + "https://cdn.discordapp.com/attachments/800248614772539443/1088024805770539008/Snapchat-447053934.mp4", + "https://cdn.discordapp.com/attachments/800248614772539443/1088036869792604240/received_522299100065900.mp4", + "https://cdn.discordapp.com/attachments/800248614772539443/1088037002420699156/InShot_20230322_124049818.mp4", + "https://cdn.discordapp.com/attachments/800248614772539443/1031625503339192441/VID_20220412_005634_324-1.mp4", + "https://cdn.discordapp.com/attachments/1115354841942851594/1118505481418317844/5bhqHRW-Uq1E-RQF.mp4", + "https://media.discordapp.net/attachments/1049359457836085308/1096859069194698812/onlyyfeett1-1645819053989085184-20230411_190014-vid1.mov", + "https://media.discordapp.net/attachments/1049359457836085308/1096859095258103948/DeEifAv.mov", + "https://media.discordapp.net/attachments/1049359457836085308/1097453364251467817/littlemisssole-1644724504164270080-20230408_183053-vid1.mp4", + "https://media.discordapp.net/attachments/1049359457836085308/1098151754949992578/04oBs54.mp4", + "https://media.discordapp.net/attachments/1049359457836085308/1097668150436298762/05ef75b2e7a47dbe687a13a8c2f9ca2b.mp4", + "https://media.discordapp.net/attachments/1049359457836085308/1098252379540951092/-5908808658156895074_121.jpg", + "https://media.discordapp.net/attachments/1049359457836085308/1098263877139038208/4_5908808657700655192.mp4", + "https://media.discordapp.net/attachments/1049359457836085308/1099093005002092574/1835x3264_f98e27c9a507f31a468b82d0a865e115.jpg", + "https://media.discordapp.net/attachments/1049359457836085308/1099825379889389568/1-jqScrAP1.mp4", + "https://media.discordapp.net/attachments/1049359457836085308/1099900629129908314/f60d9f806109f13b55caff212260a303.mp4", + "https://media.discordapp.net/attachments/1049359457836085308/1099958038170980432/f92259099ac332aefc18550b03566a66.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517322329698504/BEST_SEX_5.mov", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517320194789426/BEST_SEX_12.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517320563900527/BEST_SEX_13.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517321222402088/BEST_SEX_14.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517326259757207/BEST_SEX_11.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/1005866986762412093/video-1655143176.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/992048031581089822/Untitled_1.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/1006292536299630602/yzu4lB0.mp4", + "https://cdn.discordapp.com/attachments/988851856182767655/1006292526900199557/BubblyDownrightRook-mobile.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1070791435361730620/BEST_PORN_6.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1070791438222233682/BEST_PORN_12.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1070791735116042260/BEST_PORN_2.mov", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517325819359252/BEST_SEX_10.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517325446062091/BEST_SEX_3.mov", + "https://cdn.discordapp.com/attachments/1066334227257380937/1074372013931643040/AbandonedScornfulAlligator.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1068853431307079680/facesitting2.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1066835454932029581/facesitting2.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1068853431072215110/facesitting1.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1070383110715347104/facesitting1.MP4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1071499965181993050/video_2023-02-04_22-07-22.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1071502563515584752/Discord.mp4.ZonnaX.ZONNAX11.mp4", + "https://cdn.discordapp.com/attachments/1066334227257380937/1073697229241585714/video_2023-02-09_00-27-05.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966783984782680175/Brazzers_Facesitting_25.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966783995847278772/Brazzers_Facesitting_33.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966784001069162626/Brazzers_Facesitting_36.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966784009902379058/Brazzers_Facesitting_38.mp4", + "https://cdn.discordapp.com/attachments/978639868777336902/1068922764410486804/ssex_9.mov", + "https://cdn.discordapp.com/attachments/978639868777336902/1080812469263544330/Brazzers_Facesitting6573.mp4", + "https://cdn.discordapp.com/attachments/849310174048682024/888205155693109298/108858138416.gif", + "https://cdn.discordapp.com/attachments/1094410236519010304/1109187874571698316/Brazzers_Facesitting6573.mp4", + "https://cdn.discordapp.com/attachments/1094410236519010304/1109187875104362576/Brazzers_Facesitting_33.mp4", + "https://cdn.discordapp.com/attachments/1094410236519010304/1109187875892899861/Brazzers_Facesitting_38.mp4", + "https://cdn.discordapp.com/attachments/1094410236519010304/1109187876249419837/Brazzers_Facesitting_1.mp4", + "https://cdn.discordapp.com/attachments/1094410236519010304/1109187548628127795/NIRVANA_GANK_BANG_23.mp4", + "https://cdn.discordapp.com/attachments/1094410236519010304/1109187549609611355/NIRVANA_GANK_BANG_38.mp4", + "https://cdn.discordapp.com/attachments/1094410236519010304/1109187551316676659/BoilingFelineGuillemot-mobile.mp4", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517315467817040/BEST_SEX_1.mov", + "https://cdn.discordapp.com/attachments/1070790506126254100/1076517313739763842/BEST_SEX_1.mp4", + "https://cdn.discordapp.com/attachments/801561599197315072/802026323027034122/35119702a.webm", + "https://cdn.discordapp.com/attachments/801561599197315072/802026228696875048/16512111a.webm", + "https://cdn.discordapp.com/attachments/1009533530075824231/1045576955996672060/video0-1L2774446.mp4", + "https://cdn.discordapp.com/attachments/1009533530075824231/1068703715571277865/discord.gg-intihar_8.mp4", + "https://cdn.discordapp.com/attachments/978639868777336902/999302366757126194/BoilingFelineGuillemot-mobile.mp4", + "https://cdn.discordapp.com/attachments/978639868777336902/999302373778411550/fsqwq4.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966784017846378586/Brazzers_Facesitting_1.mp4", + "https://cdn.discordapp.com/attachments/966756085002272806/966783980143792228/Brazzers_Facesitting_30.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/996582053699133480/c69971687376041e9d2ba88f00a3ce78.webm", + "https://media.discordapp.net/attachments/788255806419763200/1005675434526126241/trim.17CD37C1-2E45-4E85-8DB5-7ADBDC5A7871.mov", + "https://cdn.discordapp.com/attachments/510327343299166209/1115039094402191430/RDT_20230604_165547.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/1113843426862055464/20230601_080101.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1113915470349881535/screen-20230529-0802532.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/1113971780026105876/IMG_4275.jpg", + "https://cdn.discordapp.com/attachments/788255701809627156/1113971845968961636/IMG_20220902_032140_142.mp4", + "https://cdn.discordapp.com/attachments/788255701809627156/1113978716935172186/8600021128815360344.mp4", + "https://cdn.discordapp.com/attachments/997618499499348108/999424591334215742/InsubstantialMeatyWhitepelican-mobile.mp4", + "https://cdn.discordapp.com/attachments/997618499499348108/999424637702258798/ivthpPGBse6CVkh5.mp4", + "https://cdn.discordapp.com/attachments/997618499499348108/999424653732872242/2T69921BHqUYeyeo.mp4", + "https://cdn.discordapp.com/attachments/1064991814609797262/1098269803216646194/4_5908808657700655194.mp4", + "https://media.discordapp.net/attachments/988851855692017670/1065117092329828402/received_1524600944559003.mp4", + "https://media.discordapp.net/attachments/1099285718733434935/1099641015268282368/HollowDecisiveAnemone-mobile.mov", + "https://media.discordapp.net/attachments/1099285718733434935/1099641091403300874/rt5WpBS.mov", + "https://media.discordapp.net/attachments/1099285718733434935/1099641091990499328/UpBGYQrfdKrKsr32.mov", + "https://media.discordapp.net/attachments/1099285718733434935/1099641092376367104/yil7u3nZzaAAmj9X.mov", + "https://cdn.discordapp.com/attachments/1023544799288111205/1037463407122722866/DefinitiveRightShearwater-mobile.mp4", + "https://media.discordapp.net/attachments/1023544799288111205/1056884686942634004/4b04d851-8a2b-4e83-bc69-6118d02c62fa.mp4", + "https://cdn.discordapp.com/attachments/1093554872466546800/1094209751128223884/hardcore_4.mp4", + "https://cdn.discordapp.com/attachments/977623660544274463/983058606318567434/telegram_video-20-1.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1103768371994054676/VID_20230504_224115_070.mp4", + "https://cdn.discordapp.com/attachments/976381347436298281/984019328808669184/EAEBEA40-E070-45DF-A4CA-2C96C07FE8EB-2222-000001403584EB45.mov", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098380298393235486/DirtyVidsFH-1644874021928927235-20230409_042501-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1098161154800488528/ltZoom67-1647504038043459588-20230416_103546-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1097250517232652380/DatingU18-1647249148570214402-20230415_174256-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080122103405232218/1096189994835640330/mahi__si-1645066003997679618-20230409_170753-vid1.mp4", + "https://cdn.discordapp.com/attachments/901753273722212364/920865258246119465/DASH_720.mp4", + "https://cdn.discordapp.com/attachments/947851579510374400/949486377576321084/Z5JUe0n.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1085752149608243310/twitter_20230315_211248.mp4", + "https://cdn.discordapp.com/attachments/788255806419763200/1084189547769901066/RDT_20230311_220115.mp4", + "https://cdn.discordapp.com/attachments/985489487859687427/989172910683979776/PaleStingyImperialeagle-mobile.mp4", + "https://cdn.discordapp.com/attachments/985489487859687427/989172721558650880/LightyellowIntentCoypu-mobile.mp4", + "https://cdn.discordapp.com/attachments/860114896817618975/870732829468803113/video_2021-07-30_20-42-37.mp4", + "https://cdn.discordapp.com/attachments/860114896817618975/867336232584871956/31.mp4", + "https://cdn.discordapp.com/attachments/860114896817618975/874352563510706296/IMG_7949.MP4", + "https://cdn.discordapp.com/attachments/860114896817618975/877955736523669514/2_5332374358100806388.mp4", + "https://cdn.discordapp.com/attachments/972521917229695007/972579378338885662/xvideos.com_d38a8786d983d2af25eabaa9d6d03529_442.mp4", + "https://cdn.discordapp.com/attachments/985489487859687427/989172802764562462/d83YbJk.mp4", + "https://cdn.discordapp.com/attachments/985489487859687427/988756454536257566/RY2I0k3.mp4", + "https://cdn.discordapp.com/attachments/1074739111371472959/1089096865112391760/discord-gg-bestporn-160.mp4", + "https://cdn.discordapp.com/attachments/1074739111371472959/1089906091854401607/discord-gg-bestporn-53.mp4", + "https://cdn.discordapp.com/attachments/1074739111371472959/1090660039112532028/discord-gg-bestporn-22.mp4", + "https://cdn.discordapp.com/attachments/1068798232274141254/1092857227259424818/discord-gg-bestporn-51.mp4", + "https://media.discordapp.net/attachments/664796892999319552/1076611147156967514/2fQHNixviCMVSCi9.mp4", + "https://media.discordapp.net/attachments/775711627982798858/824510388892074014/video0.mp4", + "https://media.discordapp.net/attachments/775711627982798858/851951520001032212/Marley_Brinx_Summons_a_BIG_DICK__Rips_Fishnets.mp4", + "https://media.discordapp.net/attachments/775711627982798858/881892770141335582/Busty_goth_Sheridan_gets_her_pussy_rammed.mp4", + "https://media.discordapp.net/attachments/775711627982798858/964240822486839366/SweatyElementaryAmericancicada.mp4", + "https://media.discordapp.net/attachments/775711627982798858/881892690227232878/Gothic_pinup_rides_cock.mp4", + "https://media.discordapp.net/attachments/775711627982798858/988828877914779648/TheseInternalMajungatholus-mobile.mp4", + "https://cdn.discordapp.com/attachments/295647862317121536/970944019221843968/trim.6FFF4C81-5798-4080-A759-76B2BE59E8E0.mov", + "https://cdn.discordapp.com/attachments/786127715769909249/1093223910767603762/InShot_20230405_191217066.mp4", + "https://media.discordapp.net/attachments/621071894786998282/889699286617583636/hot_sex77_1431441335471464449720P.mp4", + "https://cdn.discordapp.com/attachments/1035448270627024906/1043823740011688047/1494202492263211009720P.mp4", + "https://cdn.discordapp.com/attachments/1073584818866102354/1074630607553966110/xvideos.com_b41b12f039f896d5b9a8f37f587c96e3.mp4", + "https://cdn.discordapp.com/attachments/1073584818866102354/1074630606933213195/5CHajx0_-_Imgur.mp4", + "https://cdn.discordapp.com/attachments/1073584818866102354/1074630606450864148/xvideos.com_39c3ba549e4e1aca8fed52eafa307534.mp4", + "https://cdn.discordapp.com/attachments/1073584818866102354/1074630260668252242/32863842a.webm", + "https://cdn.discordapp.com/attachments/1073584818866102354/1074476850165854208/VID_20220928_222036_228.mp4", + "https://cdn.discordapp.com/attachments/1073584818866102354/1074476794947846244/HotWonderfulXenarthra-mobile.mp4", + "https://cdn.discordapp.com/attachments/1081979219342528623/1082570861623640095/VID_20230226_142242_450.mp4", + "https://cdn.discordapp.com/attachments/1081979219342528623/1082570861984354304/VID_20230226_142249_508.mp4", + "https://cdn.discordapp.com/attachments/800248614772539443/1111034393541226506/Bizzy-16.mp4", + "https://cdn.discordapp.com/attachments/800248614772539443/1111037903628423200/Bizzy-31.mp4", + "https://cdn.discordapp.com/attachments/1068798452726771772/1091424691039768585/2023-02-07_23-27-27_479484811732332547.mp4", + "https://cdn.discordapp.com/attachments/1080120943944417380/1087670628057886810/cachedVideo.mov", + "https://cdn.discordapp.com/attachments/980064220743868466/1002319005916344370/1658465748934368.mp4", + "https://cdn.discordapp.com/attachments/980064220743868466/1002319006323179520/1658465664674476.mp4", + "https://cdn.discordapp.com/attachments/980064220743868466/1002319131095335053/AttentiveMassiveFrog.mp4", + "https://cdn.discordapp.com/attachments/980064220743868466/1002319133662269460/1658138907280122.mp4", + "https://cdn.discordapp.com/attachments/980064220743868466/1002318769567301662/1658511519763653.mp4", + "https://cdn.discordapp.com/attachments/980064220743868466/1002318663740837938/1658504048350387.mp4", + "https://cdn.discordapp.com/attachments/980064220743868466/1002313831969730640/SsSmLuLrtp-TJjGa.mp4", + "https://cdn.discordapp.com/attachments/980064220743868466/1002313770862907403/RFS_Public_7.mp4", + "https://cdn.discordapp.com/attachments/924800868593848320/937888605362356234/4_5879530819126561350.mp4", + "https://cdn.discordapp.com/attachments/924800868593848320/937888681551863838/DASH_240-1.mp4", + "https://cdn.discordapp.com/attachments/1099073819215413398/1100769345770098748/discord.gg_hdporn_50.mov", + "https://cdn.discordapp.com/attachments/1099073819215413398/1100769312458932295/IckyCloseAfricangroundhornbill.mov", + "https://cdn.discordapp.com/attachments/1073584818866102354/1075185188088320070/VID_20220928_225321_420.mp4", + "https://media.discordapp.net/attachments/975392165750509648/997807605399433236/VID_20211125_104804_089.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1109276276549767258/1684445762862.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1116665695523045417/876491a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116665714883964948/11997941a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116665727986962514/3882341a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116910745754537984/VID_20230610_073250_390.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1116997870839668757/hvbv5fl.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1116997937873047623/S8HVSJW.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288731314827366/1_4938748881824383444.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288751770443786/thxg.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288800327893003/VID-20201210-WA0003.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288886504071290/Contractions_and_man...haYang_2.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288987595182201/VID_20220321_000403_857.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115289054511116318/SquirtingUltimateDeficientAzurevase-1.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115291331116412958/RwCLHTM.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115344198858715246/1685960482792.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115382222225150113/Zr3kr0FiXCXEaLGg.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115382273110442144/PowderblueIncredibleEmperorshrimp-mobile.mp4", + "https://cdn.discordapp.com/attachments/714524584522678312/1114416123170009088/RDT_20230602_235020.mp4", + "https://cdn.discordapp.com/attachments/714524584522678312/1114550463749177374/oh8z5a0naf3b1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114553878910865579/6f86c7ffb637533c7202fb3db9bbf698.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116141925964197940/WiseOutstandingSwan-mobile.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116585442503049257/twitter_1666682548188246016__1686255698868_twitter_1666682548188246016_Video_-_480p.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116639112552796230/5TBlM3xBICs8cGNX.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116685786797068369/lv_0_20220131181140.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116898455353303081/5_6165715459405515637.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1117002161633644544/377dbb6b-0c65-48d7-9fcd-f9f4e08be92d.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1115973725498646658/42196731a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1115973736647098418/38225921a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1115973780171411496/31559352a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1115999546259017738/3glUHRF.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1116141742798938292/40457491a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116141766253482014/42636411a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116270159091478528/18268901a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116270185926627338/6557461a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116447958460797019/trim.38554FB8-7BC0-4C78-B18D-F2F8AB19F5E2.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1077806134242574366/video_2023-02-20_23-08-01.MP4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1088073421193236530/RDT_20230302_100646.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095453357860200508/Video-10.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1088073417921671168/VID_20230315_212033_988.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1083611515007017062/video_2023-03-01_11-26-03.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1114724908644192316/www.douyin18_2753255549347717597.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288421246701759/1678943134834.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288507318014072/033aNa6BMspjohfSAdZIDoMc4SI6Tx5KSKqxXeigai4.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288535579234424/VID_20230226_043225_720.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288572203905144/SexHouseSquirt141.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288604613279754/EthicalWobblyHornedviper-mobile.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288711282819082/DampOddballPaddlefish-1.mp4", + "https://cdn.discordapp.com/attachments/976381355753603132/1023179293188169769/twitter_20220430_204008.mp4", + "https://cdn.discordapp.com/attachments/976381355753603132/1023179318521757736/video0-36.mp4", + "https://media.discordapp.net/attachments/1075537938533851197/1087832605090664578/xvideos.com_697a72ef20d4c2290e2388aa848606d3.mp4", + "https://media.discordapp.net/attachments/1075537938533851197/1087832605518479463/viddit_e3ceddab.mp4", + "https://cdn.discordapp.com/attachments/839920190854922300/980388694710173756/SereneWarlikeMallard.mp4?size=4096", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095529582700007434/UX2Th6cowsUTca7o.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095453493822758984/d8DFTrh.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095453358912974978/DefiniteMuddyAcaciarat.mp4", + "https://cdn.discordapp.com/attachments/976381355753603132/1023179319163506748/Snapchat-1569004506.mp4", + "https://cdn.discordapp.com/attachments/976381355753603132/1023179318014259241/VID_20200425_002609_644.mp4", + "https://cdn.discordapp.com/attachments/839920190854922300/980388529098084352/StaleTerrificBluetickcoonhound.mp4?size=4096", + "https://cdn.discordapp.com/attachments/839920190854922300/983007621890068491/5HmjgDw.mp4?size=4096", + "https://cdn.discordapp.com/attachments/839920190854922300/996767565365911582/InsubstantialEnlightenedOvenbird.mp4?size=4096", + "https://cdn.discordapp.com/attachments/839920190854922300/1010627601561301143/UnnaturalDarkslategrayBlackrussianterrier-mobile.mp4?size=4096", + "https://cdn.discordapp.com/attachments/839920190854922300/1004833172971868241/eICQrW2.mp4?size=4096", + "https://cdn.discordapp.com/attachments/1099073828937805846/1099134895038660749/xvideos.com_30447c85ffa81cea802dfd377d6d6a64.mov", + "https://cdn.discordapp.com/attachments/1099073828937805846/1099134802763989073/crDIlw9.mp4", + "https://cdn.discordapp.com/attachments/912913810606661632/914145757420982342/MajorPoliteAmericancrow-mobile.mp4?ex=65c77a14&is=65b50514&hm=4b271f1cde0af58db4929387b94939bfa2474dd352d6b4017e34fe4059dee46a&,https://cdn.discordapp.com/attachments/912913810606661632/914145757907550228/PalatableGrimyFoxterrier-mobile.mp4?ex=65c77a14&is=65b50514&hm=ae840303828633a091f1b15d88de1754fb8a2e3452559e1240a6544f98c082b9&,https://cdn.discordapp.com/attachments/912913810606661632/914145758599589888/ForcefulClearcutAmericanquarterhorse.mp4?ex=65c77a14&is=65b50514&hm=a7b9db035455fbbb2086ca37ae5bf0aecd6829aa156f77ce4f31fa9c60c7703c&,https://cdn.discordapp.com/attachments/912913810606661632/914145759786590258/kVxLWIqdRNExEkjE.mp4?ex=65c77a15&is=65b50515&hm=36a268e6ea7045bff9b99b2d12b5c2c92be239910c3e035abfc51e07ca1e0731&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145952330289192/ScratchySilverBoubou.webmt2.mp4?ex=65c77a43&is=65b50543&hm=f636c25c69ec9d7d62dc0ec6d20170fd0b9a548ce44ffbc6ca1d1bd8070d9333&,https://cdn.discordapp.com/attachments/912913810606661632/914145953085288478/PitifulDirectCoral-mobile.mp4?ex=65c77a43&is=65b50543&hm=9d6762296df5916a86c230d9300253b02ec0e61227283986d4c1df8ccaa26d83&,https://cdn.discordapp.com/attachments/912913810606661632/914145953932517426/QDtP_nelf7IFI3D0.mp4?ex=65c77a43&is=65b50543&hm=063bece3135eec0b289351dee99a7d1ae471944ff4e0783987f0351c47690fd4&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146042692390912/video0-7-1.mp4?ex=65c77a58&is=65b50558&hm=3dcabc0c55391ad9360f25bdee235fdf70b26361ccb1a43bd659930c2d397b18&,https://cdn.discordapp.com/attachments/912913810606661632/914146043422191646/video0-10-2.mp4?ex=65c77a58&is=65b50558&hm=a43387a6ff6dfbf1caeefd7c85bd12e7216c23f7fd2bbe45931993a80a07c0e1&,https://cdn.discordapp.com/attachments/912913810606661632/914146044009386045/video0-11-2.mp4?ex=65c77a58&is=65b50558&hm=d0921fdac64637c82726fe4c44fbd22ca484bf3feea2962730a45dbc3bdbdb17&,https://cdn.discordapp.com/attachments/912913810606661632/914146044655329320/video0-14-1.mp4?ex=65c77a59&is=65b50559&hm=19921c121efa00c308891ef0b7eb7d68368d37abac2026d7d69ba88eab8666a2&,https://cdn.discordapp.com/attachments/912913810606661632/914146045292855326/UntimelySoupyBittern.mp4?ex=65c77a59&is=65b50559&hm=02da7ce3ba94de24e4f085944b6dcba6dd1803f0d5b166ecca0ec8a5478432e6&,https://cdn.discordapp.com/attachments/912913810606661632/914146046127517726/video0-1-3.mp4?ex=65c77a59&is=65b50559&hm=6abcad2ef51f9640e0cb605412e621a951405e9545c349b3ab71d4fe379ba208&,https://cdn.discordapp.com/attachments/912913810606661632/914146046672789544/video0-2-2.mp4?ex=65c77a59&is=65b50559&hm=ce2b4b47c79a531969ac5c9de9f169fea014c717a3addc58c1046e66c8c729ba&,https://cdn.discordapp.com/attachments/912913810606661632/914146047847190579/video0-3-2.mp4?ex=65c77a59&is=65b50559&hm=66fb4185e284e91a09d18e6fc21472c814365878df68f721033e68ecadad248c&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146178646560778/xvideos.com_3a1d50f5544d1d9bf192ebb2c35f8188-1.mp4?ex=65c77a79&is=65b50579&hm=6dbf6171d05ab61591cafbe8130056a44418107ba470079adb2aa6fffa312f8d&,https://cdn.discordapp.com/attachments/912913810606661632/914146181007962182/xvideos.com_7c8e1f56c2d567b97e136f4ccd57290b-1.mp4?ex=65c77a79&is=65b50579&hm=2d9e1a9628d254a104185dfe00f95b35d57d49d163c5bd2a1ddf77cfc78a0181&", + "https://cdn.discordapp.com/attachments/912913810606661632/914144899916501002/video0.mp4?ex=65c77948&is=65b50448&hm=9748bd0c74288cc7125e28a11e79688248ed00d413a44b487eb71c8062b5e289&,https://cdn.discordapp.com/attachments/912913810606661632/914144901002821672/Melody_Foxx_POV_01.mp4?ex=65c77948&is=65b50448&hm=554705713182bf6831510023ec4fb2dadb035eedb04b46e82ef24adebf25b60c&", + "https://cdn.discordapp.com/attachments/912913810606661632/914144957118447686/Melody_Foxx_POV_03.mp4?ex=65c77955&is=65b50455&hm=339fd29c2f5de7fe624feaa2242afef3d75a8d4cb3d1babbc010c8f7079b8002&,https://cdn.discordapp.com/attachments/912913810606661632/914144958418661476/AntiqueJitteryBunting-mobile.mp4?ex=65c77956&is=65b50456&hm=eaa0461f35e542ac1dd9e6ce8410eadddd359c631d02a1594317a45ca25935e0&,https://cdn.discordapp.com/attachments/912913810606661632/914144959060394064/VID_20210409_134117_715.mp4?ex=65c77956&is=65b50456&hm=73cb11826b681275fd9cf90f1ad036ccc2f26217a318e236f1a576e671245527&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153660114690108/bratty_sis_right_under_moms_nose.mp4?ex=65c78170&is=65b50c70&hm=6d3711ebd8652d4c13f1575a26ab1a0594ae025119392fa74e7e34f37bcb5e4c&,https://cdn.discordapp.com/attachments/912913817229471764/914153662715162724/BrilliantUnfinishedAndeancat-mobile.mp4?ex=65c78171&is=65b50c71&hm=1d2890d1ff4170fa45cbe5353f186a432f4881bb06d11f6070e0f7effb55c54c&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153724430123028/ColdDarkgreenIberianchiffchaff.mp4?ex=65c78180&is=65b50c80&hm=23775e6e24599b1816e867d0b44406ee5d3e8eafa4b89fe4dca55375025b7259&,https://cdn.discordapp.com/attachments/912913817229471764/914153725931716618/cSQb1iK.mp4?ex=65c78180&is=65b50c80&hm=61a3463ed3a622e29b07b03e02e861e2345cc0bf82289be7572690ed0ffe393e&,https://cdn.discordapp.com/attachments/912913817229471764/914153726531489862/ce177785-b3f1-4d36-8010-6395dbc20861.mp4?ex=65c78180&is=65b50c80&hm=ee85ea6a61fc51608a3ff64637a8e5a44a7dff38bb2e1c8cc1d239a232063d28&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153947877507142/EasyRoyalNorwayrat-mobile.mp4?ex=65c781b5&is=65b50cb5&hm=615c2e83e0e7b1f98f4f1b9ef499f65483d6476eeeafb24720b04f6ecb10483c&,https://cdn.discordapp.com/attachments/912913817229471764/914153948980580392/LittlePeacefulCopperbutterfly.mp4?ex=65c781b5&is=65b50cb5&hm=c311608acaf09183ef7da857ef8b9b3e7d44004dd30639887cc46a04c4231505&,https://cdn.discordapp.com/attachments/912913817229471764/914153950360514580/CylindricalLeadingPheasant.mp4?ex=65c781b5&is=65b50cb5&hm=49a40eaa33e610aecc4fc00be78bf4eb3bcbc569a04430f5612a79e0d54797f8&,https://cdn.discordapp.com/attachments/912913817229471764/914153951069356112/D-gWsV1ac-ylD2U3.mp4?ex=65c781b6&is=65b50cb6&hm=a46d243ecddb592e8d880bfbbbd504cbcc1fe7ddba32c6c9fd8aa547e2ec9f55&", + "https://cdn.discordapp.com/attachments/912913817229471764/914154382516441119/Nikki_Brooks_-_My_Stuck_Step-Mom_-_XVIDEOS.COM_sd.mp4?ex=65c7821c&is=65b50d1c&hm=0207a9c141a267ffbd9e3fb98c74366d07e1e7079f1bf163cd63b08804db1d7f&,https://cdn.discordapp.com/attachments/912913817229471764/914154385041391626/Pie.mp4?ex=65c7821d&is=65b50d1d&hm=9ca24c95e7a12ba0ce0f4a98df4cf42e82bfb4c43bd48f4f8f7754e4b321d515&,https://cdn.discordapp.com/attachments/912913817229471764/914154385821560862/PrudentPushyIndiancow.mp4?ex=65c7821d&is=65b50d1d&hm=5a4bf6d4e25e60137e47069c926289ab725e3b6c065b3370bf1655e4273eb7ab&", + "https://cdn.discordapp.com/attachments/912913817229471764/914154763107565599/received_285354806713896.mp4?ex=65c78277&is=65b50d77&hm=c44ce07e7b9795dee42cb5658f7f621f244f9aee383c07e1b9b5a6b07dd67b73&,https://cdn.discordapp.com/attachments/912913817229471764/914154763992580146/received_2510970542547220.mp4?ex=65c78277&is=65b50d77&hm=a1c0eda7c879cb995a83afc371b9859bea7028929f2733943861f596ff675e80&,https://cdn.discordapp.com/attachments/912913817229471764/914154765024374824/QwxwAhK3HCmchIJ5.mp4?ex=65c78278&is=65b50d78&hm=8f6d923362a70539d7540465e64205378fda8ca5bf72e259be45b6aec25d267b&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155766934544414/squidgame.mp4?ex=65c78367&is=65b50e67&hm=ccc458b6cbf78d782062e9e6f2abd50efa2fcb5c4a3c17496463407e98bd1186&,https://cdn.discordapp.com/attachments/912913817229471764/914155767773409320/tumblr_qx6itl1Hge1z9nx7r.mp4?ex=65c78367&is=65b50e67&hm=07b7844f06e9fc70841b33d620b54b7ba1f34d0e132ce81077ab69d905ce0dc8&,https://cdn.discordapp.com/attachments/912913817229471764/914155768192851999/twitter_20211113_112902.mp4?ex=65c78367&is=65b50e67&hm=29bcdfbaa8ba9091a2abcde6ab8832b2796fd20566efffbc0e104f7b9681f39b&,https://cdn.discordapp.com/attachments/912913817229471764/914155769274974208/Screen_Recording_20210503-100947_Chrome_1.mp4?ex=65c78367&is=65b50e67&hm=6583a89519cf55a6fa483dfbd1d29293646a85356a2c1667e8c3d9699c803d6c&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155803756355624/VID_20211117_175422_577.mp4?ex=65c7836f&is=65b50e6f&hm=74eee3621d6dca63e204687bdc2497bc4379130a3f1f60e4f150bdd58def8626&,https://cdn.discordapp.com/attachments/912913817229471764/914155804473585714/video0.mp4?ex=65c7836f&is=65b50e6f&hm=b7d1b5d5784d363ffb627bb071701e1710a566664f306f11247c25666fb3cc04&,https://cdn.discordapp.com/attachments/912913817229471764/914155805207572530/TXE95CXOpBXro4ZF.mp4?ex=65c78370&is=65b50e70&hm=654f0029a5860c85e8ae5044f562482eddb2845f27d5a2f76c18aabdf29b2ef3&,https://cdn.discordapp.com/attachments/912913817229471764/914155806214197248/UyzLVnK.mp4?ex=65c78370&is=65b50e70&hm=7e1bb6205febee6530bce3f431f1d0a0ef0741eb921405bd1408e4b6e07555db&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155975655686144/video2-3.mp4?ex=65c78398&is=65b50e98&hm=b92f4b14d7e72756f51a875d1d0dbb00af407febc60ce868a1350cb108b32e72&,https://cdn.discordapp.com/attachments/912913817229471764/914155976314196058/video6-1.mp4?ex=65c78398&is=65b50e98&hm=51ac6b711183259ae0b2ac90678f137555c42d7d2bc0db31e7cb45227e95b572&,https://cdn.discordapp.com/attachments/912913817229471764/914155977178251274/xkXxaVXevoI_GiQL.mp4?ex=65c78399&is=65b50e99&hm=211d26597cb2eb460854261d1f86f6cc76524f5ceba31e6417803254d46f7aba&,https://cdn.discordapp.com/attachments/912913817229471764/914155978830802954/video0-15.mp4?ex=65c78399&is=65b50e99&hm=b89314034391b5b63a825b0c78bf8bdc54a7926b6c79b7260907ba15b55cfdfb&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153183641743420/7eMrZCI_-_Imgur.mp4?ex=65c780ff&is=65b50bff&hm=203ab830e13f5fde59dd95a906efefa3aab4c862cba163680c52af851d9a3851&,https://cdn.discordapp.com/attachments/912913817229471764/914153184686141460/720P_4000K_366428502.mp4?ex=65c780ff&is=65b50bff&hm=b8c2e734fa947b1119af01fce519cc0c7b0c29fc58629b71dc2e8365d1b5c8a4&,https://cdn.discordapp.com/attachments/912913817229471764/914153186305134623/2_5427243391031182722.mp4?ex=65c780ff&is=65b50bff&hm=b3a9ef47c5ee243b9d7eb004d05c3a28ad05f2de955807c679b4e5c7a641b377&,https://cdn.discordapp.com/attachments/912913817229471764/914153186896519208/2_5467476235183459236.mp4?ex=65c780ff&is=65b50bff&hm=761b84a0dc7083fec4958c34946ca54c0a0f8fb36672a0448c88fdba3983828c&,https://cdn.discordapp.com/attachments/912913817229471764/914153187672481912/6QR5NRKriakt4y4O.mp4?ex=65c78100&is=65b50c00&hm=16bf85bd58c3eb9df02542417aefff4f630547d40f35826a64211ceebfb6a2db&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153604611444746/AwesomeViciousLimpkin-mobile.mp4?ex=65c78163&is=65b50c63&hm=9c00c2a07138c97d1e9a051634005783dcea24f44d4c454f1a783525341409f3&,https://cdn.discordapp.com/attachments/912913817229471764/914153605307711548/BNrtxvlb-f5v7BmT.mp4?ex=65c78163&is=65b50c63&hm=e64a69d62d46aae2ea6669887d66ab2e6f68ad8345c39c16dde0e62846c2672c&,https://cdn.discordapp.com/attachments/912913817229471764/914153605924266004/ArtisticCarefreeGilamonster-mobile.mp4?ex=65c78163&is=65b50c63&hm=aa216cf5440c4c258e61983b94ef814d6e2d6224c3c8173e10015352eeac8a9b&", + "https://cdn.discordapp.com/attachments/912913817229471764/914152505426989066/2_5197288947922765630.mp4?ex=65c7805d&is=65b50b5d&hm=30641e84dbe83904462287f002c7a3c185cc252b7a4c9105bce822b9672becbf&,https://cdn.discordapp.com/attachments/912913817229471764/914152505842233384/2_5368629495601303004.mp4?ex=65c7805d&is=65b50b5d&hm=9e4ac5acb096620d4f30ac016ac03cb2754a159310fd8465b3998e948980afef&,https://cdn.discordapp.com/attachments/912913817229471764/914152506823680020/2_5370807623840959974.mp4?ex=65c7805d&is=65b50b5d&hm=5b58cafb6e537458e9ffc10b2466dfe5ab2cc02650e6dad3cfa46eb9996f8dd1&,https://cdn.discordapp.com/attachments/912913817229471764/914152507851276328/2_5422516238356056303.mp4?ex=65c7805e&is=65b50b5e&hm=5fef211842b8cb919ebf7dd3e64fd7e79877ec30bcde35eab65c1c0b132d5ce4&,https://cdn.discordapp.com/attachments/912913817229471764/914152508371402832/ff37e57fff34360a.mp4?ex=65c7805e&is=65b50b5e&hm=02a0838df1262039988ce776454dfc51a86b88c072230cf4753c12f4c1fbd334&,https://cdn.discordapp.com/attachments/912913817229471764/914152508820172800/0Y8VRxQ.mp4?ex=65c7805e&is=65b50b5e&hm=e4a2b39ade048c4b2cc047d19aa8b80889e7fc6fba2eef623c20307bd860bad9&", + "https://cdn.discordapp.com/attachments/912913817229471764/914152508820172800/0Y8VRxQ.mp4?ex=65c7805e&is=65b50b5e&hm=e4a2b39ade048c4b2cc047d19aa8b80889e7fc6fba2eef623c20307bd860bad9&", + "https://cdn.discordapp.com/attachments/912913817229471764/914152508371402832/ff37e57fff34360a.mp4?ex=65c7805e&is=65b50b5e&hm=02a0838df1262039988ce776454dfc51a86b88c072230cf4753c12f4c1fbd334&", + "https://cdn.discordapp.com/attachments/912913817229471764/914152507851276328/2_5422516238356056303.mp4?ex=65c7805e&is=65b50b5e&hm=5fef211842b8cb919ebf7dd3e64fd7e79877ec30bcde35eab65c1c0b132d5ce4&", + "https://cdn.discordapp.com/attachments/912913817229471764/914152506823680020/2_5370807623840959974.mp4?ex=65c7805d&is=65b50b5d&hm=5b58cafb6e537458e9ffc10b2466dfe5ab2cc02650e6dad3cfa46eb9996f8dd1&", + "https://cdn.discordapp.com/attachments/912913817229471764/914152505842233384/2_5368629495601303004.mp4?ex=65c7805d&is=65b50b5d&hm=9e4ac5acb096620d4f30ac016ac03cb2754a159310fd8465b3998e948980afef&", + "https://cdn.discordapp.com/attachments/912913817229471764/914152505426989066/2_5197288947922765630.mp4?ex=65c7805d&is=65b50b5d&hm=30641e84dbe83904462287f002c7a3c185cc252b7a4c9105bce822b9672becbf&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153168080896010/720P_4000K_366830562.mp4?ex=65c780fb&is=65b50bfb&hm=34cfa9e5b2b5b0e62a5dbf4bea82cfa7ed565023b5b2f7592622f715c4acce1e&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153187672481912/6QR5NRKriakt4y4O.mp4?ex=65c78100&is=65b50c00&hm=16bf85bd58c3eb9df02542417aefff4f630547d40f35826a64211ceebfb6a2db&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153186896519208/2_5467476235183459236.mp4?ex=65c780ff&is=65b50bff&hm=761b84a0dc7083fec4958c34946ca54c0a0f8fb36672a0448c88fdba3983828c&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153186305134623/2_5427243391031182722.mp4?ex=65c780ff&is=65b50bff&hm=b3a9ef47c5ee243b9d7eb004d05c3a28ad05f2de955807c679b4e5c7a641b377&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153184686141460/720P_4000K_366428502.mp4?ex=65c780ff&is=65b50bff&hm=b8c2e734fa947b1119af01fce519cc0c7b0c29fc58629b71dc2e8365d1b5c8a4&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153183641743420/7eMrZCI_-_Imgur.mp4?ex=65c780ff&is=65b50bff&hm=203ab830e13f5fde59dd95a906efefa3aab4c862cba163680c52af851d9a3851&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153476412551188/177029969_831231477787519_1089295096456585614_n.mp4?ex=65c78144&is=65b50c44&hm=04dc8397526db7182052d96c5d2f261e94a946ed62032dddd1358cd7d9e9718e&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153605924266004/ArtisticCarefreeGilamonster-mobile.mp4?ex=65c78163&is=65b50c63&hm=aa216cf5440c4c258e61983b94ef814d6e2d6224c3c8173e10015352eeac8a9b&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153605307711548/BNrtxvlb-f5v7BmT.mp4?ex=65c78163&is=65b50c63&hm=e64a69d62d46aae2ea6669887d66ab2e6f68ad8345c39c16dde0e62846c2672c&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153604611444746/AwesomeViciousLimpkin-mobile.mp4?ex=65c78163&is=65b50c63&hm=9c00c2a07138c97d1e9a051634005783dcea24f44d4c454f1a783525341409f3&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153662715162724/BrilliantUnfinishedAndeancat-mobile.mp4?ex=65c78171&is=65b50c71&hm=1d2890d1ff4170fa45cbe5353f186a432f4881bb06d11f6070e0f7effb55c54c&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153660114690108/bratty_sis_right_under_moms_nose.mp4?ex=65c78170&is=65b50c70&hm=6d3711ebd8652d4c13f1575a26ab1a0594ae025119392fa74e7e34f37bcb5e4c&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153726531489862/ce177785-b3f1-4d36-8010-6395dbc20861.mp4?ex=65c78180&is=65b50c80&hm=ee85ea6a61fc51608a3ff64637a8e5a44a7dff38bb2e1c8cc1d239a232063d28&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153725931716618/cSQb1iK.mp4?ex=65c78180&is=65b50c80&hm=61a3463ed3a622e29b07b03e02e861e2345cc0bf82289be7572690ed0ffe393e&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153724430123028/ColdDarkgreenIberianchiffchaff.mp4?ex=65c78180&is=65b50c80&hm=23775e6e24599b1816e867d0b44406ee5d3e8eafa4b89fe4dca55375025b7259&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153951069356112/D-gWsV1ac-ylD2U3.mp4?ex=65c781b6&is=65b50cb6&hm=a46d243ecddb592e8d880bfbbbd504cbcc1fe7ddba32c6c9fd8aa547e2ec9f55&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153950360514580/CylindricalLeadingPheasant.mp4?ex=65c781b5&is=65b50cb5&hm=49a40eaa33e610aecc4fc00be78bf4eb3bcbc569a04430f5612a79e0d54797f8&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153948980580392/LittlePeacefulCopperbutterfly.mp4?ex=65c781b5&is=65b50cb5&hm=c311608acaf09183ef7da857ef8b9b3e7d44004dd30639887cc46a04c4231505&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153947877507142/EasyRoyalNorwayrat-mobile.mp4?ex=65c781b5&is=65b50cb5&hm=615c2e83e0e7b1f98f4f1b9ef499f65483d6476eeeafb24720b04f6ecb10483c&", + "https://cdn.discordapp.com/attachments/912913817229471764/914153962859544586/Marcella_squirting_session.mp4?ex=65c781b8&is=65b50cb8&hm=4403a36c977ef127b29d50c6833661d7e436568bfba3a37b1ebf820a433352d7&", + "https://cdn.discordapp.com/attachments/912913817229471764/914154385821560862/PrudentPushyIndiancow.mp4?ex=65c7821d&is=65b50d1d&hm=5a4bf6d4e25e60137e47069c926289ab725e3b6c065b3370bf1655e4273eb7ab&", + "https://cdn.discordapp.com/attachments/912913817229471764/914154385041391626/Pie.mp4?ex=65c7821d&is=65b50d1d&hm=9ca24c95e7a12ba0ce0f4a98df4cf42e82bfb4c43bd48f4f8f7754e4b321d515&", + "https://cdn.discordapp.com/attachments/912913817229471764/914154382516441119/Nikki_Brooks_-_My_Stuck_Step-Mom_-_XVIDEOS.COM_sd.mp4?ex=65c7821c&is=65b50d1c&hm=0207a9c141a267ffbd9e3fb98c74366d07e1e7079f1bf163cd63b08804db1d7f&", + "https://cdn.discordapp.com/attachments/912913817229471764/914154765024374824/QwxwAhK3HCmchIJ5.mp4?ex=65c78278&is=65b50d78&hm=8f6d923362a70539d7540465e64205378fda8ca5bf72e259be45b6aec25d267b&", + "https://cdn.discordapp.com/attachments/912913817229471764/914154763992580146/received_2510970542547220.mp4?ex=65c78277&is=65b50d77&hm=a1c0eda7c879cb995a83afc371b9859bea7028929f2733943861f596ff675e80&", + "https://cdn.discordapp.com/attachments/912913817229471764/914154763107565599/received_285354806713896.mp4?ex=65c78277&is=65b50d77&hm=c44ce07e7b9795dee42cb5658f7f621f244f9aee383c07e1b9b5a6b07dd67b73&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155769274974208/Screen_Recording_20210503-100947_Chrome_1.mp4?ex=65c78367&is=65b50e67&hm=6583a89519cf55a6fa483dfbd1d29293646a85356a2c1667e8c3d9699c803d6c&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155768192851999/twitter_20211113_112902.mp4?ex=65c78367&is=65b50e67&hm=29bcdfbaa8ba9091a2abcde6ab8832b2796fd20566efffbc0e104f7b9681f39b&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155767773409320/tumblr_qx6itl1Hge1z9nx7r.mp4?ex=65c78367&is=65b50e67&hm=07b7844f06e9fc70841b33d620b54b7ba1f34d0e132ce81077ab69d905ce0dc8&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155766934544414/squidgame.mp4?ex=65c78367&is=65b50e67&hm=ccc458b6cbf78d782062e9e6f2abd50efa2fcb5c4a3c17496463407e98bd1186&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155806214197248/UyzLVnK.mp4?ex=65c78370&is=65b50e70&hm=7e1bb6205febee6530bce3f431f1d0a0ef0741eb921405bd1408e4b6e07555db&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155805207572530/TXE95CXOpBXro4ZF.mp4?ex=65c78370&is=65b50e70&hm=654f0029a5860c85e8ae5044f562482eddb2845f27d5a2f76c18aabdf29b2ef3&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155804473585714/video0.mp4?ex=65c7836f&is=65b50e6f&hm=b7d1b5d5784d363ffb627bb071701e1710a566664f306f11247c25666fb3cc04&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155803756355624/VID_20211117_175422_577.mp4?ex=65c7836f&is=65b50e6f&hm=74eee3621d6dca63e204687bdc2497bc4379130a3f1f60e4f150bdd58def8626&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155978830802954/video0-15.mp4?ex=65c78399&is=65b50e99&hm=b89314034391b5b63a825b0c78bf8bdc54a7926b6c79b7260907ba15b55cfdfb&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155977178251274/xkXxaVXevoI_GiQL.mp4?ex=65c78399&is=65b50e99&hm=211d26597cb2eb460854261d1f86f6cc76524f5ceba31e6417803254d46f7aba&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155976314196058/video6-1.mp4?ex=65c78398&is=65b50e98&hm=51ac6b711183259ae0b2ac90678f137555c42d7d2bc0db31e7cb45227e95b572&", + "https://cdn.discordapp.com/attachments/912913817229471764/914155975655686144/video2-3.mp4?ex=65c78398&is=65b50e98&hm=b92f4b14d7e72756f51a875d1d0dbb00af407febc60ce868a1350cb108b32e72&", + "https://cdn.discordapp.com/attachments/912913817229471764/914156085391274055/xvideos.com_36de669593e4200ceaca04f308786b8b.mp4?ex=65c783b2&is=65b50eb2&hm=e56bbf8bbd4d673059ca21c8071dada32b2b7a46ca448c532b3bf8f7c1e96ba8&", + "https://cdn.discordapp.com/attachments/912913817229471764/914156099488325652/xvideos.com_daf9de20b7d1ab8f11bf521f9c13b037-1.mp4?ex=65c783b6&is=65b50eb6&hm=d94f27b873490190afd711acb6810a8d71269042743f10f838f4a6afb5907493&", + "https://cdn.discordapp.com/attachments/912913817229471764/914156130429718538/xvideos.com_68c566d68a558a6de0b0d38f46d7d5e5.mp4?ex=65c783bd&is=65b50ebd&hm=6a964044bb97a5f494bfc546564dbb868bdef9ea078e909eae848d768aee9101&", + "https://cdn.discordapp.com/attachments/912913817229471764/914156159731113984/xvideos.com_76f98440f65e4ef16e872778ad3860c3.mp4?ex=65c783c4&is=65b50ec4&hm=4b44170b90bc4f1b4d3d0b219f03be4e31528165b2388173734cc04450e268fc&", + "https://cdn.discordapp.com/attachments/912913817229471764/914156159487844422/xvideos.com_96ffc97e2629f12dd4ec6f2279e24e8c.mp4?ex=65c783c4&is=65b50ec4&hm=25a20cbc72f988c15e8e50a9fbf866a3514380b310c5abaf4c66f36caed527d3&", + "https://cdn.discordapp.com/attachments/912913817229471764/914156426438524928/xvideos.com_9afe4842f7018a2eff7e8ee1dc206959.mp4?ex=65c78404&is=65b50f04&hm=1060ca55aedcacdcaed0029ea347d392529bc9fc417df75a34827244d77698c6&", + "https://cdn.discordapp.com/attachments/912913817229471764/917937277177565214/wihgahwg.mp4?ex=65cc0ab5&is=65b995b5&hm=7d95bb30118fdb4225f9997493652ec3119f771fbdb6d0f0d22dc8511eae934c&", + "https://cdn.discordapp.com/attachments/912913817229471764/917937285054496768/video0_15.mp4?ex=65cc0ab7&is=65b995b7&hm=52c5d5a36078809c641ba2ed1ca0a8eb261002afe5e93de355f094b963a6be95&", + "https://cdn.discordapp.com/attachments/912913817229471764/917937304876752936/VID_427531008_073611_178.mp4?ex=65cc0abb&is=65b995bb&hm=93fc7afe35aee5b61972f3e032759565ad2142932c30bbe909a7157624578c9a&", + "https://cdn.discordapp.com/attachments/912913817229471764/917937363404091452/VID_20211207_170757_452.mp4?ex=65cc0ac9&is=65b995c9&hm=3713f815ef21ea41f94204834f63d2dc579cdabf77ee6e1d07b33b8029eb3054&", + "https://cdn.discordapp.com/attachments/912913817229471764/917937384681766930/VID_20211205_165559_418.mp4?ex=65cc0ace&is=65b995ce&hm=0e83a70a9fc0ef2e86e6c16c2551c7fcc9c8af9141ea0a9d19f5a7c8088d8432&", + "https://cdn.discordapp.com/attachments/912913817229471764/917937419230269450/VID_20211203_121520_070.mp4?ex=65cc0ad7&is=65b995d7&hm=81d3960ea15dc75166f12f5005fa153994dbd10b7287cff630d1c7e9ff523ed9&", + "https://cdn.discordapp.com/attachments/912913817229471764/917937630753218590/VID_20211130_161545_404.mp4?ex=65cc0b09&is=65b99609&hm=e9391c50f72ede119121c788b006a7c4ffac383fca1c9024f8fa90fef8a40e43&", + "https://cdn.discordapp.com/attachments/912913817229471764/917937655864500234/VID_20211130_161317_905.mp4?ex=65cc0b0f&is=65b9960f&hm=995f215e439a88ac7b81839e6f85919496b27f24fbe9b2337784d699ebda3767&", + "https://cdn.discordapp.com/attachments/912913817229471764/917937705550233670/tBy32da0oPkg.mp4?ex=65cc0b1b&is=65b9961b&hm=0acbedb73c531adadedd016f4f78318ee8642de255d1cd4992509de09028adaa&", + "https://cdn.discordapp.com/attachments/912913817229471764/917937714358255657/6lonKjGpBUl4.mp4?ex=65cc0b1d&is=65b9961d&hm=815adf13e7a2c030584fd9df70441853ef79a2ef0a3d91547414a9b81ac6e472&", + "https://cdn.discordapp.com/attachments/912913810606661632/914144901002821672/Melody_Foxx_POV_01.mp4?ex=65c77948&is=65b50448&hm=554705713182bf6831510023ec4fb2dadb035eedb04b46e82ef24adebf25b60c&", + "https://cdn.discordapp.com/attachments/912913810606661632/914144899916501002/video0.mp4?ex=65c77948&is=65b50448&hm=9748bd0c74288cc7125e28a11e79688248ed00d413a44b487eb71c8062b5e289&", + "https://cdn.discordapp.com/attachments/912913810606661632/914144931625455637/Melody_Foxx_POV_02.mp4?ex=65c7794f&is=65b5044f&hm=7f5c7038555d7f29054f645451e72777939530516b2a15fec12f271f7fcf7eba&", + "https://cdn.discordapp.com/attachments/912913810606661632/914144959060394064/VID_20210409_134117_715.mp4?ex=65c77956&is=65b50456&hm=73cb11826b681275fd9cf90f1ad036ccc2f26217a318e236f1a576e671245527&", + "https://cdn.discordapp.com/attachments/912913810606661632/914144958418661476/AntiqueJitteryBunting-mobile.mp4?ex=65c77956&is=65b50456&hm=eaa0461f35e542ac1dd9e6ce8410eadddd359c631d02a1594317a45ca25935e0&", + "https://cdn.discordapp.com/attachments/912913810606661632/914144957118447686/Melody_Foxx_POV_03.mp4?ex=65c77955&is=65b50455&hm=339fd29c2f5de7fe624feaa2242afef3d75a8d4cb3d1babbc010c8f7079b8002&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145004707016734/IMG_6265.mp4?ex=65c77961&is=65b50461&hm=d7d4d3457fbed2065f86a1a56823fd0e1b6327618b14faf8fa776bbd7b824210&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145028526469130/VID_20210309_180320_172.mp4?ex=65c77966&is=65b50466&hm=3d3841940ad4c34e251e92603591b6939e9897e3f3ee87960324697f8c10fbf9&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145033547038720/e284de174ca09fc0.mp4?ex=65c77967&is=65b50467&hm=bcc1f7a1001726c239191d231803bdc0cd2e2198022a25bd1a5859eab9dced97&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145037657456670/BabyishOblongKiskadee-mobile.mp4?ex=65c77968&is=65b50468&hm=81d0f808440e8116fc204e816220d4fdfe1e23dd24e2e023d7d6f92404ad440b&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145057148399646/ThirdAridTapaculo-mobile.mp4?ex=65c7796d&is=65b5046d&hm=27559655c7860b4c4be11e19cd2ac7d5f74d6bcb936162677c4d7c6f62df098f&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145091776561182/G78mrz6AkYh2bEWJ.mp4?ex=65c77975&is=65b50475&hm=807936b5f9b96851982ab5f02bec47554661680d4b39986360e15183a1f5e4f5&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145105483554826/6MalVfTm9ADbW5yU.mp4?ex=65c77979&is=65b50479&hm=171d7a5e7646224ce8b0fa578d0f783f597444e575e0dafa440f4c6754960640&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145157950091385/h7OV-RiThkM52PjA.mp4?ex=65c77985&is=65b50485&hm=4831967aef369a1ab6dfe652ac825f1d3762d469213e77d295fe01832318fb4f&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145172630147112/7v_E9BJ0UZHYY9mz.mp4?ex=65c77989&is=65b50489&hm=8a59f7c94d6997f0e1296e22090434ddd54c494d8f0cf104f40edeea449f8a20&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145187297648670/Create_free_dirty_tinder_account.mp4?ex=65c7798c&is=65b5048c&hm=1f051e9d6e815ca438ea7d74edec8c153388bfa4c209856c340d68876c8f03aa&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145197376544828/FavorableFailingAldabratortoise-mobile.mp4?ex=65c7798f&is=65b5048f&hm=3f539edbfc0ca9bcdddffd2f768332038e821c061ea463180531064e70dd7c3a&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145213675622450/BothLoathsomeFruitfly-mobile.mp4?ex=65c77992&is=65b50492&hm=5985f0298fb762b2b15badaf9ec745ee589baee002368092a3f322197a998a08&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145240716300358/Y8jBgQLTA_3AOHM0.mp4?ex=65c77999&is=65b50499&hm=20371c0245e4a683ae90ff1c0f2e1fc89462a19d374cdc045a7357713ae34d04&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145252208705587/UglyImmaculateGalah-mobile.mp4?ex=65c7799c&is=65b5049c&hm=4a71a7a12b6be8fab634a780ba76d3fb39c37ae68f871633e5b36f462404e99a&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145292599840788/video0-78.mp4?ex=65c779a5&is=65b504a5&hm=578807362659993a1a6ab894471afa5a91140cac1339f989a6a9120ef3a8e44f&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145296756379718/4RnLMC0HiElA8s-4.mp4?ex=65c779a6&is=65b504a6&hm=3c08d2a16dfe3611cac0deedccb4d146a44ac77e9d7a476e5d23d8494ad1067b&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145368437047296/2b-UplB8avsE4Mm-.mp4?ex=65c779b7&is=65b504b7&hm=f733a5eec1013803898a6e37fb24f8c958cebc00055c1b207c3133ad0a416b19&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145427392176128/l6WjibEnAd2yV68l.mp4?ex=65c779c5&is=65b504c5&hm=aaed2e73c8935cc949604dfddda90f14ca801d3bf53358dca3582a0b329edd2b&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145759786590258/kVxLWIqdRNExEkjE.mp4?ex=65c77a15&is=65b50515&hm=36a268e6ea7045bff9b99b2d12b5c2c92be239910c3e035abfc51e07ca1e0731&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145758599589888/ForcefulClearcutAmericanquarterhorse.mp4?ex=65c77a14&is=65b50514&hm=a7b9db035455fbbb2086ca37ae5bf0aecd6829aa156f77ce4f31fa9c60c7703c&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145757907550228/PalatableGrimyFoxterrier-mobile.mp4?ex=65c77a14&is=65b50514&hm=ae840303828633a091f1b15d88de1754fb8a2e3452559e1240a6544f98c082b9&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145757420982342/MajorPoliteAmericancrow-mobile.mp4?ex=65c77a14&is=65b50514&hm=4b271f1cde0af58db4929387b94939bfa2474dd352d6b4017e34fe4059dee46a&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145953932517426/QDtP_nelf7IFI3D0.mp4?ex=65c77a43&is=65b50543&hm=063bece3135eec0b289351dee99a7d1ae471944ff4e0783987f0351c47690fd4&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145953085288478/PitifulDirectCoral-mobile.mp4?ex=65c77a43&is=65b50543&hm=9d6762296df5916a86c230d9300253b02ec0e61227283986d4c1df8ccaa26d83&", + "https://cdn.discordapp.com/attachments/912913810606661632/914145952330289192/ScratchySilverBoubou.webmt2.mp4?ex=65c77a43&is=65b50543&hm=f636c25c69ec9d7d62dc0ec6d20170fd0b9a548ce44ffbc6ca1d1bd8070d9333&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146047847190579/video0-3-2.mp4?ex=65c77a59&is=65b50559&hm=66fb4185e284e91a09d18e6fc21472c814365878df68f721033e68ecadad248c&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146046672789544/video0-2-2.mp4?ex=65c77a59&is=65b50559&hm=ce2b4b47c79a531969ac5c9de9f169fea014c717a3addc58c1046e66c8c729ba&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146046127517726/video0-1-3.mp4?ex=65c77a59&is=65b50559&hm=6abcad2ef51f9640e0cb605412e621a951405e9545c349b3ab71d4fe379ba208&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146045292855326/UntimelySoupyBittern.mp4?ex=65c77a59&is=65b50559&hm=02da7ce3ba94de24e4f085944b6dcba6dd1803f0d5b166ecca0ec8a5478432e6&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146044655329320/video0-14-1.mp4?ex=65c77a59&is=65b50559&hm=19921c121efa00c308891ef0b7eb7d68368d37abac2026d7d69ba88eab8666a2&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146044009386045/video0-11-2.mp4?ex=65c77a58&is=65b50558&hm=d0921fdac64637c82726fe4c44fbd22ca484bf3feea2962730a45dbc3bdbdb17&", + "https://cdn.discordapp.com/attachments/912913792982192168/914139968908193832/QuickActiveBandicoot-mobile.mp4?ex=65c774b0&is=65b4ffb0&hm=82c2acec1b6e3e9656e1020057c39d19022a0d66be273c8f66233348bc874c3f&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146043422191646/video0-10-2.mp4?ex=65c77a58&is=65b50558&hm=a43387a6ff6dfbf1caeefd7c85bd12e7216c23f7fd2bbe45931993a80a07c0e1&", + "https://cdn.discordapp.com/attachments/912913792982192168/914139967238836224/xvideos.com_896cf5c01888a3fb7f32c0593a844bbc.mp4?ex=65c774b0&is=65b4ffb0&hm=8d851a9126633ea41c94075d145c0b5eb47ac2fe6e809fbd50ca8fdc1850f52a&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146042692390912/video0-7-1.mp4?ex=65c77a58&is=65b50558&hm=3dcabc0c55391ad9360f25bdee235fdf70b26361ccb1a43bd659930c2d397b18&", + "https://cdn.discordapp.com/attachments/912913792982192168/914139966022496286/xvideos.com_a1f23fdaef108e9d9b56ad2e6319daa9.mp4?ex=65c774af&is=65b4ffaf&hm=65a395a04230f8e5aa0129964fa5eb9298d866aa81b34e9432d3041aea1db052&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146181007962182/xvideos.com_7c8e1f56c2d567b97e136f4ccd57290b-1.mp4?ex=65c77a79&is=65b50579&hm=2d9e1a9628d254a104185dfe00f95b35d57d49d163c5bd2a1ddf77cfc78a0181&", + "https://cdn.discordapp.com/attachments/912913792982192168/914139965103947836/video0.mp4?ex=65c774af&is=65b4ffaf&hm=72c609bd39a9b9615ed52ccad7b7b18c40f7582d79d9f31ea8d0ca6bcfc9d7a9&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146178646560778/xvideos.com_3a1d50f5544d1d9bf192ebb2c35f8188-1.mp4?ex=65c77a79&is=65b50579&hm=6dbf6171d05ab61591cafbe8130056a44418107ba470079adb2aa6fffa312f8d&", + "https://cdn.discordapp.com/attachments/912913792982192168/914139998398324776/My.Friends.Hot.Mom.81.CD1_-_1of9.mp4?ex=65c774b7&is=65b4ffb7&hm=8658a26aac41950fd8447ac9c6a4f5365944e333e72ab9f8d8e13136d6327308&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146185990795304/xvideos.com_71ef12f74aa36d3bcccb25deaf3cb292.mp4?ex=65c77a7a&is=65b5057a&hm=aa5f4e99a7b6458b6e16772572052c8e1caf629d4e7311ce45328af3ace38afe&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140081261002772/video0_14.mp4?ex=65c774cb&is=65b4ffcb&hm=2b30dfd0837e0120313daee73e30df193a2846ebd7f00302b4f16402b978391b&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146217422893076/xvideos.com_532f857c84217bbfcd204eccd6c1d942.mp4?ex=65c77a82&is=65b50582&hm=c6aa5b47b84e11095137f317a3b5d4ad1332d4384afd7bfb2d636d48c60914cf&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140079465832468/porn_16.mp4?ex=65c774ca&is=65b4ffca&hm=95a4838a1211a4fc93c61d8af6d6b74da75880f8eb2fc93561c830374074e938&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146225098469397/xvideos.com_b6bc62375676c51cd68b8c0b523efc19.mp4?ex=65c77a84&is=65b50584&hm=ecd79e6ebf62cb2bfdf4297b800e405408550c63f644529e2744a4ecc6ee872c&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140077591003186/VID_20210531_165927_752.mp4?ex=65c774ca&is=65b4ffca&hm=22972a68a3f65bede0d3c89385d058679223d00d31d3624a14a039234155e2cc&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146261966413844/xvideos.com_d7e7e7da0620bf0ac79019dcb5e46ecc.mp4?ex=65c77a8c&is=65b5058c&hm=277c13696f6cf0f43a70c0b5011f7213cd272ed2180e2f44397f49280041f339&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140339286208532/182714597.mp4?ex=65c77508&is=65b50008&hm=4540748ef42bc900b8d1a0bc95a667548863df1e2dc6951db71a4af89c0a7e38&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146278882029658/xvideos.com_d7f39bed25b1c4a23c9267d46982425e-1.mp4?ex=65c77a90&is=65b50590&hm=2e54a825c1d81c9e45d70d3f374459ae5b15399c8bae652f56d1794b01eaa957&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140352653459526/1231231.mp4?ex=65c7750b&is=65b5000b&hm=1b048824d8f5736a2726239c0dd91206a53ce04e78095c4f4bc7a7552b796e00&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146293453037609/xvideos.com_d8b3c99880f20707d4a22c719e70610f-1.mp4?ex=65c77a94&is=65b50594&hm=844a9126611626bb492d2ee6d463e729ecb8c9da36879354ef9d7859b4cf68d8&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140448325505024/test.mp4?ex=65c77522&is=65b50022&hm=b7f3ffba9a5dbc91e9fef2a1627bf16c42b9cbf331c5acd57e21806427592a79&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146339904962620/xvideos.com_df1e72583bccaeb383ac8df6ad18e8fe.mp4?ex=65c77a9f&is=65b5059f&hm=504025addd3ba9244c88b1792a53eea161e4bea12ba9027d561efb9af9b0101f&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140447172100146/whitehardcore5.mp4?ex=65c77522&is=65b50022&hm=42313103ec547ceaedc3cc37103d54abea01b20b2a9a447f876be0bae11cd576&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146347937050634/xvideos.com_f3fa79f2c99e3fd9bad2df2f775df1e1-1.mp4?ex=65c77aa1&is=65b505a1&hm=6a2c2af7be1bbce439ed66f577999fd3e1f402230e935bdf6cb7a695d9b7305a&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140647928262666/PertinentDarkslateblueAstarte-mobile.mp4?ex=65c77552&is=65b50052&hm=104950c74ca28e5800dfc89d9fd14ed24e9b797ef37a0965f50b0dac2979e88f&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146348771721236/xvideos.com_e0cbe1711afa14c7199d8c9fd296970a.mp4?ex=65c77aa1&is=65b505a1&hm=5c37b963029946d5304d6b73946aa7285ccf3d04b50be0108598782bf27ae765&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140646988730368/PristineHotpinkDachshund-mobile.mp4?ex=65c77552&is=65b50052&hm=ad9a89b705443fa7cf6be9bb9b2629710713db10cc997efae15708ea9ea1d8c6&", + "https://cdn.discordapp.com/attachments/912913810606661632/914146776091594812/xvideos.com_06448bff6aeb024a4d5f500556e183e2.mp4?ex=65c77b07&is=65b50607&hm=a844b65e0dffe5ebb4c8aa6364dcd0b44bfb65b1255eb9ee3fed511b04c94bfe&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140645923360788/xvideos.com_4a8b1670592d125a9402c97f9ca72298.mp4?ex=65c77551&is=65b50051&hm=790937629c75884d14db38b3bcaf2e314f330bcbf99831d990507d68df84fbcf&", + "https://cdn.discordapp.com/attachments/912913810606661632/917936314010198056/twitter_20211113_112902.mp4?ex=65cc09cf&is=65b994cf&hm=8430b50a2801d6004e81e3ac0a3a2ab7de9c13828d850bd2e90f0cd194c83e90&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140644690239498/nicolexbruce4.mp4?ex=65c77551&is=65b50051&hm=0915ba3d8ebbae75be55e6128064f4b5b7b1b6bc56649962c3e57e0ef184d922&", + "https://cdn.discordapp.com/attachments/912913810606661632/917936332775501924/twitter_20211113_121811.mp4?ex=65cc09d4&is=65b994d4&hm=65864626d1b7bed1be380dd7b318d71ea9a4e229eb898bc6173b7fae480d9091&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140752592924672/VID_20210407_133724_853.mp4?ex=65c7756b&is=65b5006b&hm=afe33dcbbf76e58dc19cb21180d9288d03dd8875db51838a3c07f893bbc0879d&", + "https://cdn.discordapp.com/attachments/912913810606661632/917936350215422012/VID_20211115_150251_750.mp4?ex=65cc09d8&is=65b994d8&hm=47044f6544ee4ab35caad48a78d5f19d6a32126cf08d9456aa49145a04248315&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140751330435072/video0_1.mp4?ex=65c7756b&is=65b5006b&hm=02ecc2255e4564211f76f8c89d13412b2e8e83b6aedc093544cd93de7a4b8f86&", + "https://cdn.discordapp.com/attachments/912913810606661632/917936362408259604/VID_20211117_175422_577.mp4?ex=65cc09db&is=65b994db&hm=65a6e2992416f7c1d23823ac903a95f239fae78d25bb36242c495e8409fdeb08&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140750197960745/foxy_di.mp4?ex=65c7756a&is=65b5006a&hm=8d70812774901a8e6026627b9aea8755a7ef13f3cd41fae0859501d7f2d99a8a&", + "https://cdn.discordapp.com/attachments/912913810606661632/917936393513205760/VID_20211130_141900_418.mp4?ex=65cc09e2&is=65b994e2&hm=e0c864d225f2fb3f11f17c889a0109f846821c1479b8fb8956b3406020b03411&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140749191331860/CorruptPuzzlingWaterdragons-mobile.mp4?ex=65c7756a&is=65b5006a&hm=09a836211e6dcf66986bdb4dd1276b4b3f32f5e2e444736180de1b638b61cb47&", + "https://cdn.discordapp.com/attachments/912913810606661632/917936412328861736/VID_20211130_145453_304.mp4?ex=65cc09e7&is=65b994e7&hm=077bd90322a1c2ea01fe777ac215d9135c50c2d3aea82d9cfda5132b387c1d4e&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140801024528434/vid2.mp4?ex=65c77576&is=65b50076&hm=44eac47dfd25ea6e260c79a30ebaa9624dafae6de1a45f2ab7bb314e4f08b342&", + "https://cdn.discordapp.com/attachments/912913810606661632/917936439851896842/VID_20211130_145910_339.mp4?ex=65cc09ed&is=65b994ed&hm=573d67796ad077033936a31635d61e45980eefcf1650304a2090cf1942ead334&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140800294735872/SinfulGranularIndianpangolin-mobile.mp4?ex=65c77576&is=65b50076&hm=0f5650fc36495ca05249c760d2df5d930aaec7b6474a00a793e5d72f54aa0363&", + "https://cdn.discordapp.com/attachments/912913810606661632/917936475801276457/VID_20211130_153033_026.mp4?ex=65cc09f6&is=65b994f6&hm=3e61060a5614ff975549af40c123faa34c2740b59f19746726bbde9fa3875b16&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140799300677653/VID_20210325_153659_231.mp4?ex=65c77576&is=65b50076&hm=3e80f62125fb05cb5aa18a7f14d38650c71b111717342db271fd4fb96e235ca1&", + "https://cdn.discordapp.com/attachments/912913810606661632/917936481509736458/VID_20211130_153331_483.mp4?ex=65cc09f7&is=65b994f7&hm=cb98f1abc0ee2e869382b1f3f13962883a2fc4d871e4249319282301345d7bd8&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140798587658250/VID_20210408_184454_053.mp4?ex=65c77576&is=65b50076&hm=c59c16ea3eb64bd832e6920145bf57f9c40a0c9bdfa7ea5b5c2a6d4ec77ed3be&", + "https://cdn.discordapp.com/attachments/912913810606661632/917936513164120105/VID_20211130_153436_845.mp4?ex=65cc09ff&is=65b994ff&hm=d9e4ef13cba34a8365f0858199201928e5373e618c683e3323b4f212536637ff&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140797279039508/VID_20210406_175255_508.mp4?ex=65c77575&is=65b50075&hm=a27f8c1d9712cdd44ea89590f3cabd4f2dd1750ceeb6e10c7f0b5bbecd3fcced&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140880070406184/ArtisticCarefreeGilamonster-mobile.mp4?ex=65c77589&is=65b50089&hm=879f1b8065e647abd8301ef3b17832f4c7fce65c633ba4f6115eeb6f886f7279&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140879361540186/LinenUncomfortablePika-mobile.mp4?ex=65c77589&is=65b50089&hm=f1b180f56b4abe3d0fbb982e120683d7ecd0ea2b783fd0ef17d7220a5b08f9bb&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140878354923550/VID_366330829_174127_038.mp4?ex=65c77589&is=65b50089&hm=6372938ad8b20c7bdfb0190dd702fdf4e1cf7b3252042e40f78388d2c3ad1862&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140877465718814/You_were_born_to_make_his_milk_-_WankBank2020.mp4?ex=65c77589&is=65b50089&hm=1f65434987aa2a588fd8f4563ab7c318d0eb3e24a00a7863cbf0169c33b71f26&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140876689780786/holy_moly_-_n3bula.mp4?ex=65c77588&is=65b50088&hm=4cf8e317baf0be2af02dbd9438273073cb29d87eb7dce6e382058caf29f5c245&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140978187743282/954210.mp4?ex=65c775a1&is=65b500a1&hm=ab231a435bd18b46845f6ee1df4f76397b3c56c605c63f7c1307be7823252956&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140977415987220/956416.mp4?ex=65c775a0&is=65b500a0&hm=4dbbc5771f2b5a918776f6ebda74b0357074e5d2e9dbabbb91b8aff603c6f975&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140975901835274/VID_345710613_015953_060.mp4?ex=65c775a0&is=65b500a0&hm=f01b54cf1bb1c75922061832f3a30f3cc9b2ad802d12b0b0d67cd2f5b387356e&", + "https://cdn.discordapp.com/attachments/912913792982192168/914140975507595374/Sucked_His_Soul_Out_www.xhamsterdownload.com.mp4?ex=65c775a0&is=65b500a0&hm=734522a7cc30aa55e367c2f08b0bfd95911ff46fc0aefda3247910b7c490c24d&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141030650114058/PropertySex_-_College_student_fucks_hot_ass_real_estate_agent.mp4?ex=65c775ad&is=65b500ad&hm=4882f931c23d99e35129ac136d22e59ac194a8d478af124af5aa42b9f6f049d3&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141083976491099/Nancy_A_-_Passionate_Morning_Sex_01.mp4?ex=65c775ba&is=65b500ba&hm=c9eb0073d799e7dcc57d26cceec13e8565802cb41c08dbf4d198c96d915dcd9b&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141082885976124/VID_346750616_075047_746.mp4?ex=65c775ba&is=65b500ba&hm=57894abeb3de4b2a23f30e33d67903fcca196e039d2ad04de129602ba6435b03&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141082542030898/QBpFnbG.mp4?ex=65c775b9&is=65b500b9&hm=2b6491807d8ac1426854b4a9b1ce67c6938f9b804d3ba651fd2e7a781f3d5e0a&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141200590704660/PORN.mp4?ex=65c775d6&is=65b500d6&hm=8046102980724d4d0ebc3ab8478008ee504f2fc2c4019fc9400d6513474aa72a&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141199768616990/ReadyCommonAmethystinepython-mobile.mp4?ex=65c775d5&is=65b500d5&hm=498c88eea7844bf8e7305621c74e2150878a0cc886d259dff20dbb945adf5862&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141198837510234/video_2021-03-16_20-43-00.mp4?ex=65c775d5&is=65b500d5&hm=119e611c2eef00ab7c87ec307a72f01e3e420e0b159b9187b7daa861ad7dd544&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141197814091856/VID_20210408_185203_077.mp4?ex=65c775d5&is=65b500d5&hm=0279a5f2ceb550eaba0f5b09e4a2870ca0ef95f9dbbccd0ab7b95f4eff50b259&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141482544414740/GrimCheerfulBumblebee-mobile.mp4?ex=65c77619&is=65b50119&hm=7d2872f25f0e8c92355f28536c93cf97dbe1400cdda159e92cdce279a0574bf6&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141489817354290/HappyDesertedAngora-mobile.mp4?ex=65c7761b&is=65b5011b&hm=c034b2f94105e66635d1a597e3549939909237568bb9fc6ca9a6ffa848c62a3c&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141489167233034/BowedAgedEft-mobile.mp4?ex=65c7761a&is=65b5011a&hm=ba386e9e08384877cd32c471bdcc18099db42fc5050d76236d9c3be13caf37b6&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141487581777940/FatherlyMinorEthiopianwolf-mobile.mp4?ex=65c7761a&is=65b5011a&hm=df56b8ec6decd3c461a3e54da87ba3d223ca00a9699438e749a7e23864f750f8&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141486617100288/ThisWhisperedAnura-mobile.mp4?ex=65c7761a&is=65b5011a&hm=244ff376a12ccdbd0bd62883a6050af509e5bb5d822457dfeecfebff33eb841f&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141485820166205/KindlyMagnificentIslandcanary-mobile.mp4?ex=65c7761a&is=65b5011a&hm=412ee36a9ef24336c87356cdc92c4b394e1171c8bd19e8bbe2c8ff1b09f2e953&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141484612198400/PrestigiousBreakableDouglasfirbarkbeetle-mobile.mp4?ex=65c77619&is=65b50119&hm=03c2d4f013bc37c0266af447cabb938123cabbea44822129bd9d32741e7d6eeb&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141731879002172/WanHomelyKob-mobile.mp4?ex=65c77654&is=65b50154&hm=1b51db8475e9cf40e3b4f6921404d702ac188c04776ebb3c9d71b6c92ab78d6a&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141731459592272/xwsJeumWFSSZxAV0.mp4?ex=65c77654&is=65b50154&hm=ba44551ebc18b1c447ae284813e0613dbcb123be0712d48955e1ef074f27becb&", + "https://cdn.discordapp.com/attachments/912913792982192168/914141730759114802/CreativeLinedGenet-mobile.mp4?ex=65c77654&is=65b50154&hm=2ee38f94e69161c73f871b1fa4639ae6bb247cb2a50aa0c5691861c8db0e9d37&", + "https://cdn.discordapp.com/attachments/912913792982192168/917935703185297438/Jose_Tittyfuck.mp4?ex=65cc093e&is=65b9943e&hm=bb18c9580673c13845f1009c396dbc211c5b7193dcbe2c4ea2d9b306e8076b31&", + "https://cdn.discordapp.com/attachments/912913792982192168/917935705341169674/jtbrHIZ.mp4?ex=65cc093e&is=65b9943e&hm=35950da78a046ac5cb0c4b6cd8f86e15ce983a48fa66f26a124d065327ff2703&", + "https://cdn.discordapp.com/attachments/912913792982192168/917935799855640576/NaiveCrushingCrayfish-mobile.mp4?ex=65cc0955&is=65b99455&hm=71e72f6b18da7f486d17e01eb317f6a2d52e45e25ed14ea5c4049a709f470eac&", + "https://cdn.discordapp.com/attachments/912913792982192168/917935849042239498/received_1132242277189861.mp4?ex=65cc0960&is=65b99460&hm=8b49499c49923e0e09ed344f0eb5f5586c041286e643b3c7129404ffed67ff00&", + "https://cdn.discordapp.com/attachments/912913792982192168/917935914934763530/PleasedDirtyUromastyxspinipes.mp4?ex=65cc0970&is=65b99470&hm=e3d691e4b0a72d5782e3e72fe1e82dbe46330feec279cb37bc71d79b42d57866&", + "https://cdn.discordapp.com/attachments/912913792982192168/917935963844513832/rki00498_mhb_w.mp4?ex=65cc097c&is=65b9947c&hm=d6c1b1d6631cdbf529289ec7c77e3397abdb9dc688f04d1d5f92eae955348b68&", + "https://cdn.discordapp.com/attachments/912913792982192168/917936077841518682/she_wants_it_rough.mp4?ex=65cc0997&is=65b99497&hm=478b2ab0d0a28bba07e3dbea70364b6a366cadee33dcfca95cce26f63104a1ed&", + "https://cdn.discordapp.com/attachments/912913792982192168/917936090151788544/Snapchat-1299738760.mp4?ex=65cc099a&is=65b9949a&hm=dc6b26d9ba46e1f9cb4bc55ac1a083478964922e767220e51cf0b23befd743e1&", + "https://cdn.discordapp.com/attachments/912913792982192168/917936117288955904/Titfuck_.mp4?ex=65cc09a0&is=65b994a0&hm=38bae19944bcca9bc30136ac859f0dd7cb0827c4b7f2d260798085387082aa77&", + "https://cdn.discordapp.com/attachments/912913792982192168/917936129859264512/Tittyfuck_cumshot.mp4?ex=65cc09a3&is=65b994a3&hm=221f2fbf2804803ac2889dde683279e3e5650e0461c481fc06b325114b16eb01&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130298759946250/pinesoul69.mp4?ex=65c76bae&is=65b4f6ae&hm=d8fd2c4ca411040e5322da668c2aeb68dbbc112c180ac2304253927e5d44ea62&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130298130817044/PartialPowerlessAfricanaugurbuzzard-mobile.mp4?ex=65c76bae&is=65b4f6ae&hm=aa512f75da201aaea941874c6e687da5394b91cac90e3805235641b1edc38a9b&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130297329709156/rIHrNarayprumQ9E1gBGs1LKpG2-HVU9GH9IEQfw5a0.mp4?ex=65c76bae&is=65b4f6ae&hm=4a9bc0cdd9696b0ca3681e61569dc0bceb2f90f372ecf6ed46b61a4c6614e22d&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130296297885716/reaction_to_anal.mp4?ex=65c76bae&is=65b4f6ae&hm=ba6ec4bc2e470454503143318670d2937ebab1a750dece83845ceda71ecf5edb&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130295203196948/PortlyGrimLemming-mobile.mp4?ex=65c76bae&is=65b4f6ae&hm=6ec8226bc272e04cb83c593f688cc121c00fff843cdd46db624ca854fd455a97&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130638620205106/Tina_Angel.mp4?ex=65c76bff&is=65b4f6ff&hm=aebfe310eb9373a0335adfc4c511527c56495dd845bcd162b09129e52ace3b69&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130725916274758/uu9sLsq.mp4?ex=65c76c14&is=65b4f714&hm=d55860d1e7bcedc48e645ccdbc6d7a5281ac6bfa3e222868895038bfc35ceaea&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130725576527902/UncommonVeneratedBumblebee-mobile.mp4?ex=65c76c14&is=65b4f714&hm=55a76effcae86f299efddf8486fd1e6d5bbc88e8ede0dc9a0e42370f5b870532&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130725291327558/VibrantSafeBear-mobile.mp4?ex=65c76c14&is=65b4f714&hm=c1b4a403490b0c8b2b56d268e3c8aab58b4ca5298973108122837bd9748ac627&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130724737654794/V07Z84m.mp4?ex=65c76c14&is=65b4f714&hm=1eddf24e557738f023a2434ff5ba18ffef716c8d25fbddf585405f246afc49e0&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130756744400896/VID_20210311_172254_417.mp4?ex=65c76c1c&is=65b4f71c&hm=11de27397f16b1b9bbedac93d35502f2adfefaf31b43febf5dfe32c00d011c6c&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130890416873492/video0_2.mp4?ex=65c76c3c&is=65b4f73c&hm=bb01f0b6b786b2c8f418136c95fb10a6ee75b8f1bcf429f8e1de47693ab28e0f&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130889968070686/video0_1.mp4?ex=65c76c3b&is=65b4f73b&hm=cd65e8d7c0e90c67e7dfde1d9919324e68b4c93fe7f8b8f443a05de1e0884229&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130889116647444/video0_4.mp4?ex=65c76c3b&is=65b4f73b&hm=1cc3327aa1a32014e94df914c5b2df1c55dd64903f5c2c5b99602ade843ecb8e&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130888055463936/video0_3.mp4?ex=65c76c3b&is=65b4f73b&hm=f7d5268b24d9aacfab879c5ff419da861a40f816c88274e080a24208ff74c7e0&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130992254550056/video0_5.mp4?ex=65c76c54&is=65b4f754&hm=25043c80285c3d34d926d4094040f42654dce83ba2e5cc00501ed062b7e79464&", + "https://cdn.discordapp.com/attachments/912913784945913886/914130991491207178/video0_6.mp4?ex=65c76c54&is=65b4f754&hm=6e13362bf06a41d1c567c318d08612024bde6128e47e8a8297b317ad1f208a04&", + "https://cdn.discordapp.com/attachments/912913784945913886/914131144415514624/video0-1.mp4?ex=65c76c78&is=65b4f778&hm=d07a6dfe67c33192231e53a8c0b979dd89af64f6d34748d0625ecbd724ca90a7&", + "https://cdn.discordapp.com/attachments/912913784945913886/914131143555706900/video0_2_copy.mp4?ex=65c76c78&is=65b4f778&hm=4232e07f89fa04647be2991092f5584c783a86153d0411861087ef919d842002&", + "https://cdn.discordapp.com/attachments/912913784945913886/914131143203356684/video0.mp4?ex=65c76c78&is=65b4f778&hm=ed9b3e3985dd003f843b5f33d60d654c4fd4dbf1498affb938ffa1ec28eff460&", + "https://cdn.discordapp.com/attachments/912913784945913886/914131142431637554/WickedPossibleArrowana-mobile.mp4?ex=65c76c78&is=65b4f778&hm=fe91cf3b9ce002c8e1b7b2e2938fd68704180c3ccade112ee6a88f1e5fe01290&", + "https://cdn.discordapp.com/attachments/912913784945913886/914131140749697044/video-1595852454.mp4?ex=65c76c77&is=65b4f777&hm=44b9e1aa48f21c9d1c0f473b60c5cbbd043d35b4d20fccc0070fa8504f1e67d3&", + "https://cdn.discordapp.com/attachments/912913784945913886/914131180096466974/xvideos.com_6f7b4cd23171d52df928e26a67e57c17.mp4?ex=65c76c81&is=65b4f781&hm=1fb9bd400cf0ecebfbd55a32ced714e4e8658b9456fd9c2272d50a43366c9b49&", + "https://cdn.discordapp.com/attachments/912913784945913886/914131404772769872/xvideos.com_1514bd7a192d8ff90054506edef014b4.mp4?ex=65c76cb6&is=65b4f7b6&hm=0571dbda241b0e1fd72c306c5422aff10e8b9a401d3e39eb3ba2bc166958aefb&", + "https://cdn.discordapp.com/attachments/912913784945913886/914131403598331934/xvideos.com_58db076c5f8379404ad74fa1afbd043b.mp4?ex=65c76cb6&is=65b4f7b6&hm=5c7283afd48a3cd2dd495643e0f0edb5bce5b97b4b287cc1f5716a093a29a44f&", + "https://cdn.discordapp.com/attachments/912913784945913886/914131434506158131/xvideos.com_a618b0fab5200480b9db4498242319b1.mp4?ex=65c76cbd&is=65b4f7bd&hm=dbc1cdb6952068a8ff9ce5bf75043e57b14ff55fb4cf582260c23f4070cd90f5&", + "https://cdn.discordapp.com/attachments/912913784945913886/914133849347326012/assg.mp4?ex=65c76efd&is=65b4f9fd&hm=d0c8b6e80155d701c05f01718d42201b90bdefc42707bc6e908af825564ea372&", + "https://cdn.discordapp.com/attachments/912913784945913886/914133848646885376/analpassionvids_1459962841226645504360P.mp4?ex=65c76efd&is=65b4f9fd&hm=5edf21b7d3b6b057127ddd396b438f626b2c7ca736f9eeac574e8d13eb3fdc90&", + "https://cdn.discordapp.com/attachments/912913784945913886/914133848189710336/5552751a_1.mp4?ex=65c76efd&is=65b4f9fd&hm=f492abc738e7ade5f32edd68b551d7bcceb14cdd4bd67d41e2e2bd8b5d2ca879&", + "https://cdn.discordapp.com/attachments/912913784945913886/914133847199875092/HotpinkCrookedHedgehog-mobile.mp4?ex=65c76efc&is=65b4f9fc&hm=ef75075f36d4e95290fe53524a58366bc723395a85948ee3816d00a9d20794f7&", + "https://cdn.discordapp.com/attachments/912913784945913886/914133846562308106/goten1.mp4?ex=65c76efc&is=65b4f9fc&hm=e8d134165ff07cfff7f23af740ab7387173e616997c60f35de672537c7f8040b&", + "https://cdn.discordapp.com/attachments/912913784945913886/914133840526712854/b34e1331d950dc6cff093455d47552cb.mp4?ex=65c76efb&is=65b4f9fb&hm=51f4470664492c61f6a935a4595a221522dc0b485f373d944b499fd8ca1a74e8&", + "https://cdn.discordapp.com/attachments/912913784945913886/914133839503314954/AttachedSandybrownCranefly-mobile.mp4?ex=65c76efb&is=65b4f9fb&hm=ccb4eb46ad725257b0e74baf8265727eb3b92c04bf8e1fe6bcb569492b585672&", + "https://cdn.discordapp.com/attachments/912913784945913886/914133945451429929/IMG_20211101_030225_358.mp4?ex=65c76f14&is=65b4fa14&hm=7e6d54156c0cf9d971eadfbfea3f2e13e3620d9fd78d056df9b4029b8d48270a&", + "https://cdn.discordapp.com/attachments/912913784945913886/914133944692252682/Le_doy_rico_por_el_culo_a_la_novia_de_mi_amigo_Kenzie_ReevesMP4_High_Quality.mp4?ex=65c76f14&is=65b4fa14&hm=781195dcfa82e7ab8613617b4bbfe3713218ac2a350763d7d9d5c32d72e75d1f&", + "https://cdn.discordapp.com/attachments/912913784945913886/914133943849218068/InShot_20210923_174748201.mp4?ex=65c76f14&is=65b4fa14&hm=8d410055774503dacd937f71ecc59d535f55273068c1bfca91319c4d16a73f83&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134054151012372/PalegreenDevotedAplomadofalcon.mp4?ex=65c76f2e&is=65b4fa2e&hm=50777e62721449322e3effab8a4912b04e1a1b3881192471cb29fd8a7276b935&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134106017763338/UnusualShyWaterdogs-mobile.mp4?ex=65c76f3a&is=65b4fa3a&hm=1b9529758b0ba4d7fd3acdc8a54576c5bd63a504db324f24e6f0bb3f22815539&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134105254408212/UnnaturalAgitatedArgusfish-mobile.mp4?ex=65c76f3a&is=65b4fa3a&hm=88f9a07e8afb41477c0f07d3981ed131d2cd4f0987a713b41e5e497240cd4172&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134104176467968/VID_20211116_001758_008.mp4?ex=65c76f3a&is=65b4fa3a&hm=95264efb51d72e6da2bd6c9b05de1c3d1b2bce893548bd6b98f6cf9153db7a73&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134103333429298/VID_20211101_224548_610.mp4?ex=65c76f3a&is=65b4fa3a&hm=7b96accc8f408ea12b593920b33bc489590923339ebbf90f53e99e7b6ddf2c5c&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134102591025202/VID_20211027_151831_754.mp4?ex=65c76f39&is=65b4fa39&hm=a0c6cc0dbdbb31b568bb46a17eed33cff0381e74855cf66ae34f441ca36aab96&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134224418770974/VID_20211117_092447_822.mp4?ex=65c76f56&is=65b4fa56&hm=5ea15649ecbd8cc666a5dcf9133fb808ad8660d0d2a53ee26213830a292e31f4&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134223407968266/video_2021-07-23_18-38-08.mp4?ex=65c76f56&is=65b4fa56&hm=dbf03f5d3dfe95f664af04a29f3d4a3ffa97951a231369bdcfe8f18596ef64cf&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134222602657792/VID_20211121_221357_791.mp4?ex=65c76f56&is=65b4fa56&hm=4fcce8fde113f5f9bb67506a3a09bd6d4bcf7a11c0499b00bf0aee3c7258b762&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134222166442004/VID_20211117_181234_963.mp4?ex=65c76f56&is=65b4fa56&hm=00218314a27905d3c8a4a7fe66aa55fbd2a132373e1d1533556abedc69a94805&", + "https://cdn.discordapp.com/attachments/912913784945913886/914134676623478864/SarcasticOrganicKid-mobile.mp4?ex=65c76fc2&is=65b4fac2&hm=a947a276704334f1055172e788966f6a555b9e3e18ec0fcd14b6209696a18d86&", + "https://cdn.discordapp.com/attachments/912913784945913886/914135500938420284/video_2021-07-23_18-38-08.mp4?ex=65c77087&is=65b4fb87&hm=93c53afd3a8c9eadbf7cada1b2b1fbd07ec252025f3b170a11d0718f8940df87&", + "https://cdn.discordapp.com/attachments/912913784945913886/914135500200214538/video4.mp4?ex=65c77087&is=65b4fb87&hm=eb201b2ab0375228a3482cc4c9bb53e78ab580ed481e9c08908b9e2383ac2098&", + "https://cdn.discordapp.com/attachments/912913784945913886/914135499273306132/video0_2.mp4?ex=65c77086&is=65b4fb86&hm=a921a7804ae5d191fc34b6d6e95499d90828cb2af3a5a4a82cb9be4935ed48e3&", + "https://cdn.discordapp.com/attachments/912913784945913886/917934949389185054/2_5424729598212441830.mp4?ex=65cc088a&is=65b9938a&hm=0e0fb8479f0bc0401856d437158395ff06ec618f92d12b61b43f1b86f88a39f5&", + "https://cdn.discordapp.com/attachments/912913784945913886/917934976429883462/11.mp4?ex=65cc0890&is=65b99390&hm=e95bffba47627180951b33d1b1ba7f85eb687bf4fac0b2245102730caf604e5a&", + "https://cdn.discordapp.com/attachments/912913784945913886/917935013822103572/46f0eca052bbfa1cb5e710f1a86af4c5.mp4?ex=65cc0899&is=65b99399&hm=bcf08d5f7b609660eb37169e08f0080015ec71d45f4139a5cd8a391be1894cd6&", + "https://cdn.discordapp.com/attachments/912913784945913886/917935032054718474/180555252.mp4?ex=65cc089e&is=65b9939e&hm=c519fb3a10d9388b4f9412c30c9d72f6f5b6e3dca603cb1f8586e15366bb9706&", + "https://cdn.discordapp.com/attachments/912913784945913886/917935052954939453/614355476.mp4?ex=65cc08a3&is=65b993a3&hm=6fc7dbe142ffb9b5678f53b4b028b1eafc2f78f8c95bcc9358f59196ac59f11b&", + "https://cdn.discordapp.com/attachments/912913784945913886/917935107111784488/aaaaa.mp4?ex=65cc08af&is=65b993af&hm=9600718059f960cc64e15d05fa2d67c09506a4cffc3fb8cff2ea9e3e858094b6&", + "https://cdn.discordapp.com/attachments/912913784945913886/917935113172578424/cSQb1iK.mp4?ex=65cc08b1&is=65b993b1&hm=142d10b03a08337f8fe40aac03262de43ca52c53168d1bad5d99316817dd244e&", + "https://cdn.discordapp.com/attachments/912913784945913886/917935118478368768/ColdDarkgreenIberianchiffchaff.mp4?ex=65cc08b2&is=65b993b2&hm=7ba626a6a3d6e90767a67bbb3dbaeceee3f3d3922572d488b625cc44e213e9c0&", + "https://cdn.discordapp.com/attachments/912913784945913886/917935142717235240/hayFS0s.mp4?ex=65cc08b8&is=65b993b8&hm=b611cffbe2b91a0ccbeaf1c37d5c1325f8dd2992ba9206bb420303ce556e4bee&", + "https://cdn.discordapp.com/attachments/912913784945913886/917935163596496917/IllfatedLivelyBordercollie-mobile.mp4?ex=65cc08bd&is=65b993bd&hm=2777157ec0cd43c6494518536b61e461cc2fba53a981b783fd8a8b389741b999&", + "https://cdn.discordapp.com/attachments/912913775437447178/914116448757112852/5.mp4?ex=65c75ec8&is=65b4e9c8&hm=70cfb63b9cf1d2caa8f398f0f0e5b3bcb7b60d21f1c69197f6efb296cff4504a&", + "https://cdn.discordapp.com/attachments/912913775437447178/914116972885704734/939464.mp4?ex=65c75f45&is=65b4ea45&hm=bd0bb0f7da043ae40a93353e2499dc8ccf52cecfa00db71a1d3b32387be1ee08&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117033329827860/Bratty_sis_Gabriella_Lopez_-_XVIDEOS.COM_sd.mp4?ex=65c75f54&is=65b4ea54&hm=560c12f829b4e09bc5fada345eeaea2c1e19aab19fd0164a0d58fc5d97c68e20&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117071636398110/CautiousFluidKite-mobile.mp4?ex=65c75f5d&is=65b4ea5d&hm=0c0e9e468d076cd81d6be6e6fd35574b794d7c03b7d3c7bbdca8405c654214d2&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117117471780874/DroopySpecificNightingale-mobile.mp4?ex=65c75f68&is=65b4ea68&hm=352ad1fd100672592d8b710ac419f0a924eabae18f0b0110c829eda7260da896&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117178725367808/Egv8Q_L9WUUTVloZ.mp4?ex=65c75f76&is=65b4ea76&hm=e1c81df23599ef7123d21b7e169ed166aeb046c86db59c54ac2ceed738d72f13&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117578564190228/FemininePoorArrowana-mobile.mp4?ex=65c75fd6&is=65b4ead6&hm=a1412d07766bbdf2526be35cb4add70d8c9140b4e426b341d9342ad7207bb1e2&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117636634333184/g8wp2fX.mp4?ex=65c75fe4&is=65b4eae4&hm=bf9fbc0d9b576dc138674d5a1b4600be46e7aca2d7c0894d16d158389e2e36b5&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117694599610408/https___t.co_AkINhQLMY6.mp4?ex=65c75ff1&is=65b4eaf1&hm=ce625b6524e1c57014bb2cfcd45aabff24997e4f547cc2be9f82ea85223e74e2&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117733401128980/IMG_20201208_002802_664.mp4?ex=65c75ffb&is=65b4eafb&hm=2354a65cad563c78b4eba49d73b146f206f81994f0b49a7bb23d1cc1e5657931&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117842599817216/Lana_Rhoades_-_XVIDEOS.COM_sd.mp4?ex=65c76015&is=65b4eb15&hm=628a7e985adac6e20619ae7fff73c003c641a811a34fba235658d0c83bb169ef&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117905329827840/molly_jane_in_fucking_my_step-dad_infront_of_mom.mp4?ex=65c76024&is=65b4eb24&hm=49472a0d00a6942bea7795c88d4a037a91ffd331855a1016e68ce9845760e9b1&", + "https://cdn.discordapp.com/attachments/912913775437447178/914117988658085898/PURGATORYX_Genie_Wishes_Vol_2_Part_2_with_Bella_Rolland_and_La_Sirena_69_-_XVIDEOS.COM_sd.mp4?ex=65c76037&is=65b4eb37&hm=c74e2c2c33575a4ecdb78786aff4a5f02270e5ebd8f3c54d5980fdca3d215cd9&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118030873731152/Q3FpmpX.mp4?ex=65c76042&is=65b4eb42&hm=40294547bf9bdaa52cd0f2423536f596b8674c04f54050f9ad760a9ba3290736&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118080622383134/qot87iqOy5sVGAnW.mp4?ex=65c7604d&is=65b4eb4d&hm=b174c81fa3074baf429623a689b4299a60068f14fc6f35704094cc4ef959d62f&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118130698166322/received_424599222182381.mp4?ex=65c76059&is=65b4eb59&hm=08f620d68ed06769ca60213615b51ce84e25ba1c76a1bd1168e186387a816fae&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118141452353567/received_2406803449625647.mp4?ex=65c7605c&is=65b4eb5c&hm=9887fa3904ff6b9cb67df160496ab744344dff37976c22c3348a30e141eb7e5b&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118169344495707/received_2856494034636334.mp4?ex=65c76063&is=65b4eb63&hm=7e5831222e886bb5a980b4808facc8dbc5498a3fe66ee9993831ee7d91a9d5c9&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118264530030652/ShockingJitteryIndianglassfish-mobile.mp4?ex=65c76079&is=65b4eb79&hm=dddf13f49b87097790a2c0b686e6b6831374f5a8d09e349e4c838cf77376883e&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118262655164427/TABOO._HE_FUCKED_STE...NOWING_1.mp4?ex=65c76079&is=65b4eb79&hm=acf3cc5111e3f8061141afe58b8cf7d8bc775291ec27a4b697ea2a765ff90eaa&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118261484970054/StrongFabulousBalloonfish-mobile.mp4?ex=65c76079&is=65b4eb79&hm=667467fc788fb4d04e3122ba56818a01f3b1616b4033260530296adb0e2088dd&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118483858567248/VID_20201117_094827_380.mp4?ex=65c760ae&is=65b4ebae&hm=5af5311b6e37bd3b05ec695d6b5818b77afaa417e8188fea48aaa25d3d55ba6e&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118483174907974/VID_20200824_170147_659.mp4?ex=65c760ad&is=65b4ebad&hm=d6928510114f25d46e9ad698dbefb3c926f72dcf136a3464219c081c75439747&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118482717720656/VID_20200815_160856_853.mp4?ex=65c760ad&is=65b4ebad&hm=67ee72ddf09dda7f0573935aab98e76e41aa18e3667c3ed4683aa524ee45c8c2&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118481748828230/VID_20210104_154610_102.mp4?ex=65c760ad&is=65b4ebad&hm=5bb3843a325771307bf499a7ebdefc3b42f56504024c541645e9e29375b32168&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118480746385498/VID_20210104_153702_892.mp4?ex=65c760ad&is=65b4ebad&hm=e5b05197e8aade25e3db7e9083226018e4d4fc9bac2c0f42ff3f5e269c1548a7&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118480117264404/VID_20201225_111551_162.mp4?ex=65c760ad&is=65b4ebad&hm=3ee4f633b04b8498a34c2d67a356a64bdd6ec3b5675ae93bb765f3c257485e13&", + "https://cdn.discordapp.com/attachments/912913775437447178/914118479358078976/VID_20201117_095010_852.mp4?ex=65c760ac&is=65b4ebac&hm=fecf7ecad8b96784b0c420665b56846e04be82a32b96a8710617963e8f5afc6b&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119324313223178/video0_3.mp4?ex=65c76176&is=65b4ec76&hm=04a51ccad223722a2fba6ee1ebad9b3a104f506ec0b1f1dfc9ba3600260215c0&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119323235282984/video0_2.mp4?ex=65c76176&is=65b4ec76&hm=720cf49512ba2bcdded9bf172891c6774206c3fcc227d1bbc36a9016aa980f1a&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119322669027348/video0_1.mp4?ex=65c76176&is=65b4ec76&hm=caaaf6d4571aaaa0f6a836946f6b7c32ca9ef4eacfe432f1c226736bcc8d830b&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119321729523722/video0_6.mp4?ex=65c76175&is=65b4ec75&hm=9cf90732c2264782deac35c918432d2b84fea658b2882b1cdb0f91e836c52b29&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119320789987388/video0_5.mp4?ex=65c76175&is=65b4ec75&hm=2407325647223f3cd7e98679481a2ee7954a5ff316e4eaccf11533946d2d1643&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119320039223306/video0_4.mp4?ex=65c76175&is=65b4ec75&hm=b9bfc0b20452a2a99b8877001d709a1169e4c0285156875369a52ada72e122ff&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119493314293780/video0_7.mp4?ex=65c7619e&is=65b4ec9e&hm=b5f9cb412d3a7ca26b06cb704ff160f45eecd04137db86349087501f189e8391&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119605302222909/video0.mp4?ex=65c761b9&is=65b4ecb9&hm=e6375a69162f325e4c9eb3d33505a1d0d8b6d7f2394017db78e1839726f8153f&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119604241051718/video0-4.mp4?ex=65c761b9&is=65b4ecb9&hm=2270d30418addf2068d8d50301db7fe39a525eb0bf8ea432c17ffce8d50fc993&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119603364458496/video0-1-1.mp4?ex=65c761b8&is=65b4ecb8&hm=c67241be5cbe0b8963e457684a13cc3e36c37fdda448d90a5eaf0f043e15cd6d&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119629322993714/video3.mp4?ex=65c761bf&is=65b4ecbf&hm=5cdef9d0674bbb65ec384b55ef91f4bc0c5794d8f00bf83750fdc688a04d23fc&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119741042462770/vixen_kendra_sunderland_finally_fucked_by_her_fathers_friend.mp4?ex=65c761d9&is=65b4ecd9&hm=8444fe969b5f7130ded1baf3fd097f25c49e9c27cd72734308a04e9172351ba7&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119852946489344/xvideos.com_41eb916530d6585c0d534870e8d2d64d.mp4?ex=65c761f4&is=65b4ecf4&hm=7a6a660245f572e6b8960e0605da9aa9ee1b8ee3cd812e2eeb2191be92bb16c0&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119867546865664/xvideos.com_59a491c72d35856ff3dc2109ceff49f6.mp4?ex=65c761f7&is=65b4ecf7&hm=b396bdc27304bede095d6247d6fc281c7bd462ce346bd1b6b7e713efb025d25b&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119906260312084/xvideos.com_e6d750115ade0695c1b351195ba99b38_1.mp4?ex=65c76201&is=65b4ed01&hm=a90828971fbb4ef5ff1e266d278d1d2f1e8f8c5b576fb085d98101e134858303&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119909989040128/xvideos.com_89e2790edc216589d4bb170b7a903542.mp4?ex=65c76202&is=65b4ed02&hm=8b66c689c9326a865dabfc0c1f52e631810aa5dfbeee6db2eff525174a4c80c9&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119919069712404/xvideos.com_e6d750115ade0695c1b351195ba99b38.mp4?ex=65c76204&is=65b4ed04&hm=850ba0822fbd8f7e0707e23a7c68d5ec1c62d10039db64ac09f69ea81e2dab36&", + "https://cdn.discordapp.com/attachments/912913775437447178/914119989970239529/ZGad3Bu7qTpO0sdm.mp4?ex=65c76215&is=65b4ed15&hm=253b8133b0cb049a8f030e279153d59209e6b1e552d511fd8a0f9ae272a68bec&", + "https://cdn.discordapp.com/attachments/912913775437447178/914127242009903164/3JDFSFK.mp4?ex=65c768d6&is=65b4f3d6&hm=78822e0fa7472466238290d9da071710b4e7fa375b7bca1222d7835a0d3bfe85&", + "https://cdn.discordapp.com/attachments/912913775437447178/914127383076962364/BrilliantCreamyHalibut-mobile-1.mp4?ex=65c768f7&is=65b4f3f7&hm=b659bd299ab28d5142bf4f78f437646ee7e0237ca6f7a07a3ed8360404346881&", + "https://cdn.discordapp.com/attachments/912913775437447178/914127380740722700/blondpeche_1.mp4?ex=65c768f7&is=65b4f3f7&hm=5ac871f29242a7874d8653c22b80fe52c21b9d96fd713196c26ababf8204f995&", + "https://cdn.discordapp.com/attachments/912913775437447178/914127380061224970/BlondAnotherBirdofparadise-mobile.mp4?ex=65c768f7&is=65b4f3f7&hm=ab715f6c07a479932a548fc00c2a24fb434be3660c36dbd483fe474a16bf5881&", + "https://cdn.discordapp.com/attachments/912913775437447178/917931439041945660/q2tw8cczgdjBQRsE0-1.mp4?ex=65cc0545&is=65b99045&hm=34ac850486c9e29a63cbfdf36b8e5f3789a291ce925040be2a08a2b693c82a8e&", + "https://cdn.discordapp.com/attachments/912913775437447178/917931438115016744/goten1.mp4?ex=65cc0545&is=65b99045&hm=e4105134fcd1e3f86b48a01adf28bdd3fc9f135dce95c4f55a399c0b5ec861b8&", + "https://cdn.discordapp.com/attachments/912913775437447178/917931437443919902/2_5339059448927225076.mp4?ex=65cc0545&is=65b99045&hm=c83dd6484b328a639455a2d51f77625dc53782f955fe10861e997751e81d94a5&", + "https://cdn.discordapp.com/attachments/912913775437447178/917931436110118982/Redgifs-viciousintentsiamesecat.mp4?ex=65cc0544&is=65b99044&hm=7fb8e5bbee48750e071515d51a782a7d8f5d669731f47b2809a3a0e9d3ff3561&", + "https://cdn.discordapp.com/attachments/912913775437447178/917931605773910067/VID_20211203_143301_850.mp4?ex=65cc056d&is=65b9906d&hm=3224f77dafc162791c6994d2388b6596bf50a795bde48a5412937ce15d34ee8e&", + "https://cdn.discordapp.com/attachments/912913775437447178/917931604410765312/VID_20211203_143120_728.mp4?ex=65cc056c&is=65b9906c&hm=8d9022b491adc8fcad2692e259ead264a63a0c3dca4c7774c7161fa36b6c1b10&", + "https://cdn.discordapp.com/attachments/912913775437447178/917931603458670632/VID_20211203_142956_646.mp4?ex=65cc056c&is=65b9906c&hm=d24c56efee5301905053d6ee2011a5c18372c56a70bcab4720a168178c29df5f&", + "https://cdn.discordapp.com/attachments/912913775437447178/917931602296840302/VID_20211203_142915_274.mp4?ex=65cc056c&is=65b9906c&hm=c55cea1e17b1d284821a1fb01b01d2c93b371a6eb796f7ccec8d411480eece04&", + "https://cdn.discordapp.com/attachments/912913775437447178/917931600413601884/VID_20211203_142436_407.mp4?ex=65cc056b&is=65b9906b&hm=f09291fa8cae22e71b412aa1e388c6e2ecd8637123931d593f3939cd628ac25f&", + "https://cdn.discordapp.com/attachments/912913775437447178/917931598782021652/VID_20211203_142359_043.mp4?ex=65cc056b&is=65b9906b&hm=8152e7f9a4a47f445f52149df593fbc2d471bb77d93a9aefb30af0cad971cafe&", + "https://cdn.discordapp.com/attachments/763860707544137759/1124344070119096350/SWEET_Creamy_Morning_SEX_Blonde_Perfect_Ass_POV__amateur_homemade__www.saveporn.net.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1126973696628764823/VID_20230707_232844_819.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/884456377018372186/jbc.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1038558589754818670/VID_20221106_060014_029.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1125050205914529892/phatass_asanbbc_720p.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1132661103164403712/LuminousCostlyGuernseycow.mov", + "https://cdn.discordapp.com/attachments/763860707544137759/879358199902388264/Angry_Wife_Takes_it_Out_on_Stepsons_Cock_720p.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1128562807395336213/freenude_26.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1007344100929966100/Screen_Recording_20220808-015247_Twitter.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1107377634456899644/37742941a.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1124970737699139654/VID_20230702_105047_195.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1119947948529291284/lv_0_20230618160708.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/921915218706190356/xvideos.com_6cd4e2392b7f3db9ecd6f40ff7aa3625.mp4", + "https://cdn.discordapp.com/attachments/765015522747220019/796632816061382676/Melody_Foxx_POV_02.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/940457633784139776/video0_9.mov", + "https://cdn.discordapp.com/attachments/763860707544137759/1131417580368822292/Naughty_America_-_Melody_Mynx_Johnny_Love_-_My_Friends_Hot_Mom.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1131114903801970740/Valerica_Steele_-_New_tits_anniversary_creampie.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1114706991949037598/20_sec.mp4", + "https://media.discordapp.net/attachments/763860707544137759/1011116427291402260/video0-3.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/898119412782071838/www.packsgratis.store_1.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/935778323626352740/IMG_20210818_011525_843.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1105590816145166417/VID_20221019_025845_196.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1128530141476290580/SurprisedWhichLamb.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1099341352921206866/twitter_20220929_103626.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1110618250376654929/RgFT8hWjWTaoe1Ra.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1105706546761056277/mavis....mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/828048835728244737/video0.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1125447195051687948/Wanna_taste_your_Stepbros_cum_Lulu_Chu_asks_Maria_Kazi-_S25E12_www.saveporn.net.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1093863724735012966/Big_Juicy_Titties_Bounce_while_Hot_Brunette_Gets_Fucked_-_Pornhub.com.mp4", + "https://realbooru.com/images/9d/7b/9d7b9f83a6d8f8ac757465cd31556733.webm", + "https://cdn.discordapp.com/attachments/763860707544137759/1013876869726216272/4170F841-9E80-4482-99BA-27789629AD06.mov", + "https://cdn.discordapp.com/attachments/765015522747220019/816452837172576306/FrenchCornyGnu-mobile.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1119897646853787689/1686189258283030.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1038552276236771349/trim.3B432988-993E-41EF-87F7-92E9F397E7EB.mp4", + "https://media.discordapp.net/attachments/771793844520878091/789983035755331604/7ee3b156b3bb220781cbd9242418f.gif", + "https://cdn.discordapp.com/attachments/763860707544137759/1109758229396852776/0521_1.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1014703671587639296/QualifiedStraightSwordfish.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1015597182537170994/GetCucks_1558075249719132163360P.mp4", + "https://cdn.discordapp.com/attachments/506760951119478785/1111393555907362866/video_2023-04-16_12-49-49_6.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1049669921090588672/VID_20221206_155331_644.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/858004016462036992/Rae_LiL_Black_having...ersion_1.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/953164481419165766/sexstud10911.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1056822306229473352/SZt-1ydNqHnwJWeL.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1014432867276828673/VID_20220129_204123_326.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1131924963369173162/FrozenLongBeardedcollie.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1127639590375796846/ssstwitter.com_1685636723271_1.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1092805456054980738/encode20230404185635.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/1089018593783599234/Video_1.mp4", + "https://cdn.discordapp.com/attachments/763860707544137759/959969934975324230/720P_4000K_156522032.mp4", + "https://media.discordapp.net/attachments/763851749164974081/879398467133378560/VID_20210822_010508_738.mp4", + "https://cdn.discordapp.com/attachments/529526419102105605/738638770710249513/video0.mp4", + "https://cdn.discordapp.com/attachments/700991664700784660/702472738849161286/AppropriateSneakyAurochs-mobile.mp4", + "https://cdn.discordapp.com/attachments/838661398274899998/838661595742732298/VID_20210429_111148_000.mp4", + "https://cdn.discordapp.com/attachments/525642910004150274/778660524308824084/4_5843822027235920007.mp4", + "https://cdn.discordapp.com/attachments/838631106210955264/935107411189047327/compress_video.mov", + "https://cdn.discordapp.com/attachments/838661398274899998/935109138487324692/compress_video.mov", + "https://cdn.discordapp.com/attachments/1035448270627024906/1041133310434357248/SnivelingScalyGenet.mov", + "https://cdn.discordapp.com/attachments/998331826433171513/1004817422219493416/SexHousePublic4.mp4", + "https://media.discordapp.net/attachments/998331826433171513/1004819057062715434/SexHousePublic60.mp4", + "https://media.discordapp.net/attachments/998331826433171513/1004817421250613469/SexHousePublic56.mp4", + "https://media.discordapp.net/attachments/998331826902941748/1015171417668591666/4_6025901535047714845.mp4", + "https://cdn.discordapp.com/attachments/1004853584883622028/1020342449538859039/discord.ggssex_45.mov", + "https://cdn.discordapp.com/attachments/1004853584883622028/1020342448842621020/discord.ggssex_43.mov", + "https://cdn.discordapp.com/attachments/971504175676534814/972592593726742538/Brazzers_Subject6.mov", + "https://media.discordapp.net/attachments/1023545387484713000/1023835745758224395/HopefulPristineHuia-mobile.mp4", + "https://cdn.discordapp.com/attachments/1004853584883622028/1020345500878254190/discord.ggssex_18.webm", + "https://cdn.discordapp.com/attachments/1004853584883622028/1020345269969227827/discord.ggssex_30.mp4", + "https://cdn.discordapp.com/attachments/983847912314380298/988174630546202664/MildBetterCrane-mobile.mp4", + "https://cdn.discordapp.com/attachments/983847912314380298/983850861958664212/viddit_5baa1d78.mov", + "https://cdn.discordapp.com/attachments/971503829298327582/988494305553416312/public9.mov", + "https://cdn.discordapp.com/attachments/838661398274899998/861047986883657738/XyrDxPUluAT6QLJe.mp4", + "https://cdn.discordapp.com/attachments/838661398274899998/870793690870845471/480P_2000K_109337742.mp4", + "https://cdn.discordapp.com/attachments/838631106210955264/862523346901401641/slutty_elevator.mp4", + "https://cdn.discordapp.com/attachments/976381349395050526/1016439791073628211/SexHouse_Public48.mov", + "https://cdn.discordapp.com/attachments/964889599610605618/983755452582088704/v8CeTJc1.mp4", + "https://cdn.discordapp.com/attachments/829474179287875594/1021138858584309810/video0.mov", + "https://media.discordapp.net/attachments/998331825426546755/1008659769613094962/SexHouseAmator33.mp4", + "https://media.discordapp.net/attachments/998331825426546755/1023491576124670002/SexHouseAmator10.mp4", + "https://media.discordapp.net/attachments/998331826433171512/1011934389401292851/AffectionateGreenAntipodesgreenparakeet-mobile.mov", + "https://media.discordapp.net/attachments/878002095163314196/957806025820491797/BreakableBountifulImpala-mobile.mp4", + "https://cdn.discordapp.com/attachments/942237158972985385/960345306535440425/LimeWhisperedAmericanlobster-mobile.mp4", + "https://cdn.discordapp.com/attachments/923288795284123678/1000127474358829056/irTAnOKpQKLjXlCJ.mp4", + "https://cdn.discordapp.com/attachments/679658921316712494/933016018488553472/FabulousDecimalHound-mobile.mp4", + "https://cdn.discordapp.com/attachments/844018937410617344/867141150925127680/UIiS6JXyCpqsFonH.mp4", + "https://video.twimg.com/amplify_video/1536459588534403075/vid/1280x692/MU1YHtyCVRttxzi-.mp4?tag=14", + "https://media.discordapp.net/attachments/768030683842609172/993973995143704656/NuttySaltyAmericancrayfish-mobile.mp4", + "https://cdn.discordapp.com/attachments/861528923535704074/918243489639186432/LinenUncomfortablePika-mobile.mp4", + "https://cdn.discordapp.com/attachments/797628390311067680/808854816382124072/video0.mp4", + "https://media.discordapp.net/attachments/962512742722449418/964225364073279548/ZauLpmctFxwfV6Ao.mp4", + "https://cdn.discordapp.com/attachments/884802196573679706/885739333968093264/Catching_my_Slutty_Step_Sister_Lulu_Chu_trying_to_Sneak_out_of_the_House.mp4", + "https://cdn.discordapp.com/attachments/884802196573679706/893321066791981076/Lustful_Asian_gal_rides_her_lover_in_hot_sex_action.mp4", + "https://cdn.discordapp.com/attachments/979103092266123264/1024463797924147260/video-1660387035.mp4", + "https://media.discordapp.net/attachments/729741162855923776/1005601326153093170/xvideos.com_1514bd7a192d8ff90054506edef014b4.mp4", + "https://cdn.discordapp.com/attachments/844018937410617344/940020619976785940/compress_video.mov", + "https://media.discordapp.net/attachments/974813302939066429/976604766652211251/Brazzers_Anal3456.mp4", + "https://video.twimg.com/amplify_video/1547390171465023488/vid/720x720/YkyStZHaY1SyqoK6.mp4?tag=14", + "https://cdn.discordapp.com/attachments/956622908036370502/997604310995177492/video_2022-07-15_15-36-00.mp4", + "https://cdn.discordapp.com/attachments/1004852465709101157/1020379047252992000/discord.ggssex_52.mp4", + "https://realbooru.com/images/d3/a0/d3a0d5cc8eedf91facf2a6c0f1f81f16.webm", + "https://media.discordapp.net/attachments/812286585554468874/825863354539180082/1_4945240608928170220.mp4", + "https://cdn.discordapp.com/attachments/864065249098203146/910324073542869052/RashRingedUrchin-mobile_1.mp4", + "https://cdn.discordapp.com/attachments/971503699002265660/972540434524028978/IMG_2609-13.mp4", + "https://video.twimg.com/ext_tw_video/1163015275047989248/pu/vid/1280x720/TG7j2D74o20117DL.mp4?tag=10", + "https://cdn.discordapp.com/attachments/1002130791519748177/1014351414161592400/-6584691852115338500.mp4", + "https://cdn.discordapp.com/attachments/971503784377344050/991168946898215045/GtGpAqJAmtxi-hdk.mp4", + "https://cdn.discordapp.com/attachments/971503203466248272/1032221712156205077/VID_20220928_221010_494.mp4", + "https://cdn.discordapp.com/attachments/971503215252221984/1010309626207678564/486f69ffd7871ed72f59f04ec3da1f36.vid.pg.mp4", + "https://cdn.discordapp.com/attachments/998335491361484800/1002660511302832129/haqVTATl-t4uAjg_.mp4", + "https://media.discordapp.net/attachments/975400983611998208/985112202975535104/HeavenlyBaggyGlowworm-mobile.mp4", + "https://cdn.discordapp.com/attachments/630518936475140157/806289554096652329/twitter_20210202_192404.mp4", + "https://cdn.discordapp.com/attachments/916154358230581310/920433432700538950/video0_8.mp4", + "https://media.discordapp.net/attachments/648347497995042818/797939019275173888/GoodnaturedWatchfulBeagle-mobile.mp4", + "https://cdn.discordapp.com/attachments/1017868780849868801/1023332118748733523/group.mp4", + "https://cdn.discordapp.com/attachments/1002130987804790884/1004610001496707092/2_5377329935406861911_1.mp4", + "https://realbooru.com/images/0f/c0/0fc074c4041ba91a91d85985dd68483f.webm", + "https://cdn.discordapp.com/attachments/838631106210955264/846719039245778974/xvideos.com_3bfa268c8db963feca30e7dd4726f8d8-1.mp4", + "https://media.discordapp.net/attachments/976381347436298281/1016435614771576852/dyanafreenudes_8.mp4", + "https://cdn.discordapp.com/attachments/830735543138385930/841543124824489994/SuperMassive43532444.mp4", + "https://realbooru.com/images/f4/f8/f4f88b787ab83c08e35528594ae22d83.webm", + "https://cdn.discordapp.com/attachments/715597787420426260/840558858316939284/HelplessFirstIndiancow.webm", + "https://cdn.discordapp.com/attachments/715597787420426260/742895261952507924/921fyah7zDAgLO6x.mp4", + "https://cdn.discordapp.com/attachments/976381347436298281/1006436225823014963/video0.mp4", + "https://cdn.discordapp.com/attachments/847841374589288481/860179243571609620/video0_3.mp4", + "https://cdn.discordapp.com/attachments/838661398274899998/935109158062149632/compress_video.mov", + "https://cdn.discordapp.com/attachments/838631106210955264/887208852712489000/SPOILER_xvideos.com_e67c7b727354054581e77d09aade063c-1.mp4", + "https://realbooru.com/images/27/f1/27f1755315081c186af4ef42bfb658c8.webm", + "https://realbooru.com/images/c2/6d/c26da9e3fa904a87f7aef0f8649b99b4.webm", + "https://cdn.discordapp.com/attachments/838631106210955264/855043044054794240/6-2RB7nYCZ2Daz6b.mp4", + "https://cdn.discordapp.com/attachments/838661398274899998/935107410970963968/compress_video.mov", + "https://cdn.discordapp.com/attachments/838661398274899998/935105898446217216/compress_video.mov", + "https://cdn.discordapp.com/attachments/838661398274899998/887204314664284190/SPOILER_xvideos.com_484401bbd333c4e90441ad8fb019e4d1.mp4", + "https://media.discordapp.net/attachments/998331825426546756/1023547906764046357/SexHouseAnal.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/790391612806529055/Stepmom_Shares_Her_Stepson_With_Her_Best_Friend_In_Wild_Threesome.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/801342267456749608/Big_Cock_Stepson_Fucks_Big_Tit_Milf_Step_Mom_Ryan_Keely.mp4", + "https://cdn.discordapp.com/attachments/884802196573679706/911438647163748414/Sweet_Asian_Teen_Lulu_Chu_in_Her_First_Porn_Scene.mp4", + "https://media.discordapp.net/attachments/664792929541292053/999126655329124442/received_742771646986565.mp4", + "https://cdn.discordapp.com/attachments/998331825904701495/999988052162256996/SexHouseCreampie_73.mp4", + "https://realbooru.com/images/c8/ef/c8ef7ca821c828d65b240d63cff14707.webm", + "https://media.discordapp.net/attachments/763860707544137759/959639288671252520/PervMom_-_Mommy_Loves_Her_Stepsons_Dick.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/804557795650306098/VIXEN_A_true_swinger_couple_shares_everything.mp4", + "https://cdn.discordapp.com/attachments/838661398274899998/870127217814945853/xvideos.com_55d3534d4e57a7fb06fac2858f13350a.mp4", + "https://cdn.discordapp.com/attachments/886738077425487892/943715573228003378/Bratty_Sis_-_Bribing_Her_Big_Brother.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/831326772918353931/Lana_Rhoades_cowgirl_anal.mp4", + "https://media.discordapp.net/attachments/878002095163314196/903167893502582844/Gorgeous_babe_Emily_Willis_does_extra_hours_with_her_boss.mp4", + "https://cdn.discordapp.com/attachments/884802196573679706/888932920797061150/Jasmine_Grey_-_Casting_4_foot_9_Asian_Girl.mp4", + "https://cdn.discordapp.com/attachments/884802196573679706/911449873717559316/Juicy_Japanese_Rae_Lil_Black_Gets_Oriental_Orifice_Fucked.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/802427793132224532/Big_ass_MILF_gets_caught_dildoing_her_ass_and_surprised_husband_fucked_her_asshole.mp4", + "https://cdn.discordapp.com/attachments/838631106210955264/846720181111750696/xvideos.com_1e7b209ca24ffcf5cbff08afa17c9a22-1.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/795149855927566346/LoveHerFeet_-_I_Couldnt_Stop_Fantasizing_About_Fucking_Him.mp4", + "https://cdn.discordapp.com/attachments/1040314677101613157/1048034147567947937/Karla_Kush_Cheats_on_Her_Lesbian_Wife_with_Georgia_Jones_xHamster.mp4", + "https://cdn.discordapp.com/attachments/876734202802995221/909274139657920542/GIRLSWAY_-_ULTIMATE_Lesbian_SQURTING_Comp.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/842282640567435275/Milf_fucks_boy_in_shower_by_Brazzers.mp4", + "https://cdn.discordapp.com/attachments/838631106210955264/846722064165371904/xvideos.com_d12-VC1.mp4", + "https://cdn.discordapp.com/attachments/919453163164151908/941023007755894794/PA_NSFW-milf2.mp4", + "https://media.discordapp.net/attachments/715597787420426260/802470862623080458/Partying_loving_amateur_pussyslammed.mp4", + "https://cdn.discordapp.com/attachments/1035448274032791562/1044734631360073779/video0-1.mp4", + "https://cdn.discordapp.com/attachments/1035448274032791562/1044736973488791562/VID_20220720_070557_002.mp4", + "https://cdn.discordapp.com/attachments/1035448274032791562/1041266956877172797/JampackedPerfumedFlickertailsquirrel-mobile.mp4", + "https://media.discordapp.net/attachments/1073583620234674238/1078383359455146024/1_5.mp4", + "https://cdn.discordapp.com/attachments/916448350155444285/916682696107896842/video0-2.mp4", + "https://cdn.discordapp.com/attachments/545843791873966080/837533146013892638/Kendra_Spade_and_EMily_Willis_Lesbian.mp4", + "https://media.discordapp.net/attachments/883228349399453706/883296394822168576/AVB1_Abigail_Mac_and_Darcie_Dolce_-_Horny_Gamer_Girls.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1012191175672872970/Video.mov", + "https://media.discordapp.net/attachments/883228349399453706/883302503855321128/AVB3_Abigail_Mac_and_Darcie_Dolce_-_Horny_Gamer_Girls.mp4", + "https://media.discordapp.net/attachments/883228349399453706/883305486919815198/AVB4_Abigail_Mac_and_Darcie_Dolce_-_Horny_Gamer_Girls.mp4", + "https://media.discordapp.net/attachments/883228349399453706/883312084895563806/AVB5_Abigail_Mac_and_Darcie_Dolce_-_Horny_Gamer_Girls.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/795917905479991316/7104822_hd.mp4", + "https://media.discordapp.net/attachments/763851444910293022/1011747536794562640/ScientificFamousChrysalis-mobile.mp4", + "https://media.discordapp.net/attachments/956622864319123466/959497924839100446/bd4894c1-a2a8-4ad5-afd9-181ae7b623e8.mp4", + "https://cdn.discordapp.com/attachments/715597787420426260/795922200652939274/720P_1500K_221341541.mp4", + "https://media.discordapp.net/attachments/883228349399453706/883299120142503996/AVB2_Abigail_Mac_and_Darcie_Dolce_-_Horny_Gamer_Girls.mp4", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079037005423456397/BEST_SEX_40.mp4", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079037003913498684/BEST_SEX_4.webm", + "https://cdn.discordapp.com/attachments/763851444910293022/1084831047511986306/VID_20230313_060539_134.mp4", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079036996942573649/BEST_SEX_1.mov", + "https://cdn.discordapp.com/attachments/1070739028254662756/1079037004928520212/BEST_SEX_39.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1085581242352812132/VID_20230315_225904_420.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/970030206188404816/IdioticVillainousAngelwingmussel-mobile.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/973078352900542494/45rtghnmf.mp4", + "https://cdn.discordapp.com/attachments/884802196573679706/910366672966270976/Japanese_beauty_gets_cum_in_mouth_by_random_guy.mp4", + "https://cdn.discordapp.com/attachments/902282394919391293/1050571172544253972/VID_101131018_002741_331.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1068569401722413097/12_minutes_blessing_...zDN17Z_2.mp4", + "https://media.discordapp.net/attachments/1033644802849386516/1059987469497552966/dCfrMTxE4fR-3LaF.mp4", + "https://media.discordapp.net/attachments/763860707544137759/1066365265291530300/VID_20230121_213256_317.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1068117110917693492/video0_3.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1067854517678374952/ssstwitter.com_1674659308650.mp4", + "https://media.discordapp.net/attachments/706074188875825152/999383347425980436/WMIDconcat-MIRD-151a.mp4", + "https://media.discordapp.net/attachments/706074188875825152/999383351339266078/WMIDb-PPPE-038.mp4", + "https://media.discordapp.net/attachments/706074188875825152/999383353637748736/G6EVfVV_-_Imgur.mp4", + "https://media.discordapp.net/attachments/706074188875825152/999383354451431604/dDGTk8E.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035132989669416/BEST_SEX_17.mp4", + "https://cdn.discordapp.com/attachments/1070739027998802049/1079035132352151562/BEST_SEX_1.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1076249058752086066/g4F9rhIy2PlsVgJY.mp4", + "https://cdn.discordapp.com/attachments/763852112882171934/1079463885066747944/VID_20230214_173957_997.mp4", + "https://media.discordapp.net/attachments/763852112882171934/1076457488003629177/IMG_0745.mp4", + "https://cdn.discordapp.com/attachments/233561991153844224/1041246599092912158/299187222_110882875066761_2803714391074790083_n.mp4", + "https://cdn.discordapp.com/attachments/908804014911655947/920563169267679243/received_1132242277189861.mp4", + "https://media.discordapp.net/attachments/971503222575472711/998391935783927808/asiantycoonwhy_2.mov", + "https://media.discordapp.net/attachments/706074188875825152/1054411915411070996/asi1.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/solo.json b/src/storage/nsfw/solo.json new file mode 100644 index 0000000..30dd131 --- /dev/null +++ b/src/storage/nsfw/solo.json @@ -0,0 +1,75 @@ +[ + "https://media.discordapp.net/attachments/786125649232003072/793352139577622578/image0.gif", + "https://wetgif.com/wp-content/uploads/gifs-girls-masturbate-23.gif", + "https://cdn.discordapp.com/attachments/567915089257168906/1112842870949421076/2_5287436978571183776.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1097309859751411853/RDT_20230417_014155.mp4", + "https://cdn.discordapp.com/attachments/1092358856186789928/1092364082289586257/OnlyNudes.mp4", + "https://media.discordapp.net/attachments/1015611877256085566/1084093938463420446/6543c7b5-d767-483d-b...normal.mp4", + "https://cdn.discordapp.com/attachments/1092357417737666701/1092360619354763304/OnlyNudes.mp4", + "https://media.discordapp.net/attachments/786125649232003072/1070826572484968548/14_Mae_on_Twitter___rt_if_I_send_you_stuff_like_this_in_dms_https___t.co_5WFC3CYfBe____Twitter_1.mp4", + "https://cdn.discordapp.com/attachments/849302918850805800/889632991486296084/gifs-girls-masturbate-11.gif", + "https://cdn.discordapp.com/attachments/786125649232003072/1099079184501969078/VID_20230422_000739_630.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1123470967247745094/Best_view_of_my_wet_pussy_during_hot_dildo_riding_-_Mini_Diva-1920x10802.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1119944730629906462/discord.gg-pantyhose_1.mov", + "https://cdn.discordapp.com/attachments/786125649232003072/1111209302062018590/VID_20230525_142833_175.mp4", + "https://cdn.discordapp.com/attachments/1092358856186789928/1092364385315475536/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1121085046657405099/OrganicCrushingArmyant-mobile.mp4", + "https://cdn.discordapp.com/attachments/567915089257168906/1096232284924956713/FoolhardyHandyBear-mobile2.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1122654324917543032/1687730728788.mp4", + "https://cdn.discordapp.com/attachments/1092358856186789928/1092364369981087864/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1125891898092044390/HIGH.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1097144035300343899/enges_Arschloch_Schulmadchen_Reitdildo-1280x720.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1118263931228672070/HauntingImpishBalloonfish.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1104771645203300373/1683464361774.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1110674018350157924/VID_20230224_180050_208.mp4", + "https://wetgif.com/wp-content/uploads/gifs-girls-masturbate-44.gif", + "https://cdn.boob.bot/Gifs/1673.gif", + "https://cdn.discordapp.com/attachments/786125649232003072/1108074309802532955/Snapchat-181187916.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1106773704454709288/VID_20230513_074336_264.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1130130970830459001/RPReplay_Final1689081858.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1120088703734386818/VID_20230421_122516_677.mp4", + "https://cdn.discordapp.com/attachments/849302918850805800/878012297287704616/femalemasturbation117.gif", + "https://cdn.discordapp.com/attachments/786125649232003072/1131176292780355584/video_2023-04-02_23-21-57.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1121137053925658746/-OMG--Insane-SQUIRT-made--legs-shake--.mp4", + "https://cdn.discordapp.com/attachments/1092357417737666701/1092360552988282960/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1109712720288284672/VID_20230302_230900_976.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1130005512281411594/720P_4000K_306641511.mp4", + "https://cdn.discordapp.com/attachments/1092358856186789928/1092364158646890526/OnlyNudes.mp4", + "https://wetgif.com/wp-content/uploads/gifs-girls-masturbate-15.gif", + "https://cdn.discordapp.com/attachments/786125649232003072/1117732704293756949/LimpMistyScoter1.mp4", + "https://cdn.discordapp.com/attachments/849302918850805800/878012626205032458/femalemasturbation71.gif", + "https://cdn.discordapp.com/attachments/786125649232003072/1109627616807366677/VID_20230309_003511_967.mp4.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1103531448742461531/VID_20230216_020027_085.mp4", + "https://cdn.discordapp.com/attachments/1092357417737666701/1092360407848603698/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1106939237581983794/1657914815691.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1092529034119880754/XcHGlRB4ij570ix7.mp4", + "https://cdn.discordapp.com/attachments/849302918850805800/878013184513028096/femalemasturbation90.mp4", + "https://cdn.discordapp.com/attachments/567915089257168906/1116470623401689178/video_33323-10-2021_19-59-01.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1099433298217930762/VID_20230421_233054_236.mp4", + "https://cdn.boob.bot/Gifs/165D.gif", + "https://cdn.discordapp.com/attachments/786125649232003072/1099031922673471568/1682098362595.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1091055538881695754/trim.38C7B250-8879-44F1-A3BC-6635FEBA105C.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1119158833852456960/VID_20230615_223811.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1118225375344984186/Bizzy-5.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1105580757927346176/1683644010725.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1129447866902003722/QQfhJJX.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1114289617315840122/Snapchat-1333410990.mp4", + "https://wetgif.com/wp-content/uploads/gifs-girls-masturbate-80.gif", + "https://cdn.discordapp.com/attachments/849302918850805800/856613617977524224/1980_1_AUEDVDEdl2akKhZpn8nK.png", + "https://wetgif.com/wp-content/uploads/gifs-girls-masturbate-20.gif", + "https://cdn.discordapp.com/attachments/1092358856186789928/1092364284123693087/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/786125649232003072/1110327627107020895/168479313224651318.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1100473600881991842/My_Passion_is_Fuck_My_Ass_at_the_Window_on_the_Windowsill_dripping_wet_pussy-1920x1080.mp4", + "https://cdn.discordapp.com/attachments/1092358856186789928/1092373777431658537/OnlyNudes.mp4", + "https://wetgif.com/wp-content/uploads/gifs-girls-masturbate-81.gif", + "https://cdn.discordapp.com/attachments/786125649232003072/894586252786008124/kizinsexgunlugu_1410750064109096963720P.mp4", + "https://cdn.discordapp.com/attachments/567915089257168906/1125798846950289558/v1.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1124729672782057624/OAKoF0m4J6XixcYx.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1092529879293116466/x6RrgWNJolsutBJO.mp4", + "https://cdn.discordapp.com/attachments/1092358856186789928/1092373853583458334/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1117113269828726886/toy_6.mp4", + "https://cdn.discordapp.com/attachments/1092358856186789928/1092373579976409128/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/786125649232003072/1108514996574494772/TrivialCurvyQueenconch.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1097563729496916040/Watch_Cos_Girl_dildo...nkBang_2.mp4", + "https://cdn.discordapp.com/attachments/374955045705482241/889288426157920296/video0.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/squirt.json b/src/storage/nsfw/squirt.json new file mode 100644 index 0000000..4a5b077 --- /dev/null +++ b/src/storage/nsfw/squirt.json @@ -0,0 +1,73 @@ +[ + "https://media.discordapp.net/attachments/789032448113508353/1131541337863376957/HarmfulStaidSpidermonkey-mobile.mov", + "https://cdn.discordapp.com/attachments/789032448113508353/1112205143463694356/VID_20220315_230601_800.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/862682025182232636/tumblr_pb9smqB3Dj1w9hrs1_720.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1103773116674625637/VID_20230504_215623_815.mp4", + "https://cdn.discordapp.com/attachments/849299762951618620/909479408543346688/porn--porn-gif-vaginal-porn-6992748.gif", + "https://cdn.discordapp.com/attachments/789032448113508353/1035083600921636894/VID_20221013_053804_416.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/850574792670445568/hvrcYbe.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/817524373313290270/Screenshot_20210306_002420.jpg", + "https://cdn.discordapp.com/attachments/1092349557519700000/1092391513146789958/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1092349557519700000/1092391495878848522/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288987595182201/VID_20220321_000403_857.mp4", + "https://media.discordapp.net/attachments/789032448113508353/803118134667640882/video0.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116639112552796230/5TBlM3xBICs8cGNX.mp4", + "https://cdn.discordapp.com/attachments/905381807887904799/970965559413964860/VID_20220430_061529_025.mp4", + "https://cdn.discordapp.com/attachments/1092349557519700000/1092391223391686686/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1092349557519700000/1092391174125387786/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/1092349557519700000/1092391193687633981/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/849299762951618620/920389317791195216/Amy-Brooke-Porn-Model-porn--5274362.gif", + "https://cdn.discordapp.com/attachments/849299762951618620/865272482453127218/358_1000.gif", + "https://cdn.discordapp.com/attachments/789032448113508353/1008511089866178731/video0.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116585442503049257/twitter_1666682548188246016__1686255698868_twitter_1666682548188246016_Video_-_480p.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/997164614955569214/KnowledgeableCadetblueTayra.mp4", + "https://cdn.discordapp.com/attachments/849299762951618620/920390349933932574/porn-gif-porn---4462753.gif", + "https://cdn.discordapp.com/attachments/1092349557519700000/1092391312185106512/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/849299762951618620/865273042745163796/816_1000.gif", + "https://cdn.discordapp.com/attachments/714524584522678312/1106886245994479726/DeliciousLightcyanJapanesebeetle.mp4", + "https://cdn.discordapp.com/attachments/1092349557519700000/1092391185554878545/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/881238707351486494/VID_20210722_105556_899.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115291331116412958/RwCLHTM.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/953739963353153587/PusygBb.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1033335972814921738/a.mp4", + "https://cdn.discordapp.com/attachments/849299762951618620/865272621696155708/419_1000.gif", + "https://cdn.discordapp.com/attachments/789032448113508353/1080780094911549520/video1.mp4", + "https://realbooru.com/images/df/72/df72468bd6ceffce061ffcb853cd1c02.webm", + "https://cdn.discordapp.com/attachments/1092349557519700000/1092391298536845312/OnlyNudes.mov", + "https://cdn.discordapp.com/attachments/849299762951618620/865272630433021962/425_1000.gif", + "https://cdn.discordapp.com/attachments/789032448113508353/805614810044825651/video0.mov", + "https://cdn.discordapp.com/attachments/1092349557519700000/1092391319332212776/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/849299762951618620/865273258478534656/919_1000.gif", + "https://cdn.discordapp.com/attachments/849299762951618620/865273050404093973/781_1000.gif", + "https://cdn.discordapp.com/attachments/789032448113508353/927258839059955772/ImportantBriskDesertpupfish-mobile.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1117002161633644544/377dbb6b-0c65-48d7-9fcd-f9f4e08be92d.mp4", + "https://redgifs.com/watch/slightexperiencedairedale", + "https://cdn.discordapp.com/attachments/789032448113508353/997005465370234910/GenuineLightgoldenrodMantisray-mobile.mov", + "https://cdn.discordapp.com/attachments/789032448113508353/1017686546037616670/redditsave.com_DASH_1080.mp4", + "https://cdn.discordapp.com/attachments/714524584522678312/1099081033632194650/Brazzers_Discord.17B17058-E33F-4143-AA96-FB250AB0ADD5.mp4", + "https://cdn.discordapp.com/attachments/1092349557519700000/1092391231067271178/OnlyNudes.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/957062872368808016/VictoriousZigzagAnnashummingbird.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/812712347624931338/026_450.gif", + "https://cdn.discordapp.com/attachments/849299762951618620/920389123326509076/porn--porn-gif-anal-porn-5896945.gif", + "https://cdn.discordapp.com/attachments/789032448113508353/1072256744169930872/CheeryUnimportantQuillback-mobile.mp4", + "https://cdn.discordapp.com/attachments/849299762951618620/994141538680582154/twitter_20220528_023403.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/937958488775213106/filtered-E423E061-635B-4F8C-880C-DC31234C1E3E.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/883090895338078229/FkCjqdf1Qoz2epTM.mp4", + "https://cdn.discordapp.com/attachments/849299762951618620/865272354149892136/097_1000.gif", + "https://cdn.discordapp.com/attachments/789032448113508353/838331898895663124/Squirt3.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1088073417921671168/VID_20230315_212033_988.mp4", + "https://cdn.discordapp.com/attachments/786125649232003072/1109899539709710336/twitter_20230416_011446.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1123232191296569474/RDT_20230627_154102.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/828317778418466856/video0.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1129531920783519913/1_5118610240891257365.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/823307157462188042/video0-1.mov", + "https://cdn.discordapp.com/attachments/789032448113508353/1076356130093142066/SteelblueOpulentWoodnymphbutterfly-mobile.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095529582700007434/UX2Th6cowsUTca7o.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/804377062764576820/video0.mov", + "https://cdn.discordapp.com/attachments/789032448113508353/1035269613954535504/igaRGs65KiZmvESS_.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1129011572782674023/56918184270925825_888x680.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1078751460239622237/VID_20230224_100948_656.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1073084580837462116/faphard-2.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288507318014072/033aNa6BMspjohfSAdZIDoMc4SI6Tx5KSKqxXeigai4.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095453493822758984/d8DFTrh.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/teen.json b/src/storage/nsfw/teen.json new file mode 100644 index 0000000..6053b8c --- /dev/null +++ b/src/storage/nsfw/teen.json @@ -0,0 +1,77 @@ +[ + "https://cdn.discordapp.com/attachments/786127715769909249/1036952860082057236/1087035.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1036953385099853905/1077726.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1036957165333786624/1093851.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1036957166940205147/1098740.mp4", + "https://cdn.discordapp.com/attachments/870322974744539136/918261310049882133/ScratchySadAmberpenshell-mobile.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1036957167284129842/879682.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1036957167909077024/1084445.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1036960788046418020/WigglyTightAppaloosa.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1036960789287936081/TragicComposedAmericantoad.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1036960790437171220/JubilantAliceblueAmericankestrel.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1037447600200233000/trim.29CFF7D6-0BA0-4462-A6FE-43EBD20E4F6E.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1037465719866130452/VID_20220926_005543_757.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1037465720755322940/cm-chat-media-video-15bf7acdb-f76b-4fe8-9321-c16bb6d693153191000.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1037465721237684254/trim.82CDAF66-C406-4FEA-BF2B-803814449131.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1037465721615167538/trim.A255C816-093B-4756-ACCC-11ABBDF54C06.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1043129545211002920/929051.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1043196406044823622/ride.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1043485464876814366/YQxgBf5mPvE_U_nR.mp4", + "https://cdn.discordapp.com/attachments/921112844106362901/966780877835223090/3zpJQuR5oV7phH1K.mp4?size=4096", + "https://cdn.discordapp.com/attachments/786127715769909249/1040255493043654708/ViciousMushyCanary.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1041401280649768961/4_5901998359987620426.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1041401356394713168/twitter_20211203_081956-1-1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1041401479333941258/trim.5FDD28FF-B884-42F6-B4C7-AE67CF512817.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1034497366562189453/Lounge_archive.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1039155226650886195/984974.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1039646013260050523/p3iRZKw.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1039646053634424912/899239.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1039646098849013901/1046112.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1039148014868123678/1000295.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1039148125815849082/GuiltyMurkyHoatzin.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1039148182921302086/1016284.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1039148369735594054/1073968.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1039155215397552219/1129063.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1037465721971671211/VID_20220522_225751_871.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1037465722416279572/RashMonumentalZander-mobile.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1037465722886029372/video0_1.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1038584000664572004/throw.mp4", + "https://cdn.discordapp.com/attachments/786127715769909249/1038951612867158086/VID-20220701-WA0002.mp4", + "https://cdn.discordapp.com/attachments/1074739122029199401/1089903420799975434/discord-gg-bestporn-115.mp4", + "https://cdn.discordapp.com/attachments/1074739122029199401/1089909393996394637/discord-gg-bestporn-153.mp4", + "https://cdn.discordapp.com/attachments/990364215128760360/1076865729258864711/4_6017338611505040564.mp4", + "https://cdn.discordapp.com/attachments/990364215128760360/1076311141279617085/video0-7.mp4", + "https://cdn.discordapp.com/attachments/1063101839014371338/1069912022940143626/viddit_337e2e63.mp4", + "https://cdn.discordapp.com/attachments/996293916892602409/996623732388925570/0_5.mp4", + "https://cdn.discordapp.com/attachments/980060385719758858/990656693320962108/video0-1.mp4", + "https://cdn.discordapp.com/attachments/987376476678664263/987377037645856828/video0-1.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/987100290924830750/video0-1.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/987100291344253038/VID_20220604_101620_010.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/987100346323189770/creampie.videos23728328.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/987100347690516531/M9QcIz3BFvo2ctQd.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/987100698816700416/2_5341717492517572803.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125279954776094/video0.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125384149684254/nT_eypcgf0xfvnff6czn009yr5a.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125384938201148/480P_600K_224618381.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125431524343998/video0.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125432124133446/video0.mov", + "https://cdn.discordapp.com/attachments/980064351295774770/997125432556134410/video_2021-04-20_21-20-39.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125142725529660/SmartAmusingGlobefish-mobile.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125143237238864/480P_2000K_159905292.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125206801924096/video0.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125207376535612/3235387_p3601.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125279027830814/video0.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997124466700206160/ThreadbareIncompleteBuckeyebutterfly-mobile.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125013255770282/video0.mov", + "https://cdn.discordapp.com/attachments/980064351295774770/997125013876523098/video0.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125099868147823/video0.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997125101000593438/video0.mov", + "https://cdn.discordapp.com/attachments/980064351295774770/997123305289039932/6ISW37vDRkBOwydj-720-1.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997123348171591690/VID_20220402_145124_805.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997123348934971443/polonya_teen_16.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997123386687885442/polonya_teen_21.mov", + "https://cdn.discordapp.com/attachments/980064351295774770/997124432860553226/ConcernedWiltedBlackbuck-mobile.mp4", + "https://cdn.discordapp.com/attachments/980064351295774770/997123304542445668/446801760bef3bebc5f31a5a39440d8e.mp4", + "https://media.discordapp.net/attachments/840021281964425236/1086797924278730903/InShot_20230319_024607788.mp4", + "https://media.discordapp.net/attachments/511257077797093426/1078613832060112946/DaringGoodDuiker.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/tiktok.json b/src/storage/nsfw/tiktok.json new file mode 100644 index 0000000..11f5f4f --- /dev/null +++ b/src/storage/nsfw/tiktok.json @@ -0,0 +1,331 @@ +[ + "https://cdn.discordapp.com/attachments/664792929541292053/907268213849612288/https___t.co_nirBNI0qpN.mp4", + "https://cdn.discordapp.com/attachments/902282394919391293/1051619484521205781/Snapinsta.app_317706448_681469143501755_4015003673585684493_n.mp4", + "https://cdn.discordapp.com/attachments/902282394919391293/1051619483741069353/Snapinsta.app_317276658_908819183355766_2011625377623931250_n.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1049723816353476608/video0.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1049723841666097264/AchingSkinnyPlatypus.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1063683663822340097/2021-05-24_23.56.35-3mZT9kIF.mov", + "https://cdn.discordapp.com/attachments/902282394919391293/1063684198461886604/VID_20230112_095501_224.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1049721005783920812/2_5409015373733304055.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1049741663507062866/IMG_20210707_202415_569.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1049715942860525638/video0.mov", + "https://cdn.discordapp.com/attachments/944668553439760434/1049715068595613796/ab8d6334815e1ff3a2b23d8070496a97.mp4", + "https://media.discordapp.net/attachments/944668553439760434/1049711703983661127/WhatsApp_Video_2021-11-27_at_5.10.47_PM.mov", + "https://cdn.discordapp.com/attachments/944668553439760434/1049716438929256469/VID_20220131_084040_235.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1049722350939144272/2_5409015373733304057.mp4", + "https://cdn.discordapp.com/attachments/944668553439760434/1049722464567042068/video0_1.mov", + "https://media.discordapp.net/attachments/944668553439760434/1049722515993411615/daa2e95f-a7a6-423c-9cba-3b731c1b7812.mp4", + "https://cdn.discordapp.com/attachments/912596016103043073/925273783370149888/Snaptik_7037197303920217349_lauren-burch.mp4", + "https://cdn.discordapp.com/attachments/991716506935234589/1037502096813076500/SnapTik_7135112428538334470.mp4", + "https://cdn.discordapp.com/attachments/912596015926886439/943948173691469907/Brazzers_Tiktok_1.MP4", + "https://cdn.discordapp.com/attachments/912596015926886439/943519851165651015/Brazzers_Tiktok_4.mp4", + "https://cdn.discordapp.com/attachments/912596015926886439/942864025895727224/video0_-_2022-02-14T170850.130.mov", + "https://cdn.discordapp.com/attachments/912596015926886439/935681155771007016/271508405_141488711639709_1536400777018294453_n_1.mp4", + "https://cdn.discordapp.com/attachments/912596016103043073/924625727020757002/3577c5781dc07846731dbe29ddbbbe92.mp4", + "https://cdn.discordapp.com/attachments/912596015926886439/942738468713410580/Brazzers_Tiktok_6.mp4", + "https://cdn.discordapp.com/attachments/912596015926886439/941952434941591552/4_5881906240983927042.mp4", + "https://cdn.discordapp.com/attachments/912596015926886439/939090168625922049/VID-20220109-WA0026.mp4", + "https://cdn.discordapp.com/attachments/912596015926886439/938790210681065492/ebe9fe8faaf7647b499eac072352073d.mp4", + "https://cdn.discordapp.com/attachments/902282394919391293/1051619484118564986/Snapinsta.app_313359528_445706891004649_3045626120370210249_n.mp4", + "https://media.discordapp.net/attachments/979103092266123264/1018704954199900200/redditsave.com_DASH_1080_3.mp4", + "https://media.discordapp.net/attachments/998331826902941753/1012775304248430693/VID_20211113_102753_067.mp4", + "https://cdn.discordapp.com/attachments/1018239329690198138/1018402453873496136/onlynudes.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852454126570963014/VID_20210610_033746_181.mp4", + "https://media.discordapp.net/attachments/871193570168700948/1032100481020985354/3kxLcJm.mp4", + "https://cdn.discordapp.com/attachments/1004853454059094036/1020329460857315368/discord.ggssex_27.mp4", + "https://cdn.discordapp.com/attachments/1004853454059094036/1020329459951337552/discord.ggssex_26.mp4", + "https://cdn.discordapp.com/attachments/1004853454059094036/1020329456717541467/discord.ggssex_21.mp4", + "https://cdn.discordapp.com/attachments/1004853454059094036/1020329240362758165/discord.ggssex_64.mp4", + "https://cdn.discordapp.com/attachments/971503927692509234/976899898395983913/Linkler_Diyar_TIKTOK__7.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852455879466418187/VID_20210610_034245_690_516x918.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852453579104190464/VID_20210610_033433_265.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852452850087886869/VID_20210610_033233_917.mp4", + "https://cdn.discordapp.com/attachments/879338519686955008/883460001195261983/video0-14.mp4", + "https://cdn.discordapp.com/attachments/830735543138385930/839358457298812928/video_2021-04-21_06-31-01.mp4", + "https://cdn.discordapp.com/attachments/830735543138385930/840478125255294976/608854c13e631hK86l3281.mp4", + "https://cdn.discordapp.com/attachments/830735543138385930/842342739294027786/video_2021-05-01_08-29-26.mp4", + "https://cdn.discordapp.com/attachments/976381363102056478/1008664990544306236/VID-20211205-WA0016.mp4", + "https://cdn.discordapp.com/attachments/976381342218596362/1014182318447001650/video0-2.mp4", + "https://cdn.discordapp.com/attachments/830735543138385930/845560880330702848/video_2021-05-01_08-30-57.mp4", + "https://cdn.discordapp.com/attachments/838938566981713980/881461358951026698/IMG_6166-1.MP4", + "https://cdn.discordapp.com/attachments/838625457121394741/848228668412395540/VID_20210529_021228_050.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/865744146001559582/VID_20210708_202821_967.mp4", + "https://cdn.discordapp.com/attachments/830735543138385930/845902947056484372/video_2021-05-01_08-31-00.mp4", + "https://media.discordapp.net/attachments/963008976587468800/1009567749162410085/BRAZZERS46.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226702752698368/SEXHAUSE_tiktok16.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226703717371924/SEXHAUSE_tiktok72-1.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226702048043068/SEXHAUSE_tiktok.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226703318917130/SEXHAUSE_tiktok61.mp4", + "https://media.discordapp.net/attachments/963008976587468800/1009567749497950288/BRAZZERS47.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318538494455869/video2.mov", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318530533670983/Video_Record_2893.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318529598324746/480P_2000K_382840642.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318480264925246/video1_1.mp4", + "https://cdn.discordapp.com/attachments/816406926673182800/1078556403138048051/v09044g40000cckddf3c77uf3gbsgfg0.mov", + "https://cdn.discordapp.com/attachments/816406926673182800/1079410038227091486/b434359cef0bea4165966697e4e9333e.mp4", + "https://cdn.discordapp.com/attachments/816406926673182800/1079410038705234011/9d6071e6a0cdeaf32acbf184863fbc2e.mp4", + "https://cdn.discordapp.com/attachments/816406926673182800/1079410039560876092/1fa0f5573391b0f5fbd6ccdf19786038.mp4", + "https://cdn.discordapp.com/attachments/816406926673182800/1079410040160665662/9443b0f85009acf47621141790ab1183.mp4", + "https://cdn.discordapp.com/attachments/1018239329690198138/1018629293720473600/onlynudes.mp4", + "https://cdn.discordapp.com/attachments/1018239329690198138/1018557153289715782/onlynudes.mp4", + "https://cdn.discordapp.com/attachments/1018239329690198138/1018402176944582716/onlynudes.mp4", + "https://media.discordapp.net/attachments/887007126084538369/900439626957848616/8f84b18bf2168d61e1a258fb226f0f09.mp4", + "https://media.discordapp.net/attachments/887007126084538369/900439625317883914/f1a4635986a94bcbb30a8c33718b5d2c.mp4", + "https://media.discordapp.net/attachments/887007126084538369/900439552840319016/226ad756bca7fc4b089e39e397eeab34.mp4", + "https://media.discordapp.net/attachments/921449385764749313/966786425418813471/tyr0ns-20210521-0001.mp4", + "https://media.discordapp.net/attachments/963008976587468800/1009567750454255718/VID_20220810_005907_011.mp4", + "https://media.discordapp.net/attachments/963008976587468800/1012648271698722836/601b449a4116c6a62fc4be3371ff54c4.mp4", + "https://cdn.discordapp.com/attachments/971503927692509234/976899926279745606/mlshk.o_20220513_2.mp4", + "https://cdn.discordapp.com/attachments/971503927692509234/976899925285666876/video0-6-1.mp4", + "https://cdn.discordapp.com/attachments/971503927692509234/1032245261826789426/5ae04c2ae906d8a0d78d6811a2424937.mp4", + "https://cdn.discordapp.com/attachments/971503927692509234/1032245262795685928/08d6e0f890fa24c105a9991cfe9e122c.mp4", + "https://media.discordapp.net/attachments/887007126084538369/900439625317883914/f1a4635986a94bcbb30a8c33718b5d2c.mp4", + "https://media.discordapp.net/attachments/887007126084538369/900439552840319016/226ad756bca7fc4b089e39e397eeab34.mp4", + "https://media.discordapp.net/attachments/921449385764749313/966786425418813471/tyr0ns-20210521-0001.mp4", + "https://media.discordapp.net/attachments/963008976587468800/1009567750454255718/VID_20220810_005907_011.mp4", + "https://media.discordapp.net/attachments/963008976587468800/1012648271698722836/601b449a4116c6a62fc4be3371ff54c4.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318480264925246/video1_1.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318529598324746/480P_2000K_382840642.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318530533670983/Video_Record_2893.mp4", + "https://cdn.discordapp.com/attachments/971503927692509234/976899926279745606/mlshk.o_20220513_2.mp4", + "https://cdn.discordapp.com/attachments/971503927692509234/976899925285666876/video0-6-1.mp4", + "https://cdn.discordapp.com/attachments/971503927692509234/1032245261826789426/5ae04c2ae906d8a0d78d6811a2424937.mp4", + "https://cdn.discordapp.com/attachments/971503927692509234/1032245262795685928/08d6e0f890fa24c105a9991cfe9e122c.mp4", + "https://media.discordapp.net/attachments/887007126084538369/900439626957848616/8f84b18bf2168d61e1a258fb226f0f09.mp4", + "https://cdn.discordapp.com/attachments/976381342218596362/1014182318447001650/video0-2.mp4", + "https://cdn.discordapp.com/attachments/976381342218596362/1014182317889167560/VID_20210530_004916_335.mp4", + "https://cdn.discordapp.com/attachments/976381342218596362/1014182316429549649/tyr0ns-20210521-0001.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088952976875458651/tik_4.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088952976510570506/tik_3.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088958342032019597/lamorasoftt-1628396537196777474-20230222_170923-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088958342409490432/lamorasoftt-1630012887858118656-20230227_041211-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088958341641941012/lamorasoftt-1589265050870874114-20221106_173449-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088959273880539257/lamorasoftt-1613108555501998081-20230111_124024-vid1.mp4", + "https://cdn.discordapp.com/attachments/1073583671828816002/1073693032613945354/asi_2.webm", + "https://cdn.discordapp.com/attachments/1073583671828816002/1073693031519232091/0062b041273623b584d8ba7169e7b8fb.mp4", + "https://media.discordapp.net/attachments/998331826902941753/1012775304248430693/VID_20211113_102753_067.mp4", + "https://media.discordapp.net/attachments/979103092266123264/1018704954199900200/redditsave.com_DASH_1080_3.mp4", + "https://media.discordapp.net/attachments/1060545972964442193/1076298564629708830/CS01.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226702752698368/SEXHAUSE_tiktok16.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226703318917130/SEXHAUSE_tiktok61.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226703717371924/SEXHAUSE_tiktok72-1.mp4", + "https://media.discordapp.net/attachments/979103092266123264/1018704954199900200/redditsave.com_DASH_1080_3.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852454126570963014/VID_20210610_033746_181.mp4", + "https://cdn.discordapp.com/attachments/976381342218596362/1014182322779734057/5_6237796830382392060.mp4", + "https://cdn.discordapp.com/attachments/976381342218596362/1014182322280603648/BRAZZERS48.mp4", + "https://cdn.discordapp.com/attachments/838661398274899998/861047986883657738/XyrDxPUluAT6QLJe.mp4", + "https://cdn.discordapp.com/attachments/887007126084538369/900439552483799060/8f9c7bff0a10cdbf5ce27f16a3d357bc.mp4", + "https://cdn.discordapp.com/attachments/887007126084538369/900439552840319016/226ad756bca7fc4b089e39e397eeab34.mp4", + "https://cdn.discordapp.com/attachments/887007126084538369/900439624999133255/0101982648694be2bb0680cce910d3f1.mp4", + "https://cdn.discordapp.com/attachments/887007126084538369/900439625317883914/f1a4635986a94bcbb30a8c33718b5d2c.mp4", + "https://cdn.discordapp.com/attachments/887007126084538369/900439626957848616/8f84b18bf2168d61e1a258fb226f0f09.mp4", + "https://cdn.discordapp.com/attachments/887007126084538369/900439552483799060/8f9c7bff0a10cdbf5ce27f16a3d357bc.mp4", + "https://cdn.discordapp.com/attachments/887007126084538369/900439552840319016/226ad756bca7fc4b089e39e397eeab34.mp4", + "https://cdn.discordapp.com/attachments/887007126084538369/900439624999133255/0101982648694be2bb0680cce910d3f1.mp4", + "https://cdn.discordapp.com/attachments/887007126084538369/900439625317883914/f1a4635986a94bcbb30a8c33718b5d2c.mp4", + "https://cdn.discordapp.com/attachments/887007126084538369/900439626957848616/8f84b18bf2168d61e1a258fb226f0f09.mp4", + "https://cdn.discordapp.com/attachments/838661398274899998/861047986883657738/XyrDxPUluAT6QLJe.mp4", + "https://media.discordapp.net/attachments/664796892999319552/1076611147156967514/2fQHNixviCMVSCi9.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855033638809894922/VID_20210617_063002_592.mp4", + "https://media.discordapp.net/attachments/908807489296945152/921648377077325824/2_5465128455735611592.mp4", + "https://media.discordapp.net/attachments/960978442487214180/972240078975934584/VID_20220507_003938_608.mp4", + "https://cdn.discordapp.com/attachments/1004853584883622028/1020342448842621020/discord.ggssex_43.mov", + "https://cdn.discordapp.com/attachments/1004853584883622028/1020342449538859039/discord.ggssex_45.mov", + "https://cdn.discordapp.com/attachments/971503829298327582/988494305553416312/public9.mov", + "https://cdn.discordapp.com/attachments/983847912314380298/983850861958664212/viddit_5baa1d78.mov", + "https://cdn.discordapp.com/attachments/983847912314380298/988174630546202664/MildBetterCrane-mobile.mp4", + "https://cdn.discordapp.com/attachments/838661398274899998/870793690870845471/480P_2000K_109337742.mp4", + "https://media.discordapp.net/attachments/664796892999319552/1076611147156967514/2fQHNixviCMVSCi9.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855033638809894922/VID_20210617_063002_592.mp4", + "https://media.discordapp.net/attachments/908807489296945152/921648377077325824/2_5465128455735611592.mp4", + "https://media.discordapp.net/attachments/960978442487214180/972240078975934584/VID_20220507_003938_608.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1116447958460797019/trim.38554FB8-7BC0-4C78-B18D-F2F8AB19F5E2.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1116665695523045417/876491a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116665714883964948/11997941a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116665727986962514/3882341a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116910745754537984/VID_20230610_073250_390.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1116997870839668757/hvbv5fl.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1116997937873047623/S8HVSJW.mp4", + "https://cdn.discordapp.com/attachments/1035448270627024906/1043823740011688047/1494202492263211009720P.mp4", + "https://cdn.discordapp.com/attachments/763851444910293022/1085581242352812132/VID_20230315_225904_420.mp4", + "https://cdn.discordapp.com/attachments/1004853584883622028/1020343903196565604/discord.ggssex_17.mp4", + "https://cdn.discordapp.com/attachments/849299698618597407/877419724647043072/WorthlessSlushyPanther-mobile.mp4", + "https://cdn.discordapp.com/attachments/686780791191109636/1096449151903993947/SexHouse_Public57.mp4", + "https://cdn.discordapp.com/attachments/998331826433171513/1004817422219493416/SexHousePublic4.mp4", + "https://cdn.discordapp.com/attachments/1035448270627024906/1041133310434357248/SnivelingScalyGenet.mov", + "https://media.discordapp.net/attachments/998331826902941748/1015171417668591666/4_6025901535047714845.mp4", + "https://media.discordapp.net/attachments/998331826433171513/1004817421250613469/SexHousePublic56.mp4", + "https://media.discordapp.net/attachments/998331826433171513/1004819057062715434/SexHousePublic60.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288711282819082/DampOddballPaddlefish-1.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288731314827366/1_4938748881824383444.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288751770443786/thxg.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288800327893003/VID-20201210-WA0003.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288886504071290/Contractions_and_man...haYang_2.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288987595182201/VID_20220321_000403_857.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115289054511116318/SquirtingUltimateDeficientAzurevase-1.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115291331116412958/RwCLHTM.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115344198858715246/1685960482792.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115382222225150113/Zr3kr0FiXCXEaLGg.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115382273110442144/PowderblueIncredibleEmperorshrimp-mobile.mp4", + "https://cdn.discordapp.com/attachments/714524584522678312/1114416123170009088/RDT_20230602_235020.mp4", + "https://cdn.discordapp.com/attachments/714524584522678312/1114550463749177374/oh8z5a0naf3b1.mp4", + "https://cdn.discordapp.com/attachments/765363939734847508/1114553878910865579/6f86c7ffb637533c7202fb3db9bbf698.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116141925964197940/WiseOutstandingSwan-mobile.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116585442503049257/twitter_1666682548188246016__1686255698868_twitter_1666682548188246016_Video_-_480p.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116639112552796230/5TBlM3xBICs8cGNX.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116685786797068369/lv_0_20220131181140.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1116898455353303081/5_6165715459405515637.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1117002161633644544/377dbb6b-0c65-48d7-9fcd-f9f4e08be92d.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1115973725498646658/42196731a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1115973736647098418/38225921a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1115973780171411496/31559352a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1115999546259017738/3glUHRF.mp4", + "https://cdn.discordapp.com/attachments/511257077797093426/1116141742798938292/40457491a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116141766253482014/42636411a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116270159091478528/18268901a.webm", + "https://cdn.discordapp.com/attachments/511257077797093426/1116270185926627338/6557461a.webm", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095529582700007434/UX2Th6cowsUTca7o.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095453493822758984/d8DFTrh.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095453358912974978/DefiniteMuddyAcaciarat.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095453357860200508/Video-10.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1088073417921671168/VID_20230315_212033_988.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1083611515007017062/video_2023-03-01_11-26-03.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1077806134242574366/video_2023-02-20_23-08-01.MP4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1088073421193236530/RDT_20230302_100646.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095529582700007434/UX2Th6cowsUTca7o.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095453493822758984/d8DFTrh.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095453358912974978/DefiniteMuddyAcaciarat.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1095453357860200508/Video-10.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1088073417921671168/VID_20230315_212033_988.mp4", + "https://cdn.discordapp.com/attachments/1033101716742217778/1083611515007017062/video_2023-03-01_11-26-03.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1114724908644192316/www.douyin18_2753255549347717597.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288421246701759/1678943134834.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288507318014072/033aNa6BMspjohfSAdZIDoMc4SI6Tx5KSKqxXeigai4.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288535579234424/VID_20230226_043225_720.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288572203905144/SexHouseSquirt141.mp4", + "https://cdn.discordapp.com/attachments/789032448113508353/1115288604613279754/EthicalWobblyHornedviper-mobile.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855033805198196736/VID_20210617_062937_852.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855034051491790868/VID_20210617_062923_314.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855034264999821322/VID_20210617_062743_008.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855034664774795284/VID_20210617_062502_887.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855034786060697611/VID_20210617_062439_283.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858559608163008522/VID_20210627_083516_803.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858561475890905148/VID_20210627_083358_120.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858562592717275136/VID_20210627_083307_615.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858562593228193824/VID_20210627_083218_520.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858562593869660160/VID_20210627_083204_647.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858563517543612456/VID_20210627_083148_847.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858563518340137010/VID_20210627_083034_895.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858563518805442582/VID_20210627_083015_511.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858563519276122132/VID_20210627_082918_467.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858563519863717888/VID_20210627_082837_025.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/848229012122894336/IMG_20210529_021022_451.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/848229155434528778/VID_20210529_020957_825.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/848229553868636200/VID_20210529_020848_811.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/848230058358865960/VID_20210529_020647_613.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/851826566999965696/VID_20210608_154014_608.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/851826692553048094/VID_20210608_154256_736.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/851827318200336394/VID_20210608_154453_853.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/851827675634466866/VID_20210608_154514_706.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/851830575450947624/VID_20210608_154124_318_504x896.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/851830889029304320/IMG_20210524_220259_605.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/851831647724765184/VID_20210608_185530_596.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/851832078348714024/VID_20210608_185648_885.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/851832387976560720/VID_20210608_185501_986.mp4", + "https://cdn.discordapp.com/attachments/621883947508432917/972319237085487124/1651853844728.mp4", + "https://cdn.discordapp.com/attachments/621883947508432917/965651883983265872/e47831b046bed05a0d99bd5c5cddc499.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/851832975565783070/VID_20210608_185530_596.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852451282207375370/IMG_20210610_032442_538.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852451361793900604/VID_20210610_032543_468.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852451536105373696/VID_20210610_032708_359.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852451983746924554/VID_20210610_032842_427.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852452704412237864/VID_20210610_033138_747.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852452850087886869/VID_20210610_033233_917.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852453229534773268/VID_20210610_033340_249.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852453743441739776/VID_20210610_033457_687.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852453954175893524/VID_20210610_033659_237.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852454566532612096/VID_20210610_034100_457.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852454883402711060/VID_20210610_034119_186.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852455210399957002/VID_20210610_034517_486_456x812.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852456520444018704/VID_20210610_034419_265_378x672.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855033638809894922/VID_20210617_063002_592.mp4", + "https://cdn.discordapp.com/attachments/1018239329690198138/1018626908197503026/onlynudes.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226703318917130/SEXHAUSE_tiktok61.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226702048043068/SEXHAUSE_tiktok.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226702752698368/SEXHAUSE_tiktok16.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852454126570963014/VID_20210610_033746_181.mp4", + "https://cdn.discordapp.com/attachments/1021149816996245536/1021154145677353000/24879a9e-54cf-4ffb-88e0-1dbb291fd02d.mp4", + "https://cdn.discordapp.com/attachments/750437912948244541/1021343215686782976/07a72043-965a-4e83-8030-52c0d03ea24f.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088958342032019597/lamorasoftt-1628396537196777474-20230222_170923-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088958342409490432/lamorasoftt-1630012887858118656-20230227_041211-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088958341641941012/lamorasoftt-1589265050870874114-20221106_173449-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088959273880539257/lamorasoftt-1613108555501998081-20230111_124024-vid1.mp4", + "https://cdn.discordapp.com/attachments/1073583671828816002/1073693032613945354/asi_2.webm", + "https://cdn.discordapp.com/attachments/1073583671828816002/1073693031519232091/0062b041273623b584d8ba7169e7b8fb.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088952976875458651/tik_4.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088952976510570506/tik_3.mp4", + "https://cdn.discordapp.com/attachments/1073583671828816002/1073693031519232091/0062b041273623b584d8ba7169e7b8fb.mp4", + "https://cdn.discordapp.com/attachments/1007602176593510430/1008848626769985576/RectangularEnergeticHen-mobile.mp4", + "https://cdn.discordapp.com/attachments/1007602176593510430/1012523075872497745/ssstik.io_1661472829240.mp4", + "https://cdn.discordapp.com/attachments/1007602176593510430/1015744743679983717/1.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088952976875458651/tik_4.mp4", + "https://cdn.discordapp.com/attachments/1073583671828816002/1073693032613945354/asi_2.webm", + "https://media.discordapp.net/attachments/1074739124579356692/1082226703318917130/SEXHAUSE_tiktok61.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226702048043068/SEXHAUSE_tiktok.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226703717371924/SEXHAUSE_tiktok72-1.mp4", + "https://media.discordapp.net/attachments/1074739124579356692/1082226702752698368/SEXHAUSE_tiktok16.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/848230058358865960/VID_20210529_020647_613.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/848229012122894336/IMG_20210529_021022_451.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076518049798164520/BEST_SEX_2.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/846216980789067796/VID_20210524_043957_999.mp4", + "https://media.discordapp.net/attachments/871193570168700948/1032100481020985354/3kxLcJm.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852454126570963014/VID_20210610_033746_181.mp4", + "https://cdn.discordapp.com/attachments/1018239329690198138/1018402453873496136/onlynudes.mp4", + "https://media.discordapp.net/attachments/998331826902941753/1012775304248430693/VID_20211113_102753_067.mp4", + "https://media.discordapp.net/attachments/979103092266123264/1018704954199900200/redditsave.com_DASH_1080_3.mp4", + "https://cdn.discordapp.com/attachments/975086662692536400/1025874319630418091/SPOILER_Brazzers_25.mp4", + "https://cdn.discordapp.com/attachments/1073583671828816002/1073693032613945354/asi_2.webm", + "https://media.discordapp.net/attachments/998331826902941753/1012775304248430693/VID_20211113_102753_067.mp4", + "https://media.discordapp.net/attachments/838625457121394741/852454126570963014/VID_20210610_033746_181.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088958341641941012/lamorasoftt-1589265050870874114-20221106_173449-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088959273880539257/lamorasoftt-1613108555501998081-20230111_124024-vid1.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318538494455869/video2.mov", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318530533670983/Video_Record_2893.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318529598324746/480P_2000K_382840642.mp4", + "https://cdn.discordapp.com/attachments/1035448282870198333/1042318480264925246/video1_1.mp4", + "https://media.discordapp.net/attachments/838625457121394741/852454126570963014/VID_20210610_033746_181.mp4", + "https://cdn.discordapp.com/attachments/975086662692536400/1025874319630418091/SPOILER_Brazzers_25.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076518070895521902/BEST_SEX_16.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076518078529146940/BEST_SEX_22.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076518078030028840/BEST_SEX_21.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076518079019884554/BEST_SEX_20.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076518043661897780/BEST_SEX_5.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076518044391702569/BEST_SEX_7.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076518044051984445/BEST_SEX_6.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076518042655281213/BEST_SEX_3.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1070794397786054817/BEST_PORN_3.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076517983284908212/BEST_SEX_23.mp4", + "https://cdn.discordapp.com/attachments/1070739029726863489/1076518051232620635/BEST_SEX_1.mov", + "https://cdn.discordapp.com/attachments/1004853454059094036/1020329240362758165/discord.ggssex_64.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858559608163008522/VID_20210627_083516_803.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855034786060697611/VID_20210617_062439_283.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855034664774795284/VID_20210617_062502_887.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855034264999821322/VID_20210617_062743_008.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855034051491790868/VID_20210617_062923_314.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/855033805198196736/VID_20210617_062937_852.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852456520444018704/VID_20210610_034419_265_378x672.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852455879466418187/VID_20210610_034245_690_516x918.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852455210399957002/VID_20210610_034517_486_456x812.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852454883402711060/VID_20210610_034119_186.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852454566532612096/VID_20210610_034100_457.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/852453954175893524/VID_20210610_033659_237.mp4", + "https://media.discordapp.net/attachments/998331826902941753/1012775304248430693/VID_20211113_102753_067.mp4", + "https://media.discordapp.net/attachments/979103092266123264/1018704954199900200/redditsave.com_DASH_1080_3.mp4", + "https://media.discordapp.net/attachments/1060545972964442193/1076298564629708830/CS01.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088952976510570506/tik_3.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088958342032019597/lamorasoftt-1628396537196777474-20230222_170923-vid1.mp4", + "https://cdn.discordapp.com/attachments/1080121950363467786/1088958342409490432/lamorasoftt-1630012887858118656-20230227_041211-vid1.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858562593869660160/VID_20210627_083204_647.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858562593228193824/VID_20210627_083218_520.mp4", + "https://cdn.discordapp.com/attachments/838625457121394741/858562592717275136/VID_20210627_083307_615.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/toys.json b/src/storage/nsfw/toys.json new file mode 100644 index 0000000..76992f8 --- /dev/null +++ b/src/storage/nsfw/toys.json @@ -0,0 +1,96 @@ +[ + "https://cdn.discordapp.com/attachments/1006676958261821550/1111414966776496248/IMG_6099.mp4", + "https://cdn.discordapp.com/attachments/962240668594479144/1114613190236590190/video_44404-06-2022_21-10-00.mp4", + "https://cdn.discordapp.com/attachments/962240668594479144/1114608013202948256/video_43503-06-2022_21-10-08.mp4", + "https://cdn.discordapp.com/attachments/962240668594479144/1114602191550943332/video_19410-03-2022_12-12-35.mp4", + "https://cdn.discordapp.com/attachments/734124455852376086/1113406248721854504/IMG_20230528_083634_478.jpg", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111410894501585046/eTCDpZJ.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111411300828987443/-467481272740805706.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111411407364296824/rfstoys.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111411510422544425/397585.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111411519771648090/trim.7381029C-0496-4FAA-A76C-92CE7D2D2BA2.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111411686293897276/DASH_480_3.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111411922160603136/video0.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111411996018094110/trim.4BDA0AA3-3781-4240-AA36-DAF051D6070C-1.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111412037608812554/360477.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111412125362028694/trim.CB39DFC3-E662-4AEB-BD09-7D46A942418D.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111412628884033586/onlyprn3-4.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111412777098166272/Dildo001_1.webm", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111413151011963030/AnalToy002.webm", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111413690571444354/Vites.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111414021497831534/onlyprn2-4.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111414056532856882/onlyprn3.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111414098207440896/2022-08-28_13.55.05.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111414144340598844/video0-4.mp4", + "https://cdn.discordapp.com/attachments/1073584829662253086/1074637967269822474/video0_1.mp4", + "https://cdn.discordapp.com/attachments/976673998232514590/1094760628356382810/VID_20230410_012737_691.mp4", + "https://cdn.discordapp.com/attachments/922917763528396900/1079677380622299186/-6633560179324960416.mov", + "https://cdn.discordapp.com/attachments/1006676958261821550/1016026979700592752/video0_5.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1016026178789847201/video0_4.mov", + "https://cdn.discordapp.com/attachments/1006676958261821550/1015804834445807696/VID_20220724_163520_887.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1016025888711786546/video0_2.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1015804832398983358/HMSspT8pD_2WslWk_2.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1015804829924335636/trim.4BDA0AA3-3781-4240-AA36-DAF051D6070C-1.mov", + "https://cdn.discordapp.com/attachments/962240668594479144/1102322064293117992/regwes.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076651225061281962/viddit_2edbe4c9.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076651211975053352/viddit_20729322.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076650049989255198/video0-1.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076649979533336628/DASH_1080_1.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1016025888711786546/video0_2.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1015804829924335636/trim.4BDA0AA3-3781-4240-AA36-DAF051D6070C-1.mov", + "https://cdn.discordapp.com/attachments/1006676958261821550/1015804831887269909/toys.mp4", + "https://cdn.discordapp.com/attachments/962240668594479144/1102322064293117992/regwes.mp4", + "https://cdn.discordapp.com/attachments/1081979219342528623/1082571865131851807/e87635b724e978d1d1c75755def2e87d.mp4", + "https://cdn.discordapp.com/attachments/1081979219342528623/1082570865159442442/VID_20230226_142101_810.mp4", + "https://cdn.discordapp.com/attachments/1073584829662253086/1074637966636486736/bg1.mov", + "https://cdn.discordapp.com/attachments/788255701809627156/835532363109892106/keS5YQb.mp4", + "https://cdn.discordapp.com/attachments/962240668594479144/1114613190236590190/video_44404-06-2022_21-10-00.mp4", + "https://cdn.discordapp.com/attachments/962240668594479144/1114608013202948256/video_43503-06-2022_21-10-08.mp4", + "https://cdn.discordapp.com/attachments/962240668594479144/1114602191550943332/video_19410-03-2022_12-12-35.mp4", + "https://cdn.discordapp.com/attachments/734124455852376086/1113406248721854504/IMG_20230528_083634_478.jpg", + "https://cdn.discordapp.com/attachments/1006676958261821550/1111411686293897276/DASH_480_3.mp4", + "https://cdn.discordapp.com/attachments/922917763528396900/1079677380622299186/-6633560179324960416.mov", + "https://cdn.discordapp.com/attachments/922917763528396900/1080018689354637382/2372389950628884140.mov", + "https://cdn.discordapp.com/attachments/922917763528396900/1080019995771293727/-6834481012224743319.mov", + "https://cdn.discordapp.com/attachments/992095996425273364/992096070245040259/VID-20220226-WA0004.mp4", + "https://cdn.discordapp.com/attachments/992095940771070062/992096017132572823/7fff38f92000afd14c522778929cb0ec.mp4", + "https://cdn.discordapp.com/attachments/922917763528396900/1079677380622299186/-6633560179324960416.mov", + "https://cdn.discordapp.com/attachments/922917763528396900/1080018689354637382/2372389950628884140.mov", + "https://cdn.discordapp.com/attachments/922917763528396900/1080019995771293727/-6834481012224743319.mov", + "https://cdn.discordapp.com/attachments/638215910066225173/962802969840066671/trim.9A1261E5-16F4-4DB4-99A6-3B1285036000.mov", + "https://media.discordapp.net/attachments/764396489916284939/1099369990798459011/20D5A77.mp4", + "https://media.discordapp.net/attachments/689827520039747743/1074650387723862126/RDT_20230212_003442.mp4", + "https://cdn.discordapp.com/attachments/922917763528396900/1072871416157982760/-1129268675631215190.mov", + "https://cdn.discordapp.com/attachments/922917763528396900/1073128465525653514/-7702460964513269659.mov", + "https://cdn.discordapp.com/attachments/1006676958261821550/1038534439627665518/brazzers_toys524.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076650049989255198/video0-1.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076648865823993856/b1b576f0ba4c90ad51332730221a3192.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076648925244686357/viddit_d2d8bd13.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076649461314498720/viddit_1d6b0e9a.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076649355676758096/viddit_e23d34c5.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076649057424003212/viddit_d071ab3c.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076649644270030859/viddit_8d982c68.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076649520663904416/-2723439805261979367.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076649465022255196/viddit_e39f0348.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076649778609401906/viddit_43a9a6aa.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076649979533336628/DASH_1080_1.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076649728764293231/viddit_7f851e06.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076650537841332255/viddit_2141b672.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076651211975053352/viddit_20729322.mp4", + "https://cdn.discordapp.com/attachments/1006676958261821550/1076653304442015805/brazzers_toys.mp4", + "https://media.discordapp.net/attachments/689827520039747743/1074650388298469426/RDT_20230213_154913.mp4", + "https://media.discordapp.net/attachments/689827520039747743/1056300534371455036/Snapchat-1485856787.mp4", + "https://cdn.discordapp.com/attachments/899763415508221985/1054501952953790504/video-output-77042BBA-EB4A-4BFB-97E3-EC16CFEFB402.mp4", + "https://cdn.discordapp.com/attachments/899763415508221985/1054297280141869066/video-output-1B68001F-27C8-46A7-83CD-E62CF60FECD9-3.mp4", + "https://media.discordapp.net/attachments/689827520039747743/1064614763608420412/QzsdQMYxf0aK_JXH.mp4", + "https://media.discordapp.net/attachments/664792929541292053/964439466834006056/1_5024220423231898439.mp4", + "https://media.discordapp.net/attachments/543261814071361536/1036969885395341322/video_17040213355919-kpLHrpNK.mp4", + "https://media.discordapp.net/attachments/689827520039747743/1053657260733235270/FalseCoralDuckbillplatypus.mp4", + "https://media.discordapp.net/attachments/689827520039747743/1053654213751734312/UnlawfulVibrantBubblefish.mp4", + "https://media.discordapp.net/attachments/689827520039747743/1053653526842200184/SeagreenAridEland.mp4", + "https://media.discordapp.net/attachments/689827520039747743/1062879463857205348/IMG_0908.MOV", + "https://media.discordapp.net/attachments/664792929541292053/959266212813086761/ve2MA7tZfoa0SdZ_.mp4", + "https://media.discordapp.net/attachments/689827520039747743/1049894729229291520/xvideos.com_757e54d67c4b510cbc682bd512609d6d.mp4", + "https://media.discordapp.net/attachments/689827520039747743/1048310200450437191/LdCgAyp1zIa9.webm", + "https://media.discordapp.net/attachments/689827520039747743/1048309624341790801/twitter_20221002_100557.mp4" +] \ No newline at end of file diff --git a/src/storage/nsfw/transgender.json b/src/storage/nsfw/transgender.json new file mode 100644 index 0000000..baa81dc --- /dev/null +++ b/src/storage/nsfw/transgender.json @@ -0,0 +1,44 @@ +[ + "https://cdn.discordapp.com/attachments/1099073837171212321/1099358971292291133/Video.mov", + "https://cdn.discordapp.com/attachments/1099073837171212321/1099359004708315176/09.mp4", + "https://cdn.discordapp.com/attachments/1099073837171212321/1099359018381738146/trim.E0894FE8-2825-4DDD-A18A-18065F5A4305.mov", + "https://cdn.discordapp.com/attachments/1099073837171212321/1099359027634376755/VID_20230304_171232_347.mov", + "https://cdn.discordapp.com/attachments/1099073837171212321/1099359157989163089/P-Tsgv7VhTdaLVNj.mov", + "https://cdn.discordapp.com/attachments/1099073837171212321/1099359018381738146/trim.E0894FE8-2825-4DDD-A18A-18065F5A4305.mov", + "https://cdn.discordapp.com/attachments/1099073837171212321/1099359004708315176/09.mp4", + "https://cdn.discordapp.com/attachments/1099073837171212321/1099358985527771156/BNVXnAC.mov", + "https://cdn.discordapp.com/attachments/1099073837171212321/1099358971292291133/Video.mov", + "https://cdn.discordapp.com/attachments/971504115836395571/972538095578775552/1608689297_looped_1608689296.mp4", + "https://cdn.discordapp.com/attachments/971504115836395571/972538095989850153/WwHucu7o4ajQ5upa.mp4", + "https://cdn.discordapp.com/attachments/971504115836395571/1032248539901861958/2_5431647931532843900.mp4", + "https://cdn.discordapp.com/attachments/971504115836395571/1032248540283551804/SlimyMellowDuiker-mobile.mov", + "https://cdn.discordapp.com/attachments/971504115836395571/1032248540702978188/VID_20220828_104946_441.mp4", + "https://cdn.discordapp.com/attachments/971504115836395571/1032248541466329138/xvideos.com_278c513cb1af6e199287a6a23a5aee27.mp4", + "https://cdn.discordapp.com/attachments/971504115836395571/1032248542057742366/discord.gg_hdporn_31.mov", + "https://cdn.discordapp.com/attachments/971504115836395571/1032248543064371231/iiiiiiiiii.mp4", + "https://cdn.discordapp.com/attachments/797579015316832287/877854722344779866/xvideos.com_763ac5489c2a3f45d1716378ed1b3b4d.mp4", + "https://media.discordapp.net/attachments/1003609614111219802/1003688149987381368/xvideos.com_44b702c27ce2d9b1a41b638497bdb511.mp4", + "https://media.discordapp.net/attachments/1003609614111219802/1003688146636128256/xvideos.com_871af71cc347121aa3e1cc49fb4d79b9.mp4", + "https://cdn.discordapp.com/attachments/940315852601983047/948986105829683210/1642329061536.webm", + "https://cdn.discordapp.com/attachments/940315852601983047/948985322165923880/-B2GqSr3b_joox3c.mp4", + "https://cdn.discordapp.com/attachments/768710092676923412/1108356317556506634/VID_20220319_101937_168.mp4", + "https://cdn.discordapp.com/attachments/768710092676923412/1106352769771765803/tweeload_09cf1d4e.mp4", + "https://cdn.discordapp.com/attachments/768710092676923412/1099533952219353209/1682219422939498.webm", + "https://cdn.discordapp.com/attachments/768710092676923412/1098018188656119928/ssstwitter.com_1669686971783.mp4", + "https://cdn.discordapp.com/attachments/1025001315316797480/1025003396647878708/xvideos.com_3638dfe89b30d1654ea315f5e592c3fc.mp4", + "https://cdn.discordapp.com/attachments/768710092676923412/1090738808280076329/3a7320bd735d7242fc157d4cea953944.mp4", + "https://cdn.discordapp.com/attachments/1025001315316797480/1077588443393175682/Turkish_threesome_-_1_trans_2_big_dicked_straight_guys_-_ThisVid.com.mp4", + "https://cdn.discordapp.com/attachments/1047687230782718012/1051438157121466379/1614327781982.webm", + "https://cdn.discordapp.com/attachments/1047687230782718012/1051438156127424512/1614705943710.webm", + "https://cdn.discordapp.com/attachments/1047687230782718012/1050332786856296479/C0avoaA.mp4", + "https://cdn.discordapp.com/attachments/1047687230782718012/1049843969196044378/NearGorgeousScoter-mobile.mp4", + "https://cdn.discordapp.com/attachments/1047687230782718012/1048227256167837706/VID_20221103_135552_049.mp4", + "https://cdn.discordapp.com/attachments/1047687230782718012/1048235990004813895/trim.8B161C73-E187-4AB7-BFCD-C98A051CE72C.mov", + "https://cdn.discordapp.com/attachments/1047687230782718012/1049648860819103774/CreativeAccomplishedDiamondbackrattlesnake-mobile.mp4", + "https://cdn.discordapp.com/attachments/942451362011181106/1098337921947410432/OpenFittingAlaskanhusky-mobile.mp4", + "https://cdn.discordapp.com/attachments/1047687230782718012/1047841298163445770/Video.mov", + "https://cdn.discordapp.com/attachments/1047687230782718012/1054483824727306310/1668650387276879.webm", + "https://cdn.discordapp.com/attachments/657295543432642624/1033441057041559592/123.mp4", + "https://cdn.discordapp.com/attachments/768710092676923412/1113648598064840704/1641579352976.webm", + "https://cdn.discordapp.com/attachments/1025001315316797480/1077588443393175682/Turkish_threesome_-_1_trans_2_big_dicked_straight_guys_-_ThisVid.com.mp4" +] \ No newline at end of file diff --git a/src/storage/userBadages.json b/src/storage/userBadages.json new file mode 100644 index 0000000..811fe65 --- /dev/null +++ b/src/storage/userBadages.json @@ -0,0 +1,32 @@ +{ + "emotes": { + "Staff": "<:DiscordStaff:1212804052635746406>", + "Partner": "<:PartneredServerOwner:1212804218717732875>", + "Hypesquad": "<:HypeSquadEvent:1212804162555879424>", + "BugHunterLevel1": "<:DiscordBugHunter1:1212804597064794173>", + "BugHunterLevel2": "<:DiscordBugHunter2:1212804026471551016>", + "HypeSquadOnlineHouse1": "<:HypeSquadBravery:1212804126350643220>", + "HypeSquadOnlineHouse2": "<:HypeSquadBrilliance:1212804139411832842>", + "HypeSquadOnlineHouse3": "<:HypeSquadBalance:1212804108722114641>", + "PremiumEarlySupporter": "<:EarlySupporter:1212804086382989382>", + "VerifiedBot": "<:Bot1:1212803972243660850><:Bot2:1212803983740248104>", + "VerifiedDeveloper": "<:EarlyVerifiedBotDeveloper:1212804072344658051>", + "CertifiedModerator": "<:ModeratorProgramsAlumni:1212804172416552991>", + "ActiveDeveloper": "<:ActiveDeveloper:1212803896028954634>" + }, + "names": { + "Staff": "Discord Staff", + "Partner": "Discord Partner", + "BugHunterLevel1": "Bug Hunter (Level 1)", + "BugHunterLevel2": "Bug Hunter (Level 2)", + "Hypesquad": "HypeSquad Events", + "HypeSquadOnlineHouse1": "House of Bravery", + "HypeSquadOnlineHouse2": "House of Brilliance", + "HypeSquadOnlineHouse3": "House of Balance", + "PremiumEarlySupporter": "Early Supporter", + "TeamPseudoUser": "Team User", + "VerifiedBot": "Verified Bot", + "VerifiedDeveloper": "Verified Bot Developer", + "ActiveDeveloper": "Active Developer" + } +} \ No newline at end of file diff --git a/start.bat b/start.bat new file mode 100644 index 0000000..85d64fb --- /dev/null +++ b/start.bat @@ -0,0 +1,6 @@ +echo off +cls +:run +npm install && cls && npm start + +goto run \ No newline at end of file