nyx

The first CODM discrod bot -- cath.exe Template
git clone https://codeberg.org/night0721/nyx
Log | Files | Refs | LICENSE

commit e4308a2783abe57b4e210c9eee5fe31d8423374d
parent a3af591df255f6cdc0baa0a2fe437d2c367e0379
Author: Night Kaly <[email protected]>
Date:   Wed,  2 Feb 2022 17:24:34 +0000

Merge pull request #51 from night0721/main

ipgrabber-domains.json
Diffstat:
DCODM/builds.js | 86-------------------------------------------------------------------------------
ACODM/loadout.js | 78++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ACODM/new-stats.js | 774+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MCODM/stats.js | 6+-----
Mclient/CODMClient.js | 2+-
Mclient/NYX.js | 1+
Mcommand/CODM/build.js | 390+++++++++++++++++++++++++++++++------------------------------------------------
Mcommand/CODM/damage.js | 6+-----
Mcommand/CODM/effects.js | 6+-----
Mcommand/CODM/perk.js | 3+--
Acommand/CODM/scorestreak.js | 170+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Mcommand/CODM/stats.js | 8++------
Mcommand/Fun/dare.js | 18++++++++++--------
Mcommand/Fun/truth.js | 18++++++++++--------
Mcommand/Owner/add.js | 75++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------
Mcommand/Owner/eval.js | 28++++++++++++++++++----------
Dcommand/Owner/rmv.js | 31-------------------------------
Dcommand/Owner/scorestreak.js | 177-------------------------------------------------------------------------------
Acommand/Utilities/poll.js | 79+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Mevents/messageCreate.js | 75+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------
Dipgrabber-blacklist | 144-------------------------------------------------------------------------------
Mpackage.json | 4++--
Dremoteinvite.js | 11-----------
Dscorestreak.js | 181-------------------------------------------------------------------------------
Mutil/Data/aliases.json | 8+++++---
Mutil/Data/attachments.json | 59+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Autil/Data/cwts.json | 74++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Dutil/Data/dares.json | 27---------------------------
Autil/Data/domains.json | 4131+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Autil/Data/loadout.json | 98+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Dutil/Data/scam.json | 4103-------------------------------------------------------------------------------
Autil/Data/tnd.json | 90+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Dutil/Data/truth.json | 64----------------------------------------------------------------
Mutil/functions/common.js | 82++++++++++++++++++++++++++++++++++++++++++++-----------------------------------
Mutil/functions/function.js | 1+
35 files changed, 5930 insertions(+), 5178 deletions(-)

diff --git a/CODM/builds.js b/CODM/builds.js @@ -1,85 +0,0 @@ -const builds = require("../util/Data/builds.json"); -const guns = builds.Main; -const Discord = require("discord.js"); -const nmDt = require("../util/Data/aliases.json"); -const weaponActualName = nmDt.weaponActualName; -const weaponAlliasName = nmDt.weaponAlliasName; -module.exports = { - name: "build", - description: "Check gun builds", - usage: "(Gun)", - category: "CODM", - status: false, - Owner: true, - run: async (client, message, args) => { - const currGun = weaponIdentifier(args.join(" ").replace("\n", " ")); - if (!currGun) message.reply({ content: "Please specify a gun" }); - if (typeof currGun == "string") { - message.reply({ embeds: [currGun] }); - } else { - const attachNames = currGun.Attachments.map( - x => `**${x.Name}** [${builds.AttachmentTypes[x.Type]}]` - ); - const embed = new Discord.MessageEmbed() - .setTitle( - `Build for ${currGun.Name} (${builds.WeaponTypes[currGun.Type]})` - ) - .setColor(16580400) - .setFooter(`Made by ${client.author}`, client.user.displayAvatarURL()) - .setTimestamp() - .setURL(client.web) - .setDescription( - attachNames.reduce( - (t, x, i, a) => t + (i < a.length - 1 ? "\n" : " \n") + x - ) - ) - .setImage(currGun.URL); - return message.reply({ embeds: [embed] }); - } - }, -}; -function weaponIdentifier(inpWeaponName) { - if (inpWeaponName.length < 2) { - return "The name `" + inpWeaponName + "` is too short."; - } - let probableWeapons = []; - for (let i = 0; i < guns.length; i++) { - if (inpWeaponName.Simplify() == guns[i].Name.Simplify()) { - return guns[i]; - } else if (guns[i].Name.Simplify().includes(inpWeaponName.Simplify())) { - probableWeapons.push(i); - } - } - - if (probableWeapons.length == 1) { - return guns[probableWeapons[0]]; - } - - for (let i = 0; i < weaponAlliasName.length; i++) { - for (let j = 0; j < weaponAlliasName[i].length; j++) { - if (weaponAlliasName[i][j].Simplify() == inpWeaponName.Simplify()) { - for (let i2 = 0; i2 < guns.length; i2++) { - if (weaponActualName[i].Simplify() == guns[i2].Name.Simplify()) { - return guns[i2]; - } - } - } - } - } - probableWeapons = [...new Set(probableWeapons)]; - if (probableWeapons.length == 1) { - return guns[probableWeapons[0]]; - } - if (probableWeapons.length > 1) { - return ( - "Did you mean `" + - probableWeapons - .map(x => guns[x].Name) - .reduce((out, x, i) => - [out, x].join(i === probableWeapons.length - 1 ? "` or `" : "`, `") - ) + - "`?" - ); - } - return "Couldn't identify the weapon: `" + '"' + inpWeaponName + '"`'; -} -\ No newline at end of file diff --git a/CODM/loadout.js b/CODM/loadout.js @@ -0,0 +1,78 @@ +const { MessageEmbed } = require("discord.js"); //@night0721 You need to make this +const items = require("../../util/Data/loadout.json"); +module.exports = { + name: "class", + description: "Generate A Random Loadout", + category: "CODM", + run: async (client, interaction) => { + // const data = async () => { + // const d = await model.findOne({}); + // const types = d.Categories; + // const names = d.Primary; + // const category = types[Math.floor(Math.random() * types.length)]; + // const weapons = names[0][category]; + // return `${weapons[Math.floor(Math.random() * weapons.length)]}`; + // }; + // const primary_weapon = await data(); + // const primary = primary_weapon.replace(/[ -]/g, "_").replace(/\./g, ""); + // const slots = shuffle(Object.keys(Attachments[primary][0])); + // const slot_1 = slots.next().value, + // slot_2 = slots.next().value, + // slot_3 = slots.next().value, + // slot_4 = slots.next().value, + // slot_5 = slots.next().value; + const result = new MessageEmbed() + .setColor(client.color) + .setFooter(`Made by ${client.author}`) + .setURL(client.web) + .setTitle(`🎲 A Randomly Generated Loadout 🎲`) + .setDescription( + `This loadout is a randomly generated, Also try, \`\`\`\`/gun\`\`\`\` to get a randomally generated primary weapon gunsmith build` + ) + .addFields( + { + name: `Secondary Weapon`, + value: ``, + inline: true, + }, + { + name: `Operator Skill`, + value: ``, + inline: true, + }, + { + name: `Scorestreak`, // 3 perks + value: ``, + inline: true, + }, + { + name: `Red Perk`, + value: ``, + inline: true, + }, + { + name: `Green Perk`, + value: ``, + inline: true, + }, + { + name: `Blue Perk`, + value: ``, + inline: true, + } + ) + .setTimestamp(); + interaction.followUp({ embeds: [result] }); + + // function* shuffle(array) { + // let i = array.length; + // while (i--) { + // yield array.splice(Math.floor(Math.random() * (i + 1)), 1)[0]; + // } + // } + // function getAttachment(gun, slot) { + // const ca = Attachments[gun][0][slot]; + // return ca[Math.floor(Math.random() * ca.length)]; + // } + }, +}; diff --git a/CODM/new-stats.js b/CODM/new-stats.js @@ -0,0 +1,774 @@ +const { MessageEmbed } = require("discord.js"); +const moment = require("moment"); +const axios = require("axios"); +module.exports = { + name: "stats", + description: "Check Stats of a Weapon by SOD", + usage: "[Weapon Name]", + category: "CODM", + options: [ + { + type: "SUB_COMMAND", + name: "assault_rifle", + description: "Get a Stats for Assault Rifle", + options: [ + { + type: 3, + name: "Weapon", + description: "Name of the Gun", + required: true, + choices: [ + { + name: "Type 25", + value: "A01", + }, + { + name: "M16", + value: "A02", + }, + { + name: "AK117", + value: "A03", + }, + { + name: "AK-47", + value: "A04", + }, + { + name: "ASM10", + value: "A05", + }, + { + name: "M4", + value: "A06", + }, + { + name: "BK57", + value: "A07", + }, + { + name: "LK24", + value: "A08", + }, + { + name: "ICR-1", + value: "A09", + }, + { + name: "Man-o-War", + value: "A10", + }, + { + name: "KN-44", + value: "A11", + }, + { + name: "HBRa3", + value: "A12", + }, + { + name: "HVK-30", + value: "A13", + }, + { + name: "DR-H", + value: "A14", + }, + { + name: "Peacekeeper MK2", + value: "A15", + }, + { + name: "FR .556", + value: "A16", + }, + { + name: "AS VAL", + value: "A17", + }, + { + name: "CR-56 AMAX", + value: "A18", + }, + { + name: "M13", + value: "A19", + }, + { + name: "Swordfish", + value: "A20", + }, + { + name: "Kilo 141", + value: "A21", + }, + ], + }, + ], + }, + { + type: "SUB_COMMAND", + name: "sub_machine_gun", + description: "Get a Stats for Sub Machine Gun", + options: [ + { + type: 3, + name: "Weapon", + description: "Name of the Gun", + required: true, + choices: [ + { + name: "RUS-79u", + value: "D01", + }, + { + name: "Chicom", + value: "D02", + }, + { + name: "PDW-57", + value: "D03", + }, + { + name: "Razorback", + value: "D04", + }, + { + name: "MSMC", + value: "D05", + }, + { + name: "HG40", + value: "D06", + }, + { + name: "Pharo", + value: "D07", + }, + { + name: "GKS", + value: "D08", + }, + { + name: "Cordite", + value: "D09", + }, + { + name: "QQ9", + value: "D10", + }, + { + name: "Fennec", + value: "D11", + }, + { + name: "AGR 556", + value: "D12", + }, + { + name: "QXR", + value: "D13", + }, + { + name: "PP19 Bizon", + value: "D14", + }, + { + name: "MX9", + value: "D15", + }, + { + name: "CBR4", + value: "D16", + }, + { + name: "PPSh 41", + value: "D17", + }, + ], + }, + ], + }, + { + type: "SUB_COMMAND", + name: "sniper_rifle", + description: "Get a Stats for Sniper Rifle", + options: [ + { + type: 3, + name: "Weapon", + description: "Name of the Gun", + required: true, + choices: [ + // { + // name: "XPR-50", + // value: "B01", + // }, + { + name: "Arctic .50", + value: "B02", + }, + { + name: "M21 EBR", + value: "B03", + }, + { + name: "DL Q33", + value: "B04", + }, + { + name: "Locus", + value: "B05", + }, + // { + // name: "NA-45", + // value: "B06", + // }, + { + name: "Outlaw", + value: "B07", + }, + { + name: "Rytec AMR", + value: "B08", + }, + { + name: "SVD", + value: "B09", + }, + ], + }, + ], + }, + { + type: "SUB_COMMAND", + name: "light_machine_gun", + description: "Get a Stats for Light Machine Gun", + options: [ + { + type: 3, + name: "Weapon", + description: "Name of the Gun", + required: true, + choices: [ + { + name: "S36", + value: "C01", + }, + { + name: "UL736", + value: "C02", + }, + { + name: "RPD", + value: "C03", + }, + { + name: "M4 LMG", + value: "C04", + }, + { + name: "Chopper", + value: "C05", + }, + { + name: "Holger 26", + value: "C06", + }, + { + name: "Hades", + value: "C07", + }, + { + name: "PKM", + value: "C08", + }, + ], + }, + ], + }, + { + type: "SUB_COMMAND", + name: "shotgun", + description: "Get a Stats for Shotgun", + options: [ + { + type: 3, + name: "Weapon", + description: "Name of the Gun", + required: true, + choices: [ + { + name: "HS2126", + value: "E01", + }, + { + name: "BY15", + value: "E02", + }, + { + name: "HS0405", + value: "E03", + }, + { + name: "Striker", + value: "E04", + }, + { + name: "KRM_262", + value: "E05", + }, + { + name: "Echo", + value: "E06", + }, + { + name: "R9-0", + value: "E07", + }, + ], + }, + ], + }, + { + type: "SUB_COMMAND", + name: "marksman_rifle", + description: "Get a Stats for Marksman Rifle", + options: [ + { + type: 3, + name: "Weapon", + description: "Name of the Gun", + required: true, + choices: [ + { + name: "Kilo Bolt-Action", + value: "F01", + }, + { + name: "SKS", + value: "F02", + }, + { + name: "SP-R 208", + value: "F03", + }, + { + name: "MK2", + value: "F04", + }, + ], + }, + ], + }, + { + type: "SUB_COMMAND", + name: "pistol", + description: "Get a Stats for Pistol", + options: [ + { + type: 3, + name: "Weapon", + description: "Name of the Gun", + required: true, + choices: [ + { + name: "J358", + value: "G01", + }, + { + name: "MW11", + value: "G02", + }, + { + name: ".50 GS", + value: "G03", + }, + { + name: "Renetti", + value: "G04", + }, + { + name: "Shorty", + value: "G05", + }, + { + name: "Crossbow", + value: "G06", + }, + ], + }, + ], + }, + ], + // It's not complete, Still work in progress. + run: async (client, interaction, args) => { + const cwts = args[1]; + const data = await axios + .get(`${process.env.api}/api/v1/codm/builds?cwts=${cwts}`, { + headers: { + Authorization: process.env.CODM_API_KEY, + }, + }) + .then((res) => res.data) + .catch((e) => null); + + if (!data?.ID) { + const embed = new MessageEmbed() + .setDescription( + `<:nyx_not_available:897378400031879188> Sorry, We currently don't have Stats for this Weapon` + ) + .setColor(client.color); + interaction.followUp({ embeds: [embed] }); + } else { + const embed = new MessageEmbed() + .setTitle( + `${data.author} Statistical Breakdown` + ) + .setColor(16580400) + .setImage(data.imageUrl) + .setFooter( + `Stats Curtosy of Round Table`, + ) + // .setFooter( + // `Stats Curtosy of Stats on Duty`, + // ) + .setDescription( + `<:nyx_description:897379659665264650> **Description** \n${data.description}` + ) + .addFields( + { + name: ":id: CWTS:", + value: `\`\`\`\n${data.cwts}\n\`\`\``, + inline: true, + }, + { + name: "<a:lastupdate:897381474330873887> Last Updated:", + value: `\`\`\`\n${moment(Date.parse(data.lastUpdate)).format( + "MMMM Do YYYY" + )}\n\`\`\``, + inline: true, + }, + { + name: "Basic Stats", + value: `\`\`\`\n + BSA Score: ${data.bsa_score} + Hipfire Score: ${data.hipfire_score} + Rate of Fire\t\t\t\t: ${data.rof} + Penetration Level\t\t: ${data.penetration} + Firing Mode\t\t\t\t\t: Full Auto + + \n\`\`\``, + inline: false, + }, + { + name: "Handling & Mobility", + value: `\`\`\`\n + Drop Time : 416.6 ms + Raise Time : 650 ms + Sprinting Speed : 6.09 m/s + Walking Speed : 4.51 m/s + Sprint-to-Fire Time : 165 ms + \n\`\`\``, + inline: false, + }, + { + name: "Ammunation Stats", + value: `\`\`\`\n + Magazine : 30 + Reserve : 120 + Reload Type : Magazine + Cancel Reload Time : 1.9 s + Reload Time : 2.3 s + Full Reload Time : 3.2 s + \n\`\`\``, + inline: false, + }, + { + name: ":paperclip: Attachments:", + value: arr.join("\n"), + }, + { + name: "<a:tags:897034924140404776> Tags", + value: data.tags.join(", "), + } + ) + .setURL(client.web); + interaction.followUp({ embeds: [embed] }); + } + }, +}; + +// @night0721 Damage profile will be avalable by different command + + + +// recoilAvailable = false; +// hasError = false; +// console.log(args); +// const repEmb = statsHandler(args.join(" ").replace("\n", " ")); +// if (hasError) { +// interaction.followUp({ embeds: [repEmb] }); +// } +// if (recoilAvailable) { +// repEmb.fields.push({ +// name: "**Recoil Graph**", +// value: +// "```\nThe Recoil graph below is dynamic (change based on attachment equipped)```", +// }); +// const recoilImageLink = await chart.getShortUrl(); +// repEmb.image = { url: recoilImageLink }; +// } +// interaction.followUp({ embeds: [repEmb] }); +// }, +// } + + +// run: async (client, interaction, args) => { +// recoilAvailable = false; +// hasError = false; +// console.log(args); +// const repEmb = statsHandler(args.join(" ").replace("\n", " ")); +// if (hasError) { +// interaction.followUp({ embeds: [repEmb] }); +// } +// if (recoilAvailable) { +// repEmb.fields.push({ +// name: "**Recoil Graph**", +// value: +// "```\nThe Recoil graph below is dynamic (change based on attachment equipped)```", +// }); +// const recoilImageLink = await chart.getShortUrl(); +// repEmb.image = { url: recoilImageLink }; +// } +// interaction.followUp({ embeds: [repEmb] }); +// }, +// }; + +// function inpHandler(inpmsg) { +// statsHandler(inpmsg.split("+")[0]); +// } + +// function statsHandler(inpmsg) { +// let statsNames = [ +// "Pellets", +// "Detonation Range", +// "Explosion Radius", +// "Explosion Damage", +// "Firing Mode", +// "Rate of Fire", +// "Bullet in Burst", +// "Time Between Burst", +// "Bullet Speed", +// "Penetration Level", +// "Bullet Spread", +// "Idle Sway", +// "Hipfire Pellet Spread", +// "ADS Pellet Spread", +// "ADS Time", +// "Sprint-to-Fire Time", +// "ADS Zoom", +// "Magazine", +// "Reserve", +// "Reload Type", +// "Cancel Reload Time", +// "Reload Time", +// "Full Reload Time", +// "Drop Time", +// "Raise Time", +// "Sprinting Speed", +// "Walking Speed", +// "Straifing Speed", +// "Damage per Tick", +// "Number of Ticks", +// "Time Between Ticks", +// "Breath Hold Time", +// "shouldNeverHappen0", +// "shouldNeverHappen1", +// "shouldNeverHappen2", +// "shouldNeverHappen3", +// "shouldNeverHappen4", +// ], +// out = []; + +// currGun = common.weaponIdentifier(inpmsg); +// if (typeof currGun == "string") { +// hasError = true; +// return currGun; +// } +// currStats = currGun.stats; +// currDRM = currGun.drm[0]; +// currAttachments = []; +// currAttachments = common.attachmentsIdentifier( +// inpmsg, +// currGun.aments, +// currStats +// ); +// if (typeof currAttachments == "string") { +// hasError = true; +// return currAttachments; +// } +// currRecoilArr = [1, 1, currGun.stats[17]]; +// if (currAttachments.length != 0) { +// const totalEffects = common.totaler(currAttachments); + +// currStats = common.updateStatswithEffects(totalEffects, currStats); +// currRecoilArr = [totalEffects[2], totalEffects[3], currGun.stats[17]]; // must happen after currStats update +// currDRM = currGun.drm[totalEffects[37]]; +// currDRM.range = currDRM.range.map(x => +// Math.round(x * (1 + totalEffects[13] / 100)) +// ); +// out = common.attachmentHandler(totalEffects, currStats); +// } +// function statsWorker() { +// if (currStats[19] === 2) { +// currStats[21] = +// currStats[20] + currStats[21] * currStats[17] + currStats[22]; +// currStats[20] = 0; +// currStats[22] = 0; +// } +// currStats[25] = (currStats[25] * currStats[26]) / 100; + +// const outReady = currStats.map((x, i) => +// x ? statsNames[i].padEnd(24) + ":".padEnd(3) + beautifier(i) : "" +// ); +// out = [ +// ...[ +// "Basic Stats", +// "ADS Stats", +// "Bullet Stats", +// "Magazine", +// "Handling Stats", +// "Mobility Stats", +// "Miscellaneous Stats", +// ].map((x, i) => +// fieldMaker( +// x, +// [ +// [04, 05, 09], +// [14, 16, 11, 31], +// [00, 06, 07, 08, 10, 12, 13], +// [17, 18, 19, 20, 21, 22], +// [23, 24], +// [25, 26, 27, 15], +// [28, 29, 30, 01, 02, 03], +// ][i] +// ) +// ), +// ...out, +// ]; +// function fieldMaker(inpName, inpIndx) { +// inpIndx = inpIndx.filter(x => outReady[x]); +// return inpIndx.length +// ? { +// name: "**" + inpName + "**", +// value: "```\n" + inpIndx.map(x => outReady[x]).join("\n") + "```", +// } +// : ""; +// } +// } +// statsWorker(); + +// function beautifier(j) { +// switch (j) { +// case 04: +// return data.firingModes[currStats[j] - 1]; +// case 09: +// return data.penetrationLevels[currStats[j] - 1]; +// case 19: +// return data.reloadTypes[currStats[j] - 1]; +// case 08: +// if (currStats[j] == -1) { +// return "Infinity"; +// } else { +// return parseFloat(currStats[j].toFixed(2)).toString() + " m/s"; +// } +// case 03: +// return parseFloat(currStats[j].toFixed(2)) +// .toString() +// .replace(".", " ~ "); +// default: +// return parseFloat(currStats[j].toFixed(2)).toString() + addUnit(j); +// } + +// function addUnit(j) { +// switch (j) { +// case 07: +// case 14: +// case 15: +// case 23: +// case 24: +// case 31: +// return " ms"; +// case 27: +// case 28: +// case 25: +// case 26: +// return " m/s"; +// case 20: +// case 21: +// case 22: +// return " s"; +// case 16: +// return "%"; +// case 06: +// return " Rounds"; +// case 05: +// return " RPM"; +// default: +// return ""; +// } +// } +// } +// interpretion = currGun.gunname + common.interpretioner(currAttachments); +// if (currGun.recoil.hr.length > 2) { +// chart = common.recoilHandler( +// currGun.recoil.hr, +// currGun.recoil.vr, +// currRecoilArr[0], +// currRecoilArr[1], +// currRecoilArr[2] +// ); +// recoilAvailable = true; +// } else { +// recoilAvailable = false; +// } +// if (chart == "none") { +// recoilAvailable = false; +// } +// if (chart == "err" || currAttachments == "err") { +// hasError = true; +// return "Cocaineeee"; +// } +// const dmg = +// common.damageHandler( +// currDRM.damage, +// currDRM.range, +// 1, +// 100, +// 60000 / currStats[5], +// currStats[7], +// currStats[6], +// currStats[0] +// ) || "```This should never happen```"; +// out = [ +// currGun.description +// ? { +// name: "**Description:**", +// value: "```\n" + currGun.description + "```", +// } +// : {}, +// { name: "**Damage Profile:**", value: dmg }, +// ...out, +// ]; +// out = out.filter(x => x.value); +// return { +// title: interpretion, +// color: 5814783, +// fields: out, +// footer: { +// text: "[OUTDATED] All data courtesy of Project Lighthouse 2.0 and CoDM Research Crew", +// icon_url: +// "https://media.discordapp.net/attachments/735590814662656102/806960573753327657/cc.png", +// }, +// }; diff --git a/CODM/stats.js b/CODM/stats.js @@ -97,11 +97,7 @@ function statsHandler(inpmsg) { currStats = currGun.stats; currDRM = currGun.drm[0]; currAttachments = []; - currAttachments = common.attachmentsIdentifier( - inpmsg, - currGun.aments, - currStats - ); + currAttachments = common.attachmentsIdentifier(inpmsg, currGun); if (typeof currAttachments == "string") { hasError = true; return currAttachments; diff --git a/client/CODMClient.js b/client/CODMClient.js @@ -1,2 +1,2 @@ const { CODMClient } = require("cath"); -module.exports = new CODMClient("Gae"); +module.exports = new CODMClient(process.env.CODM_API_KEY); diff --git a/client/NYX.js b/client/NYX.js @@ -22,6 +22,7 @@ class NYX extends Client { }, shard: "auto", restTimeOffset: 0, + restRequestTimeout: 99999, partials: ["MESSAGE", "CHANNEL", "REACTION", "GUILD_MEMBER"], intents: 24207, } diff --git a/command/CODM/build.js b/command/CODM/build.js @@ -1,10 +1,12 @@ const { MessageEmbed } = require("discord.js"); -const axios = require("axios"); const moment = require("moment"); +const axios = require("axios"); module.exports = { name: "build", description: "Get gunsmith builds", + usage: "[Weapon Name] [Author] [Tag]", type: "CHAT_INPUT", + usage: "[Weapon Name] [Author] [Tag]", category: "CODM", options: [ { @@ -19,100 +21,100 @@ module.exports = { required: true, choices: [ { - name: "AK117", - value: "ak117", + name: "Type 25", + value: "A01", }, { name: "M16", - value: "m16", + value: "A02", }, { - name: "Type 25", - value: "type25", + name: "AK117", + value: "A03", }, { name: "AK-47", - value: "ak47", + value: "A04", }, { name: "ASM10", - value: "asm10", + value: "A05", }, { name: "M4", - value: "m4", + value: "A06", }, { name: "BK57", - value: "bk57", + value: "A07", }, { name: "LK24", - value: "lk24", + value: "A08", }, { - name: "Man-o-War", - value: "manowar", + name: "ICR-1", + value: "A09", }, { - name: "ICR-1", - value: "icr1", + name: "Man-o-War", + value: "A10", }, { name: "KN-44", - value: "kn44", + value: "A11", }, { name: "HBRa3", - value: "hbra3", + value: "A12", }, { name: "HVK-30", - value: "hvk30", + value: "A13", }, { name: "DR-H", - value: "drh", + value: "A14", }, { name: "Peacekeeper MK2", - value: "peacekeepermk2", + value: "A15", }, { name: "FR .556", - value: "fr556", + value: "A16", }, { name: "AS VAL", - value: "asval", + value: "A17", }, { name: "CR-56 AMAX", - value: "cr56amax", + value: "A18", }, { name: "M13", - value: "m13", + value: "A19", }, { name: "Swordfish", - value: "swordfish", + value: "A20", + }, + { + name: "Kilo 141", + value: "A21", }, - // { - // name: "Kilo 141", - // value: "kilo", - // }, ], }, { type: 3, - name: "youtuber", + name: "Author", description: "Select a Content Creator", required: true, choices: [ { - name: "Path.exe", - value: "path", + name: "path.exe", + value: "path.exe", }, { name: "Jokesta", @@ -139,8 +141,8 @@ module.exports = { value: "passive", }, { - name: "Search & Destroy", - value: "snd", + name: "Search And Destroy", + value: "Search And Destroy", }, { name: "Respawn", @@ -163,83 +165,83 @@ module.exports = { choices: [ { name: "RUS-79u", - value: "rus79u", + value: "D01", + }, + { + name: "Chicom", + value: "D02", }, { name: "PDW-57", - value: "pdw57", + value: "D03", }, { name: "Razorback", - value: "razorback", + value: "D04", }, { name: "MSMC", - value: "msmc", + value: "D05", }, { name: "HG40", - value: "hg40", + value: "D06", }, { name: "Pharo", - value: "pharo", + value: "D07", }, { name: "GKS", - value: "gks", + value: "D08", }, { name: "Cordite", - value: "cordite", + value: "D09", }, { name: "QQ9", - value: "qq9", + value: "D10", }, { name: "Fennec", - value: "fennec", - }, - { - name: "Chicom", - value: "chicom", + value: "D11", }, { name: "AGR 556", - value: "agr556", + value: "D12", }, { name: "QXR", - value: "qxr", + value: "D13", }, { name: "PP19 Bizon", - value: "pp19bizon", + value: "D14", }, { name: "MX9", - value: "mx9", + value: "D15", }, { name: "CBR4", - value: "cbr4", + value: "D16", }, { name: "PPSh 41", - value: "ppsh", + value: "D17", }, ], }, { type: 3, - name: "youtuber", + name: "Author", description: "Select a Content Creator", required: true, choices: [ { - name: "Path.exe", - value: "path", + name: "path.exe", + value: "path.exe", }, { name: "Jokesta", @@ -262,8 +264,8 @@ module.exports = { value: "passive", }, { - name: "Search & Destroy", - value: "snd", + name: "Search And Destroy", + value: "Search And Destroy", }, { name: "Respawn", @@ -284,58 +286,54 @@ module.exports = { description: "Name of the Gun", required: true, choices: [ + // { + // name: "XPR-50", + // value: "B01", + // }, { name: "Arctic .50", - value: "arctic50", + value: "B02", }, { name: "M21 EBR", - value: "m21ebr", + value: "B03", }, { name: "DL Q33", - value: "dlq33", + value: "B04", }, { name: "Locus", - value: "locus", + value: "B05", }, // { - // name: "XPR-50", - // value: "xpr50", - // }, - // { // name: "NA-45", - // value: "na45", + // value: "B06", // }, { name: "Outlaw", - value: "outlaw", + value: "B07", }, { name: "Rytec AMR", - value: "rytecamr", + value: "B08", }, { name: "SVD", - value: "svd", + value: "B09", }, ], }, { type: 3, - name: "youtuber", + name: "Author", description: "Select a Content Creator", required: true, choices: [ { - name: "Path.exe", - value: "path", + name: "path.exe", + value: "path.exe", }, - // { - // name: "little_b", - // value: "littleb", - // }, ], }, { @@ -353,8 +351,8 @@ module.exports = { value: "passive", }, { - name: "Search & Destroy", - value: "snd", + name: "Search And Destroy", + value: "Search And Destroy", }, { name: "Respawn", @@ -377,47 +375,47 @@ module.exports = { choices: [ { name: "S36", - value: "s36", + value: "C01", }, { name: "UL736", - value: "ul736", + value: "C02", }, { name: "RPD", - value: "rpd", + value: "C03", }, { name: "M4 LMG", - value: "m4lmg", + value: "C04", }, { name: "Chopper", - value: "chopper", + value: "C05", }, { name: "Holger 26", - value: "holger26", + value: "C06", }, { name: "Hades", - value: "hades", + value: "C07", }, { name: "PKM", - value: "pkm", + value: "C08", }, ], }, { type: 3, - name: "youtuber", + name: "Author", description: "Select a Content Creator", required: true, choices: [ { - name: "Path.exe", - value: "path", + name: "path.exe", + value: "path.exe", }, ], }, @@ -436,8 +434,8 @@ module.exports = { value: "passive", }, { - name: "Search & Destroy", - value: "snd", + name: "Search And Destroy", + value: "Search And Destroy", }, { name: "Respawn", @@ -460,43 +458,43 @@ module.exports = { choices: [ { name: "HS2126", - value: "hs2126", + value: "E01", }, { name: "BY15", - value: "by15", + value: "E02", }, { - name: "Striker", - value: "striker", + name: "HS0405", + value: "E03", }, { - name: "KRM_262", - value: "krm262", + name: "Striker", + value: "E04", }, { - name: "Echo", - value: "echo", + name: "KRM 262", + value: "E05", }, { - name: "HS0405", - value: "hs0405", + name: "Echo", + value: "E06", }, { name: "R9-0", - value: "r90", + value: "E07", }, ], }, { type: 3, - name: "youtuber", + name: "Author", description: "Select a Content Creator", required: true, choices: [ { - name: "Path.exe", - value: "path", + name: "path.exe", + value: "path.exe", }, { name: "dHitman", @@ -535,35 +533,35 @@ module.exports = { choices: [ { name: "Kilo Bolt-Action", - value: "kiloboltaction", + value: "F01", }, { name: "SKS", - value: "sks", + value: "F02", }, { name: "SP-R 208", - value: "spr208", + value: "F03", }, { name: "MK2", - value: "mk2", + value: "F04", }, ], }, { type: 3, - name: "youtuber", + name: "Author", description: "Select a Content Creator", required: true, choices: [ { - name: "Path.exe", - value: "path", + name: "path.exe", + value: "path.exe", }, // { - // name: "Little_b", - // value: "littleb", + // name: "Stats On Duty", + // value: "sod", // }, ], }, @@ -602,40 +600,44 @@ module.exports = { choices: [ { name: "J358", - value: "j358", + value: "G01", }, { name: "MW11", - value: "mw11", + value: "G02", }, { name: ".50 GS", - value: "gs50", + value: "G03", }, { name: "Renetti", - value: "renetti", + value: "G04", }, { name: "Shorty", - value: "shorty", + value: "G05", }, { name: "Crossbow", - value: "crossbow", + value: "G06", }, ], }, { type: 3, - name: "youtuber", + name: "Author", description: "Select a Content Creator", required: true, choices: [ { - name: "Path.exe", - value: "path", + name: "path.exe", + value: "path.exe", }, + // { + // name: "Stats On Duty", + // value: "sod", + // }, ], }, { @@ -654,126 +656,38 @@ module.exports = { }, ], run: async (client, interaction, args) => { - const allguns = { - ak117: "AK117", - m16: "M16", - type25: "Type 25", - ak47: "AK-47", - asm10: "ASM10", - m4: "M4", - bk57: "BK57", - lk24: "LK24", - manowar: "Man-O-War", - icr1: "ICR-1", - kn44: "KN-44", - hbra3: "HBRa3", - hvk30: "HVK-30", - drh: "DR-H", - peacekeepermk2: "Peacekeeper MK2", - fr556: "FR .556", - asval: "AS VAL", - cr56amax: "CR-56 AMAX", - m13: "M13", - swordfish: "Swordfish", - // kilo: "Kilo 141", - - j358: "J358", - gs50: ".50 GS", - mw11: "MW11", - renetti: "Renetti", - shorty: "Shorty", - crossbow: "Crossbow", - - kiloboltaction: "Kilo Bolt-Action", - sks: "SKS", - spr208: "SP-R 208", - mk2: "MK2", - - s36: "S36", - ul736: "UL736", - rpd: "RPD", - m4lmg: "M4LMG", - chopper: "Chopper", - holger26: "Holger 26", - hades: "Hades", - pkm: "PKM", - - arctic50: "Arctic .50", - m21ebr: "M21 EBR", - dlq33: "DL Q33", - locus: "Locus", - // na45: "NA 45", - // xpr50: "XPR-50", - locus: "Locus", - outlaw: "Outlaw", - rytecamr: "Rytec AMR", - svd: "SVD", - - hs2126: "HS2126", - by15: "BY15", - striker: "Striker", - krm262: "KRM 262", - echo: "Echo", - hs0405: "HS0405", - r90: "R9-0", - - rus79u: "RUS-79U", - hg40: "HG-40", - pdw57: "PDW-57", - chicom: "Chicom", - razorback: "Razorback", - msmc: "MSMC", - pharo: "Pharo", - gks: "GKS", - cordite: "Cordite", - qq9: "QQ9", - fennec: "Fennec", - agr556: "AGR 556", - qxr: "QXR", - pp19bizon: "PP19 Bizon", - mx9: "MX9", - cbr4: "CBR4", - ppsh: "PPSh-41", - }; - const all = { - assault_rifle: "Assault Rifle", - sniper_rifle: "Sniper Rifle", - marksman_rifle: "Marksman Rifle", - shotgun: "Shotgun", - light_machine_gun: "Light Machine Gun", - sub_machine_gun: "Sub Machine Gun", - - path: "Path.exe", - dhitman: "dHitman", - jokesta: "Jokesta", - sod: "Stats On Duty", - // littleb:"Little B", - - aggressive: "Aggressive", - passive: "Passive", - snd: "Search And Destroy", - respawn: "Respawn", - ads: "ADS", - hipfire: "Hipfire", - }; - const gun = args[1]; + const cwts = args[1]; const cc = args[2]; const tag = args[3]; const data = await axios .get( - `${process.env.api}/api/v1/codm/builds?name=${gun}&cc=${cc}&tag=${tag}`, + `${process.env.api}/api/v1/codm/build?cwts=${cwts}&cc=${cc}&tag=${tag}`, { headers: { - Authorization: "Gae", + Authorization: process.env.CODM_API_KEY, }, } ) .then(res => res.data) .catch(e => null); - if (!data?.ID) { + var all = { + "path.exe": "path.exe", + dhitman: "dHitman", + jokesta: "Jokesta", + // littleb:"Little B", + + aggressive: "Aggressive", + passive: "Passive", + "Search And Destroy": "Search And Destroy", + respawn: "Respawn", + ads: "ADS", + hipfire: "Hipfire", + }; + + if (!data?.cwts) { const embed = new MessageEmbed() .setDescription( - `<:nyx_not_available:897378400031879188> We don't have a ${all[tag]} **${allguns[gun]}** gunsmith build by **${all[cc]}**, Please try another tag or a differnt content creator` + `<:nyx_not_available:897378400031879188> We don't have a ${all[tag]} gunsmith build for the gun with **CWTS ${cwts}** by **${all[cc]}**, Please try another tag or a differnt content creator` ) .setColor(client.color); interaction.followUp({ embeds: [embed] }); @@ -784,17 +698,17 @@ module.exports = { }); const embed = new MessageEmbed() .setTitle( - `${data.weaponName}(${data.weaponType})'s ${all[tag]} build from ${data.author}` + `${all[tag]} build for ${data.weaponName} from ${data.author}` ) .setDescription( - `<:nyx_description:897379659665264650> **Description** \`\`\`\n ${data.notes}\n\`\`\`` + `<:nyx_description:897379659665264650> **Description** \`\`\`\n${data.notes} \n\`\`\`` ) .setColor(16580400) .setImage(data.imageUrl) - .setFooter( - `Builds Aggregated by ${client.author}`, - client.user.displayAvatarURL() - ) + .setFooter({ + text: `Builds Aggregated by ${client.author}`, + iconURL: client.user.displayAvatarURL(), + }) .setTimestamp() .addFields( { diff --git a/command/CODM/damage.js b/command/CODM/damage.js @@ -39,11 +39,7 @@ function dmg(inpmsg) { } currDRM = currGun.drm[0]; currStats = currGun.stats; - currAttachments = common.attachmentsIdentifier( - inpmsg, - currGun.aments, - currStats - ); + currAttachments = common.attachmentsIdentifier(inpmsg, currGun); if (typeof currAttachments == "string") { hasError = true; return currAttachments; diff --git a/command/CODM/effects.js b/command/CODM/effects.js @@ -114,11 +114,7 @@ function attachments(inpmsg) { hasAttachments = common.hasAttachments(inpmsg); currAttachments = []; if (hasAttachments) { - currAttachments = common.attachmentsIdentifier( - inpmsg, - currGun.aments, - currGun.stats - ); + currAttachments = common.attachmentsIdentifier(inpmsg, currGun); if (typeof currAttachments == "string") { hasError = true; return currAttachments; diff --git a/command/CODM/perk.js b/command/CODM/perk.js @@ -1,6 +1,5 @@ const { MessageEmbed } = require("discord.js"); -const { CODMClient } = require("cath"); -const c = new CODMClient("Gae"); +const c = require("../../client/CODMClient"); module.exports = { name: "perk", description: "Get perk stats", diff --git a/command/CODM/scorestreak.js b/command/CODM/scorestreak.js @@ -0,0 +1,170 @@ +const { MessageEmbed } = require("discord.js"); +const c = require("../../client/CODMClient"); +module.exports = { + name: "scorestreak", + description: "Get Scorestreak stats", + type: "CHAT_INPUT", + usage: "{Scorestreak}", + category: "CODM", + options: [ + { + type: "SUB_COMMAND", + name: "lethal", + description: "Lethal Scorestreak", + options: [ + { + type: 3, + name: "scorestreak", + description: "Select a lethal scorestreak", + required: true, + choices: [ + { + name: "Shield Turret", + value: "shieldturret", + }, + { + name: "Hunter Killer Drone", + value: "hunterkillerdrone", + }, + { + name: "MQ-27 Dragonfire", + value: "mq27dragonfire", + }, + { + name: "Predator Missile", + value: "predatormissile", + }, + { + name: "Hawk X3", + value: "hawkx3", + }, + { + name: "Sentry Gun", + value: "sentrygun", + }, + { + name: "Lightning Strike", + value: "lightningstrike", + }, + { + name: "Orbital Laser", + value: "orbitallaser", + }, + { + name: "XS1 Goliath", + value: "xs1goliath", + }, + { + name: "Cluster Strike", + value: "clusterstrike", + }, + { + name: "Chopper Gunner", + value: "choppergunner", + }, + { + name: "Stealth Chopper", + value: "stealthchopper", + }, + { + name: "Swarm", + value: "swarm", + }, + { + name: "Napalm", + value: "napalm", + }, + { + name: "VTOL", + value: "vtol", + }, + ], + }, + ], + }, + { + type: "SUB_COMMAND", + name: "support", + description: "Support Scorestreak", + options: [ + { + type: 3, + name: "scorestreak", + description: "Select a Support Scorestreak", + required: true, + choices: [ + { + name: "UAV", + value: "uav", + }, + { + name: "Shock RC", + value: "shockrc", + }, + { + name: "Care Package", + value: "carepackage", + }, + { + name: "Counter UAV", + value: "cuav", + }, + { + name: "SAM Turret", + value: "samturret", + }, + { + name: "Advance UAV", + value: "auav", + }, + { + name: "EMP Systems", + value: "empsystems", + }, + ], + }, + ], + }, + ], + run: async (client, interaction, args) => { + const val = args[1]; + const d = await c.getscorestreak(val); + const embed = new MessageEmbed() + .setTitle(d.name) + .setURL(d.preview_video) + .setDescription( + `<:nyx_description:897379659665264650> **Description** \`\`\`\n${d.description}\`\`\`` + ) + .addFields( + { + name: "Cost", + value: `${d.cost}`, + inline: true, + }, + { + name: "AI-Assisted", + value: ` + ${ + d.manual + ? "<a:nyx_cross:897244999211696198> No" + : "<a:nyx_checkmark:897240322411724841> Yes" + }`, + inline: true, + } + ) + .setThumbnail(d.preview) + .setFooter({ + text: `Made by ${client.author}`, + iconURL: client.user.displayAvatarURL(), + }) + .setColor( + d.type == "lethal" + ? "FF2222" + : d.type == "assist" + ? "22FF4A" + : client.color + ) + .setTimestamp(); + interaction.followUp({ embeds: [embed] }); + }, +}; diff --git a/command/CODM/stats.js b/command/CODM/stats.js @@ -129,11 +129,7 @@ function statsHandler(inpmsg) { currStats = currGun.stats; currDRM = currGun.drm[0]; currAttachments = []; - currAttachments = common.attachmentsIdentifier( - inpmsg, - currGun.aments, - currStats - ); + currAttachments = common.attachmentsIdentifier(inpmsg, currGun); if (typeof currAttachments == "string") { hasError = true; return currAttachments; @@ -299,7 +295,7 @@ function statsHandler(inpmsg) { footer: { text: "[OUTDATED] All data courtesy of Project Lighthouse 2.0 and CoDM Research Crew", icon_url: - "https://media.discordapp.net/attachments/735590814662656102/806960573753327657/cc.png?width=638&height=638", + "https://media.discordapp.net/attachments/735590814662656102/806960573753327657/cc.png", }, }; } diff --git a/command/Fun/dare.js b/command/Fun/dare.js @@ -1,18 +1,20 @@ const { MessageEmbed } = require("discord.js"); -const dares = require("../../util/Data/dares.json"); - +const tnd = require("../../util/Data/tnd.json"); module.exports = { name: "dare", description: "The maturity level of the topics the question can relate to", run: async (client, interaction) => { const embed = new MessageEmbed() - .setAuthor( - interaction.user.tag, - interaction.user.displayAvatarURL({ dyamic: true }) - ) - .setTitle(dares[Math.round(Math.random() * (dares.length - 1))]) + .setAuthor({ + name: interaction.user.tag, + iconURL: interaction.user.displayAvatarURL({ dyamic: true }), + }) + .setTitle(dares[Math.round(Math.random() * tnd.dare.length - 1)]) .setColor(client.color) - .setFooter(`Made by ${client.author}`, client.user.displayAvatarURL()) + .setFooter({ + text: `Made by ${client.author}`, + iconURL: client.user.displayAvatarURL(), + }) .setTimestamp(); interaction.followUp({ embeds: [embed] }); }, diff --git a/command/Fun/truth.js b/command/Fun/truth.js @@ -1,18 +1,20 @@ const { MessageEmbed } = require("discord.js"); -const truth = require("../../util/Data/truth.json"); - +const tnd = require("../../util/Data/tnd.json"); module.exports = { name: "truth", description: "Gives a random question that has to be answered truthfully", run: async (client, interaction, args) => { const embed = new MessageEmbed() - .setAuthor( - interaction.user.tag, - interaction.user.displayAvatarURL({ dyamic: true }) - ) - .setTitle(truth[Math.round(Math.random() * truth.length)]) + .setAuthor({ + name: interaction.user.tag, + iconURL: interaction.user.displayAvatarURL({ dyamic: true }), + }) + .setTitle(truth[Math.round(Math.random() * tnd.truth.length)]) .setColor(client.color) - .setFooter(`Made by ${client.author}`, client.user.displayAvatarURL()) + .setFooter({ + text: `Made by ${client.author}`, + iconURL: client.user.displayAvatarURL(), + }) .setTimestamp(); interaction.followUp({ embeds: [embed] }); }, diff --git a/command/Owner/add.js b/command/Owner/add.js @@ -1,31 +1,68 @@ module.exports = { - name: "add", + name: "economy", category: "Owner", - usage: "(Number)", - description: "Add coins from someone", + description: "Add/Remove coins from someone", Owner: true, options: [ { - type: 6, - name: "user", - description: "The user you want to add", - required: true, + type: 1, + name: "add", + description: "Remove coins from someone", + options: [ + { + type: 6, + name: "user", + description: "The user you want to add", + required: true, + }, + { + type: 4, + name: "cp", + description: "The amount of CP you want to add", + required: true, + }, + ], }, { - type: 4, - name: "cp", - description: "The amount of CP you want to add", - required: true, + type: 1, + name: "rmv", + description: "Remove coins from someone", + options: [ + { + type: 6, + name: "user", + description: "The user you want to remove", + required: true, + }, + { + type: 4, + name: "cp", + description: "The amount of CP you want to remove", + required: true, + }, + ], }, ], run: async (client, interaction, args) => { - await client.add(args[0], args[1], interaction); - interaction.followUp({ - content: `<a:nyx_checkmark:897240322411724841> Successfully added **${interaction.options.getInteger( - "cp" - )}** ${client.currency} in **${ - interaction.options.getUser("user").username - }**'s balance`, - }); + if (args[0] === "add") { + await client.add(args[0], args[1], interaction); + interaction.followUp({ + content: `<a:nyx_checkmark:897240322411724841> Successfully added **${interaction.options.getInteger( + "cp" + )}** ${client.currency} in **${ + interaction.options.getUser("user").username + }**'s balance`, + }); + } + if (args[0] === "rmv") { + await client.rmv(args[0], args[1]); + interaction.followUp({ + content: `<a:nyx_checkmark:897240322411724841> Successfully removed **${interaction.options.getInteger( + "cp" + )}** ${client.currency} from **${ + interaction.options.getUser("user").username + }**'s balance`, + }); + } }, }; diff --git a/command/Owner/eval.js b/command/Owner/eval.js @@ -47,19 +47,22 @@ module.exports = { evaled = err; } if (typeof evaled !== "string") evaled = require("util").inspect(evaled); - evaled = utils.chunk(evaled, 750); + console.log(evaled); + evaled = chunk([evaled], 750); + console.log(evaled); let reactions = ["❌", "⏪", "◀️", "⏹️", "▶️", "⏩"], page = 0, evaledEmbed = new Discord.MessageEmbed() .setColor(client.color) .setDescription(`\`\`\`js\n${evaled[0]}\n\`\`\``) .setTimestamp() - .setAuthor( - `Evaled by ${interaction.user.tag}`, - interaction.user.displayAvatarURL({ dynamic: true }) - ) - .addField(`Type of`, `\`\`\`js\n${typeof evaled[0]}\n\`\`\``); - const mainMessage = await interaction.channel.send({ embeds: [evaledEmbed] }); + .setAuthor({ + name: `Evaled by ${interaction.user.tag}`, + iconURL: interaction.user.displayAvatarURL({ dynamic: true }), + }); + const mainMessage = await interaction.channel.send({ + embeds: [evaledEmbed], + }); Discord.TextChannel.prototype.send = oldSend; await Promise.all( (evaled.length === 1 ? ["❌", "⏹️"] : reactions).map(r => @@ -112,12 +115,17 @@ module.exports = { } evaledEmbed = new Discord.MessageEmbed() .setColor(interaction.guild.me.displayColor) - .setDescription(`\`\`\`js\n${evaled[page]}\n\`\`\``) - .addField(`Type of`, `\`\`\`js\n${typeof evaled[page]}\n\`\`\``); - + .setDescription(`\`\`\`js\n${evaled[page]}\n\`\`\``); await mainMessage.edit({ embeds: [evaledEmbed], }); }); }, }; +function chunk(arr, size) { + let c; + Array.from({ length: Math.ceil(arr.length / size) }, (v, i) => { + c = arr.slice(i * size, i * size + size); + }); + return c; +} diff --git a/command/Owner/rmv.js b/command/Owner/rmv.js @@ -1,31 +0,0 @@ -module.exports = { - name: "rmv", - category: "Owner", - usage: "(Number)", - description: "Remove coins from someone", - Owner: true, - options: [ - { - type: 6, - name: "user", - description: "The user you want to remove", - required: true, - }, - { - type: 4, - name: "cp", - description: "The amount of CP you want to remove", - required: true, - }, - ], - run: async (client, interaction, args) => { - await client.rmv(args[0], args[1]); - interaction.followUp({ - content: `<a:nyx_checkmark:897240322411724841> Successfully removed **${interaction.options.getInteger( - "cp" - )}** ${client.currency} from **${ - interaction.options.getUser("user").username - }**'s balance`, - }); - }, -}; diff --git a/command/Owner/scorestreak.js b/command/Owner/scorestreak.js @@ -1,177 +0,0 @@ -const { MessageEmbed } = require("discord.js"); -const { CODMClient } = require("cath"); -const c = new CODMClient("Gae"); -module.exports = { - name: "scorestreak", - description: "Get Scorestreak stats", - type: "CHAT_INPUT", - usage: "{Scorestreak}", - category: "CODM", - options: [ - { - type: "SUB_COMMAND", - name: "lethal", - description: "Lethal Scorestreak", - options: [ - { - type: 3, - name: "scorestreak", - description: "Select a lethal scorestreak", - required: true, - choices: [ - { - name: "Shield Turret", - value: "shieldturret", - }, - { - name: "Hunter Killer Drone", - value: "hunterkillerdrone", - }, - { - name: "MQ-27 Dragonfire", - value: "mq27dragonfire", - }, - { - name: "Predator Missile", - value: "predatormissile", - }, - { - name: "Hawk X3", - value: "hawkx3", - }, - { - name: "Sentry Gun", - value: "sentrygun", - }, - { - name: "Lightning Strike", - value: "lightningstrike", - }, - { - name: "Orbital Laser", - value: "orbitallaser", - }, - { - name: "XS1 Goliath", - value: "xs1goliath", - }, - { - name: "Cluster Strike", - value: "clusterstrike", - }, - { - name: "XS1 Goliath", - value: "xs1goliath", - }, - { - name: "Stealth Chopper", - value: "stealthchopper", - }, - { - name: "Swarm", - value: "swarm", - }, - { - name: "Napalm", - value: "napalm", - }, - { - name: "VTOL", - value: "vtol", - }, - ], - }, - ], - }, - { - type: "SUB_COMMAND", - name: "support", - description: "Support Scorestreak", - options: [ - { - type: 3, - name: "scorestreak", - description: "Select a Support Scorestreak", - required: true, - choices: [ - { - name: "UAV", - value: "uav", - }, - { - name: "Shock RC", - value: "shockrc", - }, - { - name: "Care Package", - value: "carepackage", - }, - { - name: "Counter UAV", - value: "cuav", - }, - { - name: "SAM Turret", - value: "samturret", - }, - { - name: "Advance UAV", - value: "auav", - }, - { - name: "EMP Systems", - value: "empsystems", - }, - ], - }, - ], - }, - ], - run: async (client, interaction, args) => { - const val = args[1]; - const d = await c.getscorestreak(val); - const embed = new MessageEmbed() - .setTitle(d.scorestreak) - .setURL(d.preview_video) - .setDescription(`\`\`\`${d.description}\`\`\``) - .addFields( - { - name: "Cost", - value: `\`\`\`${d.cost}\`\`\``, - inline: true - }, - { - name: "Lethal", - value: ` - ${d.lethal == true - ? "<a:nyx_checkmark:897240322411724841> Yes" - : "<a:nyx_cross:897244999211696198> No"}`, - inline: true - }, - { - name: "AI-Assisted", - value: ` - ${d.manual == false - ? "<a:nyx_checkmark:897240322411724841> Yes" - : "<a:nyx_cross:897244999211696198> No"}`, - inline: true - }, - { - name: "More Info", - value: `\`\`\`${d.special}\`\`\``, - inline: false - } - ) - .setThumbnail(`${d.preview}`) - .setFooter(`Made by ${client.author}`, client.user.displayAvatarURL()) - .setColor( - d.type == "lethal" - ? "FF2222" - : d.type == "support" - ? "22FF4A" - : client.color - ) - .setTimestamp(); - interaction.followUp({ embeds: [embed] }); - }, -}; diff --git a/command/Utilities/poll.js b/command/Utilities/poll.js @@ -0,0 +1,79 @@ +const { MessageEmbed } = require("discord.js"); +module.exports = { + name: "poll", + category: "Utilities", + description: "Creates a poll with many options", + options: [ + { + type: 3, + name: "question", + description: "The question of the poll", + required: true, + }, + { + type: 3, + name: "choice1", + description: "Choice 1", + required: true, + }, + { + type: 3, + name: "choice2", + description: "Choice 2", + required: true, + }, + { + type: 3, + name: "choice3", + description: "Choice 3", + required: false, + }, + { + type: 3, + name: "choice4", + description: "Choice 4", + required: false, + }, + { + type: 3, + name: "choice5", + description: "Choice 5", + required: false, + }, + { + type: 3, + name: "choice6", + description: "Choice 6", + required: false, + }, + ], + run: async (client, interaction, args) => { + const pollCreateEmbed = new MessageEmbed() + .setTitle(`📣 **${args[0]}**`) + .setColor("RED") + .setFooter({ + text: `Made by ${client.author}`, + iconURL: client.user.displayAvatarURL(), + }) + .setTimestamp(); + for (let i = 0; i < args.length - 1; i++) { + pollCreateEmbed.addField( + "‎", + `:regional_indicator_${String.fromCharCode(97 + i)}: ${args[i + 1]} + ` + ); + } + let embedMessage = await interaction.followUp({ + embeds: [pollCreateEmbed], + }); + 55356; + for (let i = 0; i < args.length - 1; i++) { + if (i === 0) embedMessage.react("\ud83c\udde6"); + if (i === 1) embedMessage.react("\ud83c\udde7"); + if (i === 2) embedMessage.react("\ud83c\udde8"); + if (i === 3) embedMessage.react("\ud83c\udde9"); + if (i === 4) embedMessage.react("\ud83c\uddea"); + if (i === 5) embedMessage.react("\ud83c\uddeb"); + } + }, +}; diff --git a/events/messageCreate.js b/events/messageCreate.js @@ -1,7 +1,7 @@ const client = require(".."); const { MessageEmbed } = require("discord.js"); const utils = require("../util/functions/function"); -const scams = require("../util/Data/scam.json"); +const domains = require("../util/Data/domains.json"); client.on("messageCreate", async message => { if (message.author.bot || !message.guild) return; const data = {}; @@ -66,7 +66,17 @@ client.on("messageCreate", async message => { } if (data.User?.Blacklist) return; if ( - scams.includes( + domains.iplogger.includes( + message.content + .toLowerCase() + .match( + /(https|http):\/\/([\w_-]+(?:(?:\.[\w_-]+)+))([\w.,@?^=%&:/~+~-]*[\w.,@?^=%&:/~+~-])+/g + )?.[0] + .replace(/(https|http):\/\/+/g, "") + .match(/\s*([^)]+?)\s*\/+/g, "")[0] + .slice(0, -1) + ) || + domains.scam.includes( message.content .toLowerCase() .match( @@ -77,14 +87,59 @@ client.on("messageCreate", async message => { .slice(0, -1) ) ) { - message.delete(); + const _ = new MessageEmbed() + .setTitle(`Scam/IP Grabber detected`) + .setTimestamp() + .setColor(client.color) + .addFields( + { + name: "User", + value: `${message.author.tag} (${message.author.id})`, + inline: true, + }, + { + name: "Scam/IP Logger URL", + value: `||https://${message.content + .toLowerCase() + .match( + /(https|http):\/\/([\w_-]+(?:(?:\.[\w_-]+)+))([\w.,@?^=%&:/~+~-]*[\w.,@?^=%&:/~+~-])+/g + )?.[0] + .replace(/(https|http):\/\/+/g, "") + .match(/\s*([^)]+?)\s*\/+/g, "")[0] + .slice(0, -1)}||`, + inline: true, + } + ) + .setFooter({ + text: `Tactical Protection by ${client.author}`, + icon_url: client.user.displayAvatarURL(), + }); message.channel.send({ - content: `**${message.author.tag}** has sent a scam link and I have deleted it to prevent spread`, + embeds: [_], }); + client.channels.cache.get("936986641585799178").send({ + embeds: [ + _.addFields( + { + name: "Message", + value: message.content, + inline: false, + }, + { + name: "Guild", + value: message.guild ? message.guild.name : "None", + inline: true, + } + ), + ], + }); + message.delete().catch(() => {}); } + if ( message?.content.startsWith(data.Guild.Prefix) || - message?.content.startsWith("C.") + message?.content.startsWith("C.") || + message?.content.startsWith("c.") ) { const embed = new MessageEmbed() .setTitle(`Message commands are now disabled`) @@ -157,7 +212,15 @@ client.on("messageCreate", async message => { } if (message.content) { client.channels.cache.get(client.config.DMLog).send({ - content: `\`${message.author.tag}(${message.author.id})\`: ${message.content}`, + embeds: [ + new MessageEmbed() + .setDescription(message.content) + .setColor(client.color) + .setAuthor({ + name: message.author.tag, + iconURL: message.author.displayAvatarURL({ dynamic: true }), + }), + ], }); } } diff --git a/ipgrabber-blacklist b/ipgrabber-blacklist @@ -1,144 +0,0 @@ -//made by the shadow himself. - -client.on('message', message => { - - const grabifyEmbed = new Discord.MessageEmbed() - grabifyEmbed.setTitle("**IP Grabber Detected!**") - grabifyEmbed.addField("**Username :** ", `${message.author.username}`) - grabifyEmbed.addField("**User ID :** ", `${message.author.id}`) - grabifyEmbed.addField("**Domain :** Grabify", `**Link sent :** ||${message}||`) - grabifyEmbed.setTimestamp() - grabifyEmbed.addField("`Tactical Protection by`", "`Team NYX`") - - const discordEmbed = new Discord.MessageEmbed() - discordEmbed.setTitle("**IP Grabber Detected!**") - discordEmbed.addField("**Username :** ", `${message.author.username}`) - discordEmbed.addField("**User ID :** ", `${message.author.id}`) - discordEmbed.addField("**Domain :** Discord", `**Link sent :** ||${message}||`) - discordEmbed.setTimestamp() - discordEmbed.addField("`Tactical Protection by`", "`Team NYX`") - - - if ((message.content.includes("https://dlscord.org/nitro-gift")) || (message.content.includes("http://dlscord.org/nitro-gift"))) { - message.delete(); - message.channel.send(discordEmbed) - } - - if ((message.content.includes("https://lovebird.guru")) || (message.content.includes("http://lovebird.guru"))) { - message.delete(); - message.channel.send(grabifyEmbed) - } - -if ((message.content.includes("https://trulove.guru")) || (message.content.includes("http://trulove.guru"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://dateing.club")) || (message.content.includes("http://dateing.club"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://shrekis.life")) || (message.content.includes("http://shrekis.life"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - -if ((message.content.includes("https://headshot.monster")) || (message.content.includes("http://headshot.monster"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://gamihg-at-my.best")) || (message.content.includes("http://gaming-at-my.best"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://progaming.monster")) || (message.content.includes("http://programing.monster"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://yourmy.monster")) || (message.content.includes("http://yourmg.monster"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://imageshare.best")) || (message.content.includes("http://imageshere.best"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - -if ((message.content.startsWith("https://screenshot.best")) || (message.content.includes("http://screenshot.best"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } -if ((message.content.includes("https://gamingfun.me")) || (message.content.includes("http://gamingfun.me"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://catsnthing.com")) || (message.content.includes("http://catsnthing.com"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - -if ((message.content.includes("https://catsnthings.fun")) || (message.content.includes("http://catsnthings.fun"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - -if ((message.content.includes("https://joinmy.site")) || (message.content.includes("http://joinmy.site"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - -if ((message.content.includes("https://fortnitechat.site")) || (message.content.includes("http://fortnitechat.site"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - -if ((message.content.includes("https://fortnight.space")) || (message.content.includes("http://fortnight.space"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - -if ((message.content.includes("https://freegiftcards.co")) || (message.content.includes("http://freegiftcards.co"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://grabify.link")) || (message.content.includes("http://grabify.link"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - -if ((message.content.includes("https://partpicker.shop")) || (message.content.includes("http://partpicker.shop"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://websafe.online")) || (message.content.includes("http://websafe.online"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://sportshub.bar")) || (message.content.includes("http://sportshub.bar"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://herald.sbs")) || (message.content.includes("http://herald.sbs"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - - if ((message.content.includes("https://locations.quest")) || (message.content.includes("http://locations.quest"))) { - message.delete(); - message.channel.send(grabifyEmbed); - } - -}); - -//MORE DOMAINS COMING IN A WEEK HEHE BOI diff --git a/package.json b/package.json @@ -41,9 +41,9 @@ }, "dependencies": { "axios": "^0.25.0", - "cath": "^1.4.6", + "cath": "^1.4.7", "discord.js": "^13.6.0", - "dotenv": "^14.2.0", + "dotenv": "^15.0.0", "erela.js": "^2.3.3", "erela.js-spotify": "^1.2.0", "goosecache": "^9.0.14", diff --git a/remoteinvite.js b/remoteinvite.js @@ -1,11 +0,0 @@ -//use eval if you wanna. -//this gives you the invite link in a server of a channel. -//code by Tac Shadow#5920 - -async function asyncCall() { - const result = await client.channels.cache.get("CHANNEL_ID").createInvite(); - -message.channel.send(`${result}`); -} - -asyncCall(); diff --git a/scorestreak.js b/scorestreak.js @@ -1,181 +0,0 @@ -const { MessageEmbed } = require("discord.js"); -const { CODMClient } = require("cath"); -const c = new CODMClient("Gae"); -module.exports = { - name: "scorestreak", - description: "Get Scorestreak stats", - type: "CHAT_INPUT", - usage: "{Scorestreak}", - category: "CODM", - options: [ - { - type: "SUB_COMMAND", - name: "lethal", - description: "Lethal Scorestreak", - options: [ - { - type: 3, - name: "scorestreak", - description: "Select a lethal scorestreak", - required: true, - choices: [ - { - name: "Shield Turret", - value: "shieldturret", - }, - { - name: "Hunter Killer Drone", - value: "hunterkillerdrone", - }, - { - name: "MQ-27 Dragonfire", - value: "mq27dragonfire", - }, - { - name: "Predator Missile", - value: "predatormissile", - }, - { - name: "Hawk X3", - value: "hawkx3", - }, - { - name: "Sentry Gun", - value: "sentrygun", - }, - { - name: "Lightning Strike", - value: "lightningstrike", - }, - { - name: "Orbital Laser", - value: "orbitallaser", - }, - { - name: "XS1 Goliath", - value: "xs1goliath", - }, - { - name: "Cluster Strike", - value: "clusterstrike", - }, - { - name: "XS1 Goliath", - value: "xs1goliath", - }, - { - name: "Stealth Chopper", - value: "stealthchopper", - }, - { - name: "Swarm", - value: "swarm", - }, - { - name: "Napalm", - value: "napalm", - }, - { - name: "VTOL", - value: "vtol", - }, - ], - }, - ], - }, - { - type: "SUB_COMMAND", - name: "support", - description: "Support Scorestreak", - options: [ - { - type: 3, - name: "scorestreak", - description: "Select a Support Scorestreak", - required: true, - choices: [ - { - name: "UAV", - value: "uav", - }, - { - name: "Shock RC", - value: "shockrc", - }, - { - name: "Care Package", - value: "carepackage", - }, - { - name: "Counter UAV", - value: "cuav", - }, - { - name: "SAM Turret", - value: "samturret", - }, - { - name: "Advance UAV", - value: "auav", - }, - { - name: "EMP Systems", - value: "empsystems", - }, - ], - }, - ], - }, - ], - run: async (client, interaction, args) => { - const val = args[1]; - const d = await c.getscorestreak(val); - const embed = new MessageEmbed() - .setTitle(d.scorestreak) - .setURL(d.preview_video) - .setDescription(`\`\`\`${d.description}\`\`\``) - .addFields( - { - name: "Cost", - value: `\`\`\`${d.cost}\`\`\``, - inline: true, - }, - { - name: "Lethal", - value: ` - ${ - d.lethal == true - ? "<a:nyx_checkmark:897240322411724841> Yes" - : "<a:nyx_cross:897244999211696198> No" - }`, - inline: true, - }, - { - name: "AI-Assisted", - value: ` - ${ - d.manual == false - ? "<a:nyx_checkmark:897240322411724841> Yes" - : "<a:nyx_cross:897244999211696198> No" - }`, - inline: true, - }, - { - name: "More Info", - value: `\`\`\`${d.special}\`\`\``, - inline: false, - } - ) - .setThumbnail(d.preview) - .setFooter(`Made by ${client.author}`, client.user.displayAvatarURL()) - .setColor( - d.type == "lethal" - ? "FF2222" - : d.type == "support" - ? "22FF4A" - : client.color - ) - .setTimestamp(); - interaction.followUp({ embeds: [embed] }); - }, -}; diff --git a/util/Data/aliases.json b/util/Data/aliases.json @@ -26,7 +26,8 @@ "CR-56 AMAX", "Shorty", "Crossbow", - "R9-0" + "R9-0", + "PPSh-41" ], "weaponAlliasName": [ ["MoW"], @@ -48,14 +49,15 @@ ["Slow Outlaw", "Slower Outlaw"], ["bae"], ["Reneti", "Renneti", "Rennetti", "Burst Pistol"], - ["pp bizon", "pp"], + ["pp bizon", "pp19"], ["AUG"], ["AKBP", "Vepr"], ["AN94"], ["CR56", "AMAX"], ["725"], ["cb", "bow"], - ["r9", "R9-O"] + ["r9", "R9-O"], + ["ppsh", "pp41"] ], "attachmentActualName": [ ["akimbo", "Stopping Power"], diff --git a/util/Data/attachments.json b/util/Data/attachments.json @@ -1043,6 +1043,65 @@ ] } ], + "Kilo_141": [ + { + "muzzle": [ + "Tactical Suppressor", + "OWC Light Suppressor", + "OWC Light Compensator", + "Monolithic Suppressor", + "MIP Light FLash Guard", + "RTC Light Muzzle Brake" + ], + "barrel": [ + "YKM Integral Suppressor Light", + "MIP Light Extended Barrel", + "OWC Marksman" + ], + "optic": [ + "Red Dot Sight", + "Holographic Sight", + "3x Tactical Scope", + "4x Tactical Scope", + "4.4x Tactical Scope" + ], + "stock": [ + "No Stock", + "YKM Combat Stock", + "OWC Skeleton Stock", + "RTC Steady Stock" + ], + "perk": [ + "FMJ", + "Sleight of Hand", + "Wounding", + "Full Ammo", + "Disable", + "Tough", + "Long Shot", + "Melee Master" + ], + "laser": ["RTC Laser 1mW", "MIP Laser 5mW", "OWC Laser - Tactical"], + "underbarrel": [ + "Strike Foregrip", + "Merc Foregrip", + "Operator Foregrip", + "Ranger Foregrip", + "Tactical Foregrip A", + "Bipod" + ], + "ammo": [ + "Extended Mag A", + "Large Extended Mag B", + "100 round LMG Drum Mag" + ], + "rear_grip": [ + "Granulated Grip Tape", + "Ruberized Grip Tape", + "Stippled Grip Tape" + ] + } + ], "XPR_50": [ { "muzzle": [ diff --git a/util/Data/cwts.json b/util/Data/cwts.json @@ -0,0 +1,74 @@ +{ + "A01": "Type 25", + "A02": "M16", + "A03": "AK117", + "A04": "AK-47", + "A05": "ASM10", + "A06": "M4", + "A07": "BK57", + "A08": "LK24", + "A09": "ICR-1", + "A10": "Man-o-War", + "A11": "KN-44", + "A12": "HBRa3", + "A13": "HVK-30", + "A14": "DR-H", + "A15": "Peacekeeper MK2", + "A16": "FR .556", + "A17": "AS VAL", + "A18": "CR-56 AMAX", + "A19": "M13", + "A20": "Swordfish", + "A21": "Kilo 141", + "B01": "XPR-50", + "B02": "Arctic .50", + "B03": "M21 EBR", + "B04": "DL Q33", + "B05": "Locus", + "B06": "NA-45", + "B07": "Outlaw", + "B08": "Rytec AMR", + "B09": "SVD", + "C01": "S36", + "C02": "UL736", + "C03": "RPD", + "C04": "M4 LMG", + "C05": "Chopper", + "C06": "Holger 26", + "C07": "Hades", + "C08": "PKM", + "D01": "RUS-79u", + "D02": "Chicom", + "D03": "PDW-57", + "D04": "Razorback", + "D05": "MSMC", + "D06": "HG40", + "D07": "Pharo", + "D08": "GKS", + "D09": "Cordite", + "D10": "QQ9", + "D11": "Fennec", + "D12": "AGR 556", + "D13": "QXR", + "D14": "PP19 Bizon", + "D15": "MX9", + "D16": "CBR4", + "D17": "PPSh 41", + "E01": "HS2126", + "E02": "BY15", + "E03": "HS0405", + "E04": "Striker", + "E05": "KRM 262", + "E06": "Echo", + "E07": "R9-0", + "F01": "Kilo Bolt-Action", + "F02": "SKS", + "F03": "SP-R 208", + "F04": "MK2", + "G01": "J358", + "G02": "MW11", + "G03": ".50 GS", + "G04": "Renetti", + "G05": "Shorty", + "G06": "Crossbow" +} diff --git a/util/Data/dares.json b/util/Data/dares.json @@ -1,26 +0,0 @@ -[ - "Shave your arms and send me a pic.", - "Record yourself singing a song and post it on YouTube.", - "Try to lick your own foot!", - "Message someone you haven’t talked to in at least 1 year on Facebook or Instagram and take a screenshot.", - "Text your crush and ask them out on a date.", - "Cut a piece of your hair.", - "List everyone as the emoji(s) you think best fits them.", - "Change your nickname/username to whatever the group wants.", - "Send me a screenshot of your messages with the last person besides me you texted.", - "Brush your teeth with peanut butter or another condiment and send me a pic.", - "Rate everyone here 1-10 in terms of personality.", - "Take a really unflattering picture and make it your profile picture for one full day.", - "Send me a screenshot of your selfies gallery.", - "Text a random number and write “I see dead people”.", - "Tell the group in detail about your first kiss.", - "Tell a joke until it makes everyone laugh.", - "Tell your girlfriend that your friends don’t like her so you can’t be with her anymore.", - "Brush your teeth with your best friend’s toothbrush.", - "Show everyone your unshaved legs.", - "Break a raw egg on your forehead.", - "Call 5 different people and talk to them in 5 different accents.", - "Set your crush’s picture as your FB profile picture.", - "Show everyone your search history for the past week." - -] -\ No newline at end of file diff --git a/util/Data/domains.json b/util/Data/domains.json @@ -0,0 +1,4131 @@ +{ + "scam": [ + "disocrde.gift", + "discrods.gift", + "discordsgift.com", + "steam-sourcecommunity1.xyz", + "dlscordnitro.info", + "steamcommuniyty.ru", + "betadiscord.com", + "csgogf02.xyz", + "steamcommynitu.xyz", + "discordapp.org", + "stemcommunnitiy.net.ru", + "lan-pro.ru", + "dscordnitro.xyz", + "discord-boost.com", + "discord-boost.xyz", + "avitofast.ru", + "dlscord.live", + "steamcornmunety.com", + "disco9rdapp.com", + "natus-lootbox.net.ru", + "streamconmunitly.com", + "discordbooster.com", + "diiiscrod.club", + "steamcommunillty.ru.com", + "discord-steam.com", + "steamcomrneuneity.com", + "steancomnuniity.com", + "staemcomunitly.xyz", + "discorddiscord.com", + "generator.discordnitrogift.com", + "steampoweredtrades.xyz", + "discordaap.com", + "steemcommunity.com", + "nise-win.xyz", + "discord-mod.com", + "triumph.tk", + "stearncomnnunity.site", + "freenitros.ru", + "discord-airdrop.pw", + "steamcommunitu.ru.com", + "nitro-discord.ru.com", + "steancomnurity.xyz", + "dicoapp.me", + "steamcommunetiyi.com", + "streamcommunitiy.ru.com", + "magifrolbiq.xyz", + "dicsord-nitro.com", + "discord-free.site", + "diiscord.me", + "steamcomnmuntiy.ru.com", + "stieamconmuniity.com", + "roblox-login.com", + "steemcommunnity.co", + "steampowerec.com", + "ggfail.xyz", + "stearmconnrnunity.com", + "steamcomnumlty.com", + "pubggf01.xyz", + "twitch-nude.com", + "u924157p.beget.tech", + "steanmcomnunity.com", + "roblox-collect.com", + "discorad.com", + "dlscrodapp.ru", + "discoapps.club", + "steamcomnnynlty.com", + "steamcammmunity.ru", + "stemcomiunity.ru", + "eslgaming-world.com", + "streamconnuity.com", + "steanncomunnity.ru", + "streamcommuniitu.com", + "steamconunity.cf", + "stemcommunlity.ru", + "stemccomnmunity.com", + "steemcommynity.ru", + "discorld.site", + "steamcommunily.org", + "steamcamunity.ru", + "steamcomnuhity.com", + "steamcommumiuty.com", + "driscord.ru", + "dlcsord-airdrop.com", + "dlscord.cloud", + "staemcammunity.me", + "stenmcommunilty.ru.com", + "stearmcornmunlty.com", + "steamcornmunity.fun", + "steamcamnunity.ru", + "discord-nltro.com", + "steamcornmynitu.ru", + "sleamcommuninty.com", + "stearncomnnunity.website", + "dlscorp.com", + "stemcummunnity.ru.com", + "kaysdrop.ru", + "discordgift.pw", + "steamcommunityzbo.top", + "dlscord.fr", + "stuamcommnuity.com", + "disccord.tk", + "dlsccrd.com", + "steam-tradeoffer.xyz", + "nitroos-frieie.ru", + "steeamcomnnunity.com", + "discord-nitro.link", + "disocrd.gifts", + "steamcomunninuty.com", + "steancoommunitytradeofferr.com", + "steamcommmunlity.com", + "steams-discord.ru", + "luckygift.space", + "staemcomunnity.com", + "robuxat.com", + "steamconmumity.com", + "stearncommunhty.com", + "steancammunlty.com", + "steampoweredswap.xyz", + "steamcomnunilty.ru.com", + "streamnconmumity.com", + "steamtradestore1.xyz", + "steancommunnty.com", + "stemapowered.com", + "dicsrod.com", + "discordgg.com", + "smartcommunity.net", + "steancomunyti.ru.com", + "sternconmunity.ru", + "steamcommunetiy.com", + "discord-airdrop.fun", + "steamcommunityzbr.top", + "disccord.gg", + "stleamncommunity.ru", + "disorc.com", + "steam-auth.ru", + "stemcumnmunity.ru.com", + "scteamcommunity.com", + "staemcoommunity.ru", + "steamcommlunity.com", + "navi-up.com", + "discorcl.online", + "streamnconmunity.com", + "steamuserimages-a.akamaid.net", + "dlscord.support", + "riptide-valve.ru", + "stemcomrnmunity.com", + "streamcommuinty.com", + "steamcommunityw.org.ru", + "streamcommmunitty.ru.com", + "game-csgosteam.ru", + "steamcommunity.com-id-k4tushatwitchbabydota.ru", + "steappowered.com", + "steamcommeunity.com", + "steamcummunity.com.ru", + "streamcommuniliiey.org.ru", + "discordsapplication.info", + "discordc.gift", + "store-steamcomminuty.ru.com", + "steamcomunmity.ru.com", + "steamcommynityprofile.ru", + "steawcomunity.net", + "steanncommuiniuty.com", + "steamcommunitfy.ru.com", + "streamcommunmity.com", + "discord-boost.ru.com", + "discord-apps.xyz", + "discord-gift.info", + "discordnitro.gift", + "robuxprofiles.com", + "streamcomunnity.ru.com", + "fustcup.ru", + "steamcommunitty.com.ru", + "verifapp.us", + "sterumcommunity.com", + "steanpowered.net.ru", + "stemcomnmuniity.com", + "taceitt.com", + "cs-skins.link", + "dlscord-nitro.ru.com", + "diszcordapp.com", + "steaimeecommunity.com", + "staemcommunityi.com", + "streamconnunity.us", + "steamcamunitey.com", + "stemcamnunity.ru", + "discrocl.xyz", + "my-tradelink.ru", + "thediscordapp.com", + "steannconnnnunity.net.ru", + "steamgifts.net.ru", + "steamcamiutity.com", + "stemcommunite.pp.ru", + "steamconynuyty.net.ru", + "steamcomunuty.com", + "steamcommunikkty.net.ru", + "steancomrnunity.com", + "steemcomrnunity.co", + "steamtradeprofile.com", + "steamconmunyty.com", + "streamcommuniity.ru.com", + "robloxstore.co.uk", + "streamcomunniity.net.ru", + "riptide-operation.ru", + "23c7481e.hbrex.cn", + "pubggift102.xyz", + "discord-airdrop.info", + "streamcommiunity.com", + "streamcomunilty.org.ru", + "dliscord-gift.com", + "sleancommunlty.xyz", + "sleamcommnunity.net", + "steamcommutiny.ru", + "discodnitro.info", + "steamcommunitty.site", + "pubggf02.xyz", + "steamoffered.trade", + "nitro-discord.info", + "csgosell.xyz", + "bigmoneyrollawira.xyz", + "steemcoommunlty.ru", + "streamconnumity.com", + "steramconmunity.com", + "discordx.link", + "streamcommuntly.net.ru", + "steammcamunity.com", + "steaimecommintliy.com", + "discord.in", + "staemcoomuunty.ru", + "hyperz.monster", + "discorddevelopment.com", + "discod.art", + "dlscorclapp.fun", + "discold.ru", + "steancomnnunnity.ru", + "discords-events.com", + "steam-dlscord.com", + "upcs.monster", + "staemcommnunity.ru.com", + "discordgift.ru.com", + "streamcommynuty.com", + "steamcommunitli.ru", + "steamcommunityy.online", + "discrodup.ru", + "steamconnunity.pp.ru", + "hallowen-nitro.com", + "streamcomynity.com", + "eslgamingopen.com", + "disscord.online", + "toom-skins.xyz", + "discords.co.uk", + "slearncommunity.store", + "steamcomunity.com.ru", + "badge-team.ml", + "stemcoomnmounity.com", + "discordapp.store", + "staemcrommunity.com.profiles-768590190751377476483.me", + "steancomnuuniliy.ru.com", + "hydra2018.ru", + "steancoomnunity.com", + "dicsord-airdrop.ru", + "steamowered.com", + "mythiccups.xyz", + "steamcommynyti.ru", + "steamcommuniti.org.ru", + "dicsord.space", + "stuemconmunity.com", + "discorcl-gift.ru", + "steamcommunuty.org.ru", + "discord-gifte.xyz", + "stearmmcommuniity.ru", + "steamcommunitlly.ru.com", + "steamcomrnyniti.ru.com", + "discords.net", + "steampower.co", + "steam.cash", + "stheamcommunity.ru", + "derimonz.xyz", + "discocrd.gifts", + "rl-performance.com", + "diisccord.club", + "sturemconmunity.com", + "steamcommuuity.net.ru", + "dicsord.website", + "discord-dr0p.ru", + "discord-developer.com", + "discorcd.com", + "steam-accounts.com", + "discord-service.com", + "dicscordapp.com", + "fnatic-drop.com", + "steamcoommunilty.com", + "staemcommunitu.com", + "navi.pp.ru", + "stearnpovvered.com", + "steamcomunnitu.xyz", + "streamcomrnunity.online", + "discordt.gift", + "steamcommnunlty.ru", + "roblox.link.club", + "pubgclaims.com", + "steampoweded.com", + "steamservice-deals.xyz", + "staerncormmunity.com", + "steeamcommunnity.ru.com", + "pubg.new-collects.xyz", + "dicsordapp.co", + "2021cs.net.ru", + "dicord.site", + "stearncomminuty.link", + "steamcommunuty.ru", + "steancomuniite-xuz.ru", + "discordtw.com", + "steam-rep.com", + "steanncomnuniity.com", + "steamcommymity.ru", + "steancommunity.host", + "diskord.gg", + "steacomnmunify.fun", + "stemcummnunity.ru.com", + "discordgiftsteam.ru", + "cyber-lan.com", + "steam-communitygifts.xyz", + "stemcomnmunniity.com", + "discardapp.fun", + "discor.de", + "discocl.xyz", + "steamcommunity-tradeoffer.com", + "steancomnunytu.ru", + "streamcomnunlty.ru", + "stearmcommnunity.com", + "stemconmumity.ru", + "steamcommunti.com", + "ds-nitro.site", + "steamcomiunity.com", + "pubggf30.xyz", + "steam-nltro.ru", + "steamrommunity.org.ru", + "nitro-drop.com", + "services.runescape.rs-ui.xyz", + "katowice.ru", + "discovd.com", + "discord-help.com", + "stearmconmmunity.com", + "discords-developers.com", + "dlicord-glfts.site", + "steamcommnunity.ru.com", + "steamconmumity.com.ru", + "discordinfo.com", + "streamcommunly.me", + "diiscord.gift", + "discorid.gift", + "stearmcommuninty.com", + "steamcomunety.com", + "dliscord-nitro.com", + "steancommounity.com", + "discord-security.com", + "steamcommunitygifts1.xyz", + "sttemcomnmuty.ru.com", + "steamcommytuniu.com", + "esportpoint.xyz", + "doscordapp.com", + "steamcommunty.pw", + "steanncommity.co", + "sleamcomunity.ru.com", + "operationreptide.com", + "streamcammunitly.com", + "staemcommunninty.com", + "steamcommnunily.xyz", + "steamitem.xyz", + "steamcommunyty.ru.com", + "discordsapp.xyz", + "discordappo.com", + "steamcommunnjty.com", + "steanmcomrninuty.xyz", + "disclord.com", + "discord-app.info", + "steamcommunityi.com", + "esportsgvay.xyz", + "staemmcommunity.ru", + "steamcommynnityy.com", + "steamcommumlity.com", + "discord-nitro-free.ru", + "stemcomminuty.ru", + "steeamcomunity.net", + "stemcumnmunity.com.ru", + "sleamcommunity.net", + "steamcomunity.me", + "sterncommunnity.ru", + "stearmcommuunity.ru", + "disiscord.com", + "steomcommunitey.com", + "discordapp.pages.dev", + "steam-powered1.xyz", + "stemcomunnity.com", + "dlscord-nltro.com", + "steam-tradehome.xyz", + "steamcornmuniity.net.ru", + "stheamcornmunitiy.ru", + "stemcomnunity.ru", + "steamsourcecommunity1.xyz", + "dlscord.online", + "pubggift92.xyz", + "disc-ord.com", + "discord-airdrop.xyz", + "discordappp.net", + "testbot2021.ru", + "summer-rust.xyz", + "steamconnunity.net", + "discord.fyi", + "steamcommunicty.ru.com", + "steam-power.xyz", + "slteamcommuinity.com", + "stemcornmunitly.ru.com", + "discordnitropromo.site", + "steamcommuntily.ru", + "disordnitros.xyz", + "staemcommunity.org", + "discord-net-labs.com", + "steamcommunety.org.ru", + "steamnltros.ru", + "discord-apps.site", + "steamhome-trade.xyz", + "rl-promos.com", + "discord-hypesquad.com", + "store.stampowered.com", + "steamcommynitu.net.ru", + "steamcommuniltily.ru.com", + "steamcomyniti.xyz", + "steancommuncity.ru", + "steancommuniit.ru.com", + "discord-nitro.ru.com", + "discorcd-nitro.com", + "sreamcommunity.net.ru", + "steancommnunitytradeoffer.xyz", + "steancomunite-xuz.ru", + "humanlifeof.xyz", + "steamcommunnity.co", + "navi-esl.ru.com", + "discord.deals", + "steamcommulnity.com", + "stearcommunitly.com", + "discodrd.com", + "csgo-lute.net.ru", + "discord-givaewey.ru", + "pubggf35.xyz", + "streampowered.store", + "steamconnumuty.com", + "twitch.rust-ltd.com", + "steamcommintty.com", + "steamcommunitiyy.com", + "dicordapp.com", + "discord-hypeevent.com", + "steamcommunitywork.com", + "discorcl.club", + "discorcl.ru", + "pandaskins.ru.com", + "steamcommunjtv.xyz", + "stearnconmunity.com", + "steaamcammunitiy.com", + "discocrd.gift", + "steamcomunity.org.ru", + "steamcommnuty.site", + "steamuppowered.com", + "sternmconmunity.com", + "sleammcommunity.ru", + "pubggf41.xyz", + "dlscordsream.pp.ua", + "steamcommunlty.shop", + "discordsgift.info", + "steamncomunitity.com", + "steamcommunrity.com", + "steamcomnutiny.ru.com", + "discord-app.top", + "stearncommmunity.online", + "steamecommunitiiy.com", + "steamcommnlty.com", + "staermcrommunity.me", + "steancommuinty.ru", + "astrallis.net.ru", + "steamcommunimty.ru.com", + "fineplay.xyz", + "sleamcommuinity.xyz", + "steancommunmilty.com", + "stemcommnuunity.com", + "stearncommunitly.xyz", + "discord-infoapp.xyz", + "steemcommunity.ru.com", + "streamcommunitily.com", + "juct-case.ru", + "stearnporewed.ru.com", + "discord.moscow", + "steamcommunity.click", + "copyrightbussinessgroup.com", + "steampower.de", + "steamcomunty.org.ru", + "streamconnunity.ru", + "staemcornmunity.ru", + "discord-sms.eu", + "discord-bugs.com", + "dlscord-developer.com", + "dlscordapp.codes", + "discordpap.com", + "stemcomunity.ru.com", + "steamcomminyty.ru.com", + "steamcommurnity.com", + "streamcommnunlity.ru", + "steanncammunlte.com", + "steamcommutry.ru", + "rl-garage.online", + "steeamcommunlity.com", + "steamcommnnunnity.world", + "steamconmunyty.ru", + "steancomnmunity.ru", + "givenatus.site", + "dsicrod.com", + "dicovrd.com", + "stearncomnmunity.com", + "steamconnummity.ru", + "steanpowered.xyz", + "staemcomunity.ru", + "steamcumumunity.com.ru", + "steamcommunity-profile.net", + "discorrd.site", + "discordl.xyz", + "steampowered-swap1.xyz", + "sleamcommunnity.net", + "steamncommunitu.co", + "steeamcommunnuity.ru.com", + "discordevents.com", + "myfast.ru", + "discord-accept.com", + "streamcommuniti.xyz", + "stleamcommunitty.com", + "discord.biz", + "steamco.mmunity.com", + "giftdiscord.online", + "steamcommuunlity.com", + "steamcornmunit.ru.com", + "discrodnitro.ru", + "stearncornmnuity.ru", + "steamcommutyniu.com", + "discard.gift", + "natus-open.pp.ru", + "dixscord.com", + "steamcommunity.cloud", + "staemcomconmunlty.ru.com", + "tradeoffer.com.ru", + "sleamcommuniitey.ru.com", + "discord-nitro.co", + "discordl.com", + "qbt-giveaway.info", + "disc0rd-nitro.site", + "discrod-app.site", + "discord-accounts.com", + "csgorun-rubonus.ru", + "nitroappstore.com", + "steamcamunity.com", + "fornite.best", + "steanmncommunity.com", + "dlscord.net", + "vitality-playtime.com", + "steampoweredkey.com", + "navi-giveaway.xyz", + "streamcommunyty.com", + "derwoood.xyz", + "staermcrommunty.me", + "drops4all.pp.ru", + "steancommuniite.xyz", + "streancoommunity.com", + "steamcommunity.eu", + "dicord.gift", + "steamppwrred.com", + "discord.best", + "duscord.js.org", + "discorcl.store", + "steamcomrmunity.ru.com", + "steeamcommmunitty.site", + "discord-jobs.com", + "steamcomnunity.com", + "steamcommunnity.ml", + "streamcommunity.org.ru", + "discordtext.com", + "steampowerered.com", + "steam-ru.ru", + "bigsports.xyz", + "discords-dev.ga", + "steancommunitty.com", + "steamcommunity-comtradeoffer.ru", + "stearncornrnuity.com", + "steamcommunitu.net", + "steamtrade-home.xyz", + "steammcomminity.ru", + "steanncomnmunity.com", + "streamcommmunlty.ru.com", + "dIscordnitro.com", + "steamcomrnunity.online", + "discordjob.com", + "steamcommunutii.ru", + "dlscord.org", + "dlscord-claim.com", + "steamcomniunity.com", + "staemcoommunlty.ru", + "streamcommunity.ru.com", + "steancommunity.ru.com", + "steancommanty.ru.com", + "discord-nitro.store", + "discordi.gift", + "discourd.site", + "rust-llc.com", + "dissord.com", + "stearncommunnity.xyz", + "steamcommuniilty.ru", + "steampowered.jcharante.com", + "share.nowblox.com", + "stemcommnunity.com", + "streamcommmunnlty.ru.com", + "staemcoommnunity.ru", + "steamcommunytiu.com", + "steamcomnumity.org.ru", + "steamcommqnity.com", + "discoogs.com", + "v-roblox.com", + "wavebtc.com", + "steamcsgoplay.ru", + "steam.communty.com", + "csgogift47.xyz", + "ww11.steamcommunity.download", + "steamcommunityw.com", + "steamconnmunitu.net.ru", + "discordstat.com", + "m-discord.pw", + "dicsord-gift.com", + "disrcod.gifts", + "steannconmunity.com", + "disc0rd.site", + "ropost15.xyz", + "fnatic-ro1ls.ru.com", + "discrodsteam.ru", + "streamcomnmunity.ru.com", + "discorcl.click", + "staemcomnunlty.ru", + "steam.cheap", + "discordgift.org", + "steamcromnmunity-com.profiles-7685981598976.me", + "deadisidddde.xyz", + "discords-steam.com", + "streamcommunnilty.com", + "steamconnmunlty.ru", + "steacommunity.site", + "steamcomunitytrades.xyz", + "steemcomunity.net.ru", + "steamcommunity.digital", + "steamcomrnuniti.ru.com", + "www.d-nitro.tk", + "steamcomnunytu.ru", + "steemcommunly.com", + "discords-gift.ru", + "steamcommynutiy.ru", + "streamcummunlty.xyz", + "staempovered.com", + "streamcommuniity.ru", + "steancomnunilty.ru", + "steancommunity.pw", + "accountauthorization.xyz", + "staemcornmunity.xyz", + "streamcomnnunuty.com", + "streamcommuunilty.ru.com", + "discord-alidrop.me", + "stearmconmunnity.com", + "stemcommyunity.ru", + "steamcomrnunite.com", + "steemcoomunity.xyz", + "playeslseries.com", + "www.zipsetgo.com", + "discord-nilro.ru", + "discord-verify.com", + "streamcommuniliiey.net.ru", + "steawcommunity.com", + "dicsord.net", + "steamcommumilty.com", + "discordrgift.online", + "discod-nitro.ru", + "staeamconnunitly.ru", + "operationriptide.tk", + "discord-present.ru", + "discord-trustandsafety.com", + "navi-skins.pp.ru", + "discorcl-gift.ru.com", + "steamcommunillty.ru", + "streamcomunity.fun", + "steamcomnunitly.tk", + "staemcomunyti.ru", + "discrodapp.ru", + "dlscordapp.store", + "new-drop.net.ru", + "steammcamunitu.com", + "sleamcomrnunity.com", + "steamlcommunity.ru.com", + "steamcoormmunity.com", + "discocord.com", + "staemcammunity.com", + "discord-hypevent.com", + "steamcomnumlty.ru", + "steamcommunitx.ru.com", + "steanncomnunity.xyz", + "roll-skins.ga", + "fortniteswapper.fun", + "game-case.ru", + "pubggift87.xyz", + "steamcomminytu.com", + "discoed.gg", + "steamcommunilty.us", + "stcommunity.xyz", + "streamconmunilty.com", + "discord-news.com", + "steam-discords.com", + "staemcommunyti.ru.com", + "steamcomnunuty.ru", + "steamcommunityc.com", + "steamcamunity-profile.ru", + "streamcommunitiy.com", + "steamecommuinty.com", + "m90694rb.beget.tech", + "discordss.ru", + "freenitrogenerator.cf", + "steemcoommuntiy.ru", + "stearncomminhty.com", + "but-three.xyz", + "csgostats.fun", + "sleamcommunnity.org", + "steamconimmunity.com", + "steam-community.org.ru", + "discorgift.xyz", + "steamcommunlity.ru.com", + "giftsdiscord.com", + "discordnitrogenerator.com", + "steancoommuniity.xyz", + "discorcl-nitro.ru.com", + "discordalts293.repl.co", + "discord-install.com", + "discord-apps.space", + "steamcammunlty.ru", + "discrodapp.site", + "streamcommuniity.org", + "discordx.ml", + "steamcommunityzbn.top", + "steancommeuniliy.ru.com", + "stleamcommunilty.com", + "steamconnunity.com.ru", + "fastskins.ru", + "streamcommuuniity.com", + "steamcomminuty.me", + "steancommuniite-xuz.ru", + "steamcommunity-gifts1.xyz", + "steamacommunity.com", + "discondapp.fun", + "gave-nitro.com", + "rust-code.ru.com", + "staemcomrnunity.ru", + "steamcammunitu.ru.com", + "stearncornmunity.com", + "steamcommunlty-proflle.com.ru", + "steamcomrnumity.com", + "steamcommunitie.site", + "steamcomrnunuity.ru.com", + "sleamcommiinuty.ru", + "discord-steams.com", + "stleamcommunitly.com", + "steamcomminuty.ru.com", + "steeamcomunnlty.com", + "discordgift.tk", + "seamconmunity.xyz", + "sternmcommunity.com", + "natus-win.pp.ru", + "steamcommullty.ru", + "steamcommuntily.ru.com", + "steanncomnuniity.online", + "pubggf40.xyz", + "discordnitrogift.ru", + "streamcommuntiiy.org", + "steampoweredoffers.xyz", + "steamcommunitry.ru", + "steancomminity.ru", + "steamconmnutiny.ru", + "games-code.ru.com", + "discord.app.br", + "lakskuns.xyz", + "www.cswanmei4.ru", + "disbordapp.com", + "steampowers.com", + "streamcommunity.net.ru", + "steamcommnity.com.ru", + "www.discord-nitro.net", + "stieamcommunity.com", + "guardian-angel.xyz", + "steancommuity.com", + "ptbdiscord.com", + "steamcamunity.top", + "disbords.com", + "fps-booster.pw", + "steam-gametrade.xyz", + "discord-give.ru", + "ggboom.ru", + "steamcammunity-profile.ru", + "dlscord-halloween.ru", + "staemcomminuty.online", + "stearncommuninity.com", + "steamcommunnity.ru.com", + "stleamcommuneety.com", + "steamcommynlty.com", + "stearncommunytiy.ru", + "discorcl.gift", + "cliscord-gift.ru.com", + "discorb.ru.com", + "staemcommuntyi.ru", + "stermcommunityy.ru", + "steamcomunnlty.com", + "stleamconmunity.com", + "steamcommmunty.com", + "alexandrkost.ru", + "discord-freenitro.pw", + "disc0rd.org", + "steamcomynnitu.net.ru", + "2faceteam.ml", + "steancammunity.com", + "streamcomnuniity.net", + "stg.steamcpowered.com", + "steamoffer-store.xyz", + "steamcommunityzci.top", + "discord-devs.com", + "steamcommunvti.ru", + "sternmcornmmunity.com", + "steamcommunitj.buzz", + "dirscod.com", + "steamcomnunnity.com", + "case-gift.com", + "steamcomnuunlty.com", + "streamcommunilty.com", + "steam-csgoplay.ru", + "steamcorrnmunity.ru", + "steamcomunitly.pp.ru", + "discord-ro.tk", + "gbauthorization.com", + "communitytradeoffer.com.ru", + "staeaemcornmunite.me", + "discord.my", + "steamcommnunlty.icu", + "staemcommuniity.com", + "steamcommununty.ru", + "stemcomnmuniity.ru.com", + "dlscordgived.xyz", + "steamcommunitiv.com", + "fnatic.team", + "steam-community.ru.com", + "globalcs.monster", + "steamconmuhlty.com", + "stearncommunity.net.ru", + "discorsd.com", + "luckycrush.ga", + "steamtrade-store.xyz", + "natus-vincere.space", + "stemconmmunnity.com", + "steam-game-csgo.ru", + "steamcommunitl.com", + "discord.cool", + "steamcoommuniity.ru", + "discourdapp.com", + "gamesbuy.net.ru", + "discoclapp.xyz", + "dlscordnitro.ru.com", + "discord-verification.com", + "steamc0munnity.site", + "steamcommunytu.ru", + "dlscordapp.fun", + "steamcammunity.net", + "board-nitro.com", + "steamcammunitu.com", + "discordgivenitro.com", + "steamcommunty.com", + "steempowered.com", + "steampowered.de", + "sleamcommuinty.store", + "robloxgamecode.com", + "steamcommunutry.com", + "discord.foundation", + "steampowwred.com", + "streamcomunnity.pp.ua", + "steamwcommunity.com", + "straemcummonilty.com", + "steampowered.irl.com.pk", + "steancommunlty.business", + "discord-app.su", + "steamtradeshome.xyz", + "stieamcomnnunity.com", + "steamcommurlty.com", + "stemcummnuity.ru.com", + "discord-team.com", + "discorcl-air.xyz", + "steamcomunituy.com", + "boostnitro.com", + "csgo-gamesteam.ru", + "doscord.com", + "steamservicedeals1.xyz", + "steammcomtradeoff.com", + "steamcommiunitty.ru", + "discordcreators.net", + "steammcommunitey.com", + "steamcommunllty.com", + "cupcsgo.ru", + "steam.luancort.com", + "steam-offerstore.xyz", + "steam-nltro.com", + "nitro-gift.site", + "cyber-csgo.link", + "belekevskeigames.xyz", + "sleamcommunity.org.ru", + "steampowerded.com", + "steamm.store", + "discord-gifted.ru.com", + "disocrdapp.com", + "steamcommunuity.net", + "discrods.site", + "espots-csgo.xyz", + "steamcommuunity.ru", + "streamcomnullyty.pp.ru", + "pubggf06.xyz", + "steanconmunyti.ru.com", + "stearmcornmunity.ru", + "sometheir.xyz", + "longxrun.online", + "steanncomnuniity.xyz", + "disrcod.gift", + "discord-air.pw", + "discord.co.in", + "discorcd.gifts", + "steamcommunitynow.com", + "dlscord.site", + "discord.gifte", + "go-cs.ru.com", + "nitro-discords.com", + "discordglfts.com", + "steamtrade-game.xyz", + "dlcsorcl.ru", + "steamtrades-store.xyz", + "steamcomnutiny.online", + "drop-nitro.fun", + "alm-gaming.com", + "discords-nitros.shop", + "discord-events.com", + "steancommnunity.ru", + "stemcornmunity.ru.com", + "steamcommunitey.ru", + "stemcornmunity.ru", + "storesteam-csgo.ru", + "dlscord-game.com", + "stleanmcommunity.ru", + "steamsomunity.com", + "steanconmumlty.com", + "sleamcommuninty.ru", + "pubggf28.xyz", + "discordglfts.xyz", + "steamcoarnmmnunity.ru.com", + "steamcammunyty.ru", + "discords-accounts.ru", + "steampowered.help", + "discordf.com", + "steamcommunity1.com", + "dizcord.com", + "steamcommunityzdr.top", + "rbux88.com", + "discords-premium.site", + "discord-nitro.shop", + "get-my-nitro.com", + "facepunch-award.com", + "steancommynitu.com", + "streamcomunilty.net.ru", + "steancommunitiy.com.ru", + "seed-nitro.com", + "staermcormmunity.com", + "smitecommunity.org", + "discodnitro.ru", + "discordimages.com", + "beststeam.gq", + "steemcommunty.org.ru", + "discord.ltd", + "steam-csgocom.ru", + "streamcomunlty.pp.ru", + "discord.tools", + "discprd.com", + "stearmcommynity.fun", + "steancoommunity.com", + "cupwin.xyz", + "dlscord.gifts", + "discord-applications.com", + "steamcommunity.team", + "csgo-fute.net.ru", + "discord.istanbul", + "steamcommunitytradeoffter.com", + "sleamcoommunilty.com", + "steammecommunity.com", + "steamcommunitym.com", + "pubggf32.xyz", + "pubgfreedownload.org", + "steamcommunitty.net", + "stemcoomnmunnity.com", + "steemcommunty.pp.ru", + "stearmcomrmunity.com", + "achnavi.net.ru", + "steampwered.com", + "pay-18.info", + "steamcommiunty.ru", + "discord-steam.ru", + "dissord.ru", + "sleamcommuntity.ru", + "discorclgift.xyz", + "steamconmumity.ru", + "steamncommnunity.ru", + "discordnitro.store", + "steamcomnunlty.ru", + "stiamcomunlty.ru", + "dislcord.com", + "proz.monster", + "steamcommunitiu.ru", + "discordtesters.com", + "csgo-steamplay.ru", + "stemcammuniity.com", + "stearncommuniity.click", + "loot.net.ru", + "sleamcommynitu.ru", + "steamcamunity.xyz", + "discordgamers.co.uk", + "steam-auth.com", + "staemncrommunity.store", + "discordnitrolink.tk", + "staemcommunnity.club", + "steamcomnuniti.com", + "store-communitiy.com", + "discords-nitro.site", + "robuxtools.me", + "steancommuniiliy.ru.com", + "steamcommonitey.com", + "staemcomnunyti.ru", + "steamcommunicty.com", + "steamcoommunity.ru.com", + "steamcomnuty.com", + "steeamcommunity.me", + "streamcommuninty.com", + "steammcomminuty.ru", + "discordgifts.info", + "steamcomminytiy.ru", + "steamcornmmunity.com", + "discorcd.click", + "stermncommunity.com", + "stteamcommiunity.com", + "stmemcomyunity.com", + "steam.cards", + "steamccommunity.net", + "streamcommiunnity.com", + "www.www.discord-nitro.ru.com", + "robux20.club", + "dlscordapp.com", + "steemcoonmuntiy.ru", + "dlscordnltro.online", + "steamcomunitu.net.ru", + "steamcommuulty.com", + "discford.com", + "steamoffergames.xyz", + "www.xpromo-discord.com", + "discor-dnitro.fun", + "events-discord.com", + "pubggf34.xyz", + "boost-discord.com", + "robloxdownload.org", + "discorb.gift", + "steamcommunity.llc", + "streamcommuntly.org.ru", + "staemcoommnuty.ru", + "steamcommunnity.com.ru", + "steamcommunitycomoffernewpartner989791155tokenjbhldtj6.trade", + "steamcommynuty.ru.com", + "steam-promo-page.ml", + "steamcoomrnmunity.ml", + "steamcornrnunity.fun", + "stjeamcomuniity.ru", + "steam-account.ru.com", + "steamcomunnyti.ru", + "steamconunlty.ru", + "steamcommuynity.ru.com", + "steemcommuinty.com", + "discrod-apps.ru", + "sleamcommuntly.ru", + "steamconmunlty.com", + "steemcoomuunity.ru", + "steampowerd.net", + "dicsord-app.com", + "steampawered.store", + "discorc-nitro.site", + "bycsdu.cam", + "steancomnuilty.ru.com", + "steeampowered.tk", + "eslhubgaming.com", + "nitro-from-steam.com", + "cs-play.org.ru", + "steammcounity.ru.com", + "facepunchs.com", + "steamconmunity.xyz", + "discord-ru.site", + "nitro-discord.me", + "special4u.xyz", + "steam-hometrade.xyz", + "didscord.com", + "hunts.monster", + "discord-bonus.ru", + "discord-app.live", + "streamcomminuty.ru.com", + "steancommunity.link", + "steamcomninuty.ru.com", + "stearncomminuty.com", + "discord-free-nitro.ru", + "discorapp.gq", + "streancomunnuty.com", + "steamcomnuenuity.com", + "steam-communitysource1.xyz", + "staemcommuinity.com", + "stearncornnumyty.com", + "steamcommuntry.com", + "discordapp.eu", + "rl-chaser.com", + "steamecommuniuty.com", + "discord.givaeway.com", + "discordicon.com", + "game-tournaments.net.ru", + "steancommunity.cc", + "dawbab.xyz", + "nitrostore.org", + "steamcommuhity.ru", + "staeamcromnuninty.com.profiles-76582109509.me", + "steam-discord.ru", + "luancort.com", + "stearncommubity.com", + "steannconnmunity.com", + "stearncommnuinty.com", + "sleamcommmuntiy.ru", + "stearncommunity.link", + "sa-mcdonalds.com", + "steamcommunityzds.top", + "disc.cool", + "discrod-up.ru", + "streamcomnully.org.ru", + "steamcomunilty.com", + "streammcommunity.ru", + "www.claim.robuxat.com", + "streamcommuniitty.com", + "steamtrades.com", + "sleamconmunlity.com", + "discorcl.gifts", + "steamcomminuty.nl", + "stearncornurniity.xyz", + "steamtrade-store1.xyz", + "steempowerd.ru", + "stieamcormnynity.ru.com", + "casekey.ru.com", + "steamcominity.ru", + "bitskeansell.ru", + "steanconmunlly.ru", + "dirscod.gift", + "steamcommunity.ru", + "www.staemcommmunity.ru", + "dlscord-nltro.xyz", + "discord-app.store", + "rushskillz.net.ru", + "sleamcommmunity.com", + "steamcommunitry.com", + "discordbetter.app", + "discord-nitrot.xyz", + "discordaspp.com", + "steampoowered.com", + "stealcommunlti.com", + "pubgmobile365.giftcodehot.net", + "playcsgo-steam.ru", + "steancoomnuity.com", + "bycdu.cam", + "steamcommunitmy.ru.com", + "steamcommumity.net", + "streamcommunily.me", + "stermmcomuniity.ru", + "azimovcase.tk", + "drop-nitro.com", + "stearamcomminnity.net", + "steampoewred.com", + "steanncommunily.com", + "steomconmunity.com", + "streamcummunity.ru.com", + "dsicord.gift", + "www.hdiscordapp.com", + "steasmpowered.com", + "steaemcomunity.com", + "gift-discord.online", + "tradeoff.space", + "steamcommunniity.net", + "dlscord-app.ru.com", + "steamcommunity.cn", + "rust.facepunchs.com", + "steamcommunnitey.com", + "steamcommunitity.com", + "rollgame.net.ru", + "www.steam-community.ru.com", + "robuxx.work", + "staemcoomuunity.xyz", + "steancammunlte.com", + "stiamcommunity.com", + "steamcommunlitly.ru", + "diskord.ru.com", + "discordsteam.com", + "steamcommuntiy.com", + "steamscommunitey.com", + "steancommunite.site", + "steawcommunity.net", + "stiamcomynity.com", + "steamcommunnity.ru", + "steamcomnunitiy.ru", + "case-magic.space", + "sleamcommunityy.me", + "steamscommunity.com", + "discorcl.ru.com", + "ggdrop1.net.ru", + "ssteampowered.com", + "discord.pp.ru", + "m.setampowered.com", + "stiemconnumity.xyz", + "steamcommunity.at", + "steam.comnunity.com", + "discord-halloween.com", + "discord-promo.info", + "steamcommunitywork.ml", + "kingofqueens2021.github.io", + "discord-stemdrop.me", + "stearncomnunily.com", + "discord-faq.com", + "steamcommunitly.me", + "steamcommiynitiy.net.ru", + "thor-case.net.ru", + "discordapp.ir", + "steamcomnmunity.com.ru", + "howls.monster", + "steamtradehome.xyz", + "stjeamconmunnitii.com", + "steemcomunity.me", + "streamccomunilty.com", + "disord.gift", + "discordtest.xyz", + "steamtradeoffer.net", + "navi-winners.org.ru", + "discords-hypesquads.com", + "steamcomnunityprofile.ru.com", + "discords-teams.com", + "steancommnnity.com", + "steammcommunety.com", + "sueamcommunity.com", + "gavenitro.com", + "disordgifts.com", + "free-nitro-sus.pages.dev", + "pubge21.xyz", + "steemcommunitry.com", + "steamcomunnitly.ru.com", + "discordsnitros.one", + "discorcd.gift", + "stearncommynity.ru.com", + "streamcrommunify.me", + "discordnitro.altervista.org", + "dlscord-gift.com", + "steamcommunityzdp.top", + "stearmcomrnunity.com", + "steam-csgogame.ru", + "discord-app.cc", + "sleamcommunlty.net", + "iscord.gift", + "discord-helpers.com", + "stleamcormunity.ru.com", + "stemcomnmuity.com", + "stteamcommunitty.com", + "steam-support.xyz", + "steamproxy.net", + "steamconnmuhity.com", + "discordsnitro.com", + "seancommunity.com", + "steamcomunnity.ru.com", + "steamccommunityy.ru", + "steamgiftcards.cf", + "steamcomrnlnuty.site", + "discord-apply.com", + "steamcomrmunnuity.ru.com", + "pubggift91.xyz", + "stermcommunity.ru.com", + "steamcommnuitty.com", + "luckydrop.site", + "cashy.monster", + "stearncommunytiyu.ru", + "steamconmunity.co", + "streamcommunttly.com", + "steampowder.com", + "discordtotal.com", + "riptideoperation.xyz", + "discord-app.gift", + "discord-info.com", + "steamcommnunitlu.com", + "steamcommnnunity.ru", + "steamcomnunuty.com", + "trustpool.xyz", + "come-nitro.com", + "streamcommunify.com", + "slreamcomunntiy.org", + "steamcommunihty.com", + "stearmcommnumity.com", + "discodapp.net", + "steamcommunillty.net.ru", + "streamcomunlty.net.ru", + "steancommunitytradeaffer.xyz", + "www.scwanmei.ru", + "stearncomynity.ru", + "steawncomnunity.ru", + "staemcomnuinty.ru", + "discorcl.fun", + "steamcommunutiy.com", + "diwcord.com", + "steamcomrninuty.link", + "steemcomnmunity.com", + "ww1.discordapp.org", + "freediskord-nitro.xyz", + "steanncomunity.com", + "discordgive.ru.com", + "discords-support.com", + "discvordapp.com", + "order-96.com", + "discord-get.ru", + "discorg.gg", + "steamconmumltu.com.ru", + "staemcommunily.ru.com", + "streamcomunnity.xyz", + "discordnitro.club", + "discordcdn.sa.com", + "steamcommunity.trade", + "www.steamcommunity.co", + "stemcoomnmuniity.com", + "marketsleam.xyz", + "steamccommyunity.com", + "steammcommunily.net.ru", + "steam4you.online", + "discord-gift.online", + "steamconunity.tk", + "facepunchskins.com", + "pubg.network", + "discordnitro.link", + "stjeamcomnuminiti.ru", + "steaamcamunity.com", + "steumcommunity.ru", + "dlscordglft.xyz", + "crosflah.online", + "pubggift97.xyz", + "riptidefree.ru", + "discord-verify.ru", + "loot.pp.ru", + "pubggf23.xyz", + "xpro.ws", + "stieamcommunitey.ru", + "steamcomunitu.ru", + "streamconunity.net.ru", + "discorcl.link", + "csgosteam-play.ru", + "steamccommunyty.ru", + "steamcomminytu.click", + "staemcommunlty.fun", + "steamcommunitytradeoffer.ru", + "discapp.info", + "steampowered.freeskins.ru.com", + "discordapp.help", + "steamgame-csgo.ru", + "drumairabubakar.com", + "steamcommunityzdd.top", + "steamcommuniiity.com", + "cllscordapp.fun", + "discordboost.net", + "discord-o.com", + "discord-accounts.ru", + "discordtts.com", + "discordapps.gifts", + "autumnbot.cloud", + "steam-offersgames.xyz", + "discordup.ru", + "discord-mega.xyz", + "dsctnitro.site", + "staemcommuntly.ru", + "discords-moderation.com", + "stemcommuniby.com", + "dlscordapps.com", + "disocrd.tk", + "steamcommunnity.net", + "steanconmunlty.ru", + "steamcommnutly.ru.com", + "steamcommunitytradeoffer.com", + "steamswap.xyz", + "steamcoomunlty.ru", + "steemcommuniry.com", + "sleam-trade.net.ru", + "steamcommunutuy.com", + "sleamcommunityprofiles76561199056426944.ru", + "sleamcornmunuity.me", + "discord-support.tech", + "giftsdiscord.ru", + "steamconmnmunity.ru", + "streamcommunicate.ru", + "streamcommnnutiy.com", + "pubgmobileuc2020free.cf", + "ezdiscord.xyz", + "steamcommunity.com.ru", + "streamcommunitry.ru", + "steamcommunityzda.top", + "sleamcommuniity.ru.com", + "steamcoomunlty.com", + "steamcommununty-con.ru", + "stemcommuniity.ru", + "steamcommunityzbq.top", + "stearncommumity.com", + "topvincere.net.ru", + "stemcommunitytrade.com", + "steemcommunllty.com", + "streamcomynity.ru.com", + "dicsords.ru", + "discordadpp.com", + "discorrdapp.com", + "beta.discorder.app", + "dlscord-app.net", + "pubgfreeeus.cf", + "disord.codes", + "onehave.xyz", + "discords.gifts", + "steamcomnunnlty.ru", + "dliscord-glft.ru.com", + "steemcommnnity.com", + "steanncomunitly.co", + "streamcoommuniity.xyz", + "steamcommunitycomtradeoffer.ru.com", + "discordnitrosteam.com", + "disocordapp.com", + "steamcomnnuty.ru", + "stearncommunlity.com", + "stieamcommuniity.com", + "stemcomunity.net", + "awirabigmoneyroll.xyz", + "discord.tw", + "dliscord.us", + "steamcommunity-nitrogeneral.ru", + "steamsourcecommunity.xyz", + "discord-nitrogift.ru", + "steanmconmunity.com", + "premium-discord.com", + "steamcomrnunity.com.ru", + "discord-give.pw", + "steamcommunety.ru", + "mychaelknight.com", + "setamcommunity.com", + "steamcommmunitty.site", + "disco3d.app", + "tik-team-topp.org.ru", + "gdiscord.com", + "discordq.com", + "steamcomminity.com", + "sleamcommunitu.net.ru", + "g2-esports.moscow", + "steamcommurlity.com", + "stearncommunivy.com", + "fortuneroll.tk", + "steamcommunifly.ru.com", + "steamcommyunity.com", + "stearmcommnity.com", + "disclrd.com", + "quick-cup.xyz", + "steamccommunity.ru.com", + "giveawaynitro.com", + "steamcommunitygifts.xyz", + "copyrightbusinessgroup.com", + "nav-s1.ru", + "magicrun.site", + "steamcommntiy.xyz", + "steanammunuty.ml", + "steanncommnunyti.com", + "sleamcomnunity.net.ru", + "discord-exploits.tk", + "steamconmunjty.com", + "stearncommuntty.com", + "robloxbing.com", + "steawmcomuunity.ru", + "steamcomunyti.com", + "discrd.gg", + "riptide-operation.ru.com", + "steampoeer.com", + "sleamcommunittyy.me", + "steamcommunieityi.com", + "steamcoomunitye.com", + "staempowered.xyz", + "fortnight.space", + "discod.fun", + "discordpp.com", + "diiscordapp.com", + "steamcommuniltiy.online", + "eslgaming-play.com", + "stemcommuunity.com.ru", + "nitrodiscord.org", + "streamcommnunilty.com", + "dlscorcl.info", + "sreamcommunity.org.ru", + "3ds-security.xyz", + "steancommnunlty.ru", + "mythicups.xyz", + "dIscord.net", + "streamcomunitry.com", + "stemcormmunlty.ru.com", + "robloxwheelspin.com", + "steamru.org", + "steanncomunitly.ru.com", + "stearncormunity.ru", + "streamcommunite.com", + "stemcommunjty.com", + "steamcomnnunity.co", + "steancomnunity.com", + "steamcommunity.rest", + "authnet.cf", + "discorcll.online", + "eslquickseries.com", + "stemacomunity.com", + "dscrd.club", + "discordiapp.fun", + "webr-roblox.com", + "steamnconmunity.ru.com", + "stearnconmumity.com", + "steamcomnunity.ru", + "steamrcommuniity.com", + "csgodirect.xyz", + "magifcrolrlc.xyz", + "steam-nltros.ru", + "streamcommuniunity.com", + "streancommumity.ru.com", + "steemcoommunity.com", + "steamcoommunllty.com", + "viwwzagul.xyz", + "steancomminity.com", + "ddiscord.com", + "slreamcommunntiy.org", + "steamconnuniitty.tk", + "discord-verif.ga", + "steamcommynitry.ru", + "nitrotypehack.club", + "reports.noodlesawp.ru", + "steeamcomuneety.com", + "steamcommunltyy.com", + "streamcommnuity.com", + "staemcommunety.com", + "dlscord-glft.pw", + "steampowwered.com", + "steam-play-csgo.ru", + "steamcomuniti.xyz", + "cs-dump.org.ru", + "steampewered.com", + "steamcronnmmuniry.me", + "steaamcommunnity.co", + "steamconynuyty.org.ru", + "discord-xnitro.com", + "steampowred.ru", + "free-dislcordnitrlos.ru", + "csrandom.monster", + "steaimcommuniity.com", + "steammcomunnity.com", + "discond.ru.com", + "steamcommuniry.com", + "discords.biz", + "discordnitro.cc", + "steamcommyniti.ru", + "big.org.ru", + "discord-hse.com", + "discordcheats.net", + "discordapp.pw", + "duiscord.com", + "disbored.com", + "discord.co.za", + "steamcornrnunity.com.ru", + "nitro-up.com", + "steamwcommunity.net", + "dscord.nl", + "discorde.xyz", + "steamcommunilty.buzz", + "steamcommunity.de", + "steamcommuniry.net.ru", + "steamcomnmufly.ru.com", + "streamecommuniity.com", + "ste.amcommunity.com", + "streamcommnunitly.com", + "gocsx8.ru", + "steamco.ru", + "steamcommnnity.net.ru", + "facerit.com", + "dscordapp.com", + "dlscord.store", + "steamnitros.ru", + "discordp.ml", + "www.disxcord.com", + "staemcommunility.com", + "xdiscord.com", + "discord-shop.fun", + "2023g.com", + "discords-nitroapp.xyz", + "csgorun.pro-login.ru", + "dlscord.cc", + "ww8.steamcommmunity.ru.com", + "steamconnunlty.com", + "steancommuuniliiy.ru.com", + "discord-cpp.com", + "discord-gift-nitro.site", + "discord-com-free.ru", + "stleamconmmunity.ru.com", + "steamtradeoffeer.com", + "get-nitro.net", + "stemecommunlty.com", + "disc0rd-app.ru.com", + "dfiscord.com", + "stearncommunlty.site", + "steamcomrnunity.xyz", + "stearncommunily.website", + "steamcamunnity.xyz", + "steanncomunitli.ru.com", + "divinegardens.xyx", + "steampowereed.com", + "cs-legend.xyz", + "discokrd.com", + "steamcommunytiy.tk", + "stemacommunity.net", + "sleamcommunnitu.com", + "steamcommunyti.com", + "steamstradecommunity.xyz", + "steencommunilty.com", + "streamcommunty.co", + "steacommunilty.ru.com", + "nitroairdrop.com", + "rustg1fts.online", + "pubgmobilespro.my.id", + "streamconnunitly.com", + "diisscord.club", + "sleamcommunytu.ru", + "csgogift45.xyz", + "natustop.net.ru", + "jjdiscord.com", + "mcdonalds-saudiarabia.com", + "discort.site", + "steamcoummunitiy.com", + "discourd.info", + "steamcommunnlity.ru", + "discordinfo.ru", + "stleamcommunity.net", + "streamcomrnunity.com", + "discordservice.com", + "stearncornrnunity.com", + "steanmcommunity.ru", + "steamrolls.net.ru", + "www.steamcommunity.de", + "steamunpowered.com", + "steamncommuinity.com", + "dlscord-app.info", + "steamcokmunity.com", + "dioscord.com", + "streamcommuniiley.net.ru", + "steamcommtity.com", + "sleamcommuntiny.ru", + "driscord.ru.com", + "affix-cup.link", + "discord-give.net", + "steamcomuntty.com", + "steamscommunity.pro", + "pubggift93.xyz", + "steamcoominuty.site", + "discorb.blog", + "fastdrop.win", + "discord-gift.us", + "okdiscord.com", + "steancommuniity.ru", + "sreamcommunty.com", + "discard.xyz", + "disconrd.com", + "s92673tu.beget.tech", + "freerobloxgenerator.tk", + "lan-pro.fun", + "steamcomumunty.com", + "discord-gifts.ru.com", + "steamcomrninuty.ru", + "steamcommninty.com", + "steancomnumlty.ru", + "yummy-nitro.com", + "stearmcommunity.one", + "discordrgift.com", + "luckygo.ru.com", + "dliscord-gift.ru.com", + "steamcommunity.steams.ga", + "steamcommumtiy.com", + "steampawared.club", + "steamcomnenity.ru.com", + "discordnitrogifts.pl", + "stenmcommunitly.ru.com", + "dirscordapp.com", + "robloxsecure.com", + "steamcomminytu.ru", + "freenitros.com", + "dicsord.ru", + "discoed.me", + "communitytradeoffer.com", + "steanmcommunity.com", + "steamsommunity.com", + "discord-nitro.eu", + "fang-operation.ru", + "linktrade.pp.ua", + "discord-nitro.gift", + "steamcommunlitily.ru.com", + "steamcommunilty.ru.com", + "discordapp.rip", + "steamcommunity.ru.net", + "steamcommunlitty.ru.com", + "ripetide.ru", + "steacommunty.ru", + "steamcommunity-profiles.ru.com", + "streamcommuiny.ru", + "hyper-tournament.xyz", + "steamcommunity-nitro.ru", + "streamcommunnty.me", + "streamcommunily.net", + "twitch.facepunchstudio.com", + "discord-up.ru", + "stearmcommrunity.com", + "steamcammuntiy.com", + "navination.site", + "buxquick.com", + "steamcommunityzdb.top", + "robux247.win", + "csgo-market.ru.com", + "steamcommunilty.it", + "dxiscord.com", + "steamkommunity.org.ru", + "streamconnmunity.com", + "duscord.com", + "steampoweredmarketing.com", + "discordgift.ru", + "steamcommunltu.com", + "lkdiscord.com", + "steancommumity.com", + "steamcomnnlty.com", + "streamcommunlty.net", + "steamcommunlte.ru", + "stearnmcommunnity.com", + "discordd.buzz", + "staemcomnumity.ru", + "discord-nitro.com", + "steamcommunirtly.ru.com", + "staerncornmunity.com", + "nacybersportvi.ru", + "steancomnunlty.ru", + "staeamconnunitly.online", + "steamcommnunylti.com", + "discoredapp.com", + "stjeamcomnunity.ru", + "steiamcommuinity.com", + "steamcommnity.store", + "discord-bot.com", + "streancommunity.ru.com", + "discordpromo.site", + "esl-proleague.net", + "navileague.xyz", + "streamcormmunity.ru.com", + "steeammcomunlty.com", + "streamcomunitly.com", + "streamcoumunnity.org", + "cashcsgo.ru", + "discord.family", + "nitro-app.com", + "streamcomunltyy.pp.ru", + "steamcommunitlu.com", + "discordnitro-gift.com", + "steamcommnunity.org.ru", + "pubggf31.xyz", + "101nitro.com", + "steampiwered.com", + "steamcomunitu.com", + "nitro-discord.fun", + "steamcommynitu.com", + "stemcormmunity.com", + "steamcommunittru.co", + "discoord.space", + "steamcommunitte.ru", + "stemcommuniity.com", + "steamconmunnitry.ru", + "djiscord.com", + "staemcommunity.ru", + "apps-discord.org", + "sleamconnunity.net", + "steamcoomminuty.site", + "discordcrasher.wtf", + "apps-nitro.com", + "stearnconrmunity.com", + "getcach.monster", + "stemcummunity.ru.com", + "steamcommunitu.com-profiles-mellenouz.trade", + "csgo-steam-game.ru", + "stealcommunity.com", + "steam-poweredoffers.xyz", + "steamcommunityzdt.top", + "steamcommunitl.net.ru", + "steamcommunity-source.xyz", + "staemcomrrunity.com", + "steamcomrrnunity.ru", + "disco.to", + "steamroll.org.ru", + "streamcomnullyty.org.ru", + "stearncomrninuty.ru", + "stearmcommunitly.ru", + "streamcomnumnity.ru.com", + "steamcommunillty.com", + "stemcommunitty.ru.com", + "robux-codes.ga", + "streamcomunltyy.org.ru", + "steamshensu.top", + "streamcoommunity.net", + "free-nitroi.ru", + "sleamcommuity.com", + "disxcord.com", + "discordgiftis.ru", + "stearncomrnunlty.site", + "csgift.fun", + "roblox.com.so", + "csgorun.pro-loginn.com", + "steancommuvity.com", + "steawmcommunity.net", + "discorsd.gifts", + "streamcommuniliey.net.ru", + "steemcommmunety.com", + "discord-halloween.ru.com", + "staemcommunlty.com", + "steamcommunrity.ru.com", + "stearncomrmunity.co", + "discord-egift.com", + "discord-airclrop.pw", + "gift-g2.ru", + "steampoweeed.com", + "steamcomnmunlty.com", + "discord.limited", + "stearncommnniity.ru", + "discordtokens2.repl.co", + "streamcommuniliiy.pp.ru", + "staemcoomnunty.ru", + "rustygift.site", + "discord-gifte.com", + "discords-hypesquad.com", + "stemcommunitty.com", + "luckyiwin.ml", + "steacommunity.com", + "discord-hype.com", + "dlscord-nitro.fun", + "sp708431.sitebeat.site", + "steancommumlty.com", + "steamchinacsgo.ru", + "en-roblox.com", + "nitro-airdrop.org", + "steamcomnuntty.ru.com", + "steamscomnunity.com", + "steancommuiniliy.ru.com", + "steemcommuunity.com", + "luckygo.ru", + "stearncommunrty.com", + "stearmcommunitty.ru.com", + "steamcommunity-xpubg.xyz", + "discordgif.com", + "robuxfree.us", + "steanconmnuity.com", + "steamcommunietiy.com", + "navi-drop2020.com", + "streamcommunication.com", + "www.shopy-nitro.tk", + "steamcomminuty.click", + "streamnconmunity.ru", + "sleamcommuunity.com", + "discordd.gift", + "eslplayworlds.com", + "stoacommunity.codes", + "steamcammunity.top", + "cteamcamnynity67823535672.xyz", + "stemcommunnity.com.ru", + "steamcommunlity.net", + "sternmcornnunity.com", + "navi-skins.org.ru", + "staemcommuniunity.com", + "steamcommunitiycom.ru", + "steamcomnunnity.net", + "fiscord.com", + "streamcommuntly.pp.ru", + "sleamcommunity.pp.ru", + "staemcoomuunity.ru", + "csgo-battle.ru", + "tournament.ru.com", + "steamcommunlty.biz", + "steamcommuity.ru", + "stearmcammunity.com", + "exaltedbot.xyz", + "steamcommnunitu.com", + "discord.eu", + "csgo-run.site", + "steammcomunity.ru", + "discordsteam.ru", + "discor.me", + "steampowered.tw", + "sleamcommunty.com", + "steamcommmuiniity.ru", + "esportgift.ru", + "discordcommunlty.com", + "discord-app.us", + "steamcommunliu.com", + "pubggift96.xyz", + "steamcommunity-gifts.xyz", + "discond-nitro.ru", + "stieamconnmunity.com", + "dlscocrd.com", + "steaamcommunnity.com", + "discord.org.ru", + "trade.ru.com", + "steamcornmunyti.ru", + "dlscordapp.info", + "disocrd.co", + "discord.online", + "dragonary-giveaway.info", + "stearncommuntity.com", + "sleamcommuniry.ru", + "steamid.ru", + "steamcomuniti.com", + "stermcommunnitty.ru", + "discord-tech.com", + "steam-communiity.ru", + "secure-instagram.ru", + "steemacommunity.com", + "steamcrommunlty.me", + "discocrd-nitro.com", + "jokedrop.ru", + "discord-nitro.cloud", + "dlscord.info", + "stearnconmunity.me", + "steamcommunlky.net.ru", + "steanconmunitly.ru", + "bitcoingenerator.cash", + "steamcommnunlty.xyz", + "discordaepp.com", + "steaimcoimmunity.com", + "steamcommynitu.ru", + "discord-hypesquade.com", + "skinroll.ru", + "steampoweredexchanges.xyz", + "steeamcommmunety.com", + "discord-nitro-free.ml", + "steamcommlnuty.com", + "listycommunity.ru", + "streamcomnullyty.net.ru", + "streamcommumity.ru.com", + "steamcomnumity.xyz", + "robuxfiends.com", + "streamcomuniitty.ru.com", + "discord-stat.com", + "steancommiunity.com", + "natus-open.org.ru", + "streamcormnmunity.ru.com", + "discordnltro.com", + "natus-vincere.ru", + "steamcommunitiyu.com", + "www.steamommunity.com", + "twitch.facepunch-llc.com", + "discordapp.co.uk", + "discordbothost.com", + "steamcommunityid.ru", + "stearncommiuty.co", + "streamcommuniliiey.pp.ru", + "steamcommunitlly.com", + "discord-get.click", + "steampowerred.com", + "straemcummonity.com", + "stearncomnumity.com", + "stearncomrnunitly.xyz", + "witch.tv", + "steamtrades-home.xyz", + "steamcommnunmity.com", + "steanmncomnunity.com", + "stearamcomnunitu.xyz", + "staemcommunnity.com", + "staemcommunty.ru", + "steamcommnutry.com", + "streamcommunitu.com", + "operationbroken.xyz", + "steancommunuty.com", + "discordgift.info", + "steamcommnuitly.com", + "discord-app.uk", + "ssteamcommunitry.com", + "steamconmiunity.ru", + "discord.marketing", + "steamcommunity-com.xyz", + "staemcommunulty.ru", + "steanmcomnunitiy.com", + "pandemidestekpaket.cf", + "stemcomuniti.ru", + "steamcommuitliy.com", + "steanncommunlty.com", + "steamcormmunity.com", + "discordgifts.ru", + "csgogf07.xyz", + "steamcommunity-tradeoffer.ru.com", + "streamcommuniuty.ru.com", + "streamcornnunitly.co", + "discord-list.cf", + "discord-app.io", + "steancoomunnity.com", + "steamcommuunity.ru.com", + "steamconmnunuty.ru.com", + "discorddaapp.com", + "sieamcommunity.org.ru", + "discords-nitro.xyz", + "prajyoth.me", + "steamconnunity.com", + "steamrccommunity.com", + "steamconmunuty.ru", + "rewardbuddy.me", + "quickrobux.net", + "steamcommuniteypowered.com", + "discorcl.ga", + "loot-item.xyz", + "steamcommynitu.ru.com", + "steamconmunitty.com", + "gameb-platform.com", + "freespoty.com", + "steaimcommunytiu.com", + "stemcomnunyti.ru.com", + "steamecommunitiy.com", + "steemcoomuntiy.ru", + "discosrd.com", + "steamcoommunety.com", + "steamoowered.com", + "steamcommunityc.ru", + "dlscord-app.ru", + "steamncommunity.xyz", + "disord.gifts", + "steam-announcements1.xyz", + "steamcornmunite.com", + "discord-nltro.ru", + "discordjs.tech", + "streamcomnultyy.org.ru", + "steamcammnuity.com", + "straemcommonlity.com", + "discordsub.com", + "discord-app.gifts", + "steaamcommunity.club", + "robloxxhacks.co", + "steamcommuity.com", + "steamcammuniety.com", + "steemcomunnity.com", + "sleamcomnnuniliy.site", + "dicsord.pw", + "stearnconmuntiy.ru", + "steeamcommunlity.ru", + "steamcommynity.icu", + "streancommunitiy.net.ru", + "dlscord-boost.fun", + "steampowored.com", + "navi-drop.net", + "discord-game.com", + "astresports.xyz", + "discordf.gift", + "dlscordnitro.store", + "steamcorrmunity.com", + "dlscordnitro.ru", + "stammcommunity.com", + "magik-dr0p.fun", + "sleamcoommunlilty.com", + "steamrolls.pp.ru", + "streancommunuty.ru", + "sleamcommunitu.ru", + "disocrd.codes", + "dlscord-app.com", + "dlscord-alirdrop.com", + "csgo-cyber.link", + "steamcommunllity.ru.com", + "steamcomminuly.ru", + "natus-lootbox.org.ru", + "steamcommutiny.xyz", + "key-dr0p.com", + "steemcammunlty.com", + "luckyfast.ru", + "2022yg.com", + "stearncommutiny.ru", + "price-claim.xyz", + "indereyn.ru.com", + "dlscord.blog", + "discorddrop.com", + "rust-charge.com", + "teamfnattic.org.ru", + "pubggf26.xyz", + "steamdlscords.com", + "dlscord.tech", + "steamconmnunity.ru", + "ww16.discordcanary.com", + "clove-nitro.com", + "discord-moderator.com", + "stemcoommunity.com", + "seancommunlty.ru", + "discord-halloween.link", + "steeammcomunity.com", + "gift-nitro.store", + "streamcomunily.net.ru", + "steancommuniiity.com", + "discordbagequiz.cf", + "steancommuity.ru", + "discorrd.com", + "cash.org.ru", + "stemcomminity.com", + "csgosteamcom.ru", + "streamcommuunniity.com", + "official-nitro.fun", + "steamsoftware.info", + "gamzgss-top.org.ru", + "streamcommunuitty.com", + "streamcomuniity.cf", + "steamconmnmnunity.ru", + "top-team.org.ru", + "discordsnitro.store", + "discord-giveaway.com", + "stemcomnnmunity.com", + "keydorp.me", + "steamcommnmunity.ru", + "stearnpowered.xyz", + "steamcommunity-trade.xyz", + "dlscard.ru", + "counterbase.ru.com", + "dicsord.gifts", + "dwaynejon.xyz", + "nitro.gift", + "steamcomnmuunity.ru.com", + "streamcommunliy.com", + "discord-apps.ru", + "steamcomminuty.repl.co", + "steamdocs.xyz", + "cyberegocscom.ru", + "verifyaccount-for-bluetick.com", + "sleamcommunity.me", + "steamcomnunllty.com", + "dciscord.com", + "steamcommunitie.ru", + "steamcommunity.net.in", + "csgosteam-game.ru", + "steamstoretrade1.xyz", + "steemcommuntiy.ru", + "steamcodesgen.com", + "discord-app.shop", + "pubggf15.xyz", + "steamcommunitfy.com", + "discordl.pw", + "steamgame-trade.xyz", + "g-games.store", + "stieamcommunitiy.com", + "stemcommunniity.com", + "steam-officialtrade.xyz", + "stjeamcoimmunity.com", + "www.freefireclaim.club", + "discord-nitro.net", + "pubggf38.xyz", + "discordglft.com", + "steeamcommmunity.com", + "steamcomminulty.ru", + "steam-tradeoffer.com", + "discord-halloween.ru", + "discor.gg", + "steamcommnity.ru", + "steamcommunityw.net.ru", + "streamcommuniliiy.org.ru", + "steamcommunlty.top", + "steanconmumity.com", + "halitaoz.cam", + "steampcwered.com", + "steam-poweredtrades.xyz", + "keysdropes.com", + "twitch-starter.com", + "dlscords.site", + "dlscordapp.pw", + "getnitrogen.org", + "streamcomnunitly.ru", + "stemconmmunity.com", + "steamnltro.com", + "csgotournaments.cf", + "stemcomnmunnity.com", + "magnavirollz.xyz", + "staemcommintu.ru", + "streamcoumunniity.org", + "steanmcomumnity.xyz", + "navi-freeskins.com", + "discordfrnitro.site", + "steaamcomunity.net", + "steamcoomunlty.net", + "steamcommunutty.ru", + "stayempowered.org", + "steeamcommunlty.com", + "staemcummunity.ru.com", + "www.steamcommunity.ca", + "stemcoomnmunity.com", + "steammcommuunityy.ru.com", + "discrordapp.com", + "pubggift99.xyz", + "streamcommuniuty.store", + "staemcommunitiy.com", + "stearncomrnunitly.site", + "discord-load.ru", + "steamcommunlty.info", + "stearncommunlty.ru", + "steamcammuinity.com", + "staemcrornmmunity.com.profiles-75921098086.me", + "stemcommunilty.ru", + "givaewey.com", + "sleamconmunity.xyz", + "csgocj-steam.work", + "discocrdapp.com", + "steampoweread.com", + "discord-nudes.live", + "discord-nitro.su", + "steamnitros.com", + "cs-dark.org.ru", + "robux.claimgifts.shop", + "steamcommunily.buzz", + "discorcl.info", + "steamnconmunity.com", + "discord-click.shop", + "navi-lzx.ru", + "free-niltross.ru", + "dsiscord.com", + "strearncomuniity.ru.com", + "dicordgift.ru.com", + "nitrlooss-free.ru", + "steamecommunity.pp.ua", + "discorcl.shop", + "steamcomrnunity.site", + "stleancommunity.ru", + "gocups.ru", + "stleamcormmunity.ru.com", + "magic-delfy.net.ru", + "steacomnmunity.com", + "blustcoin.com", + "discor.link", + "discordlapp.fun", + "mcdonaldsau.info", + "discxordapp.com", + "beast-winer.ru", + "steamcomunnuity.com", + "steamcomunety.ru", + "steamcommiuinity.com", + "dscord-generaot.store", + "dicsordnitro.info", + "discordqpp.com", + "streamcommuniy.ru", + "steamcommunityshop.com", + "steamcomnmnuty.ru", + "stiamcammunieti.com", + "steamhometrades.xyz", + "www.robux.claimgifts.shop", + "steamcammunitey.com", + "discord.cm", + "dlscord.art", + "stemcommunity.ru.com", + "fasttake.space", + "steampowerwd.com", + "robuux1.club", + "trade-leagues.com", + "stearncornminuty.com", + "steamcommunityzdq.top", + "power-sk1n.net.ru", + "discordappi.fun", + "dicsocrd.com", + "steampowerdwallet.com", + "discord-nitro.club", + "discord-information.ru", + "steamsnitro.ru", + "steancommuniti.com.ru", + "sdiscord.com", + "facepunch-twitch.com", + "sleamcomnumity.com", + "discord-sup.com", + "steacommunnity.com", + "stemcommounity.ru.com", + "steammatily.ru", + "stuamcommunity.com", + "steamccomunnity.ru.com", + "discordgift.com", + "discordgifts.com", + "app-nitro.com", + "stemcommlunity.com", + "stemcommuniti.ru", + "steamcommunittrade.xyz", + "sleamconmumity.com", + "steacmommunity.com", + "discordnitro.click", + "steamcommnuntiy.com", + "steamscommunity.ru", + "steamcomnmutly.ru.com", + "slreamcomunity.ru", + "steamcommenity.ru", + "discofd.com", + "tradeoffers.net.ru", + "stearncorrmunity.com", + "steeamcommunity.ru.com", + "sleamcomminity.ru", + "streamcommiumity.com", + "discordsite.repl.co", + "steamcornminuty.com", + "steamcommunity.support", + "microsup.net", + "csgogame-steam.ru", + "discurd.js.org", + "sleamcomnunily.ru", + "streamcormmyniity.ru.com", + "haste.monster", + "discord-gifts.site", + "steamcomminutiu.ru", + "riptide-operations.ru", + "steaamcommmunity.com", + "dlscord-inventory.fun", + "discrod.gg", + "dicrod.com", + "steamcomnunlty.ru.com", + "farestonpw.ru.com", + "cave-nitro.com", + "discords-app.com", + "csgogf01.xyz", + "steamcommnuninty.ru.com", + "steampwoered.com", + "discordnitro.space", + "steam-nitros.com", + "steamecommunity.org", + "stemcommunitytraade.xyz", + "discordalt5.repl.co", + "sleamscommunity.com", + "freeinstagramfollowersonline.com", + "streamcommuniley.net.ru", + "csgowans.ru", + "steam-community.xyz", + "discord-com-free.online", + "steanmcommuniuty.ru.com", + "steancommynity.org.ru", + "discrod-nitro.info", + "streamcomnunity.site", + "csgogf05.xyz", + "humnchck.co", + "natus-spot.pp.ru", + "promo-codes.world", + "aucryptohubs.com", + "getskins.monster", + "staemcornmuntiy.ru", + "tacelt.com", + "sleamconnunity.net.ru", + "streamcommunly.net", + "astralisgift.fun", + "dicoapp.pro", + "steemcommunty.ru", + "steamcomminity.ru.com", + "stermcomunniity.ru", + "sterampowered.com", + "dlscord.team", + "discord-give.com", + "dlscordsglfts.xyz", + "steamcomnunlity.com", + "gamepromo.net.ru", + "stearncomnunity.com", + "discord-games.cf", + "rustg1ft.com", + "sterncommunilty.site", + "dlscorcl.ru.com", + "discordnitrofree.xyz", + "sleamcommunituy.com", + "up-nitro.com", + "streancommuniity.ru.com", + "discord-nitro-free.xyz", + "steamcommuniry.ru", + "shib.events", + "freefireclaim.club", + "steanconmunitiy.co", + "streamcommuninnuity.com", + "steaemcamunity.xyz", + "steamcommuty.com", + "steamcomminytiu.com", + "discord-drop.xyz", + "steamcomnunllty.net", + "discordstaff.xyz", + "steamcommunltiy.club", + "steamcomminty.ru", + "steamunlocked.online", + "stemcomnnmunnity.com", + "fulldiscord.com", + "steamcommuniltly.com", + "steampowere.com", + "aoeah.promo-codes.world", + "discard.gg", + "roblox-robux.de", + "www.robuxat.com", + "steamcomnuiti.xyz", + "steemcommunity.co", + "discordappp.com", + "stemcomnmununity.com", + "stleaamcommunity.com", + "disord.co", + "sleamcommuintiy.ru.com", + "discordapp.vercel.app", + "steancommnuitty.com", + "discordgivenitro.ru.com", + "streamcommuntly.com", + "steamcommunityoff.com", + "discords-gift.com", + "steancommueniliy.ru.com", + "new-collects.xyz", + "csgo-store-steam.ru", + "cyber-csgo.space", + "roblox-porn.com", + "stoemcommunity.com", + "steamconmunity.com.ru", + "steamcommnunty.ru", + "riptide-gaming.ru", + "steamcommunitlly.net", + "styeampowerd.com", + "app-discord.com", + "services.runescape.rs-tt.xyz", + "steamcommnity.com", + "roblox.help", + "esportsfast.pp.ua", + "steamcommuinty.com.ru", + "stleamcommiynitu.ru", + "discorcl-app.ru", + "staemcornmunity.ru.com", + "steampowers.org", + "steamcommunuty.buzz", + "steamedpowered.com", + "steamcomnuntiy.com", + "steamtradesofer.com", + "discord-promotions.com", + "steemcommunily.ru.com", + "steammcommunnity.ru", + "streamcommnunity.ru", + "stleamcommuniity.com", + "steancommunity.net.ru", + "steamcomnunnirty.ru", + "stearmcommnunnity.org", + "steemurl.com", + "steemcommunityy.com", + "steamdesksupport.com", + "discord-giftef.xyz", + "streamcomnunely.com", + "discrdapp.cf", + "up-discord.ru", + "streamcommunitty.ru.com", + "steamcomunity.ru", + "pltw.com", + "steancomnumity.com", + "steamcomynity.ru", + "steancommuuity.com", + "steamconnnnunity.org.ru", + "steamcomunyiti.ru.com", + "disckordapp.com", + "steamcommunyty.xyz", + "discorld.com", + "steamcommuntyy.ru", + "www.ezdrp.ru", + "steamcomnulty.com", + "discordapp.ru.com", + "steancommunyti.com", + "steamsdiscord.com", + "steamcomnunilty.com", + "stleamconnunlty-tyztradeoffernewpartnhr15902271.xyz", + "2discord.ru", + "steamcornmunily.ru", + "steamcommuinuity.com", + "www.discordappporn.chat", + "staemcommmunity.com", + "discordapp.biz", + "dsnitro.xyz", + "steammatily.online", + "nawigiveavay.xyz", + "steamscommmunity.com", + "boosted-nitro.com", + "steamstore.map2.ssl.hwcdn.net", + "rien.xyz", + "key-drcp.com", + "dlscordapp.ru", + "sieamcommunity.net.ru", + "steampowered-swap.xyz", + "steanconmunuty.ru", + "streammcomunittty.ru", + "discordtotal.net", + "stepmscononnity.com", + "stearncornmunity.ru.com", + "discord-give.xyz", + "discordapplication.com", + "streamcoommunity.xyz", + "dizcord.app", + "navigg.org.ru", + "steamnconnmunity.com", + "steancommuineliy.ru.com", + "output-nitro.com", + "steamcormrunity.com", + "steamcommuniyt.com", + "diacordapp.com", + "discord.ru.net", + "discsord.com", + "steemcomrnunity.com", + "steamicommunnity.com", + "dijscord.com", + "steamcammuniti.ru", + "streamcomlutitly.me", + "stemcommunnity.com", + "streamconnunity.net.ru", + "steeamcomunlty.ru", + "steamcommunlty.site", + "stleamcomunity.com", + "steamcommiunitiy.pp.ru", + "zipsetgo.com", + "streancomunnitiy.com", + "steamncomunity.com", + "konicpirg.com", + "steamcornrnuity.com", + "steamzcommunity.com", + "stearncomrnunity.store", + "steaimcomminnity.ru", + "dlscord-nitro.info", + "steamcommunty.ru.com", + "steamcommnunlty.com", + "freenitroi.ru", + "discord-airdrop.me", + "stearncomminuty.ru.com", + "steamecomunity.com.ru", + "skins.pp.ru", + "steancommnulty.com", + "steeamcommunity.ml", + "stream-conmunlty.ru", + "steancomnunyti.ru.com", + "csgo-st.ru", + "discorfd.com", + "steamcomunytiu.com", + "streamcomminuty.pw", + "steamescommunity.com", + "discord-informations.ru", + "steamcommunty.buzz", + "steamcommunity.co", + "stleamcommunity.com", + "steamcommuntiv.com", + "steamcomuniety.ru", + "game-csgo-steam.ru", + "steamdommunity.com", + "sleamcomnnunily.site", + "discord-steam.site", + "g1veaway-nav1.site", + "sueamconmunity.com", + "discord-nitro.website", + "steaamconnmunlty.com", + "streamcommuinity.com", + "streamcommumnity.com", + "discord-app.me", + "stemcomunitiy.com", + "stearncommunitey.ru", + "cs-incursed.xyz", + "stemcommununity.com", + "stearmmcomuunity.ru", + "facepunch-gifts.org.ru", + "discord-give.org", + "airdrop-nitro.com", + "streamcommunityi.ru", + "steamcoummunity.com", + "streamcomuniity.com", + "steamcommyuinity.net.ru", + "nitro-give.site", + "steamcommiunity.ru", + "steamwalletbd.com", + "steamcommmunnity.com", + "streamcomuniity.net", + "staemcomumity.com", + "steamecommunlty.com", + "discord-boost.ru", + "steampowerd.com", + "navi-hawai.net.ru", + "truepnl-giveaway.info", + "st-csgo.ru", + "steamcommunity.biz", + "discordspp.com", + "streamcomrnunity.ru", + "steancommunyti.ru.com", + "fnatic-time.ru", + "steaamcomunity.ru.com", + "blox.land", + "disccor.com", + "steamconnumity.ru.com", + "discord-airdop.link", + "get-gamesroll.xyz", + "discordme.me", + "steamcomuniti.ru", + "dliscrd.one", + "discord-tester.com", + "steamcommunyty.com", + "sleamcommyunity.com", + "dicsord-hypesquads.com", + "sreamcommuniity.com", + "streamcomunity.org", + "robux4sex.tk", + "dlscord.space", + "stemcamnunity.com", + "dlcsorcl.com", + "myrolls.monster", + "dlscord.ru.com", + "streamcommuniley.net", + "discord-nitr0gift.fun", + "steammcomunlty.ru", + "stearncornrnnity.ru.com", + "steqmpowered.com", + "streamcormmunnity.ru.com", + "steamworkspace.com", + "steam-tradestore1.xyz", + "itemcloud.one", + "ds-nitro.com", + "discrdspp.com", + "discord-bot.ru", + "streamcomnultyy.net.ru", + "steamcommunity.site", + "pubggift94.xyz", + "steamcommunlite.com", + "rip-tide.ru", + "steamcommunnty.ru", + "disocrd.me", + "disrcord.com", + "steambrowser.xyz", + "rust-gitfs.ru", + "discord-hypes.com", + "discordnitrogift.com", + "www.steamcamunity.com", + "discord-gift-free-nitro.tk", + "streeamcommunuti.ru", + "stemcomnmnnunity.com", + "dicsord.gg", + "stearncommunitey.com", + "stermconmmunity.com", + "sleamcomunitly.co", + "steampowaered.com", + "steamcornmynity.ru", + "stearncommuniity.ru", + "steamcomnnunty.ru", + "dlscord-support.com", + "steamcommuniti.ru.com", + "stemcommunlty.space", + "streamcomulty.org.ru", + "natus-win.net.ru", + "gamesfree.org.ru", + "steanconmunlty.com", + "disc0rd.xyz", + "discordacc2.repl.co", + "steancommurily.xyz", + "steampowoereid.com", + "dicord.space", + "www.creditscpfree.website", + "steamcomnumilty.com", + "streamcomnunitiy.ru", + "justcause.fun", + "counterstrik.xyz", + "sterncommunilty.ru.com", + "steamcomuunity.com", + "steamhelp.net", + "discordlist.repl.co", + "discord.com.tw", + "steampowed.com", + "discordapps.gift", + "steamcommunhity.com", + "stearncommrunity.com", + "dominospizza-nl.com", + "discord-nitro.tk", + "steamcommunnlty.com.ru", + "roblox.free.robux.page", + "discords.us", + "www.discord.pt", + "steamcomunitly.ru", + "steamcoommunuity.com", + "stearncommunlty.store", + "discord-premium.com", + "staemcammynlty.ru", + "discord4nitro.com", + "discordappporn.chat", + "streamcommunnitty.com", + "nitropussy.com", + "steamcmunity.com", + "steamocmmunity.me", + "steamncommunity.pp.ru", + "steancommuniti.site", + "discordlogin.com", + "stearncommunyti.ru", + "discord-promo.com", + "stearncomnunity.org", + "streamcomunlty.org.ru", + "rust-giveaways.xyz", + "tini.best", + "stearncommunity.click", + "sleamcommuniity.me", + "streemcommunhity.org.ru", + "streamcommmunity.com", + "steamcommunitytredeoffer.com", + "steamcomunillty.ru.com", + "streancommuniliy.ru.com", + "giveweay.com", + "streamcommulinty.com", + "freenltro.ru", + "imvu37.blogspot.com", + "steamcommunly.net.ru", + "steumcommunity.com", + "steamcommunetu.com", + "steancommunilty.com", + "claim.robuxat.com", + "discorcl-boost.ru", + "discordsearch.co", + "steamgames.net.ru", + "steemcomunity.pp.ru", + "stieamcommuinity.com", + "premium-discords.com", + "discord-spooky.ru", + "steamcommuniitu.site", + "steamcommunytitradeoffer.com", + "stheamcommnitiy.ru", + "csgo-storesteam.ru", + "giftsdiscord.fun", + "facepunch-llc.com", + "steam-storetrade.xyz", + "stemcomnmounity.com", + "discord-promo.xyz", + "www.discord-nitro.ru.com", + "stearncornmunity.net", + "dlscorldnitro.store", + "stearncornrnunity.ru.com", + "steamcomnunity.net", + "discordnitro9.repl.co", + "joewfpwg.ru", + "discorcd.site", + "discordnitro.com", + "steamcornmunify.ru.com", + "stearncommmnuity.xyz", + "staermnconnumti.com", + "discord-nitro.online", + "steamcommunirty.com", + "game-steam-csgo.ru", + "topw-gamez.xyz", + "stemcommunlty.ru.com", + "steam-cammuneti.com", + "order-78.com", + "sleamcoomunity.com", + "stearncornmunitiy.com", + "sleamcomunuty.ru", + "steamcannunlty.com", + "dlscord-alirdrop.site", + "discord-gifts.shop", + "comdiscord.com", + "discord.world", + "discord-nltro.info", + "dicsord-nitro.ru", + "steamwalletcodes.net", + "staamcommunity.com", + "steamcammunuty.com", + "app-discord.ru", + "discord-njtro.store", + "steamcomminuty-offer.ru.com", + "steamscommynitu.co", + "key-dr0b.com", + "gift-discord.shop", + "maggicdrop.xyz", + "steamcommunit.org.ru", + "streamcommuninllty.com", + "dzscord.js.org", + "encesports.xyz", + "viwwzagulw.xyz", + "steampowererd.com", + "steancomnnunity.com", + "discord.co.com", + "sleamcommuntiy.com", + "roll-gift.fun", + "discordsteams.com", + "robloxs.land", + "discrod-glfts.com", + "sleamcummunity.me", + "steannconnnunity.com", + "streamcommunit.ru.com", + "stearncommumitly.com", + "steacomnunity.ru.com", + "steamdomain.online", + "steampoweredpoetry.com", + "steampoweredcinema.com", + "discordgifts.ru.com", + "steamconnunitiy.com", + "steancommunety.com", + "streamconmunity.com", + "steacommnunity.com", + "boxgolg.club", + "discord-drops.ru", + "steampoweredcommunity.com", + "steamcommunty.net", + "steancommuhity.com", + "streamcomnnunity.xyz", + "steam-tradestore.xyz", + "pubgmobile737373.ml", + "steam-hype.com", + "stearncomrrunity.com", + "csgosteamgo.ru", + "steamcominuty.ru", + "streomcommunuty.com", + "stearncommninuty.com", + "steamcommynity.space", + "sleamcomnunity.xyz", + "discorcl-give.site", + "pubggf24.xyz", + "ssteamcommunity.ru.com", + "steemcommunnity.net", + "discords-moderator.com", + "steamc0mmunity.com", + "discordgift.app", + "rust-award.com", + "steancommunily.ru", + "discordxsteam.com", + "steancomrnunuty.ru", + "steamcommuntity.ru.com", + "staemcommunity.com.ru", + "discord-app.co", + "dicsord-give.com", + "steam-servicedeals1.xyz", + "streamcommunitly.net", + "steamcommuniety.com", + "stemcomnunity.ru.com", + "dlscordgift.com", + "stearncommnnity.co.uk", + "discord.cn.com", + "steamcomuunity.ru.com", + "tipteamgg.xyz", + "steamcommhnity.com", + "disocrd.org", + "dlscord.in", + "styamcommunity.com", + "realskins.xyz", + "discordnitro.fun", + "nitro-app.fun", + "steamcommunirty.ru.com", + "verification-discord.com", + "discord-stuff.com", + "steam-powered-games.com", + "strempowered.com", + "xess-nitro.com", + "steamcomnunity.site", + "steemcammunlly.com", + "steam-community1.xyz", + "epicgamesnitro.com", + "steanncommunitv.com", + "stemcoomnnunity.com", + "discord-event.com", + "steamcoomunity-nitro.site", + "staempawered.xyz", + "steancommunnuly.me", + "steamnltros.com", + "www.streamcommunity.ru.com", + "steamgivenitro.com", + "stieamcommunity.pp.ru", + "staemcommunty.com", + "steamcormmmunity.com", + "store-streampowered.me", + "staemcomnunity.fun", + "skins-navi.pp.ru", + "stteamcommunity.net", + "giftsdiscord.online", + "stimcommunlty.ru", + "steam-offer.com", + "steamcomminyti.ru", + "steampowered.org", + "steeamcommunyti.com", + "streawcommunity.xyz", + "robuxhelps.com", + "riptide-operation.xyz", + "steancomuunity.com", + "natus-open.net.ru", + "steam-power1.xyz", + "discord.si", + "sleamcommunity.org", + "streamcommuunnity.com", + "robfan.work", + "diszcord.com", + "staemcommuntiy.ru", + "steamcommunity.ca", + "magnavirolls.xyz", + "streampowereed.com", + "steamunlocked.pro", + "discord-air.xyz", + "fowephwo.ru", + "prajyoth-reddy-mothi.github.io", + "discord-app.xyz", + "stemcommuinty.ru", + "steamcommrnunity.com", + "natusspot.pp.ru", + "diskord.org.ru", + "discordapp.us", + "stearncornmrunity.ru.com", + "httpdlscordnitro.ru.com", + "redirectednet.xyz", + "freedrop0.xyz", + "disccrd.gifts", + "steammcommunity.com", + "stemcommunlty.com", + "csskins.space", + "into-nitro.com", + "glft-discord.com", + "discold.online", + "vbucksminer.ru", + "steamcomiynuytiy.net.ru", + "steamcomrunily.com", + "operation-riptide.ru.com", + "dirscord-gift.ru", + "cs-navigiveaway.ru", + "steamcommunitysource1.xyz", + "streaemcrommunlty.com.ru", + "discorcrd.gift", + "steamcoomunjty.com", + "discord-giftes.com", + "discord-free.com", + "stleamcomnunity.ru.com", + "sleamcomnnunitiy.ru", + "sreampowered.com", + "stearncommunite.com", + "discord-club.ru", + "swapskins.ga", + "s1cases.site", + "www.freerobloxgenerator.tk", + "der-csgo.ru", + "streamcomnuniity.com", + "disccord.ru.com", + "discord-halloween.me", + "steamcommunili.xyz", + "steancommrnity.com", + "discpordapp.com", + "myccgo.xyz", + "navi-freedrop.xyz", + "faceit-premium.com", + "dlscord.gg", + "hope-nitro.com", + "discord.promo", + "wyxy.ru", + "steawmcomnunnity.ru", + "steancommuntly.com", + "pubggf22.xyz", + "streamcormmunity.com", + "discord-app.net", + "pubgmobile365.com", + "csgo4cases.fun", + "riptide-cs.ru", + "steamcoomunnity.com", + "pubggift98.xyz", + "streamcommnnuity.com", + "steamcommunity.pl", + "freenitro.ru", + "steemcammunllty.com", + "rbux88go.com", + "steamcomnumnity.com", + "steamcomnunity.org.ru", + "steamcommunithy.com", + "discond-njtro.tech", + "stleamcommuniity.net", + "steamcomnnunlty.ru", + "myrollz.com", + "ste-trade.ru.com", + "discord-app.click", + "discrd.co", + "staemcomunity.com", + "bysellers.xyz", + "steamommunity.com", + "steamtradestore.xyz", + "steanncammunlte.ru", + "pubggf33.xyz", + "steamcommunrinty.ru.com", + "promo-discord.com", + "discordaop.com", + "cpp-discord.com", + "steamcommunety.com", + "steamcommumity.biz", + "discordapplication.xyz", + "steamcommunite.com", + "steamcommunitypubg.com", + "steamcomnnunilty.com", + "discord-airnitro.xyz", + "steamnitro.com", + "staemcoommunty.ru", + "rewardspremium-nitro.gq", + "steamcommulty.ru", + "keydropp.one", + "streamcommmumnity.ru.com", + "steamcomunity.com", + "stemcomnmuunity.com", + "sterncommynuty.ru", + "steampowered-offers.xyz", + "discordgiveaway.fun", + "prefix.net.ru", + "streamcommounity.com", + "steamcommuniuity.com", + "store.stempowerd.com", + "discordsex.live", + "diuscordapp.com", + "steamcommuninthy.com", + "steamcommynity.ru", + "drop.net.ru", + "stearncornmunitly.com", + "steamcsgo-play.ru", + "steamcommuhuity.com", + "steamcomonity.com", + "steancommuniity.fun", + "steamnconmunity.work", + "steam-nitro.ru", + "beast-cup.ru", + "dlscord-hypesquad.com", + "stearncomnunitu.ru", + "steamtradecommunity.fun", + "steancomrnunitiy.com", + "pubggf19.xyz", + "steamcornmnuity.com", + "steapowered.com", + "stemcommunilty.com", + "firtonesroll.ru.com", + "steamcomnmrunity.ru", + "steamservicedeals.xyz", + "gamzc-topz.xyz", + "steamcommuniy.com", + "natus-vincere.xyz", + "steamcommunitte.com", + "natus-win.org.ru", + "stearcommuity.com", + "profile-442572242.online", + "discrod.gift", + "guns-slot.tk", + "discordgiftss.com", + "discord-supports.com", + "streamcomunitty.net", + "stieamcommuunitey.us", + "operation-pass.ru.com", + "steamcommuniti.com.ru", + "discord.app", + "streamcommunimty.com", + "dominosllc.com", + "discordobs.com", + "streamconmunitly.ru", + "discord-nudes.club", + "discord.fit", + "robloxromania.com", + "stearmcommunity.ru.com", + "store-stempowered.com", + "steancommunitry.ru", + "streamcommunity.me", + "steamcomminnty.com", + "discorb.gifts", + "stearncornmunuty.ru", + "steamcommunity.link", + "steamepowered.com", + "steamcommynltu.com", + "steamcommunlty.company", + "nltro.site", + "bigs.monster", + "steamrcommunity.ru", + "jope-nitro.com", + "store-discord.com", + "steancomnurity.one", + "nitrochallange.com", + "robloxux.com", + "discordapp.best", + "viwwzaguls.xyz", + "steam-site.ru", + "staemcoomunity.ru", + "steamcommunityzdl.top", + "discord-promox.com", + "csgoworkshops.com", + "steamcommunuity.ru", + "discornd.com", + "steamsommunity.ru", + "steammcommunity.ru.com", + "steancommuunity.com", + "discord-a.com", + "steamcomunity-nitro-free.ru", + "steamcomrnunity.ru.com", + "steamconmnunity.co", + "discord-drop.info", + "airdrop-discord.online", + "diascord.com", + "streamcoommunity.com", + "dlscord.pro", + "ez-tasty.cyou", + "stemcummunity.com.ru", + "steampowrd.com", + "disordapp.gifts", + "discodapp.gift", + "dlscord.rocks", + "staemcommunityu.ru.com", + "robuxhelp.com", + "steam-sourcecommunity.xyz", + "steancommynyty.ru.com", + "steamcommuriity.com", + "steancomnumlty.com", + "dailymegadeal.xyz", + "steamcomrnyniti.ru", + "discord-glft.ru.com", + "steam-service.ru", + "steancommiuniliy.ru.com", + "event-discord.com", + "think-when.xyz", + "steamcommunitily.com", + "steamcommunity-tradeoffers.com", + "stemcommnunlty.ru", + "stemcomnmunity.com.ru", + "poste.xyz", + "steamcornmunity.net.ru", + "steamcomnunitty.com", + "discordshort.ga", + "streamconmmunity.ru.com", + "fnatic2.org.ru", + "big.pp.ru", + "discord-controls.com", + "discord-nitroapp.xyz", + "steamkey.ru", + "steamsconmunity.com", + "steamcommutyniy.com", + "freediscrodnitro.org", + "steamcoommunuty.com", + "steamcomminutty.ru", + "seamcommunity.com", + "discortnitostem.online", + "cteamcommunity.xyz", + "stermcommunilty.ru.com", + "staemcomrnunity.ru.com", + "discords-hypes.com", + "discoerdapp.com", + "comsteamcommunity.com", + "dicsordnitro.store", + "pubggift95.xyz", + "dmarkef.com", + "discord2fa.com", + "steampoiwered.com", + "stearncomnnunity.fun", + "steamconnunity.ru.com", + "steamcommunuti.ru", + "steamcommunety.net.ru", + "cs-exeword.xyz", + "navigg.ru", + "skins.org.ru", + "stemcomnmunity.ru.com", + "steamcommunity.mobi", + "fall500.ru", + "steampowered-trades.xyz", + "steanncomunitly.ru", + "steamhome-trades.xyz", + "discord-nitro.tech", + "steamaccounts.org", + "steamcommunetiy.ru", + "steancomunitiy.ru.com", + "stemcomnnmuunity.ru", + "stearncomnunitv.ru.com", + "streamcomnully.net.ru", + "discordd.gg", + "topz-games.xyz", + "steamcsgo-game.ru", + "loot-conveyor.com", + "staemcomcommunlty.ru.com", + "steemcomunity.org.ru", + "steamecommunity.ru.com", + "discord-nitro.pro", + "discord-mods.com", + "steamcommuwunity.com", + "steamcommunjti.com", + "steamcommunnuty.ru", + "discorcl-nitro.com", + "discordapp.gg", + "pubgmcheats.com", + "discord-netro.ru", + "staemcoomuntiy.ru", + "stealmcommunity.ru", + "cs-cool.net.ru", + "discorb.co", + "store-steam-csgo.ru", + "stheamcomunitly.ru", + "stearncomminuty.click", + "steamcommulltty.com", + "stemcommounilty.com", + "steacommunity.ru.com", + "keydoppler.one", + "csgogf06.xyz", + "sleamcoomuuntty.xyz", + "steamcommuniltiy.ru", + "steamcommumituy.com", + "discordfree.com", + "streamcommunly.com", + "discod.gift", + "cs-riptide.xyz", + "streamcommunit.com", + "streamcommunitv.net", + "steamcomunitty.ru.com", + "steeaamcomunity.xyz", + "steampowered.xyz", + "sleamcomminutiycom.ru.com", + "steamcommuilty.ru", + "drop.org.ru", + "csgo.ghservers.cl", + "dicord.gg", + "discorcl.site", + "discord.givaewey.com", + "discord-gifts.org", + "casesdrop.xyz", + "operation-broken.xyz", + "diucord.js.org", + "steamcornmnitu.ru.com", + "steamcommuininty.com", + "discord.homes", + "sleramconnummitti.org", + "staemccommunnity.net.ru", + "cs-moneyy.ru", + "discords.ru.com", + "discorcl-app.xyz", + "steamcommunity-user.me", + "steamcommulity.ru", + "steemcoommunty.ru", + "discord-give.ru.com", + "streancoommunity.xyz", + "dlscord-nitro.store", + "sleamcommmunitiy.ru", + "alexs1.ru", + "steanmcommunity.ru.com", + "steamcommunity.comlappl251490lrust.ru", + "steamcomunnity.site", + "steamcommunyte.com", + "magnaviroll.xyz", + "stearmcornnnunity.com", + "steamcornmunity.org", + "discord-support.com", + "stleamcommunitiy.com", + "steam-servicedeals.xyz", + "stemcumunnity.ru.com", + "discordaoo.com", + "dlscordnltro.ru", + "discord-moderation.com", + "steancomuniiity.com", + "eslgamingworldwide.net", + "ds-nitr.xyz", + "discolrd.com", + "stearncommunigy.com", + "stemcommunitly.com", + "skinup.monster", + "streamcomunily.org.ru", + "discord-event.info", + "discord-partners.com", + "discords-premium.com", + "stemcammuniety.ru", + "steamconmumnity.com", + "dlscord-nltro.ru", + "discod-hitro.xyz", + "steampoeerd.com", + "steamcammunty.com", + "getfreediscordnitro.ml", + "discord-app.ru.com", + "steamlcommunity.org.ru", + "stearncommiunity.com", + "stleamcornmmunity.ru.com", + "store-steampoweered.ru", + "steamcomninytiu.com", + "discordglft.ru", + "discordsatus.com", + "stearncomrninuty.xyz", + "csgo-dym.ru", + "steancoommunity.xyz", + "steam-powered.xyz", + "steamcommuneteiy.com", + "stearmcommuniity.com", + "dirolzz.xyz", + "streamcommunnuitty.com", + "streamconmmunity.com", + "steam.99box.com", + "discrod-nitro.fun", + "robuxhach.com", + "steamcommynituy.com", + "wowfnatic.ru", + "steanmcommzunity.ru", + "stealcommuniti.ru", + "discord-gift.ru", + "steancammunyti.com", + "diiscord.com", + "xpro.gift", + "steammcommuniity.ru", + "starmcommunity.net", + "discord-claim.com", + "stearmcommuunnity.ru", + "steamcommunely.ru", + "sleamcoommunily.com", + "discordtos.com", + "discorcdapp.com", + "streamcommunty.ru", + "sterncornmunity.ru", + "storesleampowecommunity.store", + "discrodnitro.org", + "lan-pro.link", + "discordgame.com", + "steamcomrnunity.su", + "steamservice-deals1.xyz", + "staemcornmunity.com", + "discord-alrdrop.com", + "disc.gifts", + "slemommunity.com", + "streamcommunnity.org", + "steamcomnunitiy.com", + "steamcommrunitly.com", + "esports-trade.net.ru", + "navi-giveaway.net", + "streamcommuniily.com", + "discrod-gift.com", + "ggdrop.pp.ru", + "sleamcommunily.net", + "steamcommuunity.net.ru", + "discord-nitro.it", + "steamcormunity.xyz", + "eslgamescommunity.com", + "steamcommynlty.ru", + "streamcornnunitly.com", + "steamcoommunlty.ru", + "steam-storetrade1.xyz", + "staemconmuilty.com", + "discordnitros.xyz", + "streamcommuntiy.com", + "steamcommunit.ru.com", + "steampoward.com", + "steamcomunnity.xyz", + "steancomunitly.ru", + "staerncoinunitiy.me", + "steamcommunitey.com", + "official-nitro.com", + "steampowerde.com", + "z93729n9.beget.tech", + "steamcommunity.us", + "discordapp.ws", + "steamcommulnty.ru", + "discord.giveawey.com", + "steamcommuinity.com", + "discords.ru", + "stearncommunuity.net.ru", + "discordtokens.shop", + "discord-drop.gift", + "discrdapp.com", + "gamekor.net.ru", + "streamcomulty.net.ru", + "steemcommunitey.com", + "discord.cloud", + "csgochinasteam.ru", + "steaamcomunity.com", + "dlscocrdapp.com", + "www-steamcommunlty.com", + "discord-gift.shop", + "discord-nitrodrop.xyz", + "streamcommunilly.com", + "stemcomunnity.ru.com", + "steamcomiunity.xyz", + "disscord.ru", + "steamcomunity.net.ru", + "idiscord.pro", + "staeamconmuninty.me", + "discorcll.com", + "steancoommunnity.com", + "stemcommunity.ru", + "steamhometrade.xyz", + "disordglft.com", + "stieamcomunity.com", + "discordmoderations.com", + "easycases.pw", + "dicsord-airdrop.com", + "dscord.xyz", + "steamcommuntity.com", + "nitrogive.com", + "steam-tradeshome.xyz", + "steamcommumitiy.com", + "steamcommynuti.ru", + "streamcommunily.ru.com", + "discordhalloween.com", + "steemcommmunity.com", + "steam-tradegame.xyz", + "discordadp.com", + "ea-drop.com", + "streammcornmunnity.com", + "discord-hallowen.ru.com", + "steanncomunitty.site", + "css500gggo.ru", + "discod.info", + "vkbonus.club", + "steamcommunly.com", + "steancommuinuty.ru", + "steamcomnunitly.com", + "stearncommuniry.com", + "pubggf05.xyz", + "jetcase.fun", + "discorrd.ru", + "discordbotist.com", + "steamcomnumily.com", + "steamcomrnunlty.com", + "discord-informations.com", + "discord.bargains", + "www.discordapps.tk", + "steamcummunity.ru.com", + "dircode.ru", + "dlscord.app", + "streamcommulnty.com", + "disscords.club", + "rocket-tradings.com", + "pubgofficielbcseller.online", + "discords-gifts.ru", + "riptide-take.ru", + "steamcommunitty.esplay.eu", + "steamcomuninruty.ru", + "stemcommunity.com.ru", + "sreamcomminity.ru", + "streamcommunillty.com", + "stearncommumlty.com", + "free-nitlross.ru", + "stieamcommuniity.ru", + "discordgifts.co.uk", + "stearncommunjty.com", + "www.freeinstagramfollowersonline.com", + "steamconmunitly.com", + "streamcommunily.icu", + "staemcomnunity.org", + "dlscord-steam.com", + "steamcommuunitty.ru.com", + "staemcommunlty.ru", + "pubggf20.xyz", + "nitrogeneral.ru", + "stopify.com", + "discord-airdrop.site", + "discrod-app.ru", + "gleam.su", + "discordmac.com", + "steam.codes", + "streamcommunity.pl", + "steamcommunylty.ru", + "steamcommunlty.cloud", + "streamcommunltiy.com", + "streamconnunity.site", + "stearncommynitu.ru.com", + "d1scord.xyz", + "discordnitro.info", + "smeacommunity.com.au", + "stemcommunitiy.com", + "steamcommunitygames.com", + "discord-offer.com", + "stearmcommunnity.ru.com", + "steancommumity.net", + "steamconmuniti.ru", + "steamcomuniltu.xyz", + "sleemcomnuniti.xyz", + "steamcammiuniltty.com", + "discordlive.xyz", + "steanmcomnumty.com", + "discordapp.support", + "steampoweredshow.com", + "discord-stats.org", + "steammcommunity-trade.xyz", + "steamconmunlly.com", + "steancommynity.ru.com", + "staeamcomunnityu.me", + "steamcommunify.com", + "discord-air.fun", + "steamcommunity.co.ua", + "gift-g2.online", + "steamcommunitii.xyz", + "steanmconnynuytiy.net.ru", + "stearmconmunity.ru", + "steamcommunllty.ru", + "withereum.com", + "stearnconmuuity.com", + "steam-nitros.ru", + "stearnconmuulty.ru", + "steancommunnity.co", + "discord.team", + "staemcommunily.com", + "streamcommunniity.com", + "discorclapp.fun", + "steam.mmosvc.com", + "order-40.com", + "nitro-discord.org", + "classic-nitro.com", + "streamecommunity.com", + "discord-gifts.me", + "natus-rolls.xyz", + "fnaticteam.org.ru", + "stheamcommunutly.ru", + "creditscpfree.website", + "discorcl.art", + "pubggf04.xyz", + "ssteamcommunity.com", + "navicase.org", + "clan-big.ru", + "steamconnunity.fun", + "stemcommouniity.com", + "stearncommutiny.online", + "straemcomunnitry.ru", + "staemconmunity.com", + "freeskins.online", + "stearncommunnitty.xyz", + "staemconmunilty.com", + "sleamcommuniti.xyz", + "steancommuniitty.com", + "discqorcl.com", + "dlscord.world", + "s1cses.site", + "steamcormunity.ru", + "csgo-run.info", + "sleamcomunity.me", + "steamcommunyti.info", + "steamcommunitu.icu", + "steam-communitysource.xyz", + "steamcommyinuty.ru", + "giftsdiscord.site", + "discord.gq", + "steamcomueniity.ru", + "pubggf37.xyz", + "pubgmobileskin2020.com", + "steamcomminutiiu.ru", + "navifreeskins.ru", + "streamcommunily.co", + "steancommuhity.ru", + "steammncommunty.ru.com", + "discord-gif.xyz", + "slemcommunity.com", + "steamcommynite.com", + "steemcommuniti.com", + "disocr.com", + "affix-cup.click", + "x33681t2.beget.tech", + "daddsda.xyz", + "steamgametrade.xyz", + "discordnitro.ru.com", + "dscord.gifts", + "pubggf21.xyz", + "streamcoommounity.com", + "stearncomminutiu.ru", + "claimgifts.shop", + "pubguccmobilefree.cf", + "streamcommunitv.me", + "steeamcommunnlty.ru", + "steam-account.ru", + "discord.ac", + "discordsapi.com", + "mydrop.monster", + "steamcommumnity.com", + "steanmcomnumntiy.com", + "diccrd.com", + "steamcomynlty.com", + "discrodsteam.online", + "riptidepass.ru", + "steamcormurnity.com", + "steamcoonmuntiy.ru", + "dlscord-gifts.com", + "navi-give.net.ru", + "steamcornminty.xyz", + "www.dominospizzanl.com", + "discordbots.app", + "lan-pro.xyz", + "steamncomnunlty.com.ru", + "disord.fun", + "freenitrol.ru", + "steanccommunity.ru", + "steam-csgo-store.ru", + "sleamcommunitey.com", + "steam-discord.com", + "discord-promo.site", + "discord-moderator.us", + "mdiscord.com", + "www.robfan.work", + "steomcommunity.com", + "steamcormmunity.ru.com", + "discord.download", + "staemcommmunity.online", + "streamcomunity.net", + "discord-partner.com", + "steamcommunityr.com.ru", + "dlcord.gift", + "streamcommmunify.ru.com", + "discord-nitroapp.ru", + "pubggf27.xyz", + "steamcommunilly.com", + "steamcomnumty.ru", + "steamcommunity-source1.xyz", + "discord.giveaweys.com", + "steanconmunity.ru", + "pubgtoken.io", + "best-cup.com", + "sleamcoommunlity.com", + "pubgfree77.com", + "discird.me", + "steam-communitytrade.xyz", + "steamcard.me", + "steamcommuniytu.com", + "www.luckycrush.ga", + "steaemcommunity.pp.ru", + "discorddevs.com", + "steamcomminuly.com", + "discird.gg", + "disxord.com", + "garstel.github.io", + "discord-develop.com", + "steamcomminity.ru", + "pubggf03.xyz", + "steamncommumity.ru", + "didiscord.com", + "steampowerwed.com", + "sleamcommunitty.xyz", + "steamcomrnity.xyz", + "steamcommuniity.com.ru", + "steancommunlty.com", + "stemcomunity.com", + "steamcommunityy.ru", + "weplay.ru.com", + "discord-promo.ru.com", + "mythicleagues.xyz", + "steamcommuiti.ru", + "steancommunity.click", + "dixcord.com", + "nitroosfree.ru", + "stearncommunilty.site", + "get-discord.fun", + "stearmcommunity.com", + "luxerkils.xyz", + "steamcommunityx.com", + "steeamcommunnity.ru", + "streanncommunity.space", + "discordcanary.com", + "pubg-asia.xyz", + "steampoweredexchange.xyz", + "sterncomnurity.one", + "steqmcommunity.com", + "disordapp.gift", + "steamcorrnunity.org", + "steamcombain.com", + "steamncommunity.ru", + "g2-game.ru", + "pubggf29.xyz", + "nicegg.ru", + "stheamcomunutly.ru", + "steanmcomnuity.com", + "steamstore.site", + "staemcommuntiy.com", + "discord.creditcard", + "steamccommuniity.com", + "steamcommunityzce.top", + "steampower.space", + "steancommunnlty.com", + "wallet-steam.ml", + "stemncornmunity.com", + "steamcommurnuity.com", + "ggdrops.ru.com", + "steamcomuuniity.com", + "gift-discord.ru", + "cs500go.com", + "stieamcomuniiti.ru", + "discordl.site", + "operation-riptide.xyz", + "steawmpowered.com", + "discurcd.com", + "cupgoo.xyz", + "steancomunnity.ru", + "stemcoommuniity.com", + "steamcommulnt.ru.com", + "discord-nitrogift.xyz", + "pubggift100.xyz", + "stewmpowered.com", + "steamcommunltv.buzz", + "nitro-gift.ru.com", + "steanmcomnuinmty.com", + "steamconnunirty.ru", + "dogewarrior-giveaway.info", + "skinsup.monster", + "stearncommuniityt.click", + "steamcomminuty.link", + "stemcumnmunity.com", + "gglootgood.xyz", + "discord-glft.com", + "streamcomnnunity.website", + "case-give.com", + "rblxcorp.work", + "new-steamcommunlty.xyz", + "stieamcommynituy.com", + "dkscord.com", + "steamcomminytu.link", + "steamcomrnunitu.ru.com", + "steumcornmunity.com", + "xesa-nitro.com", + "steamcommunility.com", + "discord-gift.top", + "robloxgiftcardz.com", + "airdrop-discord.ru", + "disordgift.codes", + "stampowered.com", + "steam-povered.xyz", + "discordalt4.repl.co", + "steemcommunlty.com", + "reslike.net", + "awirabigmoneyrolls.xyz", + "discordnitro.su", + "stiemcommunitty.ru", + "promo-discord.site", + "discord-login.cf", + "steam-community.net.ru", + "steamecommunity.net", + "sleampowereed.ru", + "steamcommunutty.com", + "steamcamunitu.com", + "discord-support.org", + "stearncommuniity.site", + "steamcommuntliy.ru", + "steamdomain.ru", + "steamcommunidy.com", + "sleamcommuniiy.ru", + "steomcommunity.ru", + "discorb.com", + "staemcommunity.info", + "discord-nltro.fun", + "steamconmunlty.com.ru", + "steamcomnmynitu.com", + "rl-bounce.com", + "discoerd.com", + "stearmcornmunitiy.com", + "csgo-steamgame.ru", + "key-dropo.com", + "discorclnitro.ru", + "discordappss.com", + "steamstorepowered.com", + "cs-esports.link", + "steamcommunitysource.xyz", + "discord.luxe", + "steanconnunity.com", + "free-nitro.ru", + "cs-boom.org.ru", + "stheamcommuniti.com", + "sleamcornrnunity.host", + "disdrop.com.br", + "steamcommuni.com", + "stearncommunety.com", + "navi-wins-skiins.org.ru", + "lootship.ga", + "streamcommlunity.ru.com", + "steancammunity.ru", + "cash.pp.ru", + "steamcornmunty.com", + "navicase-2020.org.ru", + "steancommuuniliy.ru.com", + "steamcommunlty.store", + "steamcomnunmity.com", + "discord-hypesquads.com", + "sleamcomnnuniity.ru", + "discortnitosteam.online", + "riptide-pass.org.ru", + "steamcommunieti.ru", + "sleamcommunitiy.com", + "steamcomminytiu.ru", + "steam-cs-good.ru", + "dlscordsteam.com", + "streamcommunitey.com", + "discord.es", + "steamcommuntli.ru", + "steamcummunity.com", + "steemconnunity.com", + "steemcommuniy.com", + "g2ezports.xyz", + "steamcoomynity.ru", + "bondikflas.xyz", + "rl-garage.space", + "rust-ltd.com", + "sleamcommuiliy.ru.com", + "streamcomunily.pp.ru", + "stjeamcomnunitiy.ru", + "steawpowered.com", + "dlscord-nitro.link", + "steamconnunity.de", + "stearncornminuty.ru", + "cashout.monster", + "discordapp.cloud", + "steemcommuntiy.ru.com", + "discord-nitroe.xyz", + "steamcomity.com", + "stemacommunlty.com", + "steam-free-nitro.ru", + "disordnitros.gifts", + "steamcommuniti.org", + "steamkommunity.net.ru", + "dicsordgift.com", + "discords.company", + "steemcommuniity.com", + "steamcommunitty.top", + "qcoldteam.life", + "steamconmnunity.com", + "steamcommunitya.com", + "steanconnunlty.com", + "stearnconmunity.net", + "steamcomrninuty.site", + "steamcommunytytradeofferphobos.ru", + "discord-app.co.uk", + "order-87.com", + "diswcord.com", + "realtorg.xyz", + "sleammcommunnity.ru", + "steamcommnutry.ru", + "sleamcomnnunily.website", + "counter-strlke.site", + "steamcomminiity.site", + "steancomuniity.com", + "dlscord-nitro.click", + "steeamcommuinitty.com", + "steamcommunetiyy.xyz", + "steamcommutinny.ru.com", + "steamcommunnitlly.ru", + "discourd.com", + "discord.com.pl", + "steamcommiunity.pp.ru", + "steamrommunily.com", + "dizscord.com", + "pubggf42.xyz", + "steancomnunity.ru", + "dlscordnitro.com", + "stearmcommuunity.ru.com", + "streamcomnunity.ru", + "diisscord.online", + "bloxpromo.com", + "disordsnitro.gifts", + "pubgmobile2019ucfreeeee.tk", + "steamcommuenity.com", + "steancommunitv.com", + "steamcamunlty.com", + "steurmcommunity.com", + "pubggf39.xyz", + "discort.com", + "stieamcommunity.org.ru", + "steamconnnnunity.net.ru", + "naviskins.xyz", + "diqscordapp.com", + "stearnmcomunity.com", + "steampowerco.com", + "steamcomnutiny.ru", + "discord-gifteh.xyz", + "robuxhelpers.com", + "discontro.ru", + "steamcommunityz.com", + "streamcomunitly.net.ru", + "cointradebtc.com", + "stemcoominuty-alirdrop.xyz", + "dicsord-gives.com", + "pubggf36.xyz", + "steamcommunittey.com", + "steamcommmunity.xyz", + "wwdiscord.com", + "discorclsteam.com", + "steamecommunlty.com.ru", + "discorcl-app.com", + "topvincere.org.ru", + "rust-drop.ru.com", + "discordre.store", + "stearmmcomunity.ru", + "discordist.com", + "pubggf18.xyz", + "steamcomunnuty.com", + "steamcommuunjty.com", + "steamcomunlitly.ru.com", + "csgo-game-steam.ru", + "stearncommunilty.ru", + "steamcommunity.in", + "steacommunity.net.ru", + "steamcummunityy.pp.ua", + "discord-control.com", + "stearncormmunity.ru", + "stearncomminytu.com", + "steamcommunltiy.com", + "cod3r0bux.pw", + "steamcomnumity.ru.com", + "steamcommiunniutty.net.ru", + "stermccommunitty.ru", + "discord-airdrop.com", + "styeampowered.com", + "facepunchltd.com", + "steamcommnunytl.com", + "toprobux.site", + "steamcommnunniiy.net.ru", + "steamcommunitie.net", + "stmeacomunnitty.ru", + "rl-purple.com", + "stleamcommunithy.com", + "steamdiscrod.ru", + "stemcomnunity.com", + "steamcommunityzcd.top", + "sleamconmunity.ru", + "discordbeta.com", + "redizzz.xyz", + "discordapp.top", + "steamcommunityi.ru", + "steawscommunity.net", + "navirolls.org.ru", + "steamcommunlilty.ru.com", + "steamcconmmuunity.co", + "steamcomunlty.ru.com", + "steamcommuunity.pp.ru", + "streamcommunjty.com", + "steamcoommunity.pp.ru", + "stemcommunitytrade.fun", + "cschecker.ru", + "streamcommunitiy.ru", + "discord-information.com", + "pubggf25.xyz", + "streamcommunnty.com", + "glob21.online", + "giftdiscord.info", + "streamcommunty.me", + "wanmeipt.ru", + "steamaccounts.net", + "steamaccount.xyz", + "steancomnunytu.ru.com", + "stemcomnmuunity.ru.com", + "discordiatech.co.uk", + "steam-communitygifts1.xyz", + "www.freenitrogenerator.tk", + "rollskins.monster", + "www.discord-steam.ru", + "steanmcommunily.ru", + "opencase.space", + "steamcommunitytradeofer.com", + "staemcommmunity.ru", + "drop-key.ru", + "discordgifts.site", + "get-nitro.fun", + "ach2x.net.ru", + "discord-sex.live", + "dlscord.shop", + "jet-crash.xyz", + "sreamcommunity.com", + "steamgiveaway.cc", + "steam-poweredexchange.xyz", + "steam-csgo-good.ru", + "streamcummunlty.com", + "from-puste.xyz", + "stemcoommounity.com", + "steamcommunity.live", + "streamncommnunity.com", + "navy-freecases.ru", + "steamcommunities.biz", + "loginrun.info", + "csgo-steam-good.ru", + "newdiscord.online", + "steampowered.us", + "steam-hometrades.xyz", + "sleamcommunlty.space", + "discorcl-nitro.site", + "steamcommuunitey.com", + "steamcommuninty.ru.com", + "streamcormmunlty.ru.com", + "discordp.com", + "drop.pp.ru", + "discordapp.click", + "steamdiscords.com", + "discorclapp.com", + "steamcomnmuituy.com", + "sleamcoommunity.com", + "sleamcommunily.org", + "discords-nitros.fun", + "discoard.com", + "steamcornrrnunity.com", + "steamdiscord.com", + "discord-invite-link.com", + "www.steacmommunity.com", + "discosd.com", + "steampowened.ru.com", + "antibot.cc", + "steurmconmunity.com", + "staemcoommuntiy.ru", + "cpbldi.com", + "disocrd.gg", + "steamconnmunlty.com", + "freediscord-nitro.cf", + "discord-nitro.live", + "steam-login1.xyz", + "discordnitrofree.com", + "steancommunitiy.ru", + "csgogf03.xyz", + "discord-verify-account.ml", + "discordqapp.com", + "streamconmunyti.com", + "d.iscord.xyz", + "steamcommunetyei.com", + "discrod-app.com", + "steamcommunity.best", + "gamerolls.net.ru", + "discordnitro-steam.ru", + "discrod.pw", + "steemcowwunity.xyz", + "discrord.com", + "stheamconnmunutly.ru", + "steamcommunute.com", + "steamcomrnunitu.ru", + "steamdlscord.com", + "stearncornmurnity.ru.com", + "discord.cc", + "please.net.ru", + "stearmcommunitry.cf", + "facedrop.one", + "hdiscord.com", + "steamcommnunity.com", + "steancommuniity.com", + "glets-nitro.com", + "magifrolbit.xyz", + "2021y.ru", + "steamcommunltuy.com", + "sitemap.onedrrive.com", + "id-374749.ru", + "dlscorcl.gift", + "team.the-shrubbery.co.uk", + "steancommmunity.com", + "steamccommunity.com", + "steamcommunety1i.com", + "steancomunitytradeffer.xyz", + "stearncommmunity.ru", + "steamcomunityo.com", + "keydrop.org.ru", + "discord404.com", + "steamcommuniety.ru", + "steampowerewd.com", + "csgorun.info", + "steanncommuniuity.com", + "streanncomunity.ru", + "streamcommunily.cc", + "game-steamcsgo.ru", + "discord-verifications.com", + "navi-russia.ru", + "discorddev.com", + "steancommnuity.com", + "stearncomminuty.ru", + "discordcharity.org", + "steamcommuitly.ru", + "discorapp.pw", + "whitelampa.xyz", + "stemcommuty.ru", + "steanmconynnuytiy.net.ru", + "steamcomuniity.ru.com", + "eslworldwideplay.com", + "steanncomunitiy.ru.com", + "fdiscord.com", + "stmencommunity.ru", + "streamcommununty.com", + "dicsord.pl", + "steeamcomunitty.com", + "dscord.me", + "ewqdsa.xyz", + "stheamcommunutiy.ru", + "steamcomnumity.com", + "steamcommunniity.com", + "steam-csgo-game.ru", + "steamcommunitytradeofter.com", + "pubggift101.xyz", + "streamcommunlte.ru", + "new.mychaelknight.com", + "steancomnuity.com", + "discordsapp.fun", + "stimcommunity.ru", + "widesdays.com", + "stemcomnmnunity.com", + "discod.tech", + "ww1.dicsordapp.com", + "stores-steampowered.com", + "steamecommunituiy.com", + "discord-report.com", + "discordnitros.gifts", + "g2a.ru.com", + "streampoered.com", + "viwwzaguly.xyz", + "gamzgss-top.xyz", + "streamcommunity-user.me", + "magifcrolrlh.xyz", + "steam-cs.ru", + "streamcommuunnity.net", + "steanncommunity.com", + "streamcommunuity.net", + "streanncomminity.ru", + "streamcommuunity.com", + "good-csgo-steam.ru", + "steamcomumity.com", + "stemcommuniety.com", + "streamcomnunyti.xyz", + "discord-claim.ru", + "stearncomrmunity.com", + "rustg1fts.ru", + "discord-claim.ru.com", + "staemcummunlty.com", + "steamguard.ir", + "steamcommuniutiiy.com", + "steam.communyty.worldhosts.ru", + "steemcommunty.net.ru", + "discord-app.club", + "staemporewed.xyz" + ], + "iplogger": [ + "dlscord.org/nitro-gift", + "lovebird.guru", + "trulove.guru", + "dateing.club", + "shrekis.life", + "headshot.monster", + "gamihg-at-my.best", + "progaming.monster", + "yourmy.monster", + "imageshare.best", + "screenshot.best", + "gamingfun.me", + "catsnthings.fun", + "joinmy.site", + "fortnitechat.site", + "fortnight.space", + "freegiftcards.co", + "grabify.link", + "partpicker.shop", + "websafe.online", + "sportshub.bar", + "herald.sbs", + "locations.quest" + ] +} diff --git a/util/Data/loadout.json b/util/Data/loadout.json @@ -0,0 +1,98 @@ +{ + "secondary": [ + "Knife / Base Melee", + "Axe", + "Shovel", + "Baseball Bat", + "Nunchucks", + "Prizefighter", + "Wrench", + "Sickle", + "Machete", + "Katana", + "FHJ-18", + "SMRS", + "D13 Sector", + "Thumper" + ], + "perk_1": [ + "Fast Recover", + "Persistence", + "Flak Jacket", + "Skulker", + "Agile", + "Lightweight", + "Restock", + "Tactician", + "Overclock", + "Martyrdom", + "Iron Lungs" + ], + "perk_2": [ + "Vulture", + "Toughness", + "Tracker", + "Ghost", + "Cold Blooded", + "Hard Wired", + "Quick Fix", + "Amped", + "Recon", + "Gung-Ho" + ], + "perk_3": [ + "Hard Line", + "Demo Expert", + "Tactical Mask", + "Alert", + "Engineer", + "Dead Silence", + "Shrapnel", + "Hard Alert", + "Launcher Plus" + ], + "scorestreek": [ + "Shield Turret", + "UAV", + "Shock RC", + "Hunter Killer Drone", + "Care Package", + "Counter UAV", + "MQ-27 Dragonfire", + "SAM Turret", + "Predator Missile", + "Hawk X3", + "Sentry Gun", + "Lightning Strike", + "Orbital Laser", + "XS1 Goliath", + "Cluster Strike", + "Chopper Gunner", + "Stealth Chopper", + "Swarm", + "Napalm", + "Advance UAV", + "EMP Systems", + "VTOL" + ], + "operator_skill": [ + "Purifier", + "War Machine", + "Death Machine", + "Tranform Shield", + "K9 UNIT", + "Sparrow", + "Tempest", + "H.I.V.E. ", + "Gravity Spikes", + "Annihilator", + "Shadow Blade", + "Equalizer", + "Ballistic Shield", + "Gravity Vortex Gun", + "Bull Charge", + "Kinetic Armor", + "TAK-5", + "Munitions Box" + ] +} diff --git a/util/Data/scam.json b/util/Data/scam.json @@ -1,4103 +0,0 @@ -[ - "discrods.gift", - "discordsgift.com", - "steam-sourcecommunity1.xyz", - "dlscordnitro.info", - "steamcommuniyty.ru", - "betadiscord.com", - "csgogf02.xyz", - "steamcommynitu.xyz", - "discordapp.org", - "stemcommunnitiy.net.ru", - "lan-pro.ru", - "dscordnitro.xyz", - "discord-boost.com", - "discord-boost.xyz", - "avitofast.ru", - "dlscord.live", - "steamcornmunety.com", - "disco9rdapp.com", - "natus-lootbox.net.ru", - "streamconmunitly.com", - "discordbooster.com", - "diiiscrod.club", - "steamcommunillty.ru.com", - "discord-steam.com", - "steamcomrneuneity.com", - "steancomnuniity.com", - "staemcomunitly.xyz", - "discorddiscord.com", - "generator.discordnitrogift.com", - "steampoweredtrades.xyz", - "discordaap.com", - "steemcommunity.com", - "nise-win.xyz", - "discord-mod.com", - "triumph.tk", - "stearncomnnunity.site", - "freenitros.ru", - "discord-airdrop.pw", - "steamcommunitu.ru.com", - "nitro-discord.ru.com", - "steancomnurity.xyz", - "dicoapp.me", - "steamcommunetiyi.com", - "streamcommunitiy.ru.com", - "magifrolbiq.xyz", - "dicsord-nitro.com", - "discord-free.site", - "diiscord.me", - "steamcomnmuntiy.ru.com", - "stieamconmuniity.com", - "roblox-login.com", - "steemcommunnity.co", - "steampowerec.com", - "ggfail.xyz", - "stearmconnrnunity.com", - "steamcomnumlty.com", - "pubggf01.xyz", - "twitch-nude.com", - "u924157p.beget.tech", - "steanmcomnunity.com", - "roblox-collect.com", - "discorad.com", - "dlscrodapp.ru", - "discoapps.club", - "steamcomnnynlty.com", - "steamcammmunity.ru", - "stemcomiunity.ru", - "eslgaming-world.com", - "streamconnuity.com", - "steanncomunnity.ru", - "streamcommuniitu.com", - "steamconunity.cf", - "stemcommunlity.ru", - "stemccomnmunity.com", - "steemcommynity.ru", - "discorld.site", - "steamcommunily.org", - "steamcamunity.ru", - "steamcomnuhity.com", - "steamcommumiuty.com", - "driscord.ru", - "dlcsord-airdrop.com", - "dlscord.cloud", - "staemcammunity.me", - "stenmcommunilty.ru.com", - "stearmcornmunlty.com", - "steamcornmunity.fun", - "steamcamnunity.ru", - "discord-nltro.com", - "steamcornmynitu.ru", - "sleamcommuninty.com", - "stearncomnnunity.website", - "dlscorp.com", - "stemcummunnity.ru.com", - "kaysdrop.ru", - "discordgift.pw", - "steamcommunityzbo.top", - "dlscord.fr", - "stuamcommnuity.com", - "disccord.tk", - "dlsccrd.com", - "steam-tradeoffer.xyz", - "nitroos-frieie.ru", - "steeamcomnnunity.com", - "discord-nitro.link", - "disocrd.gifts", - "steamcomunninuty.com", - "steancoommunitytradeofferr.com", - "steamcommmunlity.com", - "steams-discord.ru", - "luckygift.space", - "staemcomunnity.com", - "robuxat.com", - "steamconmumity.com", - "stearncommunhty.com", - "steancammunlty.com", - "steampoweredswap.xyz", - "steamcomnunilty.ru.com", - "streamnconmumity.com", - "steamtradestore1.xyz", - "steancommunnty.com", - "stemapowered.com", - "dicsrod.com", - "discordgg.com", - "smartcommunity.net", - "steancomunyti.ru.com", - "sternconmunity.ru", - "steamcommunetiy.com", - "discord-airdrop.fun", - "steamcommunityzbr.top", - "disccord.gg", - "stleamncommunity.ru", - "disorc.com", - "steam-auth.ru", - "stemcumnmunity.ru.com", - "scteamcommunity.com", - "staemcoommunity.ru", - "steamcommlunity.com", - "navi-up.com", - "discorcl.online", - "streamnconmunity.com", - "steamuserimages-a.akamaid.net", - "dlscord.support", - "riptide-valve.ru", - "stemcomrnmunity.com", - "streamcommuinty.com", - "steamcommunityw.org.ru", - "streamcommmunitty.ru.com", - "game-csgosteam.ru", - "steamcommunity.com-id-k4tushatwitchbabydota.ru", - "steappowered.com", - "steamcommeunity.com", - "steamcummunity.com.ru", - "streamcommuniliiey.org.ru", - "discordsapplication.info", - "discordc.gift", - "store-steamcomminuty.ru.com", - "steamcomunmity.ru.com", - "steamcommynityprofile.ru", - "steawcomunity.net", - "steanncommuiniuty.com", - "steamcommunitfy.ru.com", - "streamcommunmity.com", - "discord-boost.ru.com", - "discord-apps.xyz", - "discord-gift.info", - "discordnitro.gift", - "robuxprofiles.com", - "streamcomunnity.ru.com", - "fustcup.ru", - "steamcommunitty.com.ru", - "verifapp.us", - "sterumcommunity.com", - "steanpowered.net.ru", - "stemcomnmuniity.com", - "taceitt.com", - "cs-skins.link", - "dlscord-nitro.ru.com", - "diszcordapp.com", - "steaimeecommunity.com", - "staemcommunityi.com", - "streamconnunity.us", - "steamcamunitey.com", - "stemcamnunity.ru", - "discrocl.xyz", - "my-tradelink.ru", - "thediscordapp.com", - "steannconnnnunity.net.ru", - "steamgifts.net.ru", - "steamcamiutity.com", - "stemcommunite.pp.ru", - "steamconynuyty.net.ru", - "steamcomunuty.com", - "steamcommunikkty.net.ru", - "steancomrnunity.com", - "steemcomrnunity.co", - "steamtradeprofile.com", - "steamconmunyty.com", - "streamcommuniity.ru.com", - "robloxstore.co.uk", - "streamcomunniity.net.ru", - "riptide-operation.ru", - "23c7481e.hbrex.cn", - "pubggift102.xyz", - "discord-airdrop.info", - "streamcommiunity.com", - "streamcomunilty.org.ru", - "dliscord-gift.com", - "sleancommunlty.xyz", - "sleamcommnunity.net", - "steamcommutiny.ru", - "discodnitro.info", - "steamcommunitty.site", - "pubggf02.xyz", - "steamoffered.trade", - "nitro-discord.info", - "csgosell.xyz", - "bigmoneyrollawira.xyz", - "steemcoommunlty.ru", - "streamconnumity.com", - "steramconmunity.com", - "discordx.link", - "streamcommuntly.net.ru", - "steammcamunity.com", - "steaimecommintliy.com", - "discord.in", - "staemcoomuunty.ru", - "hyperz.monster", - "discorddevelopment.com", - "discod.art", - "dlscorclapp.fun", - "discold.ru", - "steancomnnunnity.ru", - "discords-events.com", - "steam-dlscord.com", - "upcs.monster", - "staemcommnunity.ru.com", - "discordgift.ru.com", - "streamcommynuty.com", - "steamcommunitli.ru", - "steamcommunityy.online", - "discrodup.ru", - "steamconnunity.pp.ru", - "hallowen-nitro.com", - "streamcomynity.com", - "eslgamingopen.com", - "disscord.online", - "toom-skins.xyz", - "discords.co.uk", - "slearncommunity.store", - "steamcomunity.com.ru", - "badge-team.ml", - "stemcoomnmounity.com", - "discordapp.store", - "staemcrommunity.com.profiles-768590190751377476483.me", - "steancomnuuniliy.ru.com", - "hydra2018.ru", - "steancoomnunity.com", - "dicsord-airdrop.ru", - "steamowered.com", - "mythiccups.xyz", - "steamcommynyti.ru", - "steamcommuniti.org.ru", - "dicsord.space", - "stuemconmunity.com", - "discorcl-gift.ru", - "steamcommunuty.org.ru", - "discord-gifte.xyz", - "stearmmcommuniity.ru", - "steamcommunitlly.ru.com", - "steamcomrnyniti.ru.com", - "discords.net", - "steampower.co", - "steam.cash", - "stheamcommunity.ru", - "derimonz.xyz", - "discocrd.gifts", - "rl-performance.com", - "diisccord.club", - "sturemconmunity.com", - "steamcommuuity.net.ru", - "dicsord.website", - "discord-dr0p.ru", - "discord-developer.com", - "discorcd.com", - "steam-accounts.com", - "discord-service.com", - "dicscordapp.com", - "fnatic-drop.com", - "steamcoommunilty.com", - "staemcommunitu.com", - "navi.pp.ru", - "stearnpovvered.com", - "steamcomunnitu.xyz", - "streamcomrnunity.online", - "discordt.gift", - "steamcommnunlty.ru", - "roblox.link.club", - "pubgclaims.com", - "steampoweded.com", - "steamservice-deals.xyz", - "staerncormmunity.com", - "steeamcommunnity.ru.com", - "pubg.new-collects.xyz", - "dicsordapp.co", - "2021cs.net.ru", - "dicord.site", - "stearncomminuty.link", - "steamcommunuty.ru", - "steancomuniite-xuz.ru", - "discordtw.com", - "steam-rep.com", - "steanncomnuniity.com", - "steamcommymity.ru", - "steancommunity.host", - "diskord.gg", - "steacomnmunify.fun", - "stemcummnunity.ru.com", - "discordgiftsteam.ru", - "cyber-lan.com", - "steam-communitygifts.xyz", - "stemcomnmunniity.com", - "discardapp.fun", - "discor.de", - "discocl.xyz", - "steamcommunity-tradeoffer.com", - "steancomnunytu.ru", - "streamcomnunlty.ru", - "stearmcommnunity.com", - "stemconmumity.ru", - "steamcommunti.com", - "ds-nitro.site", - "steamcomiunity.com", - "pubggf30.xyz", - "steam-nltro.ru", - "steamrommunity.org.ru", - "nitro-drop.com", - "services.runescape.rs-ui.xyz", - "katowice.ru", - "discovd.com", - "discord-help.com", - "stearmconmmunity.com", - "discords-developers.com", - "dlicord-glfts.site", - "steamcommnunity.ru.com", - "steamconmumity.com.ru", - "discordinfo.com", - "streamcommunly.me", - "diiscord.gift", - "discorid.gift", - "stearmcommuninty.com", - "steamcomunety.com", - "dliscord-nitro.com", - "steancommounity.com", - "discord-security.com", - "steamcommunitygifts1.xyz", - "sttemcomnmuty.ru.com", - "steamcommytuniu.com", - "esportpoint.xyz", - "doscordapp.com", - "steamcommunty.pw", - "steanncommity.co", - "sleamcomunity.ru.com", - "operationreptide.com", - "streamcammunitly.com", - "staemcommunninty.com", - "steamcommnunily.xyz", - "steamitem.xyz", - "steamcommunyty.ru.com", - "discordsapp.xyz", - "discordappo.com", - "steamcommunnjty.com", - "steanmcomrninuty.xyz", - "disclord.com", - "discord-app.info", - "steamcommunityi.com", - "esportsgvay.xyz", - "staemmcommunity.ru", - "steamcommynnityy.com", - "steamcommumlity.com", - "discord-nitro-free.ru", - "stemcomminuty.ru", - "steeamcomunity.net", - "stemcumnmunity.com.ru", - "sleamcommunity.net", - "steamcomunity.me", - "sterncommunnity.ru", - "stearmcommuunity.ru", - "disiscord.com", - "steomcommunitey.com", - "discordapp.pages.dev", - "steam-powered1.xyz", - "stemcomunnity.com", - "dlscord-nltro.com", - "steam-tradehome.xyz", - "steamcornmuniity.net.ru", - "stheamcornmunitiy.ru", - "stemcomnunity.ru", - "steamsourcecommunity1.xyz", - "dlscord.online", - "pubggift92.xyz", - "disc-ord.com", - "discord-airdrop.xyz", - "discordappp.net", - "testbot2021.ru", - "summer-rust.xyz", - "steamconnunity.net", - "discord.fyi", - "steamcommunicty.ru.com", - "steam-power.xyz", - "slteamcommuinity.com", - "stemcornmunitly.ru.com", - "discordnitropromo.site", - "steamcommuntily.ru", - "disordnitros.xyz", - "staemcommunity.org", - "discord-net-labs.com", - "steamcommunety.org.ru", - "steamnltros.ru", - "discord-apps.site", - "steamhome-trade.xyz", - "rl-promos.com", - "discord-hypesquad.com", - "store.stampowered.com", - "steamcommynitu.net.ru", - "steamcommuniltily.ru.com", - "steamcomyniti.xyz", - "steancommuncity.ru", - "steancommuniit.ru.com", - "discord-nitro.ru.com", - "discorcd-nitro.com", - "sreamcommunity.net.ru", - "steancommnunitytradeoffer.xyz", - "steancomunite-xuz.ru", - "humanlifeof.xyz", - "steamcommunnity.co", - "navi-esl.ru.com", - "discord.deals", - "steamcommulnity.com", - "stearcommunitly.com", - "discodrd.com", - "csgo-lute.net.ru", - "discord-givaewey.ru", - "pubggf35.xyz", - "streampowered.store", - "steamconnumuty.com", - "twitch.rust-ltd.com", - "steamcommintty.com", - "steamcommunitiyy.com", - "dicordapp.com", - "discord-hypeevent.com", - "steamcommunitywork.com", - "discorcl.club", - "discorcl.ru", - "pandaskins.ru.com", - "steamcommunjtv.xyz", - "stearnconmunity.com", - "steaamcammunitiy.com", - "discocrd.gift", - "steamcomunity.org.ru", - "steamcommnuty.site", - "steamuppowered.com", - "sternmconmunity.com", - "sleammcommunity.ru", - "pubggf41.xyz", - "dlscordsream.pp.ua", - "steamcommunlty.shop", - "discordsgift.info", - "steamncomunitity.com", - "steamcommunrity.com", - "steamcomnutiny.ru.com", - "discord-app.top", - "stearncommmunity.online", - "steamecommunitiiy.com", - "steamcommnlty.com", - "staermcrommunity.me", - "steancommuinty.ru", - "astrallis.net.ru", - "steamcommunimty.ru.com", - "fineplay.xyz", - "sleamcommuinity.xyz", - "steancommunmilty.com", - "stemcommnuunity.com", - "stearncommunitly.xyz", - "discord-infoapp.xyz", - "steemcommunity.ru.com", - "streamcommunitily.com", - "juct-case.ru", - "stearnporewed.ru.com", - "discord.moscow", - "steamcommunity.click", - "copyrightbussinessgroup.com", - "steampower.de", - "steamcomunty.org.ru", - "streamconnunity.ru", - "staemcornmunity.ru", - "discord-sms.eu", - "discord-bugs.com", - "dlscord-developer.com", - "dlscordapp.codes", - "discordpap.com", - "stemcomunity.ru.com", - "steamcomminyty.ru.com", - "steamcommurnity.com", - "streamcommnunlity.ru", - "steanncammunlte.com", - "steamcommutry.ru", - "rl-garage.online", - "steeamcommunlity.com", - "steamcommnnunnity.world", - "steamconmunyty.ru", - "steancomnmunity.ru", - "givenatus.site", - "dsicrod.com", - "dicovrd.com", - "stearncomnmunity.com", - "steamconnummity.ru", - "steanpowered.xyz", - "staemcomunity.ru", - "steamcumumunity.com.ru", - "steamcommunity-profile.net", - "discorrd.site", - "discordl.xyz", - "steampowered-swap1.xyz", - "sleamcommunnity.net", - "steamncommunitu.co", - "steeamcommunnuity.ru.com", - "discordevents.com", - "myfast.ru", - "discord-accept.com", - "streamcommuniti.xyz", - "stleamcommunitty.com", - "discord.biz", - "steamco.mmunity.com", - "giftdiscord.online", - "steamcommuunlity.com", - "steamcornmunit.ru.com", - "discrodnitro.ru", - "stearncornmnuity.ru", - "steamcommutyniu.com", - "discard.gift", - "natus-open.pp.ru", - "dixscord.com", - "steamcommunity.cloud", - "staemcomconmunlty.ru.com", - "tradeoffer.com.ru", - "sleamcommuniitey.ru.com", - "discord-nitro.co", - "discordl.com", - "qbt-giveaway.info", - "disc0rd-nitro.site", - "discrod-app.site", - "discord-accounts.com", - "csgorun-rubonus.ru", - "nitroappstore.com", - "steamcamunity.com", - "fornite.best", - "steanmncommunity.com", - "dlscord.net", - "vitality-playtime.com", - "steampoweredkey.com", - "navi-giveaway.xyz", - "streamcommunyty.com", - "derwoood.xyz", - "staermcrommunty.me", - "drops4all.pp.ru", - "steancommuniite.xyz", - "streancoommunity.com", - "steamcommunity.eu", - "dicord.gift", - "steamppwrred.com", - "discord.best", - "duscord.js.org", - "discorcl.store", - "steamcomrmunity.ru.com", - "steeamcommmunitty.site", - "discord-jobs.com", - "steamcomnunity.com", - "steamcommunnity.ml", - "streamcommunity.org.ru", - "discordtext.com", - "steampowerered.com", - "steam-ru.ru", - "bigsports.xyz", - "discords-dev.ga", - "steancommunitty.com", - "steamcommunity-comtradeoffer.ru", - "stearncornrnuity.com", - "steamcommunitu.net", - "steamtrade-home.xyz", - "steammcomminity.ru", - "steanncomnmunity.com", - "streamcommmunlty.ru.com", - "dIscordnitro.com", - "steamcomrnunity.online", - "discordjob.com", - "steamcommunutii.ru", - "dlscord.org", - "dlscord-claim.com", - "steamcomniunity.com", - "staemcoommunlty.ru", - "streamcommunity.ru.com", - "steancommunity.ru.com", - "steancommanty.ru.com", - "discord-nitro.store", - "discordi.gift", - "discourd.site", - "rust-llc.com", - "dissord.com", - "stearncommunnity.xyz", - "steamcommuniilty.ru", - "steampowered.jcharante.com", - "share.nowblox.com", - "stemcommnunity.com", - "streamcommmunnlty.ru.com", - "staemcoommnunity.ru", - "steamcommunytiu.com", - "steamcomnumity.org.ru", - "steamcommqnity.com", - "discoogs.com", - "v-roblox.com", - "wavebtc.com", - "steamcsgoplay.ru", - "steam.communty.com", - "csgogift47.xyz", - "ww11.steamcommunity.download", - "steamcommunityw.com", - "steamconnmunitu.net.ru", - "discordstat.com", - "m-discord.pw", - "dicsord-gift.com", - "disrcod.gifts", - "steannconmunity.com", - "disc0rd.site", - "ropost15.xyz", - "fnatic-ro1ls.ru.com", - "discrodsteam.ru", - "streamcomnmunity.ru.com", - "discorcl.click", - "staemcomnunlty.ru", - "steam.cheap", - "discordgift.org", - "steamcromnmunity-com.profiles-7685981598976.me", - "deadisidddde.xyz", - "discords-steam.com", - "streamcommunnilty.com", - "steamconnmunlty.ru", - "steacommunity.site", - "steamcomunitytrades.xyz", - "steemcomunity.net.ru", - "steamcommunity.digital", - "steamcomrnuniti.ru.com", - "www.d-nitro.tk", - "steamcomnunytu.ru", - "steemcommunly.com", - "discords-gift.ru", - "steamcommynutiy.ru", - "streamcummunlty.xyz", - "staempovered.com", - "streamcommuniity.ru", - "steancomnunilty.ru", - "steancommunity.pw", - "accountauthorization.xyz", - "staemcornmunity.xyz", - "streamcomnnunuty.com", - "streamcommuunilty.ru.com", - "discord-alidrop.me", - "stearmconmunnity.com", - "stemcommyunity.ru", - "steamcomrnunite.com", - "steemcoomunity.xyz", - "playeslseries.com", - "www.zipsetgo.com", - "discord-nilro.ru", - "discord-verify.com", - "streamcommuniliiey.net.ru", - "steawcommunity.com", - "dicsord.net", - "steamcommumilty.com", - "discordrgift.online", - "discod-nitro.ru", - "staeamconnunitly.ru", - "operationriptide.tk", - "discord-present.ru", - "discord-trustandsafety.com", - "navi-skins.pp.ru", - "discorcl-gift.ru.com", - "steamcommunillty.ru", - "streamcomunity.fun", - "steamcomnunitly.tk", - "staemcomunyti.ru", - "discrodapp.ru", - "dlscordapp.store", - "new-drop.net.ru", - "steammcamunitu.com", - "sleamcomrnunity.com", - "steamlcommunity.ru.com", - "steamcoormmunity.com", - "discocord.com", - "staemcammunity.com", - "discord-hypevent.com", - "steamcomnumlty.ru", - "steamcommunitx.ru.com", - "steanncomnunity.xyz", - "roll-skins.ga", - "fortniteswapper.fun", - "game-case.ru", - "pubggift87.xyz", - "steamcomminytu.com", - "discoed.gg", - "steamcommunilty.us", - "stcommunity.xyz", - "streamconmunilty.com", - "discord-news.com", - "steam-discords.com", - "staemcommunyti.ru.com", - "steamcomnunuty.ru", - "steamcommunityc.com", - "steamcamunity-profile.ru", - "streamcommunitiy.com", - "steamecommuinty.com", - "m90694rb.beget.tech", - "discordss.ru", - "freenitrogenerator.cf", - "steemcoommuntiy.ru", - "stearncomminhty.com", - "but-three.xyz", - "csgostats.fun", - "sleamcommunnity.org", - "steamconimmunity.com", - "steam-community.org.ru", - "discorgift.xyz", - "steamcommunlity.ru.com", - "giftsdiscord.com", - "discordnitrogenerator.com", - "steancoommuniity.xyz", - "discorcl-nitro.ru.com", - "discordalts293.repl.co", - "discord-install.com", - "discord-apps.space", - "steamcammunlty.ru", - "discrodapp.site", - "streamcommuniity.org", - "discordx.ml", - "steamcommunityzbn.top", - "steancommeuniliy.ru.com", - "stleamcommunilty.com", - "steamconnunity.com.ru", - "fastskins.ru", - "streamcommuuniity.com", - "steamcomminuty.me", - "steancommuniite-xuz.ru", - "steamcommunity-gifts1.xyz", - "steamacommunity.com", - "discondapp.fun", - "gave-nitro.com", - "rust-code.ru.com", - "staemcomrnunity.ru", - "steamcammunitu.ru.com", - "stearncornmunity.com", - "steamcommunlty-proflle.com.ru", - "steamcomrnumity.com", - "steamcommunitie.site", - "steamcomrnunuity.ru.com", - "sleamcommiinuty.ru", - "discord-steams.com", - "stleamcommunitly.com", - "steamcomminuty.ru.com", - "steeamcomunnlty.com", - "discordgift.tk", - "seamconmunity.xyz", - "sternmcommunity.com", - "natus-win.pp.ru", - "steamcommullty.ru", - "steamcommuntily.ru.com", - "steanncomnuniity.online", - "pubggf40.xyz", - "discordnitrogift.ru", - "streamcommuntiiy.org", - "steampoweredoffers.xyz", - "steamcommunitry.ru", - "steancomminity.ru", - "steamconmnutiny.ru", - "games-code.ru.com", - "discord.app.br", - "lakskuns.xyz", - "www.cswanmei4.ru", - "disbordapp.com", - "steampowers.com", - "streamcommunity.net.ru", - "steamcommnity.com.ru", - "www.discord-nitro.net", - "stieamcommunity.com", - "guardian-angel.xyz", - "steancommuity.com", - "ptbdiscord.com", - "steamcamunity.top", - "disbords.com", - "fps-booster.pw", - "steam-gametrade.xyz", - "discord-give.ru", - "ggboom.ru", - "steamcammunity-profile.ru", - "dlscord-halloween.ru", - "staemcomminuty.online", - "stearncommuninity.com", - "steamcommunnity.ru.com", - "stleamcommuneety.com", - "steamcommynlty.com", - "stearncommunytiy.ru", - "discorcl.gift", - "cliscord-gift.ru.com", - "discorb.ru.com", - "staemcommuntyi.ru", - "stermcommunityy.ru", - "steamcomunnlty.com", - "stleamconmunity.com", - "steamcommmunty.com", - "alexandrkost.ru", - "discord-freenitro.pw", - "disc0rd.org", - "steamcomynnitu.net.ru", - "2faceteam.ml", - "steancammunity.com", - "streamcomnuniity.net", - "stg.steamcpowered.com", - "steamoffer-store.xyz", - "steamcommunityzci.top", - "discord-devs.com", - "steamcommunvti.ru", - "sternmcornmmunity.com", - "steamcommunitj.buzz", - "dirscod.com", - "steamcomnunnity.com", - "case-gift.com", - "steamcomnuunlty.com", - "streamcommunilty.com", - "steam-csgoplay.ru", - "steamcorrnmunity.ru", - "steamcomunitly.pp.ru", - "discord-ro.tk", - "gbauthorization.com", - "communitytradeoffer.com.ru", - "staeaemcornmunite.me", - "discord.my", - "steamcommnunlty.icu", - "staemcommuniity.com", - "steamcommununty.ru", - "stemcomnmuniity.ru.com", - "dlscordgived.xyz", - "steamcommunitiv.com", - "fnatic.team", - "steam-community.ru.com", - "globalcs.monster", - "steamconmuhlty.com", - "stearncommunity.net.ru", - "discorsd.com", - "luckycrush.ga", - "steamtrade-store.xyz", - "natus-vincere.space", - "stemconmmunnity.com", - "steam-game-csgo.ru", - "steamcommunitl.com", - "discord.cool", - "steamcoommuniity.ru", - "discourdapp.com", - "gamesbuy.net.ru", - "discoclapp.xyz", - "dlscordnitro.ru.com", - "discord-verification.com", - "steamc0munnity.site", - "steamcommunytu.ru", - "dlscordapp.fun", - "steamcammunity.net", - "board-nitro.com", - "steamcammunitu.com", - "discordgivenitro.com", - "steamcommunty.com", - "steempowered.com", - "steampowered.de", - "sleamcommuinty.store", - "robloxgamecode.com", - "steamcommunutry.com", - "discord.foundation", - "steampowwred.com", - "streamcomunnity.pp.ua", - "steamwcommunity.com", - "straemcummonilty.com", - "steampowered.irl.com.pk", - "steancommunlty.business", - "discord-app.su", - "steamtradeshome.xyz", - "stieamcomnnunity.com", - "steamcommurlty.com", - "stemcummnuity.ru.com", - "discord-team.com", - "discorcl-air.xyz", - "steamcomunituy.com", - "boostnitro.com", - "csgo-gamesteam.ru", - "doscord.com", - "steamservicedeals1.xyz", - "steammcomtradeoff.com", - "steamcommiunitty.ru", - "discordcreators.net", - "steammcommunitey.com", - "steamcommunllty.com", - "cupcsgo.ru", - "steam.luancort.com", - "steam-offerstore.xyz", - "steam-nltro.com", - "nitro-gift.site", - "cyber-csgo.link", - "belekevskeigames.xyz", - "sleamcommunity.org.ru", - "steampowerded.com", - "steamm.store", - "discord-gifted.ru.com", - "disocrdapp.com", - "steamcommunuity.net", - "discrods.site", - "espots-csgo.xyz", - "steamcommuunity.ru", - "streamcomnullyty.pp.ru", - "pubggf06.xyz", - "steanconmunyti.ru.com", - "stearmcornmunity.ru", - "sometheir.xyz", - "longxrun.online", - "steanncomnuniity.xyz", - "disrcod.gift", - "discord-air.pw", - "discord.co.in", - "discorcd.gifts", - "steamcommunitynow.com", - "dlscord.site", - "discord.gifte", - "go-cs.ru.com", - "nitro-discords.com", - "discordglfts.com", - "steamtrade-game.xyz", - "dlcsorcl.ru", - "steamtrades-store.xyz", - "steamcomnutiny.online", - "drop-nitro.fun", - "alm-gaming.com", - "discords-nitros.shop", - "discord-events.com", - "steancommnunity.ru", - "stemcornmunity.ru.com", - "steamcommunitey.ru", - "stemcornmunity.ru", - "storesteam-csgo.ru", - "dlscord-game.com", - "stleanmcommunity.ru", - "steamsomunity.com", - "steanconmumlty.com", - "sleamcommuninty.ru", - "pubggf28.xyz", - "discordglfts.xyz", - "steamcoarnmmnunity.ru.com", - "steamcammunyty.ru", - "discords-accounts.ru", - "steampowered.help", - "discordf.com", - "steamcommunity1.com", - "dizcord.com", - "steamcommunityzdr.top", - "rbux88.com", - "discords-premium.site", - "discord-nitro.shop", - "get-my-nitro.com", - "facepunch-award.com", - "steancommynitu.com", - "streamcomunilty.net.ru", - "steancommunitiy.com.ru", - "seed-nitro.com", - "staermcormmunity.com", - "smitecommunity.org", - "discodnitro.ru", - "discordimages.com", - "beststeam.gq", - "steemcommunty.org.ru", - "discord.ltd", - "steam-csgocom.ru", - "streamcomunlty.pp.ru", - "discord.tools", - "discprd.com", - "stearmcommynity.fun", - "steancoommunity.com", - "cupwin.xyz", - "dlscord.gifts", - "discord-applications.com", - "steamcommunity.team", - "csgo-fute.net.ru", - "discord.istanbul", - "steamcommunitytradeoffter.com", - "sleamcoommunilty.com", - "steammecommunity.com", - "steamcommunitym.com", - "pubggf32.xyz", - "pubgfreedownload.org", - "steamcommunitty.net", - "stemcoomnmunnity.com", - "steemcommunty.pp.ru", - "stearmcomrmunity.com", - "achnavi.net.ru", - "steampwered.com", - "pay-18.info", - "steamcommiunty.ru", - "discord-steam.ru", - "dissord.ru", - "sleamcommuntity.ru", - "discorclgift.xyz", - "steamconmumity.ru", - "steamncommnunity.ru", - "discordnitro.store", - "steamcomnunlty.ru", - "stiamcomunlty.ru", - "dislcord.com", - "proz.monster", - "steamcommunitiu.ru", - "discordtesters.com", - "csgo-steamplay.ru", - "stemcammuniity.com", - "stearncommuniity.click", - "loot.net.ru", - "sleamcommynitu.ru", - "steamcamunity.xyz", - "discordgamers.co.uk", - "steam-auth.com", - "staemncrommunity.store", - "discordnitrolink.tk", - "staemcommunnity.club", - "steamcomnuniti.com", - "store-communitiy.com", - "discords-nitro.site", - "robuxtools.me", - "steancommuniiliy.ru.com", - "steamcommonitey.com", - "staemcomnunyti.ru", - "steamcommunicty.com", - "steamcoommunity.ru.com", - "steamcomnuty.com", - "steeamcommunity.me", - "streamcommuninty.com", - "steammcomminuty.ru", - "discordgifts.info", - "steamcomminytiy.ru", - "steamcornmmunity.com", - "discorcd.click", - "stermncommunity.com", - "stteamcommiunity.com", - "stmemcomyunity.com", - "steam.cards", - "steamccommunity.net", - "streamcommiunnity.com", - "www.www.discord-nitro.ru.com", - "robux20.club", - "dlscordapp.com", - "steemcoonmuntiy.ru", - "dlscordnltro.online", - "steamcomunitu.net.ru", - "steamcommuulty.com", - "discford.com", - "steamoffergames.xyz", - "www.xpromo-discord.com", - "discor-dnitro.fun", - "events-discord.com", - "pubggf34.xyz", - "boost-discord.com", - "robloxdownload.org", - "discorb.gift", - "steamcommunity.llc", - "streamcommuntly.org.ru", - "staemcoommnuty.ru", - "steamcommunnity.com.ru", - "steamcommunitycomoffernewpartner989791155tokenjbhldtj6.trade", - "steamcommynuty.ru.com", - "steam-promo-page.ml", - "steamcoomrnmunity.ml", - "steamcornrnunity.fun", - "stjeamcomuniity.ru", - "steam-account.ru.com", - "steamcomunnyti.ru", - "steamconunlty.ru", - "steamcommuynity.ru.com", - "steemcommuinty.com", - "discrod-apps.ru", - "sleamcommuntly.ru", - "steamconmunlty.com", - "steemcoomuunity.ru", - "steampowerd.net", - "dicsord-app.com", - "steampawered.store", - "discorc-nitro.site", - "bycsdu.cam", - "steancomnuilty.ru.com", - "steeampowered.tk", - "eslhubgaming.com", - "nitro-from-steam.com", - "cs-play.org.ru", - "steammcounity.ru.com", - "facepunchs.com", - "steamconmunity.xyz", - "discord-ru.site", - "nitro-discord.me", - "special4u.xyz", - "steam-hometrade.xyz", - "didscord.com", - "hunts.monster", - "discord-bonus.ru", - "discord-app.live", - "streamcomminuty.ru.com", - "steancommunity.link", - "steamcomninuty.ru.com", - "stearncomminuty.com", - "discord-free-nitro.ru", - "discorapp.gq", - "streancomunnuty.com", - "steamcomnuenuity.com", - "steam-communitysource1.xyz", - "staemcommuinity.com", - "stearncornnumyty.com", - "steamcommuntry.com", - "discordapp.eu", - "rl-chaser.com", - "steamecommuniuty.com", - "discord.givaeway.com", - "discordicon.com", - "game-tournaments.net.ru", - "steancommunity.cc", - "dawbab.xyz", - "nitrostore.org", - "steamcommuhity.ru", - "staeamcromnuninty.com.profiles-76582109509.me", - "steam-discord.ru", - "luancort.com", - "stearncommubity.com", - "steannconnmunity.com", - "stearncommnuinty.com", - "sleamcommmuntiy.ru", - "stearncommunity.link", - "sa-mcdonalds.com", - "steamcommunityzds.top", - "disc.cool", - "discrod-up.ru", - "streamcomnully.org.ru", - "steamcomunilty.com", - "streammcommunity.ru", - "www.claim.robuxat.com", - "streamcommuniitty.com", - "steamtrades.com", - "sleamconmunlity.com", - "discorcl.gifts", - "steamcomminuty.nl", - "stearncornurniity.xyz", - "steamtrade-store1.xyz", - "steempowerd.ru", - "stieamcormnynity.ru.com", - "casekey.ru.com", - "steamcominity.ru", - "bitskeansell.ru", - "steanconmunlly.ru", - "dirscod.gift", - "steamcommunity.ru", - "www.staemcommmunity.ru", - "dlscord-nltro.xyz", - "discord-app.store", - "rushskillz.net.ru", - "sleamcommmunity.com", - "steamcommunitry.com", - "discordbetter.app", - "discord-nitrot.xyz", - "discordaspp.com", - "steampoowered.com", - "stealcommunlti.com", - "pubgmobile365.giftcodehot.net", - "playcsgo-steam.ru", - "steancoomnuity.com", - "bycdu.cam", - "steamcommunitmy.ru.com", - "steamcommumity.net", - "streamcommunily.me", - "stermmcomuniity.ru", - "azimovcase.tk", - "drop-nitro.com", - "stearamcomminnity.net", - "steampoewred.com", - "steanncommunily.com", - "steomconmunity.com", - "streamcummunity.ru.com", - "dsicord.gift", - "www.hdiscordapp.com", - "steasmpowered.com", - "steaemcomunity.com", - "gift-discord.online", - "tradeoff.space", - "steamcommunniity.net", - "dlscord-app.ru.com", - "steamcommunity.cn", - "rust.facepunchs.com", - "steamcommunnitey.com", - "steamcommunitity.com", - "rollgame.net.ru", - "www.steam-community.ru.com", - "robuxx.work", - "staemcoomuunity.xyz", - "steancammunlte.com", - "stiamcommunity.com", - "steamcommunlitly.ru", - "diskord.ru.com", - "discordsteam.com", - "steamcommuntiy.com", - "steamscommunitey.com", - "steancommunite.site", - "steawcommunity.net", - "stiamcomynity.com", - "steamcommunnity.ru", - "steamcomnunitiy.ru", - "case-magic.space", - "sleamcommunityy.me", - "steamscommunity.com", - "discorcl.ru.com", - "ggdrop1.net.ru", - "ssteampowered.com", - "discord.pp.ru", - "m.setampowered.com", - "stiemconnumity.xyz", - "steamcommunity.at", - "steam.comnunity.com", - "discord-halloween.com", - "discord-promo.info", - "steamcommunitywork.ml", - "kingofqueens2021.github.io", - "discord-stemdrop.me", - "stearncomnunily.com", - "discord-faq.com", - "steamcommunitly.me", - "steamcommiynitiy.net.ru", - "thor-case.net.ru", - "discordapp.ir", - "steamcomnmunity.com.ru", - "howls.monster", - "steamtradehome.xyz", - "stjeamconmunnitii.com", - "steemcomunity.me", - "streamccomunilty.com", - "disord.gift", - "discordtest.xyz", - "steamtradeoffer.net", - "navi-winners.org.ru", - "discords-hypesquads.com", - "steamcomnunityprofile.ru.com", - "discords-teams.com", - "steancommnnity.com", - "steammcommunety.com", - "sueamcommunity.com", - "gavenitro.com", - "disordgifts.com", - "free-nitro-sus.pages.dev", - "pubge21.xyz", - "steemcommunitry.com", - "steamcomunnitly.ru.com", - "discordsnitros.one", - "discorcd.gift", - "stearncommynity.ru.com", - "streamcrommunify.me", - "discordnitro.altervista.org", - "dlscord-gift.com", - "steamcommunityzdp.top", - "stearmcomrnunity.com", - "steam-csgogame.ru", - "discord-app.cc", - "sleamcommunlty.net", - "iscord.gift", - "discord-helpers.com", - "stleamcormunity.ru.com", - "stemcomnmuity.com", - "stteamcommunitty.com", - "steam-support.xyz", - "steamproxy.net", - "steamconnmuhity.com", - "discordsnitro.com", - "seancommunity.com", - "steamcomunnity.ru.com", - "steamccommunityy.ru", - "steamgiftcards.cf", - "steamcomrnlnuty.site", - "discord-apply.com", - "steamcomrmunnuity.ru.com", - "pubggift91.xyz", - "stermcommunity.ru.com", - "steamcommnuitty.com", - "luckydrop.site", - "cashy.monster", - "stearncommunytiyu.ru", - "steamconmunity.co", - "streamcommunttly.com", - "steampowder.com", - "discordtotal.com", - "riptideoperation.xyz", - "discord-app.gift", - "discord-info.com", - "steamcommnunitlu.com", - "steamcommnnunity.ru", - "steamcomnunuty.com", - "trustpool.xyz", - "come-nitro.com", - "streamcommunify.com", - "slreamcomunntiy.org", - "steamcommunihty.com", - "stearmcommnumity.com", - "discodapp.net", - "steamcommunillty.net.ru", - "streamcomunlty.net.ru", - "steancommunitytradeaffer.xyz", - "www.scwanmei.ru", - "stearncomynity.ru", - "steawncomnunity.ru", - "staemcomnuinty.ru", - "discorcl.fun", - "steamcommunutiy.com", - "diwcord.com", - "steamcomrninuty.link", - "steemcomnmunity.com", - "ww1.discordapp.org", - "freediskord-nitro.xyz", - "steanncomunity.com", - "discordgive.ru.com", - "discords-support.com", - "discvordapp.com", - "order-96.com", - "discord-get.ru", - "discorg.gg", - "steamconmumltu.com.ru", - "staemcommunily.ru.com", - "streamcomunnity.xyz", - "discordnitro.club", - "discordcdn.sa.com", - "steamcommunity.trade", - "www.steamcommunity.co", - "stemcoomnmuniity.com", - "marketsleam.xyz", - "steamccommyunity.com", - "steammcommunily.net.ru", - "steam4you.online", - "discord-gift.online", - "steamconunity.tk", - "facepunchskins.com", - "pubg.network", - "discordnitro.link", - "stjeamcomnuminiti.ru", - "steaamcamunity.com", - "steumcommunity.ru", - "dlscordglft.xyz", - "crosflah.online", - "pubggift97.xyz", - "riptidefree.ru", - "discord-verify.ru", - "loot.pp.ru", - "pubggf23.xyz", - "xpro.ws", - "stieamcommunitey.ru", - "steamcomunitu.ru", - "streamconunity.net.ru", - "discorcl.link", - "csgosteam-play.ru", - "steamccommunyty.ru", - "steamcomminytu.click", - "staemcommunlty.fun", - "steamcommunitytradeoffer.ru", - "discapp.info", - "steampowered.freeskins.ru.com", - "discordapp.help", - "steamgame-csgo.ru", - "drumairabubakar.com", - "steamcommunityzdd.top", - "steamcommuniiity.com", - "cllscordapp.fun", - "discordboost.net", - "discord-o.com", - "discord-accounts.ru", - "discordtts.com", - "discordapps.gifts", - "autumnbot.cloud", - "steam-offersgames.xyz", - "discordup.ru", - "discord-mega.xyz", - "dsctnitro.site", - "staemcommuntly.ru", - "discords-moderation.com", - "stemcommuniby.com", - "dlscordapps.com", - "disocrd.tk", - "steamcommunnity.net", - "steanconmunlty.ru", - "steamcommnutly.ru.com", - "steamcommunitytradeoffer.com", - "steamswap.xyz", - "steamcoomunlty.ru", - "steemcommuniry.com", - "sleam-trade.net.ru", - "steamcommunutuy.com", - "sleamcommunityprofiles76561199056426944.ru", - "sleamcornmunuity.me", - "discord-support.tech", - "giftsdiscord.ru", - "steamconmnmunity.ru", - "streamcommunicate.ru", - "streamcommnnutiy.com", - "pubgmobileuc2020free.cf", - "ezdiscord.xyz", - "steamcommunity.com.ru", - "streamcommunitry.ru", - "steamcommunityzda.top", - "sleamcommuniity.ru.com", - "steamcoomunlty.com", - "steamcommununty-con.ru", - "stemcommuniity.ru", - "steamcommunityzbq.top", - "stearncommumity.com", - "topvincere.net.ru", - "stemcommunitytrade.com", - "steemcommunllty.com", - "streamcomynity.ru.com", - "dicsords.ru", - "discordadpp.com", - "discorrdapp.com", - "beta.discorder.app", - "dlscord-app.net", - "pubgfreeeus.cf", - "disord.codes", - "onehave.xyz", - "discords.gifts", - "steamcomnunnlty.ru", - "dliscord-glft.ru.com", - "steemcommnnity.com", - "steanncomunitly.co", - "streamcoommuniity.xyz", - "steamcommunitycomtradeoffer.ru.com", - "discordnitrosteam.com", - "disocordapp.com", - "steamcomnnuty.ru", - "stearncommunlity.com", - "stieamcommuniity.com", - "stemcomunity.net", - "awirabigmoneyroll.xyz", - "discord.tw", - "dliscord.us", - "steamcommunity-nitrogeneral.ru", - "steamsourcecommunity.xyz", - "discord-nitrogift.ru", - "steanmconmunity.com", - "premium-discord.com", - "steamcomrnunity.com.ru", - "discord-give.pw", - "steamcommunety.ru", - "mychaelknight.com", - "setamcommunity.com", - "steamcommmunitty.site", - "disco3d.app", - "tik-team-topp.org.ru", - "gdiscord.com", - "discordq.com", - "steamcomminity.com", - "sleamcommunitu.net.ru", - "g2-esports.moscow", - "steamcommurlity.com", - "stearncommunivy.com", - "fortuneroll.tk", - "steamcommunifly.ru.com", - "steamcommyunity.com", - "stearmcommnity.com", - "disclrd.com", - "quick-cup.xyz", - "steamccommunity.ru.com", - "giveawaynitro.com", - "steamcommunitygifts.xyz", - "copyrightbusinessgroup.com", - "nav-s1.ru", - "magicrun.site", - "steamcommntiy.xyz", - "steanammunuty.ml", - "steanncommnunyti.com", - "sleamcomnunity.net.ru", - "discord-exploits.tk", - "steamconmunjty.com", - "stearncommuntty.com", - "robloxbing.com", - "steawmcomuunity.ru", - "steamcomunyti.com", - "discrd.gg", - "riptide-operation.ru.com", - "steampoeer.com", - "sleamcommunittyy.me", - "steamcommunieityi.com", - "steamcoomunitye.com", - "staempowered.xyz", - "fortnight.space", - "discod.fun", - "discordpp.com", - "diiscordapp.com", - "steamcommuniltiy.online", - "eslgaming-play.com", - "stemcommuunity.com.ru", - "nitrodiscord.org", - "streamcommnunilty.com", - "dlscorcl.info", - "sreamcommunity.org.ru", - "3ds-security.xyz", - "steancommnunlty.ru", - "mythicups.xyz", - "dIscord.net", - "streamcomunitry.com", - "stemcormmunlty.ru.com", - "robloxwheelspin.com", - "steamru.org", - "steanncomunitly.ru.com", - "stearncormunity.ru", - "streamcommunite.com", - "stemcommunjty.com", - "steamcomnnunity.co", - "steancomnunity.com", - "steamcommunity.rest", - "authnet.cf", - "discorcll.online", - "eslquickseries.com", - "stemacomunity.com", - "dscrd.club", - "discordiapp.fun", - "webr-roblox.com", - "steamnconmunity.ru.com", - "stearnconmumity.com", - "steamcomnunity.ru", - "steamrcommuniity.com", - "csgodirect.xyz", - "magifcrolrlc.xyz", - "steam-nltros.ru", - "streamcommuniunity.com", - "streancommumity.ru.com", - "steemcoommunity.com", - "steamcoommunllty.com", - "viwwzagul.xyz", - "steancomminity.com", - "ddiscord.com", - "slreamcommunntiy.org", - "steamconnuniitty.tk", - "discord-verif.ga", - "steamcommynitry.ru", - "nitrotypehack.club", - "reports.noodlesawp.ru", - "steeamcomuneety.com", - "steamcommunltyy.com", - "streamcommnuity.com", - "staemcommunety.com", - "dlscord-glft.pw", - "steampowwered.com", - "steam-play-csgo.ru", - "steamcomuniti.xyz", - "cs-dump.org.ru", - "steampewered.com", - "steamcronnmmuniry.me", - "steaamcommunnity.co", - "steamconynuyty.org.ru", - "discord-xnitro.com", - "steampowred.ru", - "free-dislcordnitrlos.ru", - "csrandom.monster", - "steaimcommuniity.com", - "steammcomunnity.com", - "discond.ru.com", - "steamcommuniry.com", - "discords.biz", - "discordnitro.cc", - "steamcommyniti.ru", - "big.org.ru", - "discord-hse.com", - "discordcheats.net", - "discordapp.pw", - "duiscord.com", - "disbored.com", - "discord.co.za", - "steamcornrnunity.com.ru", - "nitro-up.com", - "steamwcommunity.net", - "dscord.nl", - "discorde.xyz", - "steamcommunilty.buzz", - "steamcommunity.de", - "steamcommuniry.net.ru", - "steamcomnmufly.ru.com", - "streamecommuniity.com", - "ste.amcommunity.com", - "streamcommnunitly.com", - "gocsx8.ru", - "steamco.ru", - "steamcommnnity.net.ru", - "facerit.com", - "dscordapp.com", - "dlscord.store", - "steamnitros.ru", - "discordp.ml", - "www.disxcord.com", - "staemcommunility.com", - "xdiscord.com", - "discord-shop.fun", - "2023g.com", - "discords-nitroapp.xyz", - "csgorun.pro-login.ru", - "dlscord.cc", - "ww8.steamcommmunity.ru.com", - "steamconnunlty.com", - "steancommuuniliiy.ru.com", - "discord-cpp.com", - "discord-gift-nitro.site", - "discord-com-free.ru", - "stleamconmmunity.ru.com", - "steamtradeoffeer.com", - "get-nitro.net", - "stemecommunlty.com", - "disc0rd-app.ru.com", - "dfiscord.com", - "stearncommunlty.site", - "steamcomrnunity.xyz", - "stearncommunily.website", - "steamcamunnity.xyz", - "steanncomunitli.ru.com", - "divinegardens.xyx", - "steampowereed.com", - "cs-legend.xyz", - "discokrd.com", - "steamcommunytiy.tk", - "stemacommunity.net", - "sleamcommunnitu.com", - "steamcommunyti.com", - "steamstradecommunity.xyz", - "steencommunilty.com", - "streamcommunty.co", - "steacommunilty.ru.com", - "nitroairdrop.com", - "rustg1fts.online", - "pubgmobilespro.my.id", - "streamconnunitly.com", - "diisscord.club", - "sleamcommunytu.ru", - "csgogift45.xyz", - "natustop.net.ru", - "jjdiscord.com", - "mcdonalds-saudiarabia.com", - "discort.site", - "steamcoummunitiy.com", - "discourd.info", - "steamcommunnlity.ru", - "discordinfo.ru", - "stleamcommunity.net", - "streamcomrnunity.com", - "discordservice.com", - "stearncornrnunity.com", - "steanmcommunity.ru", - "steamrolls.net.ru", - "www.steamcommunity.de", - "steamunpowered.com", - "steamncommuinity.com", - "dlscord-app.info", - "steamcokmunity.com", - "dioscord.com", - "streamcommuniiley.net.ru", - "steamcommtity.com", - "sleamcommuntiny.ru", - "driscord.ru.com", - "affix-cup.link", - "discord-give.net", - "steamcomuntty.com", - "steamscommunity.pro", - "pubggift93.xyz", - "steamcoominuty.site", - "discorb.blog", - "fastdrop.win", - "discord-gift.us", - "okdiscord.com", - "steancommuniity.ru", - "sreamcommunty.com", - "discard.xyz", - "disconrd.com", - "s92673tu.beget.tech", - "freerobloxgenerator.tk", - "lan-pro.fun", - "steamcomumunty.com", - "discord-gifts.ru.com", - "steamcomrninuty.ru", - "steamcommninty.com", - "steancomnumlty.ru", - "yummy-nitro.com", - "stearmcommunity.one", - "discordrgift.com", - "luckygo.ru.com", - "dliscord-gift.ru.com", - "steamcommunity.steams.ga", - "steamcommumtiy.com", - "steampawared.club", - "steamcomnenity.ru.com", - "discordnitrogifts.pl", - "stenmcommunitly.ru.com", - "dirscordapp.com", - "robloxsecure.com", - "steamcomminytu.ru", - "freenitros.com", - "dicsord.ru", - "discoed.me", - "communitytradeoffer.com", - "steanmcommunity.com", - "steamsommunity.com", - "discord-nitro.eu", - "fang-operation.ru", - "linktrade.pp.ua", - "discord-nitro.gift", - "steamcommunlitily.ru.com", - "steamcommunilty.ru.com", - "discordapp.rip", - "steamcommunity.ru.net", - "steamcommunlitty.ru.com", - "ripetide.ru", - "steacommunty.ru", - "steamcommunity-profiles.ru.com", - "streamcommuiny.ru", - "hyper-tournament.xyz", - "steamcommunity-nitro.ru", - "streamcommunnty.me", - "streamcommunily.net", - "twitch.facepunchstudio.com", - "discord-up.ru", - "stearmcommrunity.com", - "steamcammuntiy.com", - "navination.site", - "buxquick.com", - "steamcommunityzdb.top", - "robux247.win", - "csgo-market.ru.com", - "steamcommunilty.it", - "dxiscord.com", - "steamkommunity.org.ru", - "streamconnmunity.com", - "duscord.com", - "steampoweredmarketing.com", - "discordgift.ru", - "steamcommunltu.com", - "lkdiscord.com", - "steancommumity.com", - "steamcomnnlty.com", - "streamcommunlty.net", - "steamcommunlte.ru", - "stearnmcommunnity.com", - "discordd.buzz", - "staemcomnumity.ru", - "discord-nitro.com", - "steamcommunirtly.ru.com", - "staerncornmunity.com", - "nacybersportvi.ru", - "steancomnunlty.ru", - "staeamconnunitly.online", - "steamcommnunylti.com", - "discoredapp.com", - "stjeamcomnunity.ru", - "steiamcommuinity.com", - "steamcommnity.store", - "discord-bot.com", - "streancommunity.ru.com", - "discordpromo.site", - "esl-proleague.net", - "navileague.xyz", - "streamcormmunity.ru.com", - "steeammcomunlty.com", - "streamcomunitly.com", - "streamcoumunnity.org", - "cashcsgo.ru", - "discord.family", - "nitro-app.com", - "streamcomunltyy.pp.ru", - "steamcommunitlu.com", - "discordnitro-gift.com", - "steamcommnunity.org.ru", - "pubggf31.xyz", - "101nitro.com", - "steampiwered.com", - "steamcomunitu.com", - "nitro-discord.fun", - "steamcommynitu.com", - "stemcormmunity.com", - "steamcommunittru.co", - "discoord.space", - "steamcommunitte.ru", - "stemcommuniity.com", - "steamconmunnitry.ru", - "djiscord.com", - "staemcommunity.ru", - "apps-discord.org", - "sleamconnunity.net", - "steamcoomminuty.site", - "discordcrasher.wtf", - "apps-nitro.com", - "stearnconrmunity.com", - "getcach.monster", - "stemcummunity.ru.com", - "steamcommunitu.com-profiles-mellenouz.trade", - "csgo-steam-game.ru", - "stealcommunity.com", - "steam-poweredoffers.xyz", - "steamcommunityzdt.top", - "steamcommunitl.net.ru", - "steamcommunity-source.xyz", - "staemcomrrunity.com", - "steamcomrrnunity.ru", - "disco.to", - "steamroll.org.ru", - "streamcomnullyty.org.ru", - "stearncomrninuty.ru", - "stearmcommunitly.ru", - "streamcomnumnity.ru.com", - "steamcommunillty.com", - "stemcommunitty.ru.com", - "robux-codes.ga", - "streamcomunltyy.org.ru", - "steamshensu.top", - "streamcoommunity.net", - "free-nitroi.ru", - "sleamcommuity.com", - "disxcord.com", - "discordgiftis.ru", - "stearncomrnunlty.site", - "csgift.fun", - "roblox.com.so", - "csgorun.pro-loginn.com", - "steancommuvity.com", - "steawmcommunity.net", - "discorsd.gifts", - "streamcommuniliey.net.ru", - "steemcommmunety.com", - "discord-halloween.ru.com", - "staemcommunlty.com", - "steamcommunrity.ru.com", - "stearncomrmunity.co", - "discord-egift.com", - "discord-airclrop.pw", - "gift-g2.ru", - "steampoweeed.com", - "steamcomnmunlty.com", - "discord.limited", - "stearncommnniity.ru", - "discordtokens2.repl.co", - "streamcommuniliiy.pp.ru", - "staemcoomnunty.ru", - "rustygift.site", - "discord-gifte.com", - "discords-hypesquad.com", - "stemcommunitty.com", - "luckyiwin.ml", - "steacommunity.com", - "discord-hype.com", - "dlscord-nitro.fun", - "sp708431.sitebeat.site", - "steancommumlty.com", - "steamchinacsgo.ru", - "en-roblox.com", - "nitro-airdrop.org", - "steamcomnuntty.ru.com", - "steamscomnunity.com", - "steancommuiniliy.ru.com", - "steemcommuunity.com", - "luckygo.ru", - "stearncommunrty.com", - "stearmcommunitty.ru.com", - "steamcommunity-xpubg.xyz", - "discordgif.com", - "robuxfree.us", - "steanconmnuity.com", - "steamcommunietiy.com", - "navi-drop2020.com", - "streamcommunication.com", - "www.shopy-nitro.tk", - "steamcomminuty.click", - "streamnconmunity.ru", - "sleamcommuunity.com", - "discordd.gift", - "eslplayworlds.com", - "stoacommunity.codes", - "steamcammunity.top", - "cteamcamnynity67823535672.xyz", - "stemcommunnity.com.ru", - "steamcommunlity.net", - "sternmcornnunity.com", - "navi-skins.org.ru", - "staemcommuniunity.com", - "steamcommunitiycom.ru", - "steamcomnunnity.net", - "fiscord.com", - "streamcommuntly.pp.ru", - "sleamcommunity.pp.ru", - "staemcoomuunity.ru", - "csgo-battle.ru", - "tournament.ru.com", - "steamcommunlty.biz", - "steamcommuity.ru", - "stearmcammunity.com", - "exaltedbot.xyz", - "steamcommnunitu.com", - "discord.eu", - "csgo-run.site", - "steammcomunity.ru", - "discordsteam.ru", - "discor.me", - "steampowered.tw", - "sleamcommunty.com", - "steamcommmuiniity.ru", - "esportgift.ru", - "discordcommunlty.com", - "discord-app.us", - "steamcommunliu.com", - "pubggift96.xyz", - "steamcommunity-gifts.xyz", - "discond-nitro.ru", - "stieamconnmunity.com", - "dlscocrd.com", - "steaamcommunnity.com", - "discord.org.ru", - "trade.ru.com", - "steamcornmunyti.ru", - "dlscordapp.info", - "disocrd.co", - "discord.online", - "dragonary-giveaway.info", - "stearncommuntity.com", - "sleamcommuniry.ru", - "steamid.ru", - "steamcomuniti.com", - "stermcommunnitty.ru", - "discord-tech.com", - "steam-communiity.ru", - "secure-instagram.ru", - "steemacommunity.com", - "steamcrommunlty.me", - "discocrd-nitro.com", - "jokedrop.ru", - "discord-nitro.cloud", - "dlscord.info", - "stearnconmunity.me", - "steamcommunlky.net.ru", - "steanconmunitly.ru", - "bitcoingenerator.cash", - "steamcommnunlty.xyz", - "discordaepp.com", - "steaimcoimmunity.com", - "steamcommynitu.ru", - "discord-hypesquade.com", - "skinroll.ru", - "steampoweredexchanges.xyz", - "steeamcommmunety.com", - "discord-nitro-free.ml", - "steamcommlnuty.com", - "listycommunity.ru", - "streamcomnullyty.net.ru", - "streamcommumity.ru.com", - "steamcomnumity.xyz", - "robuxfiends.com", - "streamcomuniitty.ru.com", - "discord-stat.com", - "steancommiunity.com", - "natus-open.org.ru", - "streamcormnmunity.ru.com", - "discordnltro.com", - "natus-vincere.ru", - "steamcommunitiyu.com", - "www.steamommunity.com", - "twitch.facepunch-llc.com", - "discordapp.co.uk", - "discordbothost.com", - "steamcommunityid.ru", - "stearncommiuty.co", - "streamcommuniliiey.pp.ru", - "steamcommunitlly.com", - "discord-get.click", - "steampowerred.com", - "straemcummonity.com", - "stearncomnumity.com", - "stearncomrnunitly.xyz", - "witch.tv", - "steamtrades-home.xyz", - "steamcommnunmity.com", - "steanmncomnunity.com", - "stearamcomnunitu.xyz", - "staemcommunnity.com", - "staemcommunty.ru", - "steamcommnutry.com", - "streamcommunitu.com", - "operationbroken.xyz", - "steancommunuty.com", - "discordgift.info", - "steamcommnuitly.com", - "discord-app.uk", - "ssteamcommunitry.com", - "steamconmiunity.ru", - "discord.marketing", - "steamcommunity-com.xyz", - "staemcommunulty.ru", - "steanmcomnunitiy.com", - "pandemidestekpaket.cf", - "stemcomuniti.ru", - "steamcommuitliy.com", - "steanncommunlty.com", - "steamcormmunity.com", - "discordgifts.ru", - "csgogf07.xyz", - "steamcommunity-tradeoffer.ru.com", - "streamcommuniuty.ru.com", - "streamcornnunitly.co", - "discord-list.cf", - "discord-app.io", - "steancoomunnity.com", - "steamcommuunity.ru.com", - "steamconmnunuty.ru.com", - "discorddaapp.com", - "sieamcommunity.org.ru", - "discords-nitro.xyz", - "prajyoth.me", - "steamconnunity.com", - "steamrccommunity.com", - "steamconmunuty.ru", - "rewardbuddy.me", - "quickrobux.net", - "steamcommuniteypowered.com", - "discorcl.ga", - "loot-item.xyz", - "steamcommynitu.ru.com", - "steamconmunitty.com", - "gameb-platform.com", - "freespoty.com", - "steaimcommunytiu.com", - "stemcomnunyti.ru.com", - "steamecommunitiy.com", - "steemcoomuntiy.ru", - "discosrd.com", - "steamcoommunety.com", - "steamoowered.com", - "steamcommunityc.ru", - "dlscord-app.ru", - "steamncommunity.xyz", - "disord.gifts", - "steam-announcements1.xyz", - "steamcornmunite.com", - "discord-nltro.ru", - "discordjs.tech", - "streamcomnultyy.org.ru", - "steamcammnuity.com", - "straemcommonlity.com", - "discordsub.com", - "discord-app.gifts", - "steaamcommunity.club", - "robloxxhacks.co", - "steamcommuity.com", - "steamcammuniety.com", - "steemcomunnity.com", - "sleamcomnnuniliy.site", - "dicsord.pw", - "stearnconmuntiy.ru", - "steeamcommunlity.ru", - "steamcommynity.icu", - "streancommunitiy.net.ru", - "dlscord-boost.fun", - "steampowored.com", - "navi-drop.net", - "discord-game.com", - "astresports.xyz", - "discordf.gift", - "dlscordnitro.store", - "steamcorrmunity.com", - "dlscordnitro.ru", - "stammcommunity.com", - "magik-dr0p.fun", - "sleamcoommunlilty.com", - "steamrolls.pp.ru", - "streancommunuty.ru", - "sleamcommunitu.ru", - "disocrd.codes", - "dlscord-app.com", - "dlscord-alirdrop.com", - "csgo-cyber.link", - "steamcommunllity.ru.com", - "steamcomminuly.ru", - "natus-lootbox.org.ru", - "steamcommutiny.xyz", - "key-dr0p.com", - "steemcammunlty.com", - "luckyfast.ru", - "2022yg.com", - "stearncommutiny.ru", - "price-claim.xyz", - "indereyn.ru.com", - "dlscord.blog", - "discorddrop.com", - "rust-charge.com", - "teamfnattic.org.ru", - "pubggf26.xyz", - "steamdlscords.com", - "dlscord.tech", - "steamconmnunity.ru", - "ww16.discordcanary.com", - "clove-nitro.com", - "discord-moderator.com", - "stemcoommunity.com", - "seancommunlty.ru", - "discord-halloween.link", - "steeammcomunity.com", - "gift-nitro.store", - "streamcomunily.net.ru", - "steancommuniiity.com", - "discordbagequiz.cf", - "steancommuity.ru", - "discorrd.com", - "cash.org.ru", - "stemcomminity.com", - "csgosteamcom.ru", - "streamcommuunniity.com", - "official-nitro.fun", - "steamsoftware.info", - "gamzgss-top.org.ru", - "streamcommunuitty.com", - "streamcomuniity.cf", - "steamconmnmnunity.ru", - "top-team.org.ru", - "discordsnitro.store", - "discord-giveaway.com", - "stemcomnnmunity.com", - "keydorp.me", - "steamcommnmunity.ru", - "stearnpowered.xyz", - "steamcommunity-trade.xyz", - "dlscard.ru", - "counterbase.ru.com", - "dicsord.gifts", - "dwaynejon.xyz", - "nitro.gift", - "steamcomnmuunity.ru.com", - "streamcommunliy.com", - "discord-apps.ru", - "steamcomminuty.repl.co", - "steamdocs.xyz", - "cyberegocscom.ru", - "verifyaccount-for-bluetick.com", - "sleamcommunity.me", - "steamcomnunllty.com", - "dciscord.com", - "steamcommunitie.ru", - "steamcommunity.net.in", - "csgosteam-game.ru", - "steamstoretrade1.xyz", - "steemcommuntiy.ru", - "steamcodesgen.com", - "discord-app.shop", - "pubggf15.xyz", - "steamcommunitfy.com", - "discordl.pw", - "steamgame-trade.xyz", - "g-games.store", - "stieamcommunitiy.com", - "stemcommunniity.com", - "steam-officialtrade.xyz", - "stjeamcoimmunity.com", - "www.freefireclaim.club", - "discord-nitro.net", - "pubggf38.xyz", - "discordglft.com", - "steeamcommmunity.com", - "steamcomminulty.ru", - "steam-tradeoffer.com", - "discord-halloween.ru", - "discor.gg", - "steamcommnity.ru", - "steamcommunityw.net.ru", - "streamcommuniliiy.org.ru", - "steamcommunlty.top", - "steanconmumity.com", - "halitaoz.cam", - "steampcwered.com", - "steam-poweredtrades.xyz", - "keysdropes.com", - "twitch-starter.com", - "dlscords.site", - "dlscordapp.pw", - "getnitrogen.org", - "streamcomnunitly.ru", - "stemconmmunity.com", - "steamnltro.com", - "csgotournaments.cf", - "stemcomnmunnity.com", - "magnavirollz.xyz", - "staemcommintu.ru", - "streamcoumunniity.org", - "steanmcomumnity.xyz", - "navi-freeskins.com", - "discordfrnitro.site", - "steaamcomunity.net", - "steamcoomunlty.net", - "steamcommunutty.ru", - "stayempowered.org", - "steeamcommunlty.com", - "staemcummunity.ru.com", - "www.steamcommunity.ca", - "stemcoomnmunity.com", - "steammcommuunityy.ru.com", - "discrordapp.com", - "pubggift99.xyz", - "streamcommuniuty.store", - "staemcommunitiy.com", - "stearncomrnunitly.site", - "discord-load.ru", - "steamcommunlty.info", - "stearncommunlty.ru", - "steamcammuinity.com", - "staemcrornmmunity.com.profiles-75921098086.me", - "stemcommunilty.ru", - "givaewey.com", - "sleamconmunity.xyz", - "csgocj-steam.work", - "discocrdapp.com", - "steampoweread.com", - "discord-nudes.live", - "discord-nitro.su", - "steamnitros.com", - "cs-dark.org.ru", - "robux.claimgifts.shop", - "steamcommunily.buzz", - "discorcl.info", - "steamnconmunity.com", - "discord-click.shop", - "navi-lzx.ru", - "free-niltross.ru", - "dsiscord.com", - "strearncomuniity.ru.com", - "dicordgift.ru.com", - "nitrlooss-free.ru", - "steamecommunity.pp.ua", - "discorcl.shop", - "steamcomrnunity.site", - "stleancommunity.ru", - "gocups.ru", - "stleamcormmunity.ru.com", - "magic-delfy.net.ru", - "steacomnmunity.com", - "blustcoin.com", - "discor.link", - "discordlapp.fun", - "mcdonaldsau.info", - "discxordapp.com", - "beast-winer.ru", - "steamcomunnuity.com", - "steamcomunety.ru", - "steamcommiuinity.com", - "dscord-generaot.store", - "dicsordnitro.info", - "discordqpp.com", - "streamcommuniy.ru", - "steamcommunityshop.com", - "steamcomnmnuty.ru", - "stiamcammunieti.com", - "steamhometrades.xyz", - "www.robux.claimgifts.shop", - "steamcammunitey.com", - "discord.cm", - "dlscord.art", - "stemcommunity.ru.com", - "fasttake.space", - "steampowerwd.com", - "robuux1.club", - "trade-leagues.com", - "stearncornminuty.com", - "steamcommunityzdq.top", - "power-sk1n.net.ru", - "discordappi.fun", - "dicsocrd.com", - "steampowerdwallet.com", - "discord-nitro.club", - "discord-information.ru", - "steamsnitro.ru", - "steancommuniti.com.ru", - "sdiscord.com", - "facepunch-twitch.com", - "sleamcomnumity.com", - "discord-sup.com", - "steacommunnity.com", - "stemcommounity.ru.com", - "steammatily.ru", - "stuamcommunity.com", - "steamccomunnity.ru.com", - "discordgift.com", - "discordgifts.com", - "app-nitro.com", - "stemcommlunity.com", - "stemcommuniti.ru", - "steamcommunittrade.xyz", - "sleamconmumity.com", - "steacmommunity.com", - "discordnitro.click", - "steamcommnuntiy.com", - "steamscommunity.ru", - "steamcomnmutly.ru.com", - "slreamcomunity.ru", - "steamcommenity.ru", - "discofd.com", - "tradeoffers.net.ru", - "stearncorrmunity.com", - "steeamcommunity.ru.com", - "sleamcomminity.ru", - "streamcommiumity.com", - "discordsite.repl.co", - "steamcornminuty.com", - "steamcommunity.support", - "microsup.net", - "csgogame-steam.ru", - "discurd.js.org", - "sleamcomnunily.ru", - "streamcormmyniity.ru.com", - "haste.monster", - "discord-gifts.site", - "steamcomminutiu.ru", - "riptide-operations.ru", - "steaamcommmunity.com", - "dlscord-inventory.fun", - "discrod.gg", - "dicrod.com", - "steamcomnunlty.ru.com", - "farestonpw.ru.com", - "cave-nitro.com", - "discords-app.com", - "csgogf01.xyz", - "steamcommnuninty.ru.com", - "steampwoered.com", - "discordnitro.space", - "steam-nitros.com", - "steamecommunity.org", - "stemcommunitytraade.xyz", - "discordalt5.repl.co", - "sleamscommunity.com", - "freeinstagramfollowersonline.com", - "streamcommuniley.net.ru", - "csgowans.ru", - "steam-community.xyz", - "discord-com-free.online", - "steanmcommuniuty.ru.com", - "steancommynity.org.ru", - "discrod-nitro.info", - "streamcomnunity.site", - "csgogf05.xyz", - "humnchck.co", - "natus-spot.pp.ru", - "promo-codes.world", - "aucryptohubs.com", - "getskins.monster", - "staemcornmuntiy.ru", - "tacelt.com", - "sleamconnunity.net.ru", - "streamcommunly.net", - "astralisgift.fun", - "dicoapp.pro", - "steemcommunty.ru", - "steamcomminity.ru.com", - "stermcomunniity.ru", - "sterampowered.com", - "dlscord.team", - "discord-give.com", - "dlscordsglfts.xyz", - "steamcomnunlity.com", - "gamepromo.net.ru", - "stearncomnunity.com", - "discord-games.cf", - "rustg1ft.com", - "sterncommunilty.site", - "dlscorcl.ru.com", - "discordnitrofree.xyz", - "sleamcommunituy.com", - "up-nitro.com", - "streancommuniity.ru.com", - "discord-nitro-free.xyz", - "steamcommuniry.ru", - "shib.events", - "freefireclaim.club", - "steanconmunitiy.co", - "streamcommuninnuity.com", - "steaemcamunity.xyz", - "steamcommuty.com", - "steamcomminytiu.com", - "discord-drop.xyz", - "steamcomnunllty.net", - "discordstaff.xyz", - "steamcommunltiy.club", - "steamcomminty.ru", - "steamunlocked.online", - "stemcomnnmunnity.com", - "fulldiscord.com", - "steamcommuniltly.com", - "steampowere.com", - "aoeah.promo-codes.world", - "discard.gg", - "roblox-robux.de", - "www.robuxat.com", - "steamcomnuiti.xyz", - "steemcommunity.co", - "discordappp.com", - "stemcomnmununity.com", - "stleaamcommunity.com", - "disord.co", - "sleamcommuintiy.ru.com", - "discordapp.vercel.app", - "steancommnuitty.com", - "discordgivenitro.ru.com", - "streamcommuntly.com", - "steamcommunityoff.com", - "discords-gift.com", - "steancommueniliy.ru.com", - "new-collects.xyz", - "csgo-store-steam.ru", - "cyber-csgo.space", - "roblox-porn.com", - "stoemcommunity.com", - "steamconmunity.com.ru", - "steamcommnunty.ru", - "riptide-gaming.ru", - "steamcommunitlly.net", - "styeampowerd.com", - "app-discord.com", - "services.runescape.rs-tt.xyz", - "steamcommnity.com", - "roblox.help", - "esportsfast.pp.ua", - "steamcommuinty.com.ru", - "stleamcommiynitu.ru", - "discorcl-app.ru", - "staemcornmunity.ru.com", - "steampowers.org", - "steamcommunuty.buzz", - "steamedpowered.com", - "steamcomnuntiy.com", - "steamtradesofer.com", - "discord-promotions.com", - "steemcommunily.ru.com", - "steammcommunnity.ru", - "streamcommnunity.ru", - "stleamcommuniity.com", - "steancommunity.net.ru", - "steamcomnunnirty.ru", - "stearmcommnunnity.org", - "steemurl.com", - "steemcommunityy.com", - "steamdesksupport.com", - "discord-giftef.xyz", - "streamcomnunely.com", - "discrdapp.cf", - "up-discord.ru", - "streamcommunitty.ru.com", - "steamcomunity.ru", - "pltw.com", - "steancomnumity.com", - "steamcomynity.ru", - "steancommuuity.com", - "steamconnnnunity.org.ru", - "steamcomunyiti.ru.com", - "disckordapp.com", - "steamcommunyty.xyz", - "discorld.com", - "steamcommuntyy.ru", - "www.ezdrp.ru", - "steamcomnulty.com", - "discordapp.ru.com", - "steancommunyti.com", - "steamsdiscord.com", - "steamcomnunilty.com", - "stleamconnunlty-tyztradeoffernewpartnhr15902271.xyz", - "2discord.ru", - "steamcornmunily.ru", - "steamcommuinuity.com", - "www.discordappporn.chat", - "staemcommmunity.com", - "discordapp.biz", - "dsnitro.xyz", - "steammatily.online", - "nawigiveavay.xyz", - "steamscommmunity.com", - "boosted-nitro.com", - "steamstore.map2.ssl.hwcdn.net", - "rien.xyz", - "key-drcp.com", - "dlscordapp.ru", - "sieamcommunity.net.ru", - "steampowered-swap.xyz", - "steanconmunuty.ru", - "streammcomunittty.ru", - "discordtotal.net", - "stepmscononnity.com", - "stearncornmunity.ru.com", - "discord-give.xyz", - "discordapplication.com", - "streamcoommunity.xyz", - "dizcord.app", - "navigg.org.ru", - "steamnconnmunity.com", - "steancommuineliy.ru.com", - "output-nitro.com", - "steamcormrunity.com", - "steamcommuniyt.com", - "diacordapp.com", - "discord.ru.net", - "discsord.com", - "steemcomrnunity.com", - "steamicommunnity.com", - "dijscord.com", - "steamcammuniti.ru", - "streamcomlutitly.me", - "stemcommunnity.com", - "streamconnunity.net.ru", - "steeamcomunlty.ru", - "steamcommunlty.site", - "stleamcomunity.com", - "steamcommiunitiy.pp.ru", - "zipsetgo.com", - "streancomunnitiy.com", - "steamncomunity.com", - "konicpirg.com", - "steamcornrnuity.com", - "steamzcommunity.com", - "stearncomrnunity.store", - "steaimcomminnity.ru", - "dlscord-nitro.info", - "steamcommunty.ru.com", - "steamcommnunlty.com", - "freenitroi.ru", - "discord-airdrop.me", - "stearncomminuty.ru.com", - "steamecomunity.com.ru", - "skins.pp.ru", - "steancommnulty.com", - "steeamcommunity.ml", - "stream-conmunlty.ru", - "steancomnunyti.ru.com", - "csgo-st.ru", - "discorfd.com", - "steamcomunytiu.com", - "streamcomminuty.pw", - "steamescommunity.com", - "discord-informations.ru", - "steamcommunty.buzz", - "steamcommunity.co", - "stleamcommunity.com", - "steamcommuntiv.com", - "steamcomuniety.ru", - "game-csgo-steam.ru", - "steamdommunity.com", - "sleamcomnnunily.site", - "discord-steam.site", - "g1veaway-nav1.site", - "sueamconmunity.com", - "discord-nitro.website", - "steaamconnmunlty.com", - "streamcommuinity.com", - "streamcommumnity.com", - "discord-app.me", - "stemcomunitiy.com", - "stearncommunitey.ru", - "cs-incursed.xyz", - "stemcommununity.com", - "stearmmcomuunity.ru", - "facepunch-gifts.org.ru", - "discord-give.org", - "airdrop-nitro.com", - "streamcommunityi.ru", - "steamcoummunity.com", - "streamcomuniity.com", - "steamcommyuinity.net.ru", - "nitro-give.site", - "steamcommiunity.ru", - "steamwalletbd.com", - "steamcommmunnity.com", - "streamcomuniity.net", - "staemcomumity.com", - "steamecommunlty.com", - "discord-boost.ru", - "steampowerd.com", - "navi-hawai.net.ru", - "truepnl-giveaway.info", - "st-csgo.ru", - "steamcommunity.biz", - "discordspp.com", - "streamcomrnunity.ru", - "steancommunyti.ru.com", - "fnatic-time.ru", - "steaamcomunity.ru.com", - "blox.land", - "disccor.com", - "steamconnumity.ru.com", - "discord-airdop.link", - "get-gamesroll.xyz", - "discordme.me", - "steamcomuniti.ru", - "dliscrd.one", - "discord-tester.com", - "steamcommunyty.com", - "sleamcommyunity.com", - "dicsord-hypesquads.com", - "sreamcommuniity.com", - "streamcomunity.org", - "robux4sex.tk", - "dlscord.space", - "stemcamnunity.com", - "dlcsorcl.com", - "myrolls.monster", - "dlscord.ru.com", - "streamcommuniley.net", - "discord-nitr0gift.fun", - "steammcomunlty.ru", - "stearncornrnnity.ru.com", - "steqmpowered.com", - "streamcormmunnity.ru.com", - "steamworkspace.com", - "steam-tradestore1.xyz", - "itemcloud.one", - "ds-nitro.com", - "discrdspp.com", - "discord-bot.ru", - "streamcomnultyy.net.ru", - "steamcommunity.site", - "pubggift94.xyz", - "steamcommunlite.com", - "rip-tide.ru", - "steamcommunnty.ru", - "disocrd.me", - "disrcord.com", - "steambrowser.xyz", - "rust-gitfs.ru", - "discord-hypes.com", - "discordnitrogift.com", - "www.steamcamunity.com", - "discord-gift-free-nitro.tk", - "streeamcommunuti.ru", - "stemcomnmnnunity.com", - "dicsord.gg", - "stearncommunitey.com", - "stermconmmunity.com", - "sleamcomunitly.co", - "steampowaered.com", - "steamcornmynity.ru", - "stearncommuniity.ru", - "steamcomnnunty.ru", - "dlscord-support.com", - "steamcommuniti.ru.com", - "stemcommunlty.space", - "streamcomulty.org.ru", - "natus-win.net.ru", - "gamesfree.org.ru", - "steanconmunlty.com", - "disc0rd.xyz", - "discordacc2.repl.co", - "steancommurily.xyz", - "steampowoereid.com", - "dicord.space", - "www.creditscpfree.website", - "steamcomnumilty.com", - "streamcomnunitiy.ru", - "justcause.fun", - "counterstrik.xyz", - "sterncommunilty.ru.com", - "steamcomuunity.com", - "steamhelp.net", - "discordlist.repl.co", - "discord.com.tw", - "steampowed.com", - "discordapps.gift", - "steamcommunhity.com", - "stearncommrunity.com", - "dominospizza-nl.com", - "discord-nitro.tk", - "steamcommunnlty.com.ru", - "roblox.free.robux.page", - "discords.us", - "www.discord.pt", - "steamcomunitly.ru", - "steamcoommunuity.com", - "stearncommunlty.store", - "discord-premium.com", - "staemcammynlty.ru", - "discord4nitro.com", - "discordappporn.chat", - "streamcommunnitty.com", - "nitropussy.com", - "steamcmunity.com", - "steamocmmunity.me", - "steamncommunity.pp.ru", - "steancommuniti.site", - "discordlogin.com", - "stearncommunyti.ru", - "discord-promo.com", - "stearncomnunity.org", - "streamcomunlty.org.ru", - "rust-giveaways.xyz", - "tini.best", - "stearncommunity.click", - "sleamcommuniity.me", - "streemcommunhity.org.ru", - "streamcommmunity.com", - "steamcommunitytredeoffer.com", - "steamcomunillty.ru.com", - "streancommuniliy.ru.com", - "giveweay.com", - "streamcommulinty.com", - "freenltro.ru", - "imvu37.blogspot.com", - "steamcommunly.net.ru", - "steumcommunity.com", - "steamcommunetu.com", - "steancommunilty.com", - "claim.robuxat.com", - "discorcl-boost.ru", - "discordsearch.co", - "steamgames.net.ru", - "steemcomunity.pp.ru", - "stieamcommuinity.com", - "premium-discords.com", - "discord-spooky.ru", - "steamcommuniitu.site", - "steamcommunytitradeoffer.com", - "stheamcommnitiy.ru", - "csgo-storesteam.ru", - "giftsdiscord.fun", - "facepunch-llc.com", - "steam-storetrade.xyz", - "stemcomnmounity.com", - "discord-promo.xyz", - "www.discord-nitro.ru.com", - "stearncornmunity.net", - "dlscorldnitro.store", - "stearncornrnunity.ru.com", - "steamcomnunity.net", - "discordnitro9.repl.co", - "joewfpwg.ru", - "discorcd.site", - "discordnitro.com", - "steamcornmunify.ru.com", - "stearncommmnuity.xyz", - "staermnconnumti.com", - "discord-nitro.online", - "steamcommunirty.com", - "game-steam-csgo.ru", - "topw-gamez.xyz", - "stemcommunlty.ru.com", - "steam-cammuneti.com", - "order-78.com", - "sleamcoomunity.com", - "stearncornmunitiy.com", - "sleamcomunuty.ru", - "steamcannunlty.com", - "dlscord-alirdrop.site", - "discord-gifts.shop", - "comdiscord.com", - "discord.world", - "discord-nltro.info", - "dicsord-nitro.ru", - "steamwalletcodes.net", - "staamcommunity.com", - "steamcammunuty.com", - "app-discord.ru", - "discord-njtro.store", - "steamcomminuty-offer.ru.com", - "steamscommynitu.co", - "key-dr0b.com", - "gift-discord.shop", - "maggicdrop.xyz", - "steamcommunit.org.ru", - "streamcommuninllty.com", - "dzscord.js.org", - "encesports.xyz", - "viwwzagulw.xyz", - "steampowererd.com", - "steancomnnunity.com", - "discord.co.com", - "sleamcommuntiy.com", - "roll-gift.fun", - "discordsteams.com", - "robloxs.land", - "discrod-glfts.com", - "sleamcummunity.me", - "steannconnnunity.com", - "streamcommunit.ru.com", - "stearncommumitly.com", - "steacomnunity.ru.com", - "steamdomain.online", - "steampoweredpoetry.com", - "steampoweredcinema.com", - "discordgifts.ru.com", - "steamconnunitiy.com", - "steancommunety.com", - "streamconmunity.com", - "steacommnunity.com", - "boxgolg.club", - "discord-drops.ru", - "steampoweredcommunity.com", - "steamcommunty.net", - "steancommuhity.com", - "streamcomnnunity.xyz", - "steam-tradestore.xyz", - "pubgmobile737373.ml", - "steam-hype.com", - "stearncomrrunity.com", - "csgosteamgo.ru", - "steamcominuty.ru", - "streomcommunuty.com", - "stearncommninuty.com", - "steamcommynity.space", - "sleamcomnunity.xyz", - "discorcl-give.site", - "pubggf24.xyz", - "ssteamcommunity.ru.com", - "steemcommunnity.net", - "discords-moderator.com", - "steamc0mmunity.com", - "discordgift.app", - "rust-award.com", - "steancommunily.ru", - "discordxsteam.com", - "steancomrnunuty.ru", - "steamcommuntity.ru.com", - "staemcommunity.com.ru", - "discord-app.co", - "dicsord-give.com", - "steam-servicedeals1.xyz", - "streamcommunitly.net", - "steamcommuniety.com", - "stemcomnunity.ru.com", - "dlscordgift.com", - "stearncommnnity.co.uk", - "discord.cn.com", - "steamcomuunity.ru.com", - "tipteamgg.xyz", - "steamcommhnity.com", - "disocrd.org", - "dlscord.in", - "styamcommunity.com", - "realskins.xyz", - "discordnitro.fun", - "nitro-app.fun", - "steamcommunirty.ru.com", - "verification-discord.com", - "discord-stuff.com", - "steam-powered-games.com", - "strempowered.com", - "xess-nitro.com", - "steamcomnunity.site", - "steemcammunlly.com", - "steam-community1.xyz", - "epicgamesnitro.com", - "steanncommunitv.com", - "stemcoomnnunity.com", - "discord-event.com", - "steamcoomunity-nitro.site", - "staempawered.xyz", - "steancommunnuly.me", - "steamnltros.com", - "www.streamcommunity.ru.com", - "steamgivenitro.com", - "stieamcommunity.pp.ru", - "staemcommunty.com", - "steamcormmmunity.com", - "store-streampowered.me", - "staemcomnunity.fun", - "skins-navi.pp.ru", - "stteamcommunity.net", - "giftsdiscord.online", - "stimcommunlty.ru", - "steam-offer.com", - "steamcomminyti.ru", - "steampowered.org", - "steeamcommunyti.com", - "streawcommunity.xyz", - "robuxhelps.com", - "riptide-operation.xyz", - "steancomuunity.com", - "natus-open.net.ru", - "steam-power1.xyz", - "discord.si", - "sleamcommunity.org", - "streamcommuunnity.com", - "robfan.work", - "diszcord.com", - "staemcommuntiy.ru", - "steamcommunity.ca", - "magnavirolls.xyz", - "streampowereed.com", - "steamunlocked.pro", - "discord-air.xyz", - "fowephwo.ru", - "prajyoth-reddy-mothi.github.io", - "discord-app.xyz", - "stemcommuinty.ru", - "steamcommrnunity.com", - "natusspot.pp.ru", - "diskord.org.ru", - "discordapp.us", - "stearncornmrunity.ru.com", - "httpdlscordnitro.ru.com", - "redirectednet.xyz", - "freedrop0.xyz", - "disccrd.gifts", - "steammcommunity.com", - "stemcommunlty.com", - "csskins.space", - "into-nitro.com", - "glft-discord.com", - "discold.online", - "vbucksminer.ru", - "steamcomiynuytiy.net.ru", - "steamcomrunily.com", - "operation-riptide.ru.com", - "dirscord-gift.ru", - "cs-navigiveaway.ru", - "steamcommunitysource1.xyz", - "streaemcrommunlty.com.ru", - "discorcrd.gift", - "steamcoomunjty.com", - "discord-giftes.com", - "discord-free.com", - "stleamcomnunity.ru.com", - "sleamcomnnunitiy.ru", - "sreampowered.com", - "stearncommunite.com", - "discord-club.ru", - "swapskins.ga", - "s1cases.site", - "www.freerobloxgenerator.tk", - "der-csgo.ru", - "streamcomnuniity.com", - "disccord.ru.com", - "discord-halloween.me", - "steamcommunili.xyz", - "steancommrnity.com", - "discpordapp.com", - "myccgo.xyz", - "navi-freedrop.xyz", - "faceit-premium.com", - "dlscord.gg", - "hope-nitro.com", - "discord.promo", - "wyxy.ru", - "steawmcomnunnity.ru", - "steancommuntly.com", - "pubggf22.xyz", - "streamcormmunity.com", - "discord-app.net", - "pubgmobile365.com", - "csgo4cases.fun", - "riptide-cs.ru", - "steamcoomunnity.com", - "pubggift98.xyz", - "streamcommnnuity.com", - "steamcommunity.pl", - "freenitro.ru", - "steemcammunllty.com", - "rbux88go.com", - "steamcomnumnity.com", - "steamcomnunity.org.ru", - "steamcommunithy.com", - "discond-njtro.tech", - "stleamcommuniity.net", - "steamcomnnunlty.ru", - "myrollz.com", - "ste-trade.ru.com", - "discord-app.click", - "discrd.co", - "staemcomunity.com", - "bysellers.xyz", - "steamommunity.com", - "steamtradestore.xyz", - "steanncammunlte.ru", - "pubggf33.xyz", - "steamcommunrinty.ru.com", - "promo-discord.com", - "discordaop.com", - "cpp-discord.com", - "steamcommunety.com", - "steamcommumity.biz", - "discordapplication.xyz", - "steamcommunite.com", - "steamcommunitypubg.com", - "steamcomnnunilty.com", - "discord-airnitro.xyz", - "steamnitro.com", - "staemcoommunty.ru", - "rewardspremium-nitro.gq", - "steamcommulty.ru", - "keydropp.one", - "streamcommmumnity.ru.com", - "steamcomunity.com", - "stemcomnmuunity.com", - "sterncommynuty.ru", - "steampowered-offers.xyz", - "discordgiveaway.fun", - "prefix.net.ru", - "streamcommounity.com", - "steamcommuniuity.com", - "store.stempowerd.com", - "discordsex.live", - "diuscordapp.com", - "steamcommuninthy.com", - "steamcommynity.ru", - "drop.net.ru", - "stearncornmunitly.com", - "steamcsgo-play.ru", - "steamcommuhuity.com", - "steamcomonity.com", - "steancommuniity.fun", - "steamnconmunity.work", - "steam-nitro.ru", - "beast-cup.ru", - "dlscord-hypesquad.com", - "stearncomnunitu.ru", - "steamtradecommunity.fun", - "steancomrnunitiy.com", - "pubggf19.xyz", - "steamcornmnuity.com", - "steapowered.com", - "stemcommunilty.com", - "firtonesroll.ru.com", - "steamcomnmrunity.ru", - "steamservicedeals.xyz", - "gamzc-topz.xyz", - "steamcommuniy.com", - "natus-vincere.xyz", - "steamcommunitte.com", - "natus-win.org.ru", - "stearcommuity.com", - "profile-442572242.online", - "discrod.gift", - "guns-slot.tk", - "discordgiftss.com", - "discord-supports.com", - "streamcomunitty.net", - "stieamcommuunitey.us", - "operation-pass.ru.com", - "steamcommuniti.com.ru", - "discord.app", - "streamcommunimty.com", - "dominosllc.com", - "discordobs.com", - "streamconmunitly.ru", - "discord-nudes.club", - "discord.fit", - "robloxromania.com", - "stearmcommunity.ru.com", - "store-stempowered.com", - "steancommunitry.ru", - "streamcommunity.me", - "steamcomminnty.com", - "discorb.gifts", - "stearncornmunuty.ru", - "steamcommunity.link", - "steamepowered.com", - "steamcommynltu.com", - "steamcommunlty.company", - "nltro.site", - "bigs.monster", - "steamrcommunity.ru", - "jope-nitro.com", - "store-discord.com", - "steancomnurity.one", - "nitrochallange.com", - "robloxux.com", - "discordapp.best", - "viwwzaguls.xyz", - "steam-site.ru", - "staemcoomunity.ru", - "steamcommunityzdl.top", - "discord-promox.com", - "csgoworkshops.com", - "steamcommunuity.ru", - "discornd.com", - "steamsommunity.ru", - "steammcommunity.ru.com", - "steancommuunity.com", - "discord-a.com", - "steamcomunity-nitro-free.ru", - "steamcomrnunity.ru.com", - "steamconmnunity.co", - "discord-drop.info", - "airdrop-discord.online", - "diascord.com", - "streamcoommunity.com", - "dlscord.pro", - "ez-tasty.cyou", - "stemcummunity.com.ru", - "steampowrd.com", - "disordapp.gifts", - "discodapp.gift", - "dlscord.rocks", - "staemcommunityu.ru.com", - "robuxhelp.com", - "steam-sourcecommunity.xyz", - "steancommynyty.ru.com", - "steamcommuriity.com", - "steancomnumlty.com", - "dailymegadeal.xyz", - "steamcomrnyniti.ru", - "discord-glft.ru.com", - "steam-service.ru", - "steancommiuniliy.ru.com", - "event-discord.com", - "think-when.xyz", - "steamcommunitily.com", - "steamcommunity-tradeoffers.com", - "stemcommnunlty.ru", - "stemcomnmunity.com.ru", - "poste.xyz", - "steamcornmunity.net.ru", - "steamcomnunitty.com", - "discordshort.ga", - "streamconmmunity.ru.com", - "fnatic2.org.ru", - "big.pp.ru", - "discord-controls.com", - "discord-nitroapp.xyz", - "steamkey.ru", - "steamsconmunity.com", - "steamcommutyniy.com", - "freediscrodnitro.org", - "steamcoommunuty.com", - "steamcomminutty.ru", - "seamcommunity.com", - "discortnitostem.online", - "cteamcommunity.xyz", - "stermcommunilty.ru.com", - "staemcomrnunity.ru.com", - "discords-hypes.com", - "discoerdapp.com", - "comsteamcommunity.com", - "dicsordnitro.store", - "pubggift95.xyz", - "dmarkef.com", - "discord2fa.com", - "steampoiwered.com", - "stearncomnnunity.fun", - "steamconnunity.ru.com", - "steamcommunuti.ru", - "steamcommunety.net.ru", - "cs-exeword.xyz", - "navigg.ru", - "skins.org.ru", - "stemcomnmunity.ru.com", - "steamcommunity.mobi", - "fall500.ru", - "steampowered-trades.xyz", - "steanncomunitly.ru", - "steamhome-trades.xyz", - "discord-nitro.tech", - "steamaccounts.org", - "steamcommunetiy.ru", - "steancomunitiy.ru.com", - "stemcomnnmuunity.ru", - "stearncomnunitv.ru.com", - "streamcomnully.net.ru", - "discordd.gg", - "topz-games.xyz", - "steamcsgo-game.ru", - "loot-conveyor.com", - "staemcomcommunlty.ru.com", - "steemcomunity.org.ru", - "steamecommunity.ru.com", - "discord-nitro.pro", - "discord-mods.com", - "steamcommuwunity.com", - "steamcommunjti.com", - "steamcommunnuty.ru", - "discorcl-nitro.com", - "discordapp.gg", - "pubgmcheats.com", - "discord-netro.ru", - "staemcoomuntiy.ru", - "stealmcommunity.ru", - "cs-cool.net.ru", - "discorb.co", - "store-steam-csgo.ru", - "stheamcomunitly.ru", - "stearncomminuty.click", - "steamcommulltty.com", - "stemcommounilty.com", - "steacommunity.ru.com", - "keydoppler.one", - "csgogf06.xyz", - "sleamcoomuuntty.xyz", - "steamcommuniltiy.ru", - "steamcommumituy.com", - "discordfree.com", - "streamcommunly.com", - "discod.gift", - "cs-riptide.xyz", - "streamcommunit.com", - "streamcommunitv.net", - "steamcomunitty.ru.com", - "steeaamcomunity.xyz", - "steampowered.xyz", - "sleamcomminutiycom.ru.com", - "steamcommuilty.ru", - "drop.org.ru", - "csgo.ghservers.cl", - "dicord.gg", - "discorcl.site", - "discord.givaewey.com", - "discord-gifts.org", - "casesdrop.xyz", - "operation-broken.xyz", - "diucord.js.org", - "steamcornmnitu.ru.com", - "steamcommuininty.com", - "discord.homes", - "sleramconnummitti.org", - "staemccommunnity.net.ru", - "cs-moneyy.ru", - "discords.ru.com", - "discorcl-app.xyz", - "steamcommunity-user.me", - "steamcommulity.ru", - "steemcoommunty.ru", - "discord-give.ru.com", - "streancoommunity.xyz", - "dlscord-nitro.store", - "sleamcommmunitiy.ru", - "alexs1.ru", - "steanmcommunity.ru.com", - "steamcommunity.comlappl251490lrust.ru", - "steamcomunnity.site", - "steamcommunyte.com", - "magnaviroll.xyz", - "stearmcornnnunity.com", - "steamcornmunity.org", - "discord-support.com", - "stleamcommunitiy.com", - "steam-servicedeals.xyz", - "stemcumunnity.ru.com", - "discordaoo.com", - "dlscordnltro.ru", - "discord-moderation.com", - "steancomuniiity.com", - "eslgamingworldwide.net", - "ds-nitr.xyz", - "discolrd.com", - "stearncommunigy.com", - "stemcommunitly.com", - "skinup.monster", - "streamcomunily.org.ru", - "discord-event.info", - "discord-partners.com", - "discords-premium.com", - "stemcammuniety.ru", - "steamconmumnity.com", - "dlscord-nltro.ru", - "discod-hitro.xyz", - "steampoeerd.com", - "steamcammunty.com", - "getfreediscordnitro.ml", - "discord-app.ru.com", - "steamlcommunity.org.ru", - "stearncommiunity.com", - "stleamcornmmunity.ru.com", - "store-steampoweered.ru", - "steamcomninytiu.com", - "discordglft.ru", - "discordsatus.com", - "stearncomrninuty.xyz", - "csgo-dym.ru", - "steancoommunity.xyz", - "steam-powered.xyz", - "steamcommuneteiy.com", - "stearmcommuniity.com", - "dirolzz.xyz", - "streamcommunnuitty.com", - "streamconmmunity.com", - "steam.99box.com", - "discrod-nitro.fun", - "robuxhach.com", - "steamcommynituy.com", - "wowfnatic.ru", - "steanmcommzunity.ru", - "stealcommuniti.ru", - "discord-gift.ru", - "steancammunyti.com", - "diiscord.com", - "xpro.gift", - "steammcommuniity.ru", - "starmcommunity.net", - "discord-claim.com", - "stearmcommuunnity.ru", - "steamcommunely.ru", - "sleamcoommunily.com", - "discordtos.com", - "discorcdapp.com", - "streamcommunty.ru", - "sterncornmunity.ru", - "storesleampowecommunity.store", - "discrodnitro.org", - "lan-pro.link", - "discordgame.com", - "steamcomrnunity.su", - "steamservice-deals1.xyz", - "staemcornmunity.com", - "discord-alrdrop.com", - "disc.gifts", - "slemommunity.com", - "streamcommunnity.org", - "steamcomnunitiy.com", - "steamcommrunitly.com", - "esports-trade.net.ru", - "navi-giveaway.net", - "streamcommuniily.com", - "discrod-gift.com", - "ggdrop.pp.ru", - "sleamcommunily.net", - "steamcommuunity.net.ru", - "discord-nitro.it", - "steamcormunity.xyz", - "eslgamescommunity.com", - "steamcommynlty.ru", - "streamcornnunitly.com", - "steamcoommunlty.ru", - "steam-storetrade1.xyz", - "staemconmuilty.com", - "discordnitros.xyz", - "streamcommuntiy.com", - "steamcommunit.ru.com", - "steampoward.com", - "steamcomunnity.xyz", - "steancomunitly.ru", - "staerncoinunitiy.me", - "steamcommunitey.com", - "official-nitro.com", - "steampowerde.com", - "z93729n9.beget.tech", - "steamcommunity.us", - "discordapp.ws", - "steamcommulnty.ru", - "discord.giveawey.com", - "steamcommuinity.com", - "discords.ru", - "stearncommunuity.net.ru", - "discordtokens.shop", - "discord-drop.gift", - "discrdapp.com", - "gamekor.net.ru", - "streamcomulty.net.ru", - "steemcommunitey.com", - "discord.cloud", - "csgochinasteam.ru", - "steaamcomunity.com", - "dlscocrdapp.com", - "www-steamcommunlty.com", - "discord-gift.shop", - "discord-nitrodrop.xyz", - "streamcommunilly.com", - "stemcomunnity.ru.com", - "steamcomiunity.xyz", - "disscord.ru", - "steamcomunity.net.ru", - "idiscord.pro", - "staeamconmuninty.me", - "discorcll.com", - "steancoommunnity.com", - "stemcommunity.ru", - "steamhometrade.xyz", - "disordglft.com", - "stieamcomunity.com", - "discordmoderations.com", - "easycases.pw", - "dicsord-airdrop.com", - "dscord.xyz", - "steamcommuntity.com", - "nitrogive.com", - "steam-tradeshome.xyz", - "steamcommumitiy.com", - "steamcommynuti.ru", - "streamcommunily.ru.com", - "discordhalloween.com", - "steemcommmunity.com", - "steam-tradegame.xyz", - "discordadp.com", - "ea-drop.com", - "streammcornmunnity.com", - "discord-hallowen.ru.com", - "steanncomunitty.site", - "css500gggo.ru", - "discod.info", - "vkbonus.club", - "steamcommunly.com", - "steancommuinuty.ru", - "steamcomnunitly.com", - "stearncommuniry.com", - "pubggf05.xyz", - "jetcase.fun", - "discorrd.ru", - "discordbotist.com", - "steamcomnumily.com", - "steamcomrnunlty.com", - "discord-informations.com", - "discord.bargains", - "www.discordapps.tk", - "steamcummunity.ru.com", - "dircode.ru", - "dlscord.app", - "streamcommulnty.com", - "disscords.club", - "rocket-tradings.com", - "pubgofficielbcseller.online", - "discords-gifts.ru", - "riptide-take.ru", - "steamcommunitty.esplay.eu", - "steamcomuninruty.ru", - "stemcommunity.com.ru", - "sreamcomminity.ru", - "streamcommunillty.com", - "stearncommumlty.com", - "free-nitlross.ru", - "stieamcommuniity.ru", - "discordgifts.co.uk", - "stearncommunjty.com", - "www.freeinstagramfollowersonline.com", - "steamconmunitly.com", - "streamcommunily.icu", - "staemcomnunity.org", - "dlscord-steam.com", - "steamcommuunitty.ru.com", - "staemcommunlty.ru", - "pubggf20.xyz", - "nitrogeneral.ru", - "stopify.com", - "discord-airdrop.site", - "discrod-app.ru", - "gleam.su", - "discordmac.com", - "steam.codes", - "streamcommunity.pl", - "steamcommunylty.ru", - "steamcommunlty.cloud", - "streamcommunltiy.com", - "streamconnunity.site", - "stearncommynitu.ru.com", - "d1scord.xyz", - "discordnitro.info", - "smeacommunity.com.au", - "stemcommunitiy.com", - "steamcommunitygames.com", - "discord-offer.com", - "stearmcommunnity.ru.com", - "steancommumity.net", - "steamconmuniti.ru", - "steamcomuniltu.xyz", - "sleemcomnuniti.xyz", - "steamcammiuniltty.com", - "discordlive.xyz", - "steanmcomnumty.com", - "discordapp.support", - "steampoweredshow.com", - "discord-stats.org", - "steammcommunity-trade.xyz", - "steamconmunlly.com", - "steancommynity.ru.com", - "staeamcomunnityu.me", - "steamcommunify.com", - "discord-air.fun", - "steamcommunity.co.ua", - "gift-g2.online", - "steamcommunitii.xyz", - "steanmconnynuytiy.net.ru", - "stearmconmunity.ru", - "steamcommunllty.ru", - "withereum.com", - "stearnconmuuity.com", - "steam-nitros.ru", - "stearnconmuulty.ru", - "steancommunnity.co", - "discord.team", - "staemcommunily.com", - "streamcommunniity.com", - "discorclapp.fun", - "steam.mmosvc.com", - "order-40.com", - "nitro-discord.org", - "classic-nitro.com", - "streamecommunity.com", - "discord-gifts.me", - "natus-rolls.xyz", - "fnaticteam.org.ru", - "stheamcommunutly.ru", - "creditscpfree.website", - "discorcl.art", - "pubggf04.xyz", - "ssteamcommunity.com", - "navicase.org", - "clan-big.ru", - "steamconnunity.fun", - "stemcommouniity.com", - "stearncommutiny.online", - "straemcomunnitry.ru", - "staemconmunity.com", - "freeskins.online", - "stearncommunnitty.xyz", - "staemconmunilty.com", - "sleamcommuniti.xyz", - "steancommuniitty.com", - "discqorcl.com", - "dlscord.world", - "s1cses.site", - "steamcormunity.ru", - "csgo-run.info", - "sleamcomunity.me", - "steamcommunyti.info", - "steamcommunitu.icu", - "steam-communitysource.xyz", - "steamcommyinuty.ru", - "giftsdiscord.site", - "discord.gq", - "steamcomueniity.ru", - "pubggf37.xyz", - "pubgmobileskin2020.com", - "steamcomminutiiu.ru", - "navifreeskins.ru", - "streamcommunily.co", - "steancommuhity.ru", - "steammncommunty.ru.com", - "discord-gif.xyz", - "slemcommunity.com", - "steamcommynite.com", - "steemcommuniti.com", - "disocr.com", - "affix-cup.click", - "x33681t2.beget.tech", - "daddsda.xyz", - "steamgametrade.xyz", - "discordnitro.ru.com", - "dscord.gifts", - "pubggf21.xyz", - "streamcoommounity.com", - "stearncomminutiu.ru", - "claimgifts.shop", - "pubguccmobilefree.cf", - "streamcommunitv.me", - "steeamcommunnlty.ru", - "steam-account.ru", - "discord.ac", - "discordsapi.com", - "mydrop.monster", - "steamcommumnity.com", - "steanmcomnumntiy.com", - "diccrd.com", - "steamcomynlty.com", - "discrodsteam.online", - "riptidepass.ru", - "steamcormurnity.com", - "steamcoonmuntiy.ru", - "dlscord-gifts.com", - "navi-give.net.ru", - "steamcornminty.xyz", - "www.dominospizzanl.com", - "discordbots.app", - "lan-pro.xyz", - "steamncomnunlty.com.ru", - "disord.fun", - "freenitrol.ru", - "steanccommunity.ru", - "steam-csgo-store.ru", - "sleamcommunitey.com", - "steam-discord.com", - "discord-promo.site", - "discord-moderator.us", - "mdiscord.com", - "www.robfan.work", - "steomcommunity.com", - "steamcormmunity.ru.com", - "discord.download", - "staemcommmunity.online", - "streamcomunity.net", - "discord-partner.com", - "steamcommunityr.com.ru", - "dlcord.gift", - "streamcommmunify.ru.com", - "discord-nitroapp.ru", - "pubggf27.xyz", - "steamcommunilly.com", - "steamcomnumty.ru", - "steamcommunity-source1.xyz", - "discord.giveaweys.com", - "steanconmunity.ru", - "pubgtoken.io", - "best-cup.com", - "sleamcoommunlity.com", - "pubgfree77.com", - "discird.me", - "steam-communitytrade.xyz", - "steamcard.me", - "steamcommuniytu.com", - "www.luckycrush.ga", - "steaemcommunity.pp.ru", - "discorddevs.com", - "steamcomminuly.com", - "discird.gg", - "disxord.com", - "garstel.github.io", - "discord-develop.com", - "steamcomminity.ru", - "pubggf03.xyz", - "steamncommumity.ru", - "didiscord.com", - "steampowerwed.com", - "sleamcommunitty.xyz", - "steamcomrnity.xyz", - "steamcommuniity.com.ru", - "steancommunlty.com", - "stemcomunity.com", - "steamcommunityy.ru", - "weplay.ru.com", - "discord-promo.ru.com", - "mythicleagues.xyz", - "steamcommuiti.ru", - "steancommunity.click", - "dixcord.com", - "nitroosfree.ru", - "stearncommunilty.site", - "get-discord.fun", - "stearmcommunity.com", - "luxerkils.xyz", - "steamcommunityx.com", - "steeamcommunnity.ru", - "streanncommunity.space", - "discordcanary.com", - "pubg-asia.xyz", - "steampoweredexchange.xyz", - "sterncomnurity.one", - "steqmcommunity.com", - "disordapp.gift", - "steamcorrnunity.org", - "steamcombain.com", - "steamncommunity.ru", - "g2-game.ru", - "pubggf29.xyz", - "nicegg.ru", - "stheamcomunutly.ru", - "steanmcomnuity.com", - "steamstore.site", - "staemcommuntiy.com", - "discord.creditcard", - "steamccommuniity.com", - "steamcommunityzce.top", - "steampower.space", - "steancommunnlty.com", - "wallet-steam.ml", - "stemncornmunity.com", - "steamcommurnuity.com", - "ggdrops.ru.com", - "steamcomuuniity.com", - "gift-discord.ru", - "cs500go.com", - "stieamcomuniiti.ru", - "discordl.site", - "operation-riptide.xyz", - "steawmpowered.com", - "discurcd.com", - "cupgoo.xyz", - "steancomunnity.ru", - "stemcoommuniity.com", - "steamcommulnt.ru.com", - "discord-nitrogift.xyz", - "pubggift100.xyz", - "stewmpowered.com", - "steamcommunltv.buzz", - "nitro-gift.ru.com", - "steanmcomnuinmty.com", - "steamconnunirty.ru", - "dogewarrior-giveaway.info", - "skinsup.monster", - "stearncommuniityt.click", - "steamcomminuty.link", - "stemcumnmunity.com", - "gglootgood.xyz", - "discord-glft.com", - "streamcomnnunity.website", - "case-give.com", - "rblxcorp.work", - "new-steamcommunlty.xyz", - "stieamcommynituy.com", - "dkscord.com", - "steamcomminytu.link", - "steamcomrnunitu.ru.com", - "steumcornmunity.com", - "xesa-nitro.com", - "steamcommunility.com", - "discord-gift.top", - "robloxgiftcardz.com", - "airdrop-discord.ru", - "disordgift.codes", - "stampowered.com", - "steam-povered.xyz", - "discordalt4.repl.co", - "steemcommunlty.com", - "reslike.net", - "awirabigmoneyrolls.xyz", - "discordnitro.su", - "stiemcommunitty.ru", - "promo-discord.site", - "discord-login.cf", - "steam-community.net.ru", - "steamecommunity.net", - "sleampowereed.ru", - "steamcommunutty.com", - "steamcamunitu.com", - "discord-support.org", - "stearncommuniity.site", - "steamcommuntliy.ru", - "steamdomain.ru", - "steamcommunidy.com", - "sleamcommuniiy.ru", - "steomcommunity.ru", - "discorb.com", - "staemcommunity.info", - "discord-nltro.fun", - "steamconmunlty.com.ru", - "steamcomnmynitu.com", - "rl-bounce.com", - "discoerd.com", - "stearmcornmunitiy.com", - "csgo-steamgame.ru", - "key-dropo.com", - "discorclnitro.ru", - "discordappss.com", - "steamstorepowered.com", - "cs-esports.link", - "steamcommunitysource.xyz", - "discord.luxe", - "steanconnunity.com", - "free-nitro.ru", - "cs-boom.org.ru", - "stheamcommuniti.com", - "sleamcornrnunity.host", - "disdrop.com.br", - "steamcommuni.com", - "stearncommunety.com", - "navi-wins-skiins.org.ru", - "lootship.ga", - "streamcommlunity.ru.com", - "steancammunity.ru", - "cash.pp.ru", - "steamcornmunty.com", - "navicase-2020.org.ru", - "steancommuuniliy.ru.com", - "steamcommunlty.store", - "steamcomnunmity.com", - "discord-hypesquads.com", - "sleamcomnnuniity.ru", - "discortnitosteam.online", - "riptide-pass.org.ru", - "steamcommunieti.ru", - "sleamcommunitiy.com", - "steamcomminytiu.ru", - "steam-cs-good.ru", - "dlscordsteam.com", - "streamcommunitey.com", - "discord.es", - "steamcommuntli.ru", - "steamcummunity.com", - "steemconnunity.com", - "steemcommuniy.com", - "g2ezports.xyz", - "steamcoomynity.ru", - "bondikflas.xyz", - "rl-garage.space", - "rust-ltd.com", - "sleamcommuiliy.ru.com", - "streamcomunily.pp.ru", - "stjeamcomnunitiy.ru", - "steawpowered.com", - "dlscord-nitro.link", - "steamconnunity.de", - "stearncornminuty.ru", - "cashout.monster", - "discordapp.cloud", - "steemcommuntiy.ru.com", - "discord-nitroe.xyz", - "steamcomity.com", - "stemacommunlty.com", - "steam-free-nitro.ru", - "disordnitros.gifts", - "steamcommuniti.org", - "steamkommunity.net.ru", - "dicsordgift.com", - "discords.company", - "steemcommuniity.com", - "steamcommunitty.top", - "qcoldteam.life", - "steamconmnunity.com", - "steamcommunitya.com", - "steanconnunlty.com", - "stearnconmunity.net", - "steamcomrninuty.site", - "steamcommunytytradeofferphobos.ru", - "discord-app.co.uk", - "order-87.com", - "diswcord.com", - "realtorg.xyz", - "sleammcommunnity.ru", - "steamcommnutry.ru", - "sleamcomnnunily.website", - "counter-strlke.site", - "steamcomminiity.site", - "steancomuniity.com", - "dlscord-nitro.click", - "steeamcommuinitty.com", - "steamcommunetiyy.xyz", - "steamcommutinny.ru.com", - "steamcommunnitlly.ru", - "discourd.com", - "discord.com.pl", - "steamcommiunity.pp.ru", - "steamrommunily.com", - "dizscord.com", - "pubggf42.xyz", - "steancomnunity.ru", - "dlscordnitro.com", - "stearmcommuunity.ru.com", - "streamcomnunity.ru", - "diisscord.online", - "bloxpromo.com", - "disordsnitro.gifts", - "pubgmobile2019ucfreeeee.tk", - "steamcommuenity.com", - "steancommunitv.com", - "steamcamunlty.com", - "steurmcommunity.com", - "pubggf39.xyz", - "discort.com", - "stieamcommunity.org.ru", - "steamconnnnunity.net.ru", - "naviskins.xyz", - "diqscordapp.com", - "stearnmcomunity.com", - "steampowerco.com", - "steamcomnutiny.ru", - "discord-gifteh.xyz", - "robuxhelpers.com", - "discontro.ru", - "steamcommunityz.com", - "streamcomunitly.net.ru", - "cointradebtc.com", - "stemcoominuty-alirdrop.xyz", - "dicsord-gives.com", - "pubggf36.xyz", - "steamcommunittey.com", - "steamcommmunity.xyz", - "wwdiscord.com", - "discorclsteam.com", - "steamecommunlty.com.ru", - "discorcl-app.com", - "topvincere.org.ru", - "rust-drop.ru.com", - "discordre.store", - "stearmmcomunity.ru", - "discordist.com", - "pubggf18.xyz", - "steamcomunnuty.com", - "steamcommuunjty.com", - "steamcomunlitly.ru.com", - "csgo-game-steam.ru", - "stearncommunilty.ru", - "steamcommunity.in", - "steacommunity.net.ru", - "steamcummunityy.pp.ua", - "discord-control.com", - "stearncormmunity.ru", - "stearncomminytu.com", - "steamcommunltiy.com", - "cod3r0bux.pw", - "steamcomnumity.ru.com", - "steamcommiunniutty.net.ru", - "stermccommunitty.ru", - "discord-airdrop.com", - "styeampowered.com", - "facepunchltd.com", - "steamcommnunytl.com", - "toprobux.site", - "steamcommnunniiy.net.ru", - "steamcommunitie.net", - "stmeacomunnitty.ru", - "rl-purple.com", - "stleamcommunithy.com", - "steamdiscrod.ru", - "stemcomnunity.com", - "steamcommunityzcd.top", - "sleamconmunity.ru", - "discordbeta.com", - "redizzz.xyz", - "discordapp.top", - "steamcommunityi.ru", - "steawscommunity.net", - "navirolls.org.ru", - "steamcommunlilty.ru.com", - "steamcconmmuunity.co", - "steamcomunlty.ru.com", - "steamcommuunity.pp.ru", - "streamcommunjty.com", - "steamcoommunity.pp.ru", - "stemcommunitytrade.fun", - "cschecker.ru", - "streamcommunitiy.ru", - "discord-information.com", - "pubggf25.xyz", - "streamcommunnty.com", - "glob21.online", - "giftdiscord.info", - "streamcommunty.me", - "wanmeipt.ru", - "steamaccounts.net", - "steamaccount.xyz", - "steancomnunytu.ru.com", - "stemcomnmuunity.ru.com", - "discordiatech.co.uk", - "steam-communitygifts1.xyz", - "www.freenitrogenerator.tk", - "rollskins.monster", - "www.discord-steam.ru", - "steanmcommunily.ru", - "opencase.space", - "steamcommunitytradeofer.com", - "staemcommmunity.ru", - "drop-key.ru", - "discordgifts.site", - "get-nitro.fun", - "ach2x.net.ru", - "discord-sex.live", - "dlscord.shop", - "jet-crash.xyz", - "sreamcommunity.com", - "steamgiveaway.cc", - "steam-poweredexchange.xyz", - "steam-csgo-good.ru", - "streamcummunlty.com", - "from-puste.xyz", - "stemcoommounity.com", - "steamcommunity.live", - "streamncommnunity.com", - "navy-freecases.ru", - "steamcommunities.biz", - "loginrun.info", - "csgo-steam-good.ru", - "newdiscord.online", - "steampowered.us", - "steam-hometrades.xyz", - "sleamcommunlty.space", - "discorcl-nitro.site", - "steamcommuunitey.com", - "steamcommuninty.ru.com", - "streamcormmunlty.ru.com", - "discordp.com", - "drop.pp.ru", - "discordapp.click", - "steamdiscords.com", - "discorclapp.com", - "steamcomnmuituy.com", - "sleamcoommunity.com", - "sleamcommunily.org", - "discords-nitros.fun", - "discoard.com", - "steamcornrrnunity.com", - "steamdiscord.com", - "discord-invite-link.com", - "www.steacmommunity.com", - "discosd.com", - "steampowened.ru.com", - "antibot.cc", - "steurmconmunity.com", - "staemcoommuntiy.ru", - "cpbldi.com", - "disocrd.gg", - "steamconnmunlty.com", - "freediscord-nitro.cf", - "discord-nitro.live", - "steam-login1.xyz", - "discordnitrofree.com", - "steancommunitiy.ru", - "csgogf03.xyz", - "discord-verify-account.ml", - "discordqapp.com", - "streamconmunyti.com", - "d.iscord.xyz", - "steamcommunetyei.com", - "discrod-app.com", - "steamcommunity.best", - "gamerolls.net.ru", - "discordnitro-steam.ru", - "discrod.pw", - "steemcowwunity.xyz", - "discrord.com", - "stheamconnmunutly.ru", - "steamcommunute.com", - "steamcomrnunitu.ru", - "steamdlscord.com", - "stearncornmurnity.ru.com", - "discord.cc", - "please.net.ru", - "stearmcommunitry.cf", - "facedrop.one", - "hdiscord.com", - "steamcommnunity.com", - "steancommuniity.com", - "glets-nitro.com", - "magifrolbit.xyz", - "2021y.ru", - "steamcommunltuy.com", - "sitemap.onedrrive.com", - "id-374749.ru", - "dlscorcl.gift", - "team.the-shrubbery.co.uk", - "steancommmunity.com", - "steamccommunity.com", - "steamcommunety1i.com", - "steancomunitytradeffer.xyz", - "stearncommmunity.ru", - "steamcomunityo.com", - "keydrop.org.ru", - "discord404.com", - "steamcommuniety.ru", - "steampowerewd.com", - "csgorun.info", - "steanncommuniuity.com", - "streanncomunity.ru", - "streamcommunily.cc", - "game-steamcsgo.ru", - "discord-verifications.com", - "navi-russia.ru", - "discorddev.com", - "steancommnuity.com", - "stearncomminuty.ru", - "discordcharity.org", - "steamcommuitly.ru", - "discorapp.pw", - "whitelampa.xyz", - "stemcommuty.ru", - "steanmconynnuytiy.net.ru", - "steamcomuniity.ru.com", - "eslworldwideplay.com", - "steanncomunitiy.ru.com", - "fdiscord.com", - "stmencommunity.ru", - "streamcommununty.com", - "dicsord.pl", - "steeamcomunitty.com", - "dscord.me", - "ewqdsa.xyz", - "stheamcommunutiy.ru", - "steamcomnumity.com", - "steamcommunniity.com", - "steam-csgo-game.ru", - "steamcommunitytradeofter.com", - "pubggift101.xyz", - "streamcommunlte.ru", - "new.mychaelknight.com", - "steancomnuity.com", - "discordsapp.fun", - "stimcommunity.ru", - "widesdays.com", - "stemcomnmnunity.com", - "discod.tech", - "ww1.dicsordapp.com", - "stores-steampowered.com", - "steamecommunituiy.com", - "discord-report.com", - "discordnitros.gifts", - "g2a.ru.com", - "streampoered.com", - "viwwzaguly.xyz", - "gamzgss-top.xyz", - "streamcommunity-user.me", - "magifcrolrlh.xyz", - "steam-cs.ru", - "streamcommuunnity.net", - "steanncommunity.com", - "streamcommunuity.net", - "streanncomminity.ru", - "streamcommuunity.com", - "good-csgo-steam.ru", - "steamcomumity.com", - "stemcommuniety.com", - "streamcomnunyti.xyz", - "discord-claim.ru", - "stearncomrmunity.com", - "rustg1fts.ru", - "discord-claim.ru.com", - "staemcummunlty.com", - "steamguard.ir", - "steamcommuniutiiy.com", - "steam.communyty.worldhosts.ru", - "steemcommunty.net.ru", - "discord-app.club", - "staemporewed.xyz" -] diff --git a/util/Data/tnd.json b/util/Data/tnd.json @@ -0,0 +1,90 @@ +{ + "truth": [ + "When was the last time you lied?", + "When was the last time you cried?", + "What's your biggest fear?", + "What's your biggest fantasy?", + "Do you have any fetishes?", + "What's something you're glad your mum doesn't know about you?", + "Have you ever cheated on someone?", + "What's the worst thing you've ever done?", + "What's a secret you've never told anyone?", + "Do you have a hidden talent?", + "Who was your first celebrity crush?", + "What are your thoughts on polyamory?", + "What's the worst intimate experience you've ever had?", + "What's the best intimate experience you've ever had?", + "Have you ever cheated in an exam?", + "What's the most drunk you've ever been?", + "Have you ever broken the law?", + "What's the most embarrassing thing you've ever done?", + "What's your biggest insecurity?", + "Have you ever stayed friends with someone because it benefitted you beyond just the friendship?", + "What's the biggest mistake you've ever made?", + "What's the most disgusting thing you've ever done?", + "Who would you like to kiss in this room?", + "What's one thing you hate people knowing about you?", + "What's the worst thing anyone's ever done to you?", + "What's the best thing anyone's ever done for you?", + "Have you ever had a run in with the law?", + "What's your worst habit?", + "What's the most embarrassing thing you've done in a taxi?", + "What's the worst thing you've ever said to anyone?", + "Have you ever peed in the shower?", + "What's the strangest dream you've had?", + "Have you ever been caught doing something you shouldn't have?", + "What's the worst date you've been on?", + "What's the best date you've been on?", + "What happened on the latest night out you've ever had?", + "What's your biggest regret?", + "What's the biggest misconception about you?", + "Have you ever said something you regret about someone in this room?", + "What's one thing you wish people knew about you?", + "Where's the weirdest place you've had sex?", + "Why did your last relationship break down?", + "Have you ever lied to get out of a bad date?", + "What's the most trouble you've been in?", + "When did you last have sex outside?", + "What's the worst thing you've lied about?", + "What's one thing you wish you'd lied about?", + "What's the best piece of advice you've been given?", + "What's the most you've spent on a night out?", + "Name a time you think you were a bad partner", + "What's your guilty pleasure?", + "What's one thing you only do when you're alone?", + "If you had to get back with an ex, who would you choose?", + "If you had to cut one friend out of your life, who would it be?", + "Do you have a favourite friend?", + "Do you have a favourite sibling?", + "What's the strangest rumour you've heard about yourself?", + "What's your biggest turn on?", + "What's the silliest reason you've left a club early?", + "What have you purchased that's been the biggest waste of money?", + "If you could swap lives with someone in this room, who would it be?" + ], + "dare": [ + "Shave your arms and send me a pic.", + "Record yourself singing a song and post it on YouTube.", + "Try to lick your own foot!", + "Message someone you haven’t talked to in at least 1 year on Facebook or Instagram and take a screenshot.", + "Text your crush and ask them out on a date.", + "Cut a piece of your hair.", + "List everyone as the emoji(s) you think best fits them.", + "Change your nickname/username to whatever the group wants.", + "Send me a screenshot of your messages with the last person besides me you texted.", + "Brush your teeth with peanut butter or another condiment and send me a pic.", + "Rate everyone here 1-10 in terms of personality.", + "Take a really unflattering picture and make it your profile picture for one full day.", + "Send me a screenshot of your selfies gallery.", + "Text a random number and write “I see dead people”.", + "Tell the group in detail about your first kiss.", + "Tell a joke until it makes everyone laugh.", + "Tell your girlfriend that your friends don’t like her so you can’t be with her anymore.", + "Brush your teeth with your best friend’s toothbrush.", + "Show everyone your unshaved legs.", + "Break a raw egg on your forehead.", + "Call 5 different people and talk to them in 5 different accents.", + "Set your crush’s picture as your FB profile picture.", + "Show everyone your search history for the past week." + ] +} diff --git a/util/Data/truth.json b/util/Data/truth.json @@ -1,63 +0,0 @@ -[ - "When was the last time you lied?", - "When was the last time you cried?", - "What's your biggest fear?", - "What's your biggest fantasy?", - "Do you have any fetishes?", - "What's something you're glad your mum doesn't know about you?", - "Have you ever cheated on someone?", - "What's the worst thing you've ever done?", - "What's a secret you've never told anyone?", - "Do you have a hidden talent?", - "Who was your first celebrity crush?", - "What are your thoughts on polyamory?", - "What's the worst intimate experience you've ever had?", - "What's the best intimate experience you've ever had?", - "Have you ever cheated in an exam?", - "What's the most drunk you've ever been?", - "Have you ever broken the law?", - "What's the most embarrassing thing you've ever done?", - "What's your biggest insecurity?", - "Have you ever stayed friends with someone because it benefitted you beyond just the friendship?", - "What's the biggest mistake you've ever made?", - "What's the most disgusting thing you've ever done?", - "Who would you like to kiss in this room?", - "What's one thing you hate people knowing about you?", - "What's the worst thing anyone's ever done to you?", - "What's the best thing anyone's ever done for you?", - "Have you ever had a run in with the law?", - "What's your worst habit?", - "What's the most embarrassing thing you've done in a taxi?", - "What's the worst thing you've ever said to anyone?", - "Have you ever peed in the shower?", - "What's the strangest dream you've had?", - "Have you ever been caught doing something you shouldn't have?", - "What's the worst date you've been on?", - "What's the best date you've been on?", - "What happened on the latest night out you've ever had?", - "What's your biggest regret?", - "What's the biggest misconception about you?", - "Have you ever said something you regret about someone in this room?", - "What's one thing you wish people knew about you?", - "Where's the weirdest place you've had sex?", - "Why did your last relationship break down?", - "Have you ever lied to get out of a bad date?", - "What's the most trouble you've been in?", - "When did you last have sex outside?", - "What's the worst thing you've lied about?", - "What's one thing you wish you'd lied about?", - "What's the best piece of advice you've been given?", - "What's the most you've spent on a night out?", - "Name a time you think you were a bad partner", - "What's your guilty pleasure?", - "What's one thing you only do when you're alone?", - "If you had to get back with an ex, who would you choose?", - "If you had to cut one friend out of your life, who would it be?", - "Do you have a favourite friend?", - "Do you have a favourite sibling?", - "What's the strangest rumour you've heard about yourself?", - "What's your biggest turn on?", - "What's the silliest reason you've left a club early?", - "What have you purchased that's been the biggest waste of money?", - "If you could swap lives with someone in this room, who would it be?" -] -\ No newline at end of file diff --git a/util/functions/common.js b/util/functions/common.js @@ -5,6 +5,7 @@ const weaponActualName = nmDt.weaponActualName; const weaponAlliasName = nmDt.weaponAlliasName; Object.defineProperty(String.prototype, "Simplify", { // Function to remove all characters except 0-9 and a-z + // Eg "AK-47" -> "ak47" value: function Simplify() { return this.toLowerCase().replace(/[^0-9a-z]/g, ""); }, @@ -55,7 +56,7 @@ Object.defineProperty(Number.prototype, "PlusHL", { /* Function to fix the input statement */ function inpFixer(inpmsg) { - const parts = partExtracter(inpmsg); + const parts = PartSpliter(inpmsg); // parts will be an array //eg: ["fennec", "akimbo, mono"] nmDt.attachmentAlliasName[0].map((x, i) => @@ -72,8 +73,8 @@ function inpFixer(inpmsg) { // so it fking only fix akimbo and stopping power wtf return inpmsg; } -// Function to extract the attachments from the input statement -function partExtracter(inpmsg) { +// Function to split weapon name and the attachments from the input statement +function PartSpliter(inpmsg) { if (inpmsg.includes(" + ")) { // If the input statement has multiple attachments joined by "+", split them and output them as an array of strings [0] is the weapon name, [1] is the attachments // Eg: "M4A1 + Silencer + Flashlight" -> ["M4A1", "Silencer + Flashlight"] @@ -90,7 +91,7 @@ function partExtracter(inpmsg) { function hasAttachments(inpmsg) { inpmsg = inpFixer(inpmsg); - // If + // If the input statement has multiple attachments joined by "+" or "with", split them and output them as an array of strings [0] is the weapon name, [1] is the attachments if ( inpmsg.split(" with ").filter(x => x.Simplify()).length > 1 || inpmsg.split(" + ").filter(x => x.Simplify()).length > 1 @@ -101,68 +102,83 @@ function hasAttachments(inpmsg) { } function isolator(inpmsg) { - return partExtracter(inpFixer(inpmsg)); + return PartSpliter(inpFixer(inpmsg)); } - +// identifying the weapon function weaponIdentifier(inpmsg) { const inpWeaponName = isolator(inpmsg)[0]; + // ["ak", "mono"] -> inpWeaponName: "ak" + // if weapon name is too short, return the error if (inpWeaponName.length < 2) { return inpmsg.trim().length ? `The name ${inpmsg.trim()} is too short.` : "There isn't any weapon name."; } let probableWeapons = []; + // Loop through all the weapons to find the probable weapons + // Eg: "ak" for (let i = 0; i < data.cguns.length; i++) { if (inpWeaponName.Simplify() == data.cguns[i].gunname.Simplify()) { + // if the simplified name of the weapon is the same as the weapon name in the database, return the only one stats object return JSON.parse(JSON.stringify(data.cguns[i])); } else if ( data.cguns[i].gunname.Simplify().includes(inpWeaponName.Simplify()) ) { + // If the weapon name is included in the actual name of the weapon + // push the weapon to the probableWeapons array probableWeapons.push(i); } } - + // if there is only one probable weapon, mean the gun has already been identified if (probableWeapons.length == 1) { + // if there is only one probable weapon, return the only one stats object return JSON.parse(JSON.stringify(data.cguns[probableWeapons[0]])); } - + // continue loop when there is no identified weapons or there are more than one identfied weaponds + // detecting aliases + // getting total number of weapons that had added aliases for (let i = 0; i < weaponAlliasName.length; i++) { + // getting the number of aliases of each weapon for (let j = 0; j < weaponAlliasName[i].length; j++) { + // weaponAliases[i][j] is the each alias of each weapon + // finding if simplified alias is same as input weapon name if (weaponAlliasName[i][j].Simplify() == inpWeaponName.Simplify()) { + // if simplified alias is same as input weapon name + // eg "mow" == "mow", run the loop for (let i2 = 0; i2 < data.cguns.length; i2++) { - if ( - weaponActualName[i].Simplify() == data.cguns[i2].gunname.Simplify() - ) { + if (weaponActualName[i] == data.cguns[i2].gunname) { + // use the actual name of the weapon to find the weapon return JSON.parse(JSON.stringify(data.cguns[i2])); } } } } } + // removing duplicates in the array probableWeapons = [...new Set(probableWeapons)]; - if (probableWeapons.length == 1) { + // if there is only one probable weapon, return the only one stats object + if (probableWeapons.length == 1) return JSON.parse(JSON.stringify(data.cguns[probableWeapons[0]])); - } - if (probableWeapons.length > 1) { + else if (probableWeapons.length > 1) { + // reply with the question of probable weapons return `Did you mean ${probableWeapons .map(x => data.cguns[x].gunname) .reduce((out, x, i) => [out, x].join(i === probableWeapons.length - 1 ? "` or `" : "`, `") )} ?`; - } - return `Couldn't identify the weapon: "${inpWeaponName}"`; + } else return `Couldn't identify the weapon: "${inpWeaponName}"`; } - -function attachmentsIdentifier(inpmsg, attachmentsData, inpStats) { - if (!hasAttachments(inpmsg)) { - return []; - } +// identifying attachments and return array or error +function attachmentsIdentifier(inpmsg, gun) { + if (!hasAttachments(inpmsg)) return []; // no need for isolator because using slash commands, we get individual attachment let inputAttachmentsNames = isolator(inpmsg)[1] .split(/ & |, |,| and /) .filter(x => x); + const tooSmall = inputAttachmentsNames.filter(x => x.length < 3); + // filter all elements thats shorter than 2 characters inputAttachmentsNames = inputAttachmentsNames.filter(x => !(x.length < 3)); let errorMsgs = "", errors = [], @@ -170,25 +186,21 @@ function attachmentsIdentifier(inpmsg, attachmentsData, inpStats) { if (inputAttachmentsNames.length == 0) errorMsgs += "\nAttachments are missing!\n"; - - if (inputAttachmentsNames.length >= 10) return "Cocaineeeeee"; + // if (inputAttachmentsNames.length >= 10) return "Cocaineeeeee"; ????????? // Can directly use args[] to return, no need for isolator, partExtractor, inpFixer const splitAttachmentsDataName = [], outAttachments = []; - for (let i = 0; i < attachmentsData.length; i++) { + for (let i = 0; i < gun.aments.length; i++) { splitAttachmentsDataName.push([ ...new Set( - attachmentsData[i].name + gun.aments[i].name .split(" ") .filter(x => x) .map(x => x.trim()) ), ]); - if (Math.max(...splitAttachmentsDataName.map(x => x.length)) > 6) { - return "Cocaineeeeee"; - } for (let j = 0; j < splitAttachmentsDataName[i].length; j++) { splitAttachmentsDataName[i][j] = splitAttachmentsDataName[i][j].Simplify(); @@ -235,9 +247,9 @@ function attachmentsIdentifier(inpmsg, attachmentsData, inpStats) { ) ) { var tmp1 = parseInt(inputAttachmentsNames[i]); - const tmp2 = attachmentsData.filter( + const tmp2 = gun.aments.filter( x => - x.type === 8 && x.effects[27] + x.effects[28] + inpStats[17] === tmp1 + x.type === 8 && x.effects[27] + x.effects[28] + gun.stats[17] === tmp1 ); if (tmp2.length === 1) { outAttachments.push(tmp2[0]); @@ -284,9 +296,7 @@ function attachmentsIdentifier(inpmsg, attachmentsData, inpStats) { var curr = probables[probables.length - 1]; const temp1 = probables[probables.length - 1].filter( - x => - attachmentsData[x].name.Simplify() == - inputAttachmentsNames[i].Simplify() + x => gun.aments[x].name.Simplify() == inputAttachmentsNames[i].Simplify() ); const temp2 = probables[probables.length - 1].filter( x => @@ -310,7 +320,7 @@ function attachmentsIdentifier(inpmsg, attachmentsData, inpStats) { errors.push( "`" + curr - .map(x => attachmentsData[x].name) + .map(x => gun.aments[x].name) .reduce((out, x, i) => [out, x].join(i === curr.length - 1 ? "` or `" : "`, `") ) + @@ -319,7 +329,7 @@ function attachmentsIdentifier(inpmsg, attachmentsData, inpStats) { '"`' ); } - outAttachments.push(attachmentsData[probables[probables.length - 1][0]]); + outAttachments.push(gun.aments[probables[probables.length - 1][0]]); } const outAttachmentsTypes = outAttachments.map(x => x.type - 1), t1 = outAttachments @@ -379,7 +389,7 @@ function attachmentsIdentifier(inpmsg, attachmentsData, inpStats) { return errorMsgs ? errorMsgs.trim() : outAttachments; } // console.log(attachmentsIdentifier("chopper with heavy handle, red sight, granulated", data.cguns[38].aments)); makeError(); -// console.log(attachmentsIdentifier("ak + 5mw lazer", data.cguns[0].aments)); //makeError(); +// console.log(attachmentsIdentifier("ak + 5mw lazer", data.cguns[0].aments)); makeError(); // console.log(attachmentsIdentifier("117 + 40 round mag", data.cguns[0].aments, data.cguns[0].stats)); makeError(); // console.log(attachmentsIdentifier("117 + rtc muzzle brake, rubberized griptape, tac lazer sight, 40 round mag, no stock", data.cguns[1].aments)); makeError(); diff --git a/util/functions/function.js b/util/functions/function.js @@ -503,6 +503,7 @@ const leven = (te, t) => { function chunk(arr, size) { Array.from({ length: Math.ceil(arr.length / size) }, (v, i) => { arr.slice(i * size, i * size + size); + return arr; }); } function progressBar(value, maxValue, size) {