SUBZERO-MD / index.js
mrfrank-ofc's picture
Upload 8 files
b74b1a0 verified
raw
history blame
57 kB
const {
default: makeWASocket,
useMultiFileAuthState,
DisconnectReason,
jidNormalizedUser,
getContentType,
proto,
generateWAMessageContent,
generateWAMessage,
AnyMessageContent,
prepareWAMessageMedia,
areJidsSameUser,
downloadContentFromMessage,
MessageRetryMap,
generateForwardMessageContent,
generateWAMessageFromContent,
generateMessageID, makeInMemoryStore,
jidDecode,
fetchLatestBaileysVersion,
Browsers
} = require('@whiskeysockets/baileys')
const l = console.log
const { getBuffer, getGroupAdmins, getRandom, h2k, isUrl, Json, runtime, sleep, fetchJson } = require('./lib/functions')
const fs = require('fs')
const ff = require('fluent-ffmpeg')
const P = require('pino')
const config = require('./config')
const qrcode = require('qrcode-terminal')
const StickersTypes = require('wa-sticker-formatter')
const util = require('util')
const { sms,downloadMediaMessage } = require('./lib/msg')
const FileType = require('file-type');
const axios = require('axios')
const { File } = require('megajs')
const { fromBuffer } = require('file-type')
const bodyparser = require('body-parser')
const os = require('os')
const Crypto = require('crypto')
const path = require('path')
const prefix = config.PREFIX
const ownerNumber = ['263719647303']
const tempDir = path.join(os.tmpdir(), 'cache-temp')
if (!fs.existsSync(tempDir)) {
fs.mkdirSync(tempDir)
}
const clearTempDir = () => {
fs.readdir(tempDir, (err, files) => {
if (err) throw err;
for (const file of files) {
fs.unlink(path.join(tempDir, file), err => {
if (err) throw err;
});
}
});
}
// Clear the temp directory every 5 minutes
setInterval(clearTempDir, 5 * 60 * 1000);
//===================SESSION-AUTH============================
if (!fs.existsSync(__dirname + '/sessions/creds.json')) {
if(!config.SESSION_ID) return console.log('Please add your session to SESSION_ID env !!')
const sessdata = config.SESSION_ID.replace("SUBZERO-MD~", '');//Do not touch this
const filer = File.fromURL(`https://mega.nz/file/${sessdata}`)
filer.download((err, data) => {
if(err) throw err
fs.writeFile(__dirname + '/sessions/creds.json', data, () => {
console.log("SubZero Session downloaded โœ…")
})})}
const express = require("express");
const app = express();
const port = process.env.PORT || 9090;
//=============================================
async function connectToWA() {
console.log("[ โ„๏ธ ] SubZero Connecting to WhatsApp โณ๏ธ...");
const { state, saveCreds } = await useMultiFileAuthState(__dirname + '/sessions/')
var { version } = await fetchLatestBaileysVersion()
const conn = makeWASocket({
logger: P({ level: 'silent' }),
printQRInTerminal: false,
browser: Browsers.macOS("Firefox"),
syncFullHistory: true,
auth: state,
version
})
conn.ev.on('connection.update', (update) => {
const { connection, lastDisconnect } = update
if (connection === 'close') {
if (lastDisconnect.error.output.statusCode !== DisconnectReason.loggedOut) {
connectToWA()
}
} else if (connection === 'open') {
console.log('[ โ„๏ธ ] ๐Ÿ› ๏ธ Installing Plugins.')
const path = require('path');
fs.readdirSync("./plugins/").forEach((plugin) => {
if (path.extname(plugin).toLowerCase() == ".js") {
require("./plugins/" + plugin);
}
});
console.log('[ โ„๏ธ ] Plugins installed successful โœ…')
console.log('[ โ„๏ธ ] SubZero MD connected to whatsapp โœ…')
let up = `*Hi Owner๐Ÿ˜‡, Congrats SubZero Connected Successfully๐Ÿงธ! \ud83d\udc4b\ud83c\udffb* \n\n> Light, Cold, Icy, Fast & Rich Loaded With Features, SubZero W.A Bot.\n\n *Thanks for using SUBZERO-MD โ„๏ธ* \n\n> Join WhatsApp Channel :- ๐Ÿ› ๏ธ\n \nhttps://whatsapp.com/channel/0029VagQEmB002T7MWo3Sj1D\n\n- *แƒงฯƒยตษพ ษ“ฯƒฦญ ฯษพฮตฦ’เน€ื โžœ* ${prefix}\n\nDont forget to star our repoโ˜บ \n\nhttps://github.com/mrfrank-ofc/SUBZERO-MD\n\n> ยฉ ๐ŸŽแด˜ฯ™แดกแด‡ส€แด‡แด… ส™ส แดส€ ๊œฐส€แด€ษดแด‹ แด๊œฐแด„ โšก`;
conn.sendMessage(conn.user.id, { image: { url: `https://i.ibb.co/8NBwB9P/mrfrankofc.jpg` }, caption: up })
}
})
conn.ev.on('creds.update', saveCreds)
//=============readstatus=======
conn.ev.on('messages.upsert', async(mek) => {
mek = mek.messages[0]
if (!mek.message) return
mek.message = (getContentType(mek.message) === 'ephemeralMessage')
? mek.message.ephemeralMessage.message
: mek.message;
if (config.READ_MESSAGE === 'true') {
await conn.readMessages([mek.key]); // Mark message as read
console.log(`Marked message from ${mek.key.remoteJid} as read.`);
}
if(mek.message.viewOnceMessageV2)
mek.message = (getContentType(mek.message) === 'ephemeralMessage') ? mek.message.ephemeralMessage.message : mek.message
if (mek.key && mek.key.remoteJid === 'status@broadcast' && config.AUTO_STATUS_SEEN === "true"){
await conn.readMessages([mek.key])
}
if (mek.key && mek.key.remoteJid === 'status@broadcast' && config.AUTO_STATUS_REPLY === "true"){
const user = mek.key.participant
const text = `${config.AUTO_STATUS_MSG}`
await conn.sendMessage(user, { text: text, react: { text: '๐Ÿ’œ', key: mek.key } }, { quoted: mek })
}
let jawadik = mek.message.viewOnceMessageV2
let jawadik1 = mek.mtype === "viewOnceMessage"
if (jawadik && config.ANTI_VV === "true") {
if (jawadik.message.imageMessage) {
let cap = jawadik.message.imageMessage.caption;
let anu = await conn.downloadAndSaveMediaMessage(jawadik.message.imageMessage);
return conn.sendMessage("[email protected]", { image: { url: anu }, caption: cap }, { quoted: mek });
} if (jawadik.message.videoMessage) {
let cap = jawadik.message.videoMessage.caption;
let anu = await conn.downloadAndSaveMediaMessage(jawadik.message.videoMessage);
return conn.sendMessage("[email protected]", { video: { url: anu }, caption: cap }, { quoted: mek });
} if (jawadik.message.audioMessage) {
let anu = await conn.downloadAndSaveMediaMessage(jawadik.message.audioMessage);
return conn.sendMessage("[email protected]", { audio: { url: anu }, caption: cap }, { quoted: mek });
}
}
const m = sms(conn, mek)
const type = getContentType(mek.message)
const content = JSON.stringify(mek.message)
const from = mek.key.remoteJid
const quoted = type == 'extendedTextMessage' && mek.message.extendedTextMessage.contextInfo != null ? mek.message.extendedTextMessage.contextInfo.quotedMessage || [] : []
const body = (type === 'conversation') ? mek.message.conversation : (type === 'extendedTextMessage') ? mek.message.extendedTextMessage.text : (type == 'imageMessage') && mek.message.imageMessage.caption ? mek.message.imageMessage.caption : (type == 'videoMessage') && mek.message.videoMessage.caption ? mek.message.videoMessage.caption : ''
const isCmd = body.startsWith(prefix)
const command = isCmd ? body.slice(prefix.length).trim().split(' ').shift().toLowerCase() : ''
const args = body.trim().split(/ +/).slice(1)
const q = args.join(' ')
const isGroup = from.endsWith('@g.us')
const sender = mek.key.fromMe ? (conn.user.id.split(':')[0]+'@s.whatsapp.net' || conn.user.id) : (mek.key.participant || mek.key.remoteJid)
const senderNumber = sender.split('@')[0]
const botNumber = conn.user.id.split(':')[0]
const pushname = mek.pushName || 'Sin Nombre'
const isMe = botNumber.includes(senderNumber)
const isOwner = ownerNumber.includes(senderNumber) || isMe
const botNumber2 = await jidNormalizedUser(conn.user.id);
const groupMetadata = isGroup ? await conn.groupMetadata(from).catch(e => {}) : ''
const groupName = isGroup ? groupMetadata.subject : ''
const participants = isGroup ? await groupMetadata.participants : ''
const groupAdmins = isGroup ? await getGroupAdmins(participants) : ''
const isBotAdmins = isGroup ? groupAdmins.includes(botNumber2) : false
const isAdmins = isGroup ? groupAdmins.includes(sender) : false
const isReact = m.message.reactionMessage ? true : false
const reply = (teks) => {
conn.sendMessage(from, { text: teks }, { quoted: mek })
}
//===================================================
conn.decodeJid = jid => {
if (!jid) return jid;
if (/:\d+@/gi.test(jid)) {
let decode = jidDecode(jid) || {};
return (
(decode.user &&
decode.server &&
decode.user + '@' + decode.server) ||
jid
);
} else return jid;
};
//===================================================
conn.copyNForward = async(jid, message, forceForward = false, options = {}) => {
let vtype
if (options.readViewOnce) {
message.message = message.message && message.message.ephemeralMessage && message.message.ephemeralMessage.message ? message.message.ephemeralMessage.message : (message.message || undefined)
vtype = Object.keys(message.message.viewOnceMessage.message)[0]
delete(message.message && message.message.ignore ? message.message.ignore : (message.message || undefined))
delete message.message.viewOnceMessage.message[vtype].viewOnce
message.message = {
...message.message.viewOnceMessage.message
}
}
let mtype = Object.keys(message.message)[0]
let content = await generateForwardMessageContent(message, forceForward)
let ctype = Object.keys(content)[0]
let context = {}
if (mtype != "conversation") context = message.message[mtype].contextInfo
content[ctype].contextInfo = {
...context,
...content[ctype].contextInfo
}
const waMessage = await generateWAMessageFromContent(jid, content, options ? {
...content[ctype],
...options,
...(options.contextInfo ? {
contextInfo: {
...content[ctype].contextInfo,
...options.contextInfo
}
} : {})
} : {})
await conn.relayMessage(jid, waMessage.message, { messageId: waMessage.key.id })
return waMessage
}
//=================================================
conn.downloadAndSaveMediaMessage = async(message, filename, attachExtension = true) => {
let quoted = message.msg ? message.msg : message
let mime = (message.msg || message).mimetype || ''
let messageType = message.mtype ? message.mtype.replace(/Message/gi, '') : mime.split('/')[0]
const stream = await downloadContentFromMessage(quoted, messageType)
let buffer = Buffer.from([])
for await (const chunk of stream) {
buffer = Buffer.concat([buffer, chunk])
}
let type = await FileType.fromBuffer(buffer)
trueFileName = attachExtension ? (filename + '.' + type.ext) : filename
// save to file
await fs.writeFileSync(trueFileName, buffer)
return trueFileName
}
//=================================================
conn.downloadMediaMessage = async(message) => {
let mime = (message.msg || message).mimetype || ''
let messageType = message.mtype ? message.mtype.replace(/Message/gi, '') : mime.split('/')[0]
const stream = await downloadContentFromMessage(message, messageType)
let buffer = Buffer.from([])
for await (const chunk of stream) {
buffer = Buffer.concat([buffer, chunk])
}
return buffer
}
/**
*
* @param {*} jid
* @param {*} message
* @param {*} forceForward
* @param {*} options
* @returns
*/
//================================================
conn.sendFileUrl = async (jid, url, caption, quoted, options = {}) => {
let mime = '';
let res = await axios.head(url)
mime = res.headers['content-type']
if (mime.split("/")[1] === "gif") {
return conn.sendMessage(jid, { video: await getBuffer(url), caption: caption, gifPlayback: true, ...options }, { quoted: quoted, ...options })
}
let type = mime.split("/")[0] + "Message"
if (mime === "application/pdf") {
return conn.sendMessage(jid, { document: await getBuffer(url), mimetype: 'application/pdf', caption: caption, ...options }, { quoted: quoted, ...options })
}
if (mime.split("/")[0] === "image") {
return conn.sendMessage(jid, { image: await getBuffer(url), caption: caption, ...options }, { quoted: quoted, ...options })
}
if (mime.split("/")[0] === "video") {
return conn.sendMessage(jid, { video: await getBuffer(url), caption: caption, mimetype: 'video/mp4', ...options }, { quoted: quoted, ...options })
}
if (mime.split("/")[0] === "audio") {
return conn.sendMessage(jid, { audio: await getBuffer(url), caption: caption, mimetype: 'audio/mpeg', ...options }, { quoted: quoted, ...options })
}
}
//==========================================================
conn.cMod = (jid, copy, text = '', sender = conn.user.id, options = {}) => {
//let copy = message.toJSON()
let mtype = Object.keys(copy.message)[0]
let isEphemeral = mtype === 'ephemeralMessage'
if (isEphemeral) {
mtype = Object.keys(copy.message.ephemeralMessage.message)[0]
}
let msg = isEphemeral ? copy.message.ephemeralMessage.message : copy.message
let content = msg[mtype]
if (typeof content === 'string') msg[mtype] = text || content
else if (content.caption) content.caption = text || content.caption
else if (content.text) content.text = text || content.text
if (typeof content !== 'string') msg[mtype] = {
...content,
...options
}
if (copy.key.participant) sender = copy.key.participant = sender || copy.key.participant
else if (copy.key.participant) sender = copy.key.participant = sender || copy.key.participant
if (copy.key.remoteJid.includes('@s.whatsapp.net')) sender = sender || copy.key.remoteJid
else if (copy.key.remoteJid.includes('@broadcast')) sender = sender || copy.key.remoteJid
copy.key.remoteJid = jid
copy.key.fromMe = sender === conn.user.id
return proto.WebMessageInfo.fromObject(copy)
}
/**
*
* @param {*} path
* @returns
*/
//=====================================================
conn.getFile = async(PATH, save) => {
let res
let data = Buffer.isBuffer(PATH) ? PATH : /^data:.*?\/.*?;base64,/i.test(PATH) ? Buffer.from(PATH.split `,` [1], 'base64') : /^https?:\/\//.test(PATH) ? await (res = await getBuffer(PATH)) : fs.existsSync(PATH) ? (filename = PATH, fs.readFileSync(PATH)) : typeof PATH === 'string' ? PATH : Buffer.alloc(0)
//if (!Buffer.isBuffer(data)) throw new TypeError('Result is not a buffer')
let type = await FileType.fromBuffer(data) || {
mime: 'application/octet-stream',
ext: '.bin'
}
let filename = path.join(__filename, __dirname + new Date * 1 + '.' + type.ext)
if (data && save) fs.promises.writeFile(filename, data)
return {
res,
filename,
size: await getSizeMedia(data),
...type,
data
}
}
//=====================================================
conn.sendFile = async(jid, PATH, fileName, quoted = {}, options = {}) => {
let types = await conn.getFile(PATH, true)
let { filename, size, ext, mime, data } = types
let type = '',
mimetype = mime,
pathFile = filename
if (options.asDocument) type = 'document'
if (options.asSticker || /webp/.test(mime)) {
let { writeExif } = require('./exif.js')
let media = { mimetype: mime, data }
pathFile = await writeExif(media, { packname: Config.packname, author: Config.packname, categories: options.categories ? options.categories : [] })
await fs.promises.unlink(filename)
type = 'sticker'
mimetype = 'image/webp'
} else if (/image/.test(mime)) type = 'image'
else if (/video/.test(mime)) type = 'video'
else if (/audio/.test(mime)) type = 'audio'
else type = 'document'
await conn.sendMessage(jid, {
[type]: { url: pathFile },
mimetype,
fileName,
...options
}, { quoted, ...options })
return fs.promises.unlink(pathFile)
}
//=====================================================
conn.parseMention = async(text) => {
return [...text.matchAll(/@([0-9]{5,16}|0)/g)].map(v => v[1] + '@s.whatsapp.net')
}
//=====================================================
conn.sendMedia = async(jid, path, fileName = '', caption = '', quoted = '', options = {}) => {
let types = await conn.getFile(path, true)
let { mime, ext, res, data, filename } = types
if (res && res.status !== 200 || file.length <= 65536) {
try { throw { json: JSON.parse(file.toString()) } } catch (e) { if (e.json) throw e.json }
}
let type = '',
mimetype = mime,
pathFile = filename
if (options.asDocument) type = 'document'
if (options.asSticker || /webp/.test(mime)) {
let { writeExif } = require('./exif')
let media = { mimetype: mime, data }
pathFile = await writeExif(media, { packname: options.packname ? options.packname : Config.packname, author: options.author ? options.author : Config.author, categories: options.categories ? options.categories : [] })
await fs.promises.unlink(filename)
type = 'sticker'
mimetype = 'image/webp'
} else if (/image/.test(mime)) type = 'image'
else if (/video/.test(mime)) type = 'video'
else if (/audio/.test(mime)) type = 'audio'
else type = 'document'
await conn.sendMessage(jid, {
[type]: { url: pathFile },
caption,
mimetype,
fileName,
...options
}, { quoted, ...options })
return fs.promises.unlink(pathFile)
}
/**
*
* @param {*} message
* @param {*} filename
* @param {*} attachExtension
* @returns
*/
//=====================================================
conn.sendVideoAsSticker = async (jid, buff, options = {}) => {
let buffer;
if (options && (options.packname || options.author)) {
buffer = await writeExifVid(buff, options);
} else {
buffer = await videoToWebp(buff);
}
await conn.sendMessage(
jid,
{ sticker: { url: buffer }, ...options },
options
);
};
//=====================================================
conn.sendImageAsSticker = async (jid, buff, options = {}) => {
let buffer;
if (options && (options.packname || options.author)) {
buffer = await writeExifImg(buff, options);
} else {
buffer = await imageToWebp(buff);
}
await conn.sendMessage(
jid,
{ sticker: { url: buffer }, ...options },
options
);
};
/**
*
* @param {*} jid
* @param {*} path
* @param {*} quoted
* @param {*} options
* @returns
*/
//=====================================================
conn.sendTextWithMentions = async(jid, text, quoted, options = {}) => conn.sendMessage(jid, { text: text, contextInfo: { mentionedJid: [...text.matchAll(/@(\d{0,16})/g)].map(v => v[1] + '@s.whatsapp.net') }, ...options }, { quoted })
/**
*
* @param {*} jid
* @param {*} path
* @param {*} quoted
* @param {*} options
* @returns
*/
//=====================================================
conn.sendImage = async(jid, path, caption = '', quoted = '', options) => {
let buffer = Buffer.isBuffer(path) ? path : /^data:.*?\/.*?;base64,/i.test(path) ? Buffer.from(path.split `,` [1], 'base64') : /^https?:\/\//.test(path) ? await (await getBuffer(path)) : fs.existsSync(path) ? fs.readFileSync(path) : Buffer.alloc(0)
return await conn.sendMessage(jid, { image: buffer, caption: caption, ...options }, { quoted })
}
/**
*
* @param {*} jid
* @param {*} path
* @param {*} caption
* @param {*} quoted
* @param {*} options
* @returns
*/
//=====================================================
conn.sendText = (jid, text, quoted = '', options) => conn.sendMessage(jid, { text: text, ...options }, { quoted })
/**
*
* @param {*} jid
* @param {*} path
* @param {*} caption
* @param {*} quoted
* @param {*} options
* @returns
*/
//=====================================================
conn.sendButtonText = (jid, buttons = [], text, footer, quoted = '', options = {}) => {
let buttonMessage = {
text,
footer,
buttons,
headerType: 2,
...options
}
//========================================================================================================================================
conn.sendMessage(jid, buttonMessage, { quoted, ...options })
}
//=====================================================
conn.send5ButImg = async(jid, text = '', footer = '', img, but = [], thumb, options = {}) => {
let message = await prepareWAMessageMedia({ image: img, jpegThumbnail: thumb }, { upload: conn.waUploadToServer })
var template = generateWAMessageFromContent(jid, proto.Message.fromObject({
templateMessage: {
hydratedTemplate: {
imageMessage: message.imageMessage,
"hydratedContentText": text,
"hydratedFooterText": footer,
"hydratedButtons": but
}
}
}), options)
conn.relayMessage(jid, template.message, { messageId: template.key.id })
}
/**
*
* @param {*} jid
* @param {*} buttons
* @param {*} caption
* @param {*} footer
* @param {*} quoted
* @param {*} options
*/
//=====Auto-Read-Cmd==========
if (isCmd && config.READ_CMD === "true") {
await conn.readMessages([mek.key]) // Mark command as read
}
//================ownerreact==============
if(senderNumber.includes("263719647303")){
if(isReact) return
m.react("๐Ÿงธ")
}
//==========public react============//
// Auto React
if (!isReact && senderNumber !== botNumber) {
if (config.AUTO_REACT === 'true') {
const reactions = ['๐Ÿ˜Š', '๐Ÿ‘', '๐Ÿ˜‚', '๐Ÿ’ฏ', '๐Ÿ”ฅ', '๐Ÿ™', '๐ŸŽ‰', '๐Ÿ‘', '๐Ÿ˜Ž', '๐Ÿค–', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐Ÿต', '๐Ÿฐ', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿฃ', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', '๐Ÿจ', '๐Ÿฉ', '๐Ÿช', '๐Ÿซ', '๐Ÿฌ', '๐Ÿญ', '๐Ÿฎ', '๐Ÿฏ', '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', '๐Ÿ›ธ', '๐Ÿ›น', '๐Ÿšด', '๐Ÿšฒ', '๐Ÿ›บ', '๐Ÿšฎ', '๐Ÿšฏ', '๐Ÿšฑ', '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐Ÿต', '๐Ÿฐ', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿฃ', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', '๐Ÿจ', '๐Ÿฉ', '๐Ÿช', '๐Ÿซ', '๐Ÿฌ', '๐Ÿญ', '๐Ÿฎ', '๐Ÿฏ', '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', '๐Ÿ›ธ', '๐Ÿ›น', '๐Ÿšด', '๐Ÿšฒ', '๐Ÿ›บ', '๐Ÿšฎ', '๐Ÿšฏ', '๐Ÿšฑ', '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐Ÿต', '๐Ÿฐ', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿฃ', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', '๐Ÿจ', '๐Ÿฉ', '๐Ÿช', '๐Ÿซ', '๐Ÿฌ', '๐Ÿญ', '๐Ÿฎ', '๐Ÿฏ', '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', '๐Ÿ›ธ', '๐Ÿ›น', '๐Ÿšด', '๐Ÿšฒ', '๐Ÿ›บ', '๐Ÿšฎ', '๐Ÿšฏ', '๐Ÿšฑ', '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ™‚', '๐Ÿ˜‘', '๐Ÿคฃ', '๐Ÿ˜', '๐Ÿ˜˜', '๐Ÿ˜—', '๐Ÿ˜™', '๐Ÿ˜š', '๐Ÿ˜›', '๐Ÿ˜', '๐Ÿ˜ž', '๐Ÿ˜Ÿ', '๐Ÿ˜ ', '๐Ÿ˜ก', '๐Ÿ˜ข', '๐Ÿ˜ญ', '๐Ÿ˜“', '๐Ÿ˜ณ', '๐Ÿ˜ด', '๐Ÿ˜Œ', '๐Ÿ˜†', '๐Ÿ˜‚', '๐Ÿค”', '๐Ÿ˜’', '๐Ÿ˜“', '๐Ÿ˜ถ', '๐Ÿ™„', '๐Ÿถ', '๐Ÿฑ', '๐Ÿ”', '๐Ÿท', '๐Ÿด', '๐Ÿฒ', '๐Ÿธ', '๐Ÿณ', '๐Ÿ‹', '๐Ÿ’', '๐Ÿ‘', '๐Ÿ•', '๐Ÿฉ', '๐Ÿ”', '๐Ÿ•', '๐Ÿฅค', '๐Ÿฃ', '๐Ÿฒ', '๐Ÿด', '๐Ÿฝ', '๐Ÿน', '๐Ÿธ', '๐ŸŽ‚', '๐Ÿ“ฑ', '๐Ÿ“บ', '๐Ÿ“ป', '๐ŸŽค', '๐Ÿ“š', '๐Ÿ’ป', '๐Ÿ“ธ', '๐Ÿ“ท', 'โค๏ธ', '๐Ÿ’”', 'โฃ๏ธ', 'โ˜€๏ธ', '๐ŸŒ™', '๐ŸŒƒ', '๐Ÿ ', '๐Ÿšช', "๐Ÿ‡บ๐Ÿ‡ธ", "๐Ÿ‡ฌ๐Ÿ‡ง", "๐Ÿ‡จ๐Ÿ‡ฆ", "๐Ÿ‡ฆ๐Ÿ‡บ", "๐Ÿ‡ฏ๐Ÿ‡ต", "๐Ÿ‡ซ๐Ÿ‡ท", "๐Ÿ‡ช๐Ÿ‡ธ", '๐Ÿ‘', '๐Ÿ‘Ž', '๐Ÿ‘', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', '๐Ÿค', '๐Ÿ™', '๐Ÿ‘‘', '๐ŸŒป', '๐ŸŒบ', '๐ŸŒธ', '๐ŸŒน', '๐ŸŒด', "๐Ÿž๏ธ", '๐ŸŒŠ', '๐Ÿš—', '๐ŸšŒ', "๐Ÿ›ฃ๏ธ", "๐Ÿ›ซ๏ธ", "๐Ÿ›ฌ๏ธ", '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', "๐Ÿƒโ€โ™‚๏ธ", "๐Ÿ‹๏ธโ€โ™€๏ธ", "๐ŸŠโ€โ™‚๏ธ", "๐Ÿ„โ€โ™‚๏ธ", '๐ŸŽพ', '๐Ÿ€', '๐Ÿˆ', '๐ŸŽฏ', '๐Ÿ†', '??', 'โฌ†๏ธ', 'โฌ‡๏ธ', 'โ‡’', 'โ‡', 'โ†ฉ๏ธ', 'โ†ช๏ธ', 'โ„น๏ธ', 'โ€ผ๏ธ', 'โ‰๏ธ', 'โ€ฝ๏ธ', 'ยฉ๏ธ', 'ยฎ๏ธ', 'โ„ข๏ธ', '๐Ÿ”ด', '๐Ÿ”ต', '๐ŸŸข', '๐Ÿ”น', '๐Ÿ”บ', '๐Ÿ’ฏ', '๐Ÿ‘‘', '๐Ÿคฃ', "๐Ÿคทโ€โ™‚๏ธ", "๐Ÿคทโ€โ™€๏ธ", "๐Ÿ™…โ€โ™‚๏ธ", "๐Ÿ™…โ€โ™€๏ธ", "๐Ÿ™†โ€โ™‚๏ธ", "๐Ÿ™†โ€โ™€๏ธ", "๐Ÿคฆโ€โ™‚๏ธ", "๐Ÿคฆโ€โ™€๏ธ", '๐Ÿป', '๐Ÿ’†โ€โ™‚๏ธ', "๐Ÿ’†โ€โ™€๏ธ", "๐Ÿ•ดโ€โ™‚๏ธ", "๐Ÿ•ดโ€โ™€๏ธ", "๐Ÿ’‡โ€โ™‚๏ธ", "๐Ÿ’‡โ€โ™€๏ธ", '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๏ฟฝ', '๐Ÿฏ', '๐Ÿฐ', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿฃ', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', '๐Ÿจ', '๐Ÿฉ', '๐Ÿช', '๐Ÿซ', '๐Ÿฌ', '๐Ÿญ', '๐Ÿฎ', '๐Ÿฏ', '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', '๐Ÿ›ธ', '๐Ÿ›น', '๐Ÿšด', '๐Ÿšฒ', '๐Ÿ›บ', '๐Ÿšฎ', '๐Ÿšฏ', '๐Ÿšฑ', '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐ŸŒณ', '๐ŸŒฒ', '๐ŸŒพ', '๐ŸŒฟ', '๐Ÿƒ', '๐Ÿ‚', '๐Ÿƒ', '๐ŸŒป', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒธ', '๐ŸŒด', '๐Ÿต', '๐ŸŽ€', '๐Ÿ†', '๐Ÿˆ', '๐Ÿ‰', '๐ŸŽฏ', '๐Ÿ€', '๐ŸŠ', '๐Ÿ‹', '๐ŸŒ', '๐ŸŽฒ', '๐Ÿ“š', '๐Ÿ“–', '๐Ÿ“œ', '๐Ÿ“', '๐Ÿ’ญ', '๐Ÿ’ฌ', '๐Ÿ—ฃ', '๐Ÿ’ซ', '๐ŸŒŸ', '๐ŸŒ ', '๐ŸŽ‰', '๐ŸŽŠ', '๐Ÿ‘', '๐Ÿ’ฅ', '๐Ÿ”ฅ', '๐Ÿ’ฅ', '๐ŸŒช', '๐Ÿ’จ', '๐ŸŒซ', '๐ŸŒฌ', '๐ŸŒฉ', '๐ŸŒจ', '๐ŸŒง', '๐ŸŒฆ', '๐ŸŒฅ', '๐ŸŒก', '๐ŸŒช', '๐ŸŒซ', '๐ŸŒฌ', '๐ŸŒฉ', '๐ŸŒจ', '๐ŸŒง', '๐ŸŒฆ', '๐ŸŒฅ', '๐ŸŒก', '๐ŸŒช', '๐ŸŒซ', '๐ŸŒฌ', '๐ŸŒฉ', '๐ŸŒจ', '๐ŸŒง', '๐ŸŒฆ', '๐ŸŒฅ', '๐ŸŒก', '๐ŸŒฑ', '๐ŸŒฟ', '๐Ÿƒ', '๐Ÿ‚', '๐ŸŒป', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒธ', '๐ŸŒด', '๐Ÿต', '๐ŸŽ€', '๐Ÿ†', '๐Ÿˆ', '๐Ÿ‰', '๐ŸŽฏ', '๐Ÿ€', '๐ŸŠ', '๐Ÿ‹', '๐ŸŒ', '๐ŸŽฒ', '๐Ÿ“š', '๐Ÿ“–', '๐Ÿ“œ', '๐Ÿ“', '๐Ÿ’ญ', '๐Ÿ’ฌ', '๐Ÿ—ฃ', '๐Ÿ’ซ', '๐ŸŒŸ', '๐ŸŒ ', '๐ŸŽ‰', '๐ŸŽŠ', '๐Ÿ‘', '๐Ÿ’ฅ', '๐Ÿ”ฅ', '๐Ÿ’ฅ', '๐ŸŒช', '๐Ÿ’จ', '๐ŸŒซ', '๐ŸŒฌ', '๐ŸŒฉ', '๐ŸŒจ', '๐ŸŒง', '๐ŸŒฆ', '๐ŸŒฅ', '๐ŸŒก', '๐ŸŒช', '๐ŸŒซ', '๐ŸŒฌ', '๐ŸŒฉ', '๐ŸŒจ', '๐ŸŒง', '๐ŸŒฆ', '๐ŸŒฅ', '๐ŸŒก', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐Ÿต', '๐Ÿฐ', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿฃ', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', '๐Ÿจ', '๐Ÿฉ', '๐Ÿช', '๐Ÿซ', '๐Ÿฌ', '๐Ÿญ', '๐Ÿฎ', '๐Ÿฏ', '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', '๐Ÿ›ธ', '๐Ÿ›น', '๐Ÿšด', '๐Ÿšฒ', '๐Ÿ›บ', '๐Ÿšฎ', '๐Ÿšฏ', '๐Ÿšฑ', '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐Ÿต', '๐Ÿฐ', '๐Ÿ’', '๐Ÿฆ', '๐Ÿฆง', '๐Ÿถ', '๐Ÿ•', '๐Ÿฆฎ', "๐Ÿ•โ€๐Ÿฆบ", '๐Ÿฉ', '๐Ÿบ', '๐ŸฆŠ', '๐Ÿฆ', '๐Ÿฑ', '๐Ÿˆ', "๐Ÿˆโ€โฌ›", '๐Ÿฆ', '๐Ÿฏ', '๐Ÿ…', '๐Ÿ†', '๐Ÿด', '๐ŸŽ', '๐Ÿฆ„', '๐Ÿฆ“', '๐ŸฆŒ', '๐Ÿฆฌ', '๐Ÿฎ', '๐Ÿ‚', '๐Ÿƒ', '๐Ÿ„', '๐Ÿท', '๐Ÿ–', '๐Ÿ—', '๐Ÿฝ', '๐Ÿ', '๐Ÿ‘', '๐Ÿ', '๐Ÿช', '๐Ÿซ', '๐Ÿฆ™', '๐Ÿฆ’', '๐Ÿ˜', '๐Ÿฆฃ', '๐Ÿฆ', '๐Ÿฆ›', '๐Ÿญ', '๐Ÿ', '๐Ÿ€', '๐Ÿน', '๐Ÿฐ', '๐Ÿ‡', "๐Ÿฟ๏ธ", '๐Ÿฆซ', '๐Ÿฆ”', '๐Ÿฆ‡', '๐Ÿป', "๐Ÿปโ€โ„๏ธ", '๐Ÿจ', '๐Ÿผ', '๐Ÿฆฅ', '๐Ÿฆฆ', '๐Ÿฆจ', '๐Ÿฆ˜', '๐Ÿฆก', '๐Ÿพ', '๐Ÿฆƒ', '๐Ÿ”', '๐Ÿ“', '๐Ÿฃ', '๐Ÿค', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', "๐Ÿ•Š๏ธ", '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆข', '๐Ÿฆ‰', '๐Ÿฆค', '๐Ÿชถ', '๐Ÿฆฉ', '๐Ÿฆš', '๐Ÿฆœ', '๐Ÿธ', '๐ŸŠ', '๐Ÿข', '๐ŸฆŽ', '๐Ÿ', '๐Ÿฒ', '๐Ÿ‰', '๐Ÿฆ•', '๐Ÿฆ–', '๐Ÿณ', '๐Ÿ‹', '๐Ÿฌ', '๐Ÿฆญ', '๐ŸŸ', '๐Ÿ ', '๐Ÿ˜€', '๐Ÿ˜ƒ', '๐Ÿ˜„', '๐Ÿ˜', '๐Ÿ˜†', '๐Ÿ˜…', '๐Ÿคฃ', '๐Ÿ˜‚', '๐Ÿ™‚', '๐Ÿ™ƒ', '๐Ÿ˜‰', '๐Ÿ˜Š', '๐Ÿ˜‡', '๐Ÿฅฐ', '๐Ÿ˜', '๐Ÿคฉ', '๐Ÿ˜˜', '๐Ÿ˜—', 'โ˜บ๏ธ', '๐Ÿ˜š', '๐Ÿ˜™', '๐Ÿฅฒ', '๐Ÿ˜‹', '๐Ÿ˜›', '๐Ÿ˜œ', '๐Ÿคช', '๐Ÿ˜', '๐Ÿค‘', '๐Ÿค—', '๐Ÿคญ', '๐Ÿคซ', '๐Ÿค”', '๐Ÿค', '๐Ÿคจ', '๐Ÿ˜', '๐Ÿ˜‘', '๐Ÿ˜ถ', "๐Ÿ˜ถโ€๐ŸŒซ๏ธ", '๐Ÿ˜', '๐Ÿ˜’', '๐Ÿ™„', '๐Ÿ˜ฌ', "๐Ÿ˜ฎโ€๐Ÿ’จ", '๐Ÿคฅ', '๐Ÿ˜Œ', '๐Ÿ˜”', '๐Ÿ˜ช', '๐Ÿคค', '๐Ÿ˜ด', '๐Ÿ˜ท', '๐Ÿค’', '๐Ÿค•', '๐Ÿคข', '๐Ÿคฎ', '๐Ÿคง', '๐Ÿฅต', '๐Ÿฅถ', '๐Ÿฅด', '๐Ÿ˜ต', "๐Ÿ˜ตโ€๐Ÿ’ซ", '๐Ÿคฏ', '๐Ÿค ', '๐Ÿฅณ', '๐Ÿฅธ', '๐Ÿ˜Ž', '๐Ÿค“', '๐Ÿง', '๐Ÿ˜•', '๐Ÿ˜Ÿ', '๐Ÿ™', 'โ˜น๏ธ', '๐Ÿ˜ฎ', '๐Ÿ˜ฏ', '๐Ÿ˜ฒ', '๐Ÿ˜ณ', '๐Ÿฅบ', '๐Ÿ˜ฆ', '๐Ÿ˜ง', '๐Ÿ˜จ', '๐Ÿ˜ฐ', '๐Ÿ˜ฅ', '๐Ÿ˜ข', '๐Ÿ˜ญ', '๐Ÿ˜ฑ', '๐Ÿ˜–', '๐Ÿ˜ฃ', '๐Ÿ˜ž', '๐Ÿ˜“', '๐Ÿ˜ฉ', '๐Ÿ˜ซ', '๐Ÿฅฑ', '๐Ÿ˜ค', '๐Ÿ˜ก', '๐Ÿ˜ ', '๐Ÿคฌ', '๐Ÿ˜ˆ', '๐Ÿ‘ฟ', '๐Ÿ’€', 'โ˜ ๏ธ', '๐Ÿ’ฉ', '๐Ÿคก', '๐Ÿ‘น', '๐Ÿ‘บ', '๐Ÿ‘ป', '๐Ÿ‘ฝ', '๐Ÿ‘พ', '๐Ÿค–', '๐Ÿ˜บ', '๐Ÿ˜ธ', '๐Ÿ˜น', '๐Ÿ˜ป', '๐Ÿ˜ผ', '๐Ÿ˜ฝ', '๐Ÿ™€', '๐Ÿ˜ฟ', '๐Ÿ˜พ', '๐Ÿ™ˆ', '๐Ÿ™‰', '๐Ÿ™Š', '๐Ÿ’‹', '๐Ÿ’Œ', '๐Ÿ’˜', '๐Ÿ’', '๐Ÿ’–', '๐Ÿ’—', '๐Ÿ’“', '๐Ÿ’ž', '๐Ÿ’•', '๐Ÿ’Ÿ', 'โฃ๏ธ', '๐Ÿ’”', "โค๏ธโ€๐Ÿ”ฅ", "โค๏ธโ€๐Ÿฉน", 'โค๏ธ', '๐Ÿงก', '๐Ÿ’›', '๐Ÿ’š', '๐Ÿ’™', '๐Ÿ’œ', '๐ŸคŽ', '๐Ÿ–ค', '๐Ÿค', '๐Ÿ’ฏ', '๐Ÿ’ข', '๐Ÿ’ฅ', '๐Ÿ’ซ', '๐Ÿ’ฆ', '๐Ÿ’จ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ’ฌ', "๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ", "๐Ÿ—จ๏ธ", "๐Ÿ—ฏ๏ธ", '๐Ÿ’ญ', '๐Ÿ’ค', '๐Ÿ‘‹', '๐Ÿคš', "๐Ÿ–๏ธ", 'โœ‹', '๐Ÿ––', '๐Ÿ‘Œ', '๐ŸคŒ', '๐Ÿค', 'โœŒ๏ธ', '๐Ÿคž', '๐ŸคŸ', '๐Ÿค˜', '๐Ÿค™', '๐Ÿ‘ˆ', '๐Ÿ‘‰', '๐Ÿ‘†', '๐Ÿ–•', '๐Ÿ‘‡', 'โ˜๏ธ', '๐Ÿ‘', '๐Ÿ‘Ž', 'โœŠ', '๐Ÿ‘Š', '๐Ÿค›', '๐Ÿคœ', '๐Ÿ‘', '๐Ÿ™Œ', '๐Ÿ‘', '๐Ÿคฒ', '๐Ÿค', '๐Ÿ™', 'โœ๏ธ', '๐Ÿ’…', '๐Ÿคณ', '๐Ÿ’ช', '๐Ÿฆพ', '๐Ÿฆฟ', '๐Ÿฆต', '๐Ÿฆถ', '๐Ÿ‘‚', '๐Ÿฆป', '๐Ÿ‘ƒ', '๐Ÿง ', '๐Ÿซ€', '๐Ÿซ', '๐Ÿฆท', '๐Ÿฆด', '๐Ÿ‘€', "๐Ÿ‘๏ธ", '๐Ÿ‘…', '๐Ÿ‘„', '๐Ÿ‘ถ', '๐Ÿง’', '๐Ÿ‘ฆ', '๐Ÿ‘ง', '๐Ÿง‘', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿง”', "๐Ÿง”โ€โ™‚๏ธ", "๐Ÿง”โ€โ™€๏ธ", "๐Ÿ‘จโ€๐Ÿฆฐ", "๐Ÿ‘จโ€๐Ÿฆฑ", "๐Ÿ‘จโ€๐Ÿฆณ", "๐Ÿ‘จโ€๐Ÿฆฒ", '๐Ÿ‘ฉ', "๐Ÿ‘ฉโ€๐Ÿฆฐ", "๐Ÿง‘โ€๐Ÿฆฐ", "๐Ÿ‘ฉโ€๐Ÿฆฑ", "๐Ÿง‘โ€๐Ÿฆฑ", "๐Ÿ‘ฉโ€๐Ÿฆณ", "๐Ÿง‘โ€๐Ÿฆณ", "๐Ÿ‘ฉโ€๐Ÿฆฒ", "๐Ÿง‘โ€๐Ÿฆฒ", "๐Ÿ‘ฑโ€โ™€๏ธ", "๐Ÿ‘ฑโ€โ™‚๏ธ", '๐Ÿง“', '๐Ÿ‘ด', '๐Ÿ‘ต', '๐Ÿ™', "๐Ÿ™โ€โ™‚๏ธ", "๐Ÿ™โ€โ™€๏ธ", '๐Ÿ™Ž', "๐Ÿ™Žโ€โ™‚๏ธ", "๐Ÿ™Žโ€โ™€๏ธ", '๐Ÿ™…', "๐Ÿ™…โ€โ™‚๏ธ", "๐Ÿ™…โ€โ™€๏ธ", '๐Ÿ™†', "๐Ÿ™†โ€โ™‚๏ธ", "๐Ÿ™†โ€โ™€๏ธ", '๐Ÿ’', "๐Ÿ’โ€โ™‚๏ธ", "๐Ÿ’โ€โ™€๏ธ", '๐Ÿ™‹', "๐Ÿ™‹โ€โ™‚๏ธ", "๐Ÿ™‹โ€โ™€๏ธ", '๐Ÿง', "๐Ÿงโ€โ™‚๏ธ", "๐Ÿงโ€โ™€๏ธ", '๐Ÿ™‡', "๐Ÿ™‡โ€โ™‚๏ธ", "๐Ÿ™‡โ€โ™€๏ธ", '๐Ÿคฆ', "๐Ÿคฆโ€โ™‚๏ธ", "๐Ÿคฆโ€โ™€๏ธ", '๐Ÿคท', "๐Ÿคทโ€โ™‚๏ธ", "๐Ÿคทโ€โ™€๏ธ", "๐Ÿง‘โ€โš•๏ธ", "๐Ÿ‘จโ€โš•๏ธ", "๐Ÿ‘ฉโ€โš•๏ธ", "๐Ÿง‘โ€๐ŸŽ“", "๐Ÿ‘จโ€๐ŸŽ“", "๐Ÿ‘ฉโ€๐ŸŽ“", "๐Ÿง‘โ€๐Ÿซ", '๐Ÿ‘จโ€๐Ÿซ', "๐Ÿ‘ฉโ€๐Ÿซ", "๐Ÿง‘โ€โš–๏ธ", "๐Ÿ‘จโ€โš–๏ธ", "๐Ÿ‘ฉโ€โš–๏ธ", "๐Ÿง‘โ€๐ŸŒพ", "๐Ÿ‘จโ€๐ŸŒพ", "๐Ÿ‘ฉโ€๐ŸŒพ", "๐Ÿง‘โ€๐Ÿณ", "๐Ÿ‘จโ€๐Ÿณ", "๐Ÿ‘ฉโ€๐Ÿณ", "๐Ÿง‘โ€๐Ÿ”ง", "๐Ÿ‘จโ€๐Ÿ”ง", "๐Ÿ‘ฉโ€๐Ÿ”ง", "๐Ÿง‘โ€๐Ÿญ", "๐Ÿ‘จโ€๐Ÿญ", "๐Ÿ‘ฉโ€๐Ÿญ", "๐Ÿง‘โ€๐Ÿ’ผ", "๐Ÿ‘จโ€๐Ÿ’ผ", "๐Ÿ‘ฉโ€๐Ÿ’ผ", "๐Ÿง‘โ€๐Ÿ”ฌ", "๐Ÿ‘จโ€๐Ÿ”ฌ", "๐Ÿ‘ฉโ€๐Ÿ”ฌ", "๐Ÿง‘โ€๐Ÿ’ป", "๐Ÿ‘จโ€๐Ÿ’ป", "๐Ÿ‘ฉโ€๐Ÿ’ป", "๐Ÿง‘โ€๐ŸŽค", "๐Ÿ‘จโ€๐ŸŽค", "๐Ÿ‘ฉโ€๐ŸŽค", "๐Ÿง‘โ€๐ŸŽจ", "๐Ÿ‘จโ€๐ŸŽจ", "๐Ÿ‘ฉโ€๐ŸŽจ", "๐Ÿง‘โ€โœˆ๏ธ", "๐Ÿ‘จโ€โœˆ๏ธ", "๐Ÿ‘ฉโ€โœˆ๏ธ", "๐Ÿง‘โ€๐Ÿš€", "๐Ÿ‘จโ€๐Ÿš€", "๐Ÿ‘ฉโ€๐Ÿš€", "๐Ÿง‘โ€๐Ÿš’", "๐Ÿ‘จโ€๐Ÿš’", "๐Ÿ‘ฉโ€๐Ÿš’", '๐Ÿ‘ฎ', "๐Ÿ‘ฎโ€โ™‚๏ธ", "๐Ÿ‘ฎโ€โ™€๏ธ", "๐Ÿ•ต๏ธ", "๐Ÿ•ต๏ธโ€โ™‚๏ธ", "๐Ÿ•ต๏ธโ€โ™€๏ธ", '๐Ÿ’‚', "๐Ÿ’‚โ€โ™‚๏ธ", "๐Ÿ’‚โ€โ™€๏ธ", '๐Ÿฅท', '๐Ÿ‘ท', "๐Ÿ‘ทโ€โ™‚๏ธ", "๐Ÿ‘ทโ€โ™€๏ธ", '๐Ÿคด', '๐Ÿ‘ธ', '๐Ÿ‘ณ', "๐Ÿ‘ณโ€โ™‚๏ธ", "๐Ÿ‘ณโ€โ™€๏ธ", '๐Ÿ‘ฒ', '๐Ÿง•', '๐Ÿคต', "๐Ÿคตโ€โ™‚๏ธ", "๐Ÿคตโ€โ™€๏ธ", '๐Ÿ‘ฐ', "๐Ÿ‘ฐโ€โ™‚๏ธ", "๐Ÿ‘ฐโ€โ™€๏ธ", '๐Ÿคฐ', '๐Ÿคฑ', "๐Ÿ‘ฉโ€๐Ÿผ", "๐Ÿ‘จโ€๐Ÿผ", "๐Ÿง‘โ€๐Ÿผ", '๐Ÿ‘ผ', '๐ŸŽ…', '๐Ÿคถ', "๐Ÿง‘โ€๐ŸŽ„", '๐Ÿฆธ', "๐Ÿฆธโ€โ™‚๏ธ", "๐Ÿฆธโ€โ™€๏ธ", '๐Ÿฆน', "๐Ÿฆนโ€โ™‚๏ธ", "๐Ÿฆนโ€โ™€๏ธ", '๐Ÿง™', "๐Ÿง™โ€โ™‚๏ธ", "๐Ÿง™โ€โ™€๏ธ", '๐Ÿงš', "๐Ÿงšโ€โ™‚๏ธ", "๐Ÿงšโ€โ™€๏ธ", '๐Ÿง›', "๐Ÿง›โ€โ™‚๏ธ", "๐Ÿง›โ€โ™€๏ธ", '๐Ÿงœ', "๐Ÿงœโ€โ™‚๏ธ", "๐Ÿงœโ€โ™€๏ธ", '๐Ÿง', "๐Ÿงโ€โ™‚๏ธ", "๐Ÿงโ€โ™€๏ธ", '๐Ÿงž', "๐Ÿงžโ€โ™‚๏ธ", "๐Ÿงžโ€โ™€๏ธ", '๐ŸงŸ', "๐ŸงŸโ€โ™‚๏ธ", "๐ŸงŸโ€โ™€๏ธ", '๐Ÿ’†', "๐Ÿ’†โ€โ™‚๏ธ", "๐Ÿ’†โ€โ™€๏ธ", '๐Ÿ’‡', "๐Ÿ’‡โ€โ™‚๏ธ", "๐Ÿ’‡โ€โ™€๏ธ", '๐Ÿšถ', "๐Ÿšถโ€โ™‚๏ธ", "๐Ÿšถโ€โ™€๏ธ", '๐Ÿง', "๐Ÿงโ€โ™‚๏ธ", "๐Ÿงโ€โ™€๏ธ", '๐ŸงŽ', "๐ŸงŽโ€โ™‚๏ธ", "๐ŸงŽโ€โ™€๏ธ", "๐Ÿง‘โ€๐Ÿฆฏ", "๐Ÿ‘จโ€๐Ÿฆฏ", "๐Ÿ‘ฉโ€๐Ÿฆฏ", "๐Ÿง‘โ€๐Ÿฆผ", "๐Ÿ‘จโ€๐Ÿฆผ", "๐Ÿ‘ฉโ€๐Ÿฆผ", "๐Ÿง‘โ€๐Ÿฆฝ", "๐Ÿ‘จโ€๐Ÿฆฝ", "๐Ÿ‘ฉโ€๐Ÿฆฝ", '๐Ÿƒ', "๐Ÿƒโ€โ™‚๏ธ", "๐Ÿƒโ€โ™€๏ธ", '๐Ÿ’ƒ', '๐Ÿ•บ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ฏ', "๐Ÿ‘ฏโ€โ™‚๏ธ", "๐Ÿ‘ฏโ€โ™€๏ธ", '๐Ÿง–', "๐Ÿง–โ€โ™‚๏ธ", "๐Ÿง–โ€โ™€๏ธ", '๐Ÿง—', "๐Ÿง—โ€โ™‚๏ธ", "๐Ÿง—โ€โ™€๏ธ", '๐Ÿคบ', '๐Ÿ‡', 'โ›ท๏ธ', '๐Ÿ‚', "๐ŸŒ๏ธ", "๐ŸŒ๏ธโ€โ™‚๏ธ", "๐ŸŒ๏ธโ€โ™€๏ธ", '๐Ÿ„', "๐Ÿ„โ€โ™‚๏ธ", "๐Ÿ„โ€โ™€๏ธ", '๐Ÿšฃ', "๐Ÿšฃโ€โ™‚๏ธ", "๐Ÿšฃโ€โ™€๏ธ", '๐ŸŠ', "๐ŸŠโ€โ™‚๏ธ", "๐ŸŠโ€โ™€๏ธ", 'โ›น๏ธ', "โ›น๏ธโ€โ™‚๏ธ", "โ›น๏ธโ€โ™€๏ธ", "๐Ÿ‹๏ธ", "๐Ÿ‹๏ธโ€โ™‚๏ธ", "๐Ÿ‹๏ธโ€โ™€๏ธ", '๐Ÿšด', "๐Ÿšดโ€โ™‚๏ธ", '๐Ÿšดโ€โ™€๏ธ', '๐Ÿšต', "๐Ÿšตโ€โ™‚๏ธ", "๐Ÿšตโ€โ™€๏ธ", '๐Ÿคธ', "๐Ÿคธโ€โ™‚๏ธ", "๐Ÿคธโ€โ™€๏ธ", '๐Ÿคผ', "๐Ÿคผโ€โ™‚๏ธ", "๐Ÿคผโ€โ™€๏ธ", '๐Ÿคฝ', "๐Ÿคฝโ€โ™‚๏ธ", "๐Ÿคฝโ€โ™€๏ธ", '๐Ÿคพ', "๐Ÿคพโ€โ™‚๏ธ", "๐Ÿคพโ€โ™€๏ธ", '๐Ÿคน', "๐Ÿคนโ€โ™‚๏ธ", "๐Ÿคนโ€โ™€๏ธ", '๐Ÿง˜', "๐Ÿง˜โ€โ™‚๏ธ", "๐Ÿง˜โ€โ™€๏ธ", '๐Ÿ›€', '๐Ÿ›Œ', "๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘", '๐Ÿ‘ญ', '๐Ÿ‘ซ', '๐Ÿ‘ฌ', '๐Ÿ’', "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ", '๐Ÿ’‘', "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ", '๐Ÿ‘ช', "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ", '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง', "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", "๐Ÿ‘จโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘ง", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", "๐Ÿ‘ฉโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘ง", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", "๐Ÿ—ฃ๏ธ", '๐Ÿ‘ค', '๐Ÿ‘ฅ', '๐Ÿซ‚', '๐Ÿ‘ฃ', '๐Ÿฆฐ', '๐Ÿฆฑ', '๐Ÿฆณ', '๐Ÿฆฒ', '๐Ÿต'];
const randomReaction = reactions[Math.floor(Math.random() * reactions.length)]; //
m.react(randomReaction);
}
}
// Owner React
if (!isReact && senderNumber === botNumber) {
if (config.AUTO_REACT === 'true') {
const reactions = ['๐Ÿ˜Š', '๐Ÿ‘', '๐Ÿ˜‚', '๐Ÿ’ฏ', '๐Ÿ”ฅ', '๐Ÿ™', '๐ŸŽ‰', '๐Ÿ‘', '๐Ÿ˜Ž', '๐Ÿค–', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐Ÿต', '๐Ÿฐ', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿฃ', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', '๐Ÿจ', '๐Ÿฉ', '๐Ÿช', '๐Ÿซ', '๐Ÿฌ', '๐Ÿญ', '๐Ÿฎ', '๐Ÿฏ', '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', '๐Ÿ›ธ', '๐Ÿ›น', '๐Ÿšด', '๐Ÿšฒ', '๐Ÿ›บ', '๐Ÿšฎ', '๐Ÿšฏ', '๐Ÿšฑ', '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐Ÿต', '๐Ÿฐ', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿฃ', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', '๐Ÿจ', '๐Ÿฉ', '๐Ÿช', '๐Ÿซ', '๐Ÿฌ', '๐Ÿญ', '๐Ÿฎ', '๐Ÿฏ', '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', '๐Ÿ›ธ', '๐Ÿ›น', '๐Ÿšด', '๐Ÿšฒ', '๐Ÿ›บ', '๐Ÿšฎ', '๐Ÿšฏ', '๐Ÿšฑ', '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐Ÿต', '๐Ÿฐ', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿฃ', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', '๐Ÿจ', '๐Ÿฉ', '๐Ÿช', '๐Ÿซ', '๐Ÿฌ', '๐Ÿญ', '๐Ÿฎ', '๐Ÿฏ', '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', '๐Ÿ›ธ', '๐Ÿ›น', '๐Ÿšด', '๐Ÿšฒ', '๐Ÿ›บ', '๐Ÿšฎ', '๐Ÿšฏ', '๐Ÿšฑ', '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ™‚', '๐Ÿ˜‘', '๐Ÿคฃ', '๐Ÿ˜', '๐Ÿ˜˜', '๐Ÿ˜—', '๐Ÿ˜™', '๐Ÿ˜š', '๐Ÿ˜›', '๐Ÿ˜', '๐Ÿ˜ž', '๐Ÿ˜Ÿ', '๐Ÿ˜ ', '๐Ÿ˜ก', '๐Ÿ˜ข', '๐Ÿ˜ญ', '๐Ÿ˜“', '๐Ÿ˜ณ', '๐Ÿ˜ด', '๐Ÿ˜Œ', '๐Ÿ˜†', '๐Ÿ˜‚', '๐Ÿค”', '๐Ÿ˜’', '๐Ÿ˜“', '๐Ÿ˜ถ', '๐Ÿ™„', '๐Ÿถ', '๐Ÿฑ', '๐Ÿ”', '๐Ÿท', '๐Ÿด', '๐Ÿฒ', '๐Ÿธ', '๐Ÿณ', '๐Ÿ‹', '๐Ÿ’', '๐Ÿ‘', '๐Ÿ•', '๐Ÿฉ', '๐Ÿ”', '๐Ÿ•', '๐Ÿฅค', '๐Ÿฃ', '๐Ÿฒ', '๐Ÿด', '๐Ÿฝ', '๐Ÿน', '๐Ÿธ', '๐ŸŽ‚', '๐Ÿ“ฑ', '๐Ÿ“บ', '๐Ÿ“ป', '๐ŸŽค', '๐Ÿ“š', '๐Ÿ’ป', '๐Ÿ“ธ', '๐Ÿ“ท', 'โค๏ธ', '๐Ÿ’”', 'โฃ๏ธ', 'โ˜€๏ธ', '๐ŸŒ™', '๐ŸŒƒ', '๐Ÿ ', '๐Ÿšช', "๐Ÿ‡บ๐Ÿ‡ธ", "๐Ÿ‡ฌ๐Ÿ‡ง", "๐Ÿ‡จ๐Ÿ‡ฆ", "๐Ÿ‡ฆ๐Ÿ‡บ", "๐Ÿ‡ฏ๐Ÿ‡ต", "๐Ÿ‡ซ๐Ÿ‡ท", "๐Ÿ‡ช๐Ÿ‡ธ", '๐Ÿ‘', '๐Ÿ‘Ž', '๐Ÿ‘', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', '๐Ÿค', '๐Ÿ™', '๐Ÿ‘‘', '๐ŸŒป', '๐ŸŒบ', '๐ŸŒธ', '๐ŸŒน', '๐ŸŒด', "๐Ÿž๏ธ", '๐ŸŒŠ', '๐Ÿš—', '๐ŸšŒ', "๐Ÿ›ฃ๏ธ", "๐Ÿ›ซ๏ธ", "๐Ÿ›ฌ๏ธ", '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', "๐Ÿƒโ€โ™‚๏ธ", "๐Ÿ‹๏ธโ€โ™€๏ธ", "๐ŸŠโ€โ™‚๏ธ", "๐Ÿ„โ€โ™‚๏ธ", '๐ŸŽพ', '๐Ÿ€', '๐Ÿˆ', '๐ŸŽฏ', '๐Ÿ†', '??', 'โฌ†๏ธ', 'โฌ‡๏ธ', 'โ‡’', 'โ‡', 'โ†ฉ๏ธ', 'โ†ช๏ธ', 'โ„น๏ธ', 'โ€ผ๏ธ', 'โ‰๏ธ', 'โ€ฝ๏ธ', 'ยฉ๏ธ', 'ยฎ๏ธ', 'โ„ข๏ธ', '๐Ÿ”ด', '๐Ÿ”ต', '๐ŸŸข', '๐Ÿ”น', '๐Ÿ”บ', '๐Ÿ’ฏ', '๐Ÿ‘‘', '๐Ÿคฃ', "๐Ÿคทโ€โ™‚๏ธ", "๐Ÿคทโ€โ™€๏ธ", "๐Ÿ™…โ€โ™‚๏ธ", "๐Ÿ™…โ€โ™€๏ธ", "๐Ÿ™†โ€โ™‚๏ธ", "๐Ÿ™†โ€โ™€๏ธ", "๐Ÿคฆโ€โ™‚๏ธ", "๐Ÿคฆโ€โ™€๏ธ", '๐Ÿป', '๐Ÿ’†โ€โ™‚๏ธ', "๐Ÿ’†โ€โ™€๏ธ", "๐Ÿ•ดโ€โ™‚๏ธ", "๐Ÿ•ดโ€โ™€๏ธ", "๐Ÿ’‡โ€โ™‚๏ธ", "๐Ÿ’‡โ€โ™€๏ธ", '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๏ฟฝ', '๐Ÿฏ', '๐Ÿฐ', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿฃ', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', '๐Ÿจ', '๐Ÿฉ', '๐Ÿช', '๐Ÿซ', '๐Ÿฌ', '๐Ÿญ', '๐Ÿฎ', '๐Ÿฏ', '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', '๐Ÿ›ธ', '๐Ÿ›น', '๐Ÿšด', '๐Ÿšฒ', '๐Ÿ›บ', '๐Ÿšฎ', '๐Ÿšฏ', '๐Ÿšฑ', '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐ŸŒณ', '๐ŸŒฒ', '๐ŸŒพ', '๐ŸŒฟ', '๐Ÿƒ', '๐Ÿ‚', '๐Ÿƒ', '๐ŸŒป', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒธ', '๐ŸŒด', '๐Ÿต', '๐ŸŽ€', '๐Ÿ†', '๐Ÿˆ', '๐Ÿ‰', '๐ŸŽฏ', '๐Ÿ€', '๐ŸŠ', '๐Ÿ‹', '๐ŸŒ', '๐ŸŽฒ', '๐Ÿ“š', '๐Ÿ“–', '๐Ÿ“œ', '๐Ÿ“', '๐Ÿ’ญ', '๐Ÿ’ฌ', '๐Ÿ—ฃ', '๐Ÿ’ซ', '๐ŸŒŸ', '๐ŸŒ ', '๐ŸŽ‰', '๐ŸŽŠ', '๐Ÿ‘', '๐Ÿ’ฅ', '๐Ÿ”ฅ', '๐Ÿ’ฅ', '๐ŸŒช', '๐Ÿ’จ', '๐ŸŒซ', '๐ŸŒฌ', '๐ŸŒฉ', '๐ŸŒจ', '๐ŸŒง', '๐ŸŒฆ', '๐ŸŒฅ', '๐ŸŒก', '๐ŸŒช', '๐ŸŒซ', '๐ŸŒฌ', '๐ŸŒฉ', '๐ŸŒจ', '๐ŸŒง', '๐ŸŒฆ', '๐ŸŒฅ', '๐ŸŒก', '๐ŸŒช', '๐ŸŒซ', '๐ŸŒฌ', '๐ŸŒฉ', '๐ŸŒจ', '๐ŸŒง', '๐ŸŒฆ', '๐ŸŒฅ', '๐ŸŒก', '๐ŸŒฑ', '๐ŸŒฟ', '๐Ÿƒ', '๐Ÿ‚', '๐ŸŒป', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒธ', '๐ŸŒด', '๐Ÿต', '๐ŸŽ€', '๐Ÿ†', '๐Ÿˆ', '๐Ÿ‰', '๐ŸŽฏ', '๐Ÿ€', '๐ŸŠ', '๐Ÿ‹', '๐ŸŒ', '๐ŸŽฒ', '๐Ÿ“š', '๐Ÿ“–', '๐Ÿ“œ', '๐Ÿ“', '๐Ÿ’ญ', '๐Ÿ’ฌ', '๐Ÿ—ฃ', '๐Ÿ’ซ', '๐ŸŒŸ', '๐ŸŒ ', '๐ŸŽ‰', '๐ŸŽŠ', '๐Ÿ‘', '๐Ÿ’ฅ', '๐Ÿ”ฅ', '๐Ÿ’ฅ', '๐ŸŒช', '๐Ÿ’จ', '๐ŸŒซ', '๐ŸŒฌ', '๐ŸŒฉ', '๐ŸŒจ', '๐ŸŒง', '๐ŸŒฆ', '๐ŸŒฅ', '๐ŸŒก', '๐ŸŒช', '๐ŸŒซ', '๐ŸŒฌ', '๐ŸŒฉ', '๐ŸŒจ', '๐ŸŒง', '๐ŸŒฆ', '๐ŸŒฅ', '๐ŸŒก', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐Ÿต', '๐Ÿฐ', '๐Ÿ ', '๐Ÿก', '๐Ÿข', '๐Ÿฃ', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', '๐Ÿจ', '๐Ÿฉ', '๐Ÿช', '๐Ÿซ', '๐Ÿฌ', '๐Ÿญ', '๐Ÿฎ', '๐Ÿฏ', '๐Ÿšฃ', '๐Ÿ›ฅ', '๐Ÿš‚', '๐Ÿš', '๐Ÿš€', '๐Ÿ›ธ', '๐Ÿ›น', '๐Ÿšด', '๐Ÿšฒ', '๐Ÿ›บ', '๐Ÿšฎ', '๐Ÿšฏ', '๐Ÿšฑ', '๐Ÿšซ', '๐Ÿšฝ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ”ซ', "๐Ÿ•ท๏ธ", "๐Ÿ•ธ๏ธ", '๐Ÿ’€', '๐Ÿ‘ป', '๐Ÿ•บ', '๐Ÿ’ƒ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ถ', '๐Ÿ‘ต', '๐Ÿ‘ด', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿ‘ฉ', '๐Ÿ‘ง', '๐Ÿ‘ฆ', '๐Ÿ‘ช', '๐Ÿ‘ซ', '๐Ÿ‘ญ', '๐Ÿ‘ฌ', '๐Ÿ‘ฎ', "๐Ÿ•ด๏ธ", '๐Ÿ’ผ', '๐Ÿ“Š', '๐Ÿ“ˆ', '๐Ÿ“‰', '๐Ÿ“Š', '๐Ÿ“', '๐Ÿ“š', '๐Ÿ“ฐ', '๐Ÿ“ฑ', '๐Ÿ’ป', '๐Ÿ“ป', '๐Ÿ“บ', '๐ŸŽฌ', "๐Ÿ“ฝ๏ธ", '๐Ÿ“ธ', '๐Ÿ“ท', "๐Ÿ•ฏ๏ธ", '๐Ÿ’ก', '๐Ÿ”ฆ', '๐Ÿ”ง', '๐Ÿ”จ', '๐Ÿ”ฉ', '๐Ÿ”ช', '๐Ÿ”ซ', '๐Ÿ‘‘', '๐Ÿ‘ธ', '๐Ÿคด', '๐Ÿ‘น', '๐Ÿคบ', '๐Ÿคป', '๐Ÿ‘บ', '๐Ÿคผ', '๐Ÿคฝ', '๐Ÿคพ', '๐Ÿคฟ', '๐Ÿฆ', '๐Ÿด', '๐ŸฆŠ', '๐Ÿบ', '๐Ÿผ', '๐Ÿพ', '๐Ÿฟ', '๐Ÿฆ„', '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆ‡', '๐Ÿฆˆ', '๐Ÿณ', '๐Ÿ‹', '๐ŸŸ', '๐Ÿ ', '๐Ÿก', '๐Ÿ™', '๐Ÿš', '๐Ÿœ', '๐Ÿ', '๐Ÿž', "๐Ÿ•ท๏ธ", '๐Ÿฆ‹', '๐Ÿ›', '๐ŸŒ', '๐Ÿš', '๐ŸŒฟ', '๐ŸŒธ', '๐Ÿ’', '๐ŸŒน', '๐ŸŒบ', '๐ŸŒป', '๐ŸŒด', '๐Ÿต', '๐Ÿฐ', '๐Ÿ’', '๐Ÿฆ', '๐Ÿฆง', '๐Ÿถ', '๐Ÿ•', '๐Ÿฆฎ', "๐Ÿ•โ€๐Ÿฆบ", '๐Ÿฉ', '๐Ÿบ', '๐ŸฆŠ', '๐Ÿฆ', '๐Ÿฑ', '๐Ÿˆ', "๐Ÿˆโ€โฌ›", '๐Ÿฆ', '๐Ÿฏ', '๐Ÿ…', '๐Ÿ†', '๐Ÿด', '๐ŸŽ', '๐Ÿฆ„', '๐Ÿฆ“', '๐ŸฆŒ', '๐Ÿฆฌ', '๐Ÿฎ', '๐Ÿ‚', '๐Ÿƒ', '๐Ÿ„', '๐Ÿท', '๐Ÿ–', '๐Ÿ—', '๐Ÿฝ', '๐Ÿ', '๐Ÿ‘', '๐Ÿ', '๐Ÿช', '๐Ÿซ', '๐Ÿฆ™', '๐Ÿฆ’', '๐Ÿ˜', '๐Ÿฆฃ', '๐Ÿฆ', '๐Ÿฆ›', '๐Ÿญ', '๐Ÿ', '๐Ÿ€', '๐Ÿน', '๐Ÿฐ', '๐Ÿ‡', "๐Ÿฟ๏ธ", '๐Ÿฆซ', '๐Ÿฆ”', '๐Ÿฆ‡', '๐Ÿป', "๐Ÿปโ€โ„๏ธ", '๐Ÿจ', '๐Ÿผ', '๐Ÿฆฅ', '๐Ÿฆฆ', '๐Ÿฆจ', '๐Ÿฆ˜', '๐Ÿฆก', '๐Ÿพ', '๐Ÿฆƒ', '๐Ÿ”', '๐Ÿ“', '๐Ÿฃ', '๐Ÿค', '๐Ÿฅ', '๐Ÿฆ', '๐Ÿง', "๐Ÿ•Š๏ธ", '๐Ÿฆ…', '๐Ÿฆ†', '๐Ÿฆข', '๐Ÿฆ‰', '๐Ÿฆค', '๐Ÿชถ', '๐Ÿฆฉ', '๐Ÿฆš', '๐Ÿฆœ', '๐Ÿธ', '๐ŸŠ', '๐Ÿข', '๐ŸฆŽ', '๐Ÿ', '๐Ÿฒ', '๐Ÿ‰', '๐Ÿฆ•', '๐Ÿฆ–', '๐Ÿณ', '๐Ÿ‹', '๐Ÿฌ', '๐Ÿฆญ', '๐ŸŸ', '๐Ÿ ', '๐Ÿ˜€', '๐Ÿ˜ƒ', '๐Ÿ˜„', '๐Ÿ˜', '๐Ÿ˜†', '๐Ÿ˜…', '๐Ÿคฃ', '๐Ÿ˜‚', '๐Ÿ™‚', '๐Ÿ™ƒ', '๐Ÿ˜‰', '๐Ÿ˜Š', '๐Ÿ˜‡', '๐Ÿฅฐ', '๐Ÿ˜', '๐Ÿคฉ', '๐Ÿ˜˜', '๐Ÿ˜—', 'โ˜บ๏ธ', '๐Ÿ˜š', '๐Ÿ˜™', '๐Ÿฅฒ', '๐Ÿ˜‹', '๐Ÿ˜›', '๐Ÿ˜œ', '๐Ÿคช', '๐Ÿ˜', '๐Ÿค‘', '๐Ÿค—', '๐Ÿคญ', '๐Ÿคซ', '๐Ÿค”', '๐Ÿค', '๐Ÿคจ', '๐Ÿ˜', '๐Ÿ˜‘', '๐Ÿ˜ถ', "๐Ÿ˜ถโ€๐ŸŒซ๏ธ", '๐Ÿ˜', '๐Ÿ˜’', '๐Ÿ™„', '๐Ÿ˜ฌ', "๐Ÿ˜ฎโ€๐Ÿ’จ", '๐Ÿคฅ', '๐Ÿ˜Œ', '๐Ÿ˜”', '๐Ÿ˜ช', '๐Ÿคค', '๐Ÿ˜ด', '๐Ÿ˜ท', '๐Ÿค’', '๐Ÿค•', '๐Ÿคข', '๐Ÿคฎ', '๐Ÿคง', '๐Ÿฅต', '๐Ÿฅถ', '๐Ÿฅด', '๐Ÿ˜ต', "๐Ÿ˜ตโ€๐Ÿ’ซ", '๐Ÿคฏ', '๐Ÿค ', '๐Ÿฅณ', '๐Ÿฅธ', '๐Ÿ˜Ž', '๐Ÿค“', '๐Ÿง', '๐Ÿ˜•', '๐Ÿ˜Ÿ', '๐Ÿ™', 'โ˜น๏ธ', '๐Ÿ˜ฎ', '๐Ÿ˜ฏ', '๐Ÿ˜ฒ', '๐Ÿ˜ณ', '๐Ÿฅบ', '๐Ÿ˜ฆ', '๐Ÿ˜ง', '๐Ÿ˜จ', '๐Ÿ˜ฐ', '๐Ÿ˜ฅ', '๐Ÿ˜ข', '๐Ÿ˜ญ', '๐Ÿ˜ฑ', '๐Ÿ˜–', '๐Ÿ˜ฃ', '๐Ÿ˜ž', '๐Ÿ˜“', '๐Ÿ˜ฉ', '๐Ÿ˜ซ', '๐Ÿฅฑ', '๐Ÿ˜ค', '๐Ÿ˜ก', '๐Ÿ˜ ', '๐Ÿคฌ', '๐Ÿ˜ˆ', '๐Ÿ‘ฟ', '๐Ÿ’€', 'โ˜ ๏ธ', '๐Ÿ’ฉ', '๐Ÿคก', '๐Ÿ‘น', '๐Ÿ‘บ', '๐Ÿ‘ป', '๐Ÿ‘ฝ', '๐Ÿ‘พ', '๐Ÿค–', '๐Ÿ˜บ', '๐Ÿ˜ธ', '๐Ÿ˜น', '๐Ÿ˜ป', '๐Ÿ˜ผ', '๐Ÿ˜ฝ', '๐Ÿ™€', '๐Ÿ˜ฟ', '๐Ÿ˜พ', '๐Ÿ™ˆ', '๐Ÿ™‰', '๐Ÿ™Š', '๐Ÿ’‹', '๐Ÿ’Œ', '๐Ÿ’˜', '๐Ÿ’', '๐Ÿ’–', '๐Ÿ’—', '๐Ÿ’“', '๐Ÿ’ž', '๐Ÿ’•', '๐Ÿ’Ÿ', 'โฃ๏ธ', '๐Ÿ’”', "โค๏ธโ€๐Ÿ”ฅ", "โค๏ธโ€๐Ÿฉน", 'โค๏ธ', '๐Ÿงก', '๐Ÿ’›', '๐Ÿ’š', '๐Ÿ’™', '๐Ÿ’œ', '๐ŸคŽ', '๐Ÿ–ค', '๐Ÿค', '๐Ÿ’ฏ', '๐Ÿ’ข', '๐Ÿ’ฅ', '๐Ÿ’ซ', '๐Ÿ’ฆ', '๐Ÿ’จ', "๐Ÿ•ณ๏ธ", '๐Ÿ’ฃ', '๐Ÿ’ฌ', "๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ", "๐Ÿ—จ๏ธ", "๐Ÿ—ฏ๏ธ", '๐Ÿ’ญ', '๐Ÿ’ค', '๐Ÿ‘‹', '๐Ÿคš', "๐Ÿ–๏ธ", 'โœ‹', '๐Ÿ––', '๐Ÿ‘Œ', '๐ŸคŒ', '๐Ÿค', 'โœŒ๏ธ', '๐Ÿคž', '๐ŸคŸ', '๐Ÿค˜', '๐Ÿค™', '๐Ÿ‘ˆ', '๐Ÿ‘‰', '๐Ÿ‘†', '๐Ÿ–•', '๐Ÿ‘‡', 'โ˜๏ธ', '๐Ÿ‘', '๐Ÿ‘Ž', 'โœŠ', '๐Ÿ‘Š', '๐Ÿค›', '๐Ÿคœ', '๐Ÿ‘', '๐Ÿ™Œ', '๐Ÿ‘', '๐Ÿคฒ', '๐Ÿค', '๐Ÿ™', 'โœ๏ธ', '๐Ÿ’…', '๐Ÿคณ', '๐Ÿ’ช', '๐Ÿฆพ', '๐Ÿฆฟ', '๐Ÿฆต', '๐Ÿฆถ', '๐Ÿ‘‚', '๐Ÿฆป', '๐Ÿ‘ƒ', '๐Ÿง ', '๐Ÿซ€', '๐Ÿซ', '๐Ÿฆท', '๐Ÿฆด', '๐Ÿ‘€', "๐Ÿ‘๏ธ", '๐Ÿ‘…', '๐Ÿ‘„', '๐Ÿ‘ถ', '๐Ÿง’', '๐Ÿ‘ฆ', '๐Ÿ‘ง', '๐Ÿง‘', '๐Ÿ‘ฑ', '๐Ÿ‘จ', '๐Ÿง”', "๐Ÿง”โ€โ™‚๏ธ", "๐Ÿง”โ€โ™€๏ธ", "๐Ÿ‘จโ€๐Ÿฆฐ", "๐Ÿ‘จโ€๐Ÿฆฑ", "๐Ÿ‘จโ€๐Ÿฆณ", "๐Ÿ‘จโ€๐Ÿฆฒ", '๐Ÿ‘ฉ', "๐Ÿ‘ฉโ€๐Ÿฆฐ", "๐Ÿง‘โ€๐Ÿฆฐ", "๐Ÿ‘ฉโ€๐Ÿฆฑ", "๐Ÿง‘โ€๐Ÿฆฑ", "๐Ÿ‘ฉโ€๐Ÿฆณ", "๐Ÿง‘โ€๐Ÿฆณ", "๐Ÿ‘ฉโ€๐Ÿฆฒ", "๐Ÿง‘โ€๐Ÿฆฒ", "๐Ÿ‘ฑโ€โ™€๏ธ", "๐Ÿ‘ฑโ€โ™‚๏ธ", '๐Ÿง“', '๐Ÿ‘ด', '๐Ÿ‘ต', '๐Ÿ™', "๐Ÿ™โ€โ™‚๏ธ", "๐Ÿ™โ€โ™€๏ธ", '๐Ÿ™Ž', "๐Ÿ™Žโ€โ™‚๏ธ", "๐Ÿ™Žโ€โ™€๏ธ", '๐Ÿ™…', "๐Ÿ™…โ€โ™‚๏ธ", "๐Ÿ™…โ€โ™€๏ธ", '๐Ÿ™†', "๐Ÿ™†โ€โ™‚๏ธ", "๐Ÿ™†โ€โ™€๏ธ", '๐Ÿ’', "๐Ÿ’โ€โ™‚๏ธ", "๐Ÿ’โ€โ™€๏ธ", '๐Ÿ™‹', "๐Ÿ™‹โ€โ™‚๏ธ", "๐Ÿ™‹โ€โ™€๏ธ", '๐Ÿง', "๐Ÿงโ€โ™‚๏ธ", "๐Ÿงโ€โ™€๏ธ", '๐Ÿ™‡', "๐Ÿ™‡โ€โ™‚๏ธ", "๐Ÿ™‡โ€โ™€๏ธ", '๐Ÿคฆ', "๐Ÿคฆโ€โ™‚๏ธ", "๐Ÿคฆโ€โ™€๏ธ", '๐Ÿคท', "๐Ÿคทโ€โ™‚๏ธ", "๐Ÿคทโ€โ™€๏ธ", "๐Ÿง‘โ€โš•๏ธ", "๐Ÿ‘จโ€โš•๏ธ", "๐Ÿ‘ฉโ€โš•๏ธ", "๐Ÿง‘โ€๐ŸŽ“", "๐Ÿ‘จโ€๐ŸŽ“", "๐Ÿ‘ฉโ€๐ŸŽ“", "๐Ÿง‘โ€๐Ÿซ", '๐Ÿ‘จโ€๐Ÿซ', "๐Ÿ‘ฉโ€๐Ÿซ", "๐Ÿง‘โ€โš–๏ธ", "๐Ÿ‘จโ€โš–๏ธ", "๐Ÿ‘ฉโ€โš–๏ธ", "๐Ÿง‘โ€๐ŸŒพ", "๐Ÿ‘จโ€๐ŸŒพ", "๐Ÿ‘ฉโ€๐ŸŒพ", "๐Ÿง‘โ€๐Ÿณ", "๐Ÿ‘จโ€๐Ÿณ", "๐Ÿ‘ฉโ€๐Ÿณ", "๐Ÿง‘โ€๐Ÿ”ง", "๐Ÿ‘จโ€๐Ÿ”ง", "๐Ÿ‘ฉโ€๐Ÿ”ง", "๐Ÿง‘โ€๐Ÿญ", "๐Ÿ‘จโ€๐Ÿญ", "๐Ÿ‘ฉโ€๐Ÿญ", "๐Ÿง‘โ€๐Ÿ’ผ", "๐Ÿ‘จโ€๐Ÿ’ผ", "๐Ÿ‘ฉโ€๐Ÿ’ผ", "๐Ÿง‘โ€๐Ÿ”ฌ", "๐Ÿ‘จโ€๐Ÿ”ฌ", "๐Ÿ‘ฉโ€๐Ÿ”ฌ", "๐Ÿง‘โ€๐Ÿ’ป", "๐Ÿ‘จโ€๐Ÿ’ป", "๐Ÿ‘ฉโ€๐Ÿ’ป", "๐Ÿง‘โ€๐ŸŽค", "๐Ÿ‘จโ€๐ŸŽค", "๐Ÿ‘ฉโ€๐ŸŽค", "๐Ÿง‘โ€๐ŸŽจ", "๐Ÿ‘จโ€๐ŸŽจ", "๐Ÿ‘ฉโ€๐ŸŽจ", "๐Ÿง‘โ€โœˆ๏ธ", "๐Ÿ‘จโ€โœˆ๏ธ", "๐Ÿ‘ฉโ€โœˆ๏ธ", "๐Ÿง‘โ€๐Ÿš€", "๐Ÿ‘จโ€๐Ÿš€", "๐Ÿ‘ฉโ€๐Ÿš€", "๐Ÿง‘โ€๐Ÿš’", "๐Ÿ‘จโ€๐Ÿš’", "๐Ÿ‘ฉโ€๐Ÿš’", '๐Ÿ‘ฎ', "๐Ÿ‘ฎโ€โ™‚๏ธ", "๐Ÿ‘ฎโ€โ™€๏ธ", "๐Ÿ•ต๏ธ", "๐Ÿ•ต๏ธโ€โ™‚๏ธ", "๐Ÿ•ต๏ธโ€โ™€๏ธ", '๐Ÿ’‚', "๐Ÿ’‚โ€โ™‚๏ธ", "๐Ÿ’‚โ€โ™€๏ธ", '๐Ÿฅท', '๐Ÿ‘ท', "๐Ÿ‘ทโ€โ™‚๏ธ", "๐Ÿ‘ทโ€โ™€๏ธ", '๐Ÿคด', '๐Ÿ‘ธ', '๐Ÿ‘ณ', "๐Ÿ‘ณโ€โ™‚๏ธ", "๐Ÿ‘ณโ€โ™€๏ธ", '๐Ÿ‘ฒ', '๐Ÿง•', '๐Ÿคต', "๐Ÿคตโ€โ™‚๏ธ", "๐Ÿคตโ€โ™€๏ธ", '๐Ÿ‘ฐ', "๐Ÿ‘ฐโ€โ™‚๏ธ", "๐Ÿ‘ฐโ€โ™€๏ธ", '๐Ÿคฐ', '๐Ÿคฑ', "๐Ÿ‘ฉโ€๐Ÿผ", "๐Ÿ‘จโ€๐Ÿผ", "๐Ÿง‘โ€๐Ÿผ", '๐Ÿ‘ผ', '๐ŸŽ…', '๐Ÿคถ', "๐Ÿง‘โ€๐ŸŽ„", '๐Ÿฆธ', "๐Ÿฆธโ€โ™‚๏ธ", "๐Ÿฆธโ€โ™€๏ธ", '๐Ÿฆน', "๐Ÿฆนโ€โ™‚๏ธ", "๐Ÿฆนโ€โ™€๏ธ", '๐Ÿง™', "๐Ÿง™โ€โ™‚๏ธ", "๐Ÿง™โ€โ™€๏ธ", '๐Ÿงš', "๐Ÿงšโ€โ™‚๏ธ", "๐Ÿงšโ€โ™€๏ธ", '๐Ÿง›', "๐Ÿง›โ€โ™‚๏ธ", "๐Ÿง›โ€โ™€๏ธ", '๐Ÿงœ', "๐Ÿงœโ€โ™‚๏ธ", "๐Ÿงœโ€โ™€๏ธ", '๐Ÿง', "๐Ÿงโ€โ™‚๏ธ", "๐Ÿงโ€โ™€๏ธ", '๐Ÿงž', "๐Ÿงžโ€โ™‚๏ธ", "๐Ÿงžโ€โ™€๏ธ", '๐ŸงŸ', "๐ŸงŸโ€โ™‚๏ธ", "๐ŸงŸโ€โ™€๏ธ", '๐Ÿ’†', "๐Ÿ’†โ€โ™‚๏ธ", "๐Ÿ’†โ€โ™€๏ธ", '๐Ÿ’‡', "๐Ÿ’‡โ€โ™‚๏ธ", "๐Ÿ’‡โ€โ™€๏ธ", '๐Ÿšถ', "๐Ÿšถโ€โ™‚๏ธ", "๐Ÿšถโ€โ™€๏ธ", '๐Ÿง', "๐Ÿงโ€โ™‚๏ธ", "๐Ÿงโ€โ™€๏ธ", '๐ŸงŽ', "๐ŸงŽโ€โ™‚๏ธ", "๐ŸงŽโ€โ™€๏ธ", "๐Ÿง‘โ€๐Ÿฆฏ", "๐Ÿ‘จโ€๐Ÿฆฏ", "๐Ÿ‘ฉโ€๐Ÿฆฏ", "๐Ÿง‘โ€๐Ÿฆผ", "๐Ÿ‘จโ€๐Ÿฆผ", "๐Ÿ‘ฉโ€๐Ÿฆผ", "๐Ÿง‘โ€๐Ÿฆฝ", "๐Ÿ‘จโ€๐Ÿฆฝ", "๐Ÿ‘ฉโ€๐Ÿฆฝ", '๐Ÿƒ', "๐Ÿƒโ€โ™‚๏ธ", "๐Ÿƒโ€โ™€๏ธ", '๐Ÿ’ƒ', '๐Ÿ•บ', "๐Ÿ•ด๏ธ", '๐Ÿ‘ฏ', "๐Ÿ‘ฏโ€โ™‚๏ธ", "๐Ÿ‘ฏโ€โ™€๏ธ", '๐Ÿง–', "๐Ÿง–โ€โ™‚๏ธ", "๐Ÿง–โ€โ™€๏ธ", '๐Ÿง—', "๐Ÿง—โ€โ™‚๏ธ", "๐Ÿง—โ€โ™€๏ธ", '๐Ÿคบ', '๐Ÿ‡', 'โ›ท๏ธ', '๐Ÿ‚', "๐ŸŒ๏ธ", "๐ŸŒ๏ธโ€โ™‚๏ธ", "๐ŸŒ๏ธโ€โ™€๏ธ", '๐Ÿ„', "๐Ÿ„โ€โ™‚๏ธ", "๐Ÿ„โ€โ™€๏ธ", '๐Ÿšฃ', "๐Ÿšฃโ€โ™‚๏ธ", "๐Ÿšฃโ€โ™€๏ธ", '๐ŸŠ', "๐ŸŠโ€โ™‚๏ธ", "๐ŸŠโ€โ™€๏ธ", 'โ›น๏ธ', "โ›น๏ธโ€โ™‚๏ธ", "โ›น๏ธโ€โ™€๏ธ", "๐Ÿ‹๏ธ", "๐Ÿ‹๏ธโ€โ™‚๏ธ", "๐Ÿ‹๏ธโ€โ™€๏ธ", '๐Ÿšด', "๐Ÿšดโ€โ™‚๏ธ", '๐Ÿšดโ€โ™€๏ธ', '๐Ÿšต', "๐Ÿšตโ€โ™‚๏ธ", "๐Ÿšตโ€โ™€๏ธ", '๐Ÿคธ', "๐Ÿคธโ€โ™‚๏ธ", "๐Ÿคธโ€โ™€๏ธ", '๐Ÿคผ', "๐Ÿคผโ€โ™‚๏ธ", "๐Ÿคผโ€โ™€๏ธ", '๐Ÿคฝ', "๐Ÿคฝโ€โ™‚๏ธ", "๐Ÿคฝโ€โ™€๏ธ", '๐Ÿคพ', "๐Ÿคพโ€โ™‚๏ธ", "๐Ÿคพโ€โ™€๏ธ", '๐Ÿคน', "๐Ÿคนโ€โ™‚๏ธ", "๐Ÿคนโ€โ™€๏ธ", '๐Ÿง˜', "๐Ÿง˜โ€โ™‚๏ธ", "๐Ÿง˜โ€โ™€๏ธ", '๐Ÿ›€', '๐Ÿ›Œ', "๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘", '๐Ÿ‘ญ', '๐Ÿ‘ซ', '๐Ÿ‘ฌ', '๐Ÿ’', "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ", '๐Ÿ’‘', "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ", '๐Ÿ‘ช', "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ", '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง', "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", "๐Ÿ‘จโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘ง", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", "๐Ÿ‘ฉโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘ง", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", "๐Ÿ—ฃ๏ธ", '๐Ÿ‘ค', '๐Ÿ‘ฅ', '๐Ÿซ‚', '๐Ÿ‘ฃ', '๐Ÿฆฐ', '๐Ÿฆฑ', '๐Ÿฆณ', '๐Ÿฆฒ', '๐Ÿต'];
const randomOwnerReaction = reactions[Math.floor(Math.random() * reactions.length)]; //
m.react(randomOwnerReaction);
}
}
// custum react settings
if (!isReact && senderNumber !== botNumber) {
if (config.CUSTOM_REACT === 'true') {
// Use custom emojis from the configuration
const reactions = (config.CUSTOM_REACT_EMOJIS || '๐ŸŽ,๐ŸŽŠ,๐ŸŽ‰,โ„๏ธ,๐ŸŒŸ').split(',');
const randomReaction = reactions[Math.floor(Math.random() * reactions.length)];
m.react(randomReaction);
}
}
if (!isReact && senderNumber === botNumber) {
if (config.CUSTOM_REACT === 'true') {
// Use custom emojis from the configuration
const reactions = (config.CUSTOM_REACT_EMOJIS || '๐ŸŽ,๐ŸŽŠ,๐ŸŽ‰,โ„๏ธ,๐ŸŒŸ').split(',');
const randomReaction = reactions[Math.floor(Math.random() * reactions.length)];
m.react(randomReaction);
}
}
//==========WORKTYPE============
if(!isOwner && config.MODE === "private") return
if(!isOwner && isGroup && config.MODE === "inbox") return
if(!isOwner && !isGroup && config.MODE === "groups") return
// take commands
const events = require('./command')
const cmdName = isCmd ? body.slice(1).trim().split(" ")[0].toLowerCase() : false;
if (isCmd) {
const cmd = events.commands.find((cmd) => cmd.pattern === (cmdName)) || events.commands.find((cmd) => cmd.alias && cmd.alias.includes(cmdName))
if (cmd) {
if (cmd.react) conn.sendMessage(from, { react: { text: cmd.react, key: mek.key }})
try {
cmd.function(conn, mek, m,{from, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply});
} catch (e) {
console.error("[PLUGIN ERROR] " + e);
}
}
}
events.commands.map(async(command) => {
if (body && command.on === "body") {
command.function(conn, mek, m,{from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply})
} else if (mek.q && command.on === "text") {
command.function(conn, mek, m,{from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply})
} else if (
(command.on === "image" || command.on === "photo") &&
mek.type === "imageMessage"
) {
command.function(conn, mek, m,{from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply})
} else if (
command.on === "sticker" &&
mek.type === "stickerMessage"
) {
command.function(conn, mek, m,{from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply})
}});
})
}
app.get("/", (req, res) => {
res.send("[ ๐Ÿค– ] SUBZERO MD BOT ONLINE โœ…");
});
app.listen(port, () => console.log(`Server listening on port http://localhost:${port}`));
setTimeout(() => {
connectToWA()
}, 4000);