Skip to content

Instantly share code, notes, and snippets.

@V4NSH4J
Created November 6, 2021 07:18
Show Gist options
  • Star 33 You must be signed in to star a gist
  • Fork 20 You must be signed in to fork a gist
  • Save V4NSH4J/06c452f32ceb5f6387b66abd8ccedd74 to your computer and use it in GitHub Desktop.
Save V4NSH4J/06c452f32ceb5f6387b66abd8ccedd74 to your computer and use it in GitHub Desktop.
# Keep in mind that there's no actual api endpoint for users to get guild members.
# So, to get guild members, we have to request for and read the member list.
# This is all handled with the bot.gateway.fetchMembers(...) function :) . This function can either be run while the gateway is connected or before the gateway connects.
# Note, you'll need to connect to the gateway to get the member list.
# An example usage is below. The Guild and Channel ids used are from the fortnite server (652k members, around 150k of those are actually fetchable).
# The number of fetchable members changes from time to time.
# https://github.com/Merubokkusu/Discord-S.C.U.M/blob/master/docs/using/Gateway_Actions.md#gatewayfetchmembers
import discum
bot = discum.Client(token='token')
def close_after_fetching(resp, guild_id):
if bot.gateway.finishedMemberFetching(guild_id):
lenmembersfetched = len(bot.gateway.session.guild(guild_id).members) #this line is optional
print(str(lenmembersfetched)+' members fetched') #this line is optional
bot.gateway.removeCommand({'function': close_after_fetching, 'params': {'guild_id': guild_id}})
bot.gateway.close()
def get_members(guild_id, channel_id):
bot.gateway.fetchMembers(guild_id, channel_id, keep="all", wait=1) #get all user attributes, wait 1 second between requests
bot.gateway.command({'function': close_after_fetching, 'params': {'guild_id': guild_id}})
bot.gateway.run()
bot.gateway.resetSession() #saves 10 seconds when gateway is run again
return bot.gateway.session.guild(guild_id).members
members = get_members('serverid', 'channelid')
memberslist = []
for memberID in members:
memberslist.append(memberID)
print(memberID)
f = open('users.txt', "a")
for element in memberslist:
f.write(element + '\n')
f.close()
@thewisehound
Copy link

image
someone understand why i cannot connect? help please

@hoemotion
Copy link

bruh it clearly says the authentication failed, make sure the token is valid

@V4NSH4J
Copy link
Author

V4NSH4J commented Jan 14, 2022

lol @hoemotion where are you these days?

@hoemotion
Copy link

@V4NSH4J im learning hard for school and your dc server phone locked my acc so i was scared that they would ban me and left your server. Meanwhile my guilded got terminated too 💀 but i had no time for making a new one

@V4NSH4J
Copy link
Author

V4NSH4J commented Jan 15, 2022

@hoemotion Ah shit good luck for school though
Something was awfully wrong with that server of ours, it phone locked a lot of people who joint including me and Siegfried 😂

@HippoNeb
Copy link

DMer error

Could someone help me with this, I don't understand what the invalid session means

@hoemotion
Copy link

You just leaked your token and make sure that your discum is on the latest

@RaidFourms
Copy link

RaidFourms commented Jan 28, 2022

is that your
discord token?

@FUNNYPINAY
Copy link

FUNNYPINAY commented Jan 29, 2022

Hi Sir, is there a way to run this on my Dell laptop? I use windows 10. I've successfully downloaded and extracted the files, even the Discum.
When I run it it shows error. I just noticed that my laptop doesn't have a D directory because when I tried to download the discum it shows "PS C:\Desktop>". Could you help please?
By the way sir thanks for helping this community.

@V4NSH4J
Copy link
Author

V4NSH4J commented Jan 29, 2022

You can use the scraper in DMDGO. To use this one, you'd need to navigate on command prompt to where you have the scrape.py file which you can learn how to do from YouTube

@FUNNYPINAY
Copy link

Sir this is how my screen looks like. Sorry sir I am a newbie and I'm just starting to learn python. Please help.
20220129_162855

@hoemotion
Copy link

Make sure scrape.py is on your desktop or else open the folder containing your file

@FUNNYPINAY
Copy link

yes its on my desktop
Uploading 20220129_212049.jpg…

@mahmoudawadeen
Copy link

any idea what to do when getting
[gateway] close message: Invalid intent(s).

I added my token, server, and channel id and ran the script.

@binyamin2009
Copy link

not opening for me, why?

@hoemotion
Copy link

any idea what to do when getting [gateway] close message: Invalid intent(s).

I added my token, server, and channel id and ran the script.

Sexuality issue

@syffs
Copy link

syffs commented Mar 23, 2022

having the below issue:

function(resp, **params)
  File "C:\Users\me\AppData\Roaming\Python\Python310\site-packages\discum\gateway\guild\combo.py", line 70, in fetchMembers
    if not self.gatewayobj.session.guild(guild_id).hasMembers and reset:
  File "C:\Users\me\AppData\Roaming\Python\Python310\site-packages\discum\gateway\session.py", line 233, in hasMembers
    if self.guildID not in Session.settings_ready['guilds']:
KeyError: 'guilds'

also discussed here: Merubokkusu/Discord-S.C.U.M#344

any idea ?

EDIT: it seems to be related to token, using another token works

@Lousifer04
Copy link

Lousifer04 commented Apr 1, 2022

efefgerge
@V4NSH4J Plz Guys Any Solutions for this issue i don't know what i'm missing

@Lousifer04
Copy link

You can use the scraper in DMDGO. To use this one, you'd need to navigate on command prompt to where you have the scrape.py file which you can learn how to do from YouTube

efefgerge
i face this issue i don't know why

@DrBlack22
Copy link

DISCORd
Can you please take a look into this?

@DrBlack22
Copy link

Could not retrieve Discord's build number it says.
And this at the end:

"Traceback (most recent call last):
File "C:\Users\Abidcomputers\AppData\Local\Programs\Python\Python310\lib\site-packages\requests\models.py", line 910, in json
return complexjson.loads(self.text, **kwargs)
File "C:\Users\Abidcomputers\AppData\Local\Programs\Python\Python310\lib\json_init_.py", line 346, in loads
return _default_decoder.decode(s)
File "C:\Users\Abidcomputers\AppData\Local\Programs\Python\Python310\lib\json\decoder.py", line 337, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "C:\Users\Abidcomputers\AppData\Local\Programs\Python\Python310\lib\json\decoder.py", line 355, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "c:\Users\Abidcomputers\Desktop\massdms\scrape.py", line 2, in
bot = discum.Client(token='NjQ5MjUzNjA2ODAxMDE0Nzg1.Ykan-A.t8gsk-2i0ZfaK2oLEIubxnRa4dk')
File "C:\Users\Abidcomputers\AppData\Local\Programs\Python\Python310\lib\site-packages\discum\discum.py", line 104, in init
self.__xfingerprint = self.getXFingerprint(generateIfNone=True)
File "C:\Users\Abidcomputers\AppData\Local\Programs\Python\Python310\lib\site-packages\discum\discum.py", line 216, in getXFingerprint
return imports.Login(self.s, self.discord, self.log).getXFingerprint(generateIfNone)
File "C:\Users\Abidcomputers\AppData\Local\Programs\Python\Python310\lib\site-packages\discum\start\login.py", line 38, in getXFingerprint
xfingerprint = reqxfinger.json().get('fingerprint')
File "C:\Users\Abidcomputers\AppData\Local\Programs\Python\Python310\lib\site-packages\requests\models.py", line 917, in json
raise RequestsJSONDecodeError(e.msg, e.doc, e.pos)
requests.exceptions.JSONDecodeError: [Errno Expecting value]"

@Ryder2048
Copy link

C:\Users\white\Desktop\음악봇\meber>python scrape.py
Retrieving Discord's build number...
Could not retrieve discord build number.
invalid literal for int() with base 10: 'ull!=='
[+] (<discum.start.login.Login->getXFingerprint) Get -> https://discord.com/api/v9/experiments
[+] (<discum.start.login.Login->getXFingerprint) Response <- b'{"fingerprint": "969583720891834498.9xHQPAhmyAz8gzJpZ8qskaxL2Zk", "assignments": [[70411085, 0, 1, -1, 0], [16416918, 0, 1, -1, 0], [3816091942, 3, 0, -1, 0], [4130837190, 0, 10, -1, 0], [852550504, 3, 1, -1, 0], [2599708267, 0, 1, -1, 0], [1365487849, 6, 1, -1, 0], [3128009767, 0, 10, -1, 0], [2973729510, 2, 1, -1, 0], [2571931329, 1, 6, -1, 0], [1260103069, 0, 1, -1, 0], [2003494159, 1, 1, -1, 0], [2458926251, 1, 6, -1, 2], [4027800, 1, 6, -1, 3], [51193042, 0, 1, -1, 0], [2063302207, 1, 1, -1, 0], [2634540382, 3, 1, -1, 0], [427713714, 0, 1, -1, 0], [3388129398, 0, 1, -1, 0], [3316720711, 0, 1, -1, 0], [156590431, 0, 1, -1, 2], [1126477623, 0, 1, -1, 0], [2617218444, 4, 1, -1, 2], [3615263239, 0, 1, -1, 0], [414823706, 0, 1, -1, 0], [3035674767, 0, 1, -1, 0], [261678880, 0, 1, -1, 0], [1758928808, 2, 1, -1, 0], [144783748, 0, 1, -1, 0], [2311413706, 0, 1, -1, 0], [1304635016, 0, 1, -1, 0], [2031154483, 0, 1, -1, 0], [1609782151, 0, 1, -1, 2], [1047093347, 0, 1, -1, 2], [3354177721, 0, 1, -1, 0], [3643362751, 0, 1, -1, 0], [698017395, 0, 1, -1, 0], [902020832, 3, 3, -1, 1], [1503481915, 0, 1, -1, 2], [3346844407, 0, 1, -1, 0], [3753034466, 1, 2, -1, 0], [881221695, 1, 1, -1, 0], [105505141, 1, 1, -1, 1], [3921541483, 2, 1, -1, 0], [3125584553, 1, 1, -1, 0], [219203323, 1, 1, -1, 0], [2854861606, 0, 1, -1, 1], [203190011, 0, 1, -1, 0], [2416791266, 1, 1, -1, 0], [1740882580, 1, 1, -1, 0], [3526033165, 0, 1, -1, 0], [3699939463, 0, 1, -1, 2], [1913882179, 0, 1, -1, 2], [3884403666, 1, 1, -1, 0], [949804751, 3, 1, -1, 0], [2365882538, 1, 1, -1, 0], [2780619238, 1, 0, -1, 0], [2839301427, 1, 1, -1, 0], [2740541143, 1, 0, -1, 0], [1567199723, 0, 1, -1, 1], [2237617796, 0, 1, -1, 0], [2804024497, 0, 1, -1, 2], [2481496956, 0, 1, -1, 0], [1305004983, 0, 1, -1, 0], [4196771574, 6, 6, -1, 0], [3121542871, 1, 0, -1, 0], [934741861, 2, 1, -1, 1], [2639499196, 3, 1, -1, 1], [1926403380, 0, 1, -1, 0], [1175582167, 1, 1, -1, 0], [2012365622, 0, 1, -1, 0], [3615787841, 0, 1, -1, 0], [1369422507, 0, 1, -1, 0], [4257117014, 1, 2, -1, 0], [2191591221, 0, 1, -1, 0], [1860870966, 0, 1, -1, 0], [613690816, 2, 1, -1, 0], [754424255, 0, 0, -1, 0], [282861292, 0, 0, -1, 0], [2950595281, 2, 1, -1, 0], [4263969313, 2, 1, -1, 2], [2496945544, 0, 1, -1, 0], [3662016164, 3, 2, -1, 0], [2486607747, 0, 1, -1, 0], [604497254, 0, 1, -1, 0], [2736193736, 0, 1, -1, 0], [1138665623, 0, 1, -1, 0], [3542498455, 0, 1, -1, 0], [723256323, 0, 1, -1, 0], [3805175685, 0, 1, -1, 0], [3866818837, 0, 1, -1, 0], [3450899088, 1, 1, -1, 0], [3656796460, 0, 1, -1, 0], [334012295, 0, 1, -1, 0], [1685515200, 0, 7, -1, 0], [1748842958, 1, 1, -1, 0], [899439768, 1, 1, -1, 0], [4100056516, 0, 1, -1, 3], [3047034364, 0, 1, -1, 0], [799757083, 0, 3, -1, 0], [854704408, 0, 1, -1, 0], [1308053712, 0, 1, -1, 0], [1363066938, 3, 1, -1, 1], [1814483290, 0, 1, -1, 0], [3074844387, 0, 1, -1, 0], [2855612301, 0, 1, -1, 0], [4084522269, 0, 1, -1, 0], [1613012371, 0, 1, -1, 0], [3567821600, 0, 0, -1, 1], [3557480712, 0, 1, -1, 0], [3606428003, 0, 1, -1, 0], [2815803943, 0, 0, -1, 0], [3889077804, 2, 1, -1, 0], [4079214319, 2, 1, -1, 0], [2447247632, 4, 0, -1, 0], [1621989768, 0, 0, -1, 0], [191312409, 2, 1, -1, 0]]}'
[gateway] Connected to websocket.
[gateway] > {'op': 2, 'd': {'token': 'OTM1Njk2Nzk0ODMzMjU2NTA5.YmvVSA.fxHQwg96slZZYIA3WMsOwj7Ix70', 'capabilities': 253, 'properties': {'os': 'Windows', 'browser': 'Chrome', 'device': '', 'system_locale': 'en-US', 'browser_user_agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', 'browser_version': '96.0.4664', 'os_version': '10', 'referrer': '', 'referring_domain': '', 'referrer_current': '', 'referring_domain_current': '', 'release_channel': 'stable', 'client_build_number': 107767, 'client_event_source': None}, 'presence': {'status': 'online', 'since': 0, 'activities': [], 'afk': False}, 'compress': False, 'client_state': {'guild_hashes': {}, 'highest_last_message_id': '0', 'read_state_version': 0, 'user_guild_settings_version': -1}}}
[gateway] < {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, 'trace': ['["gateway-prd-main-z5fg",{"micros":0.0}]']}}
[gateway] entering heartbeat
[gateway] < {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 9, 'users': [{'username': 'MEE6', 'public_flags': 65536, 'id': '159985870458322944', 'discriminator': '4876', 'bot': True, 'avatar_decoration': None, 'avatar': 'b50adff099924dd5e6b72d13f77eb9d7'}, {'username': 'Talseng', 'public_flags': 256, 'id': '425246853555027978', 'discriminator': '0001', 'avatar': '65953a6639c415ea849d85cd38bb5169'}, {'username': 'AlphqNyang
', 'public_flags': 64, 'id': '503160271301246976', 'discriminator': '9762', 'avatar': None}, {'username': 'betq', 'public_flags': 64, 'id': '615880272591978506', 'discriminator': '4465', 'avatar': 'e61acea859551b4fb06e59c20beca3ce'}, {'username': '시원한냉장고', 'id': '801661916275539969', 'discriminator': '5797', 'avatar': None}, {'username': 'ryder2585라이더', 'public_flags': 0, 'id': '857940869452791818', 'discriminator': '1673', 'avatar_decoration': None, 'avatar': 'b705f2c88300f272af865405176a79b8'}, {'username': '솔이', 'public_flags': 0, 'id': '861135193398444082', 'discriminator': '4916', 'avatar_decoration': None, 'avatar': 'f87560bc68280fcdb4e7688ce9182aea'}, {'username': 'qstep12', 'id': '935696794833256509', 'discriminator': '5064', 'avatar': None}, {'username': '이벤트 알람 🎁', 'public_flags': 0, 'id': '961620436737744906', 'discriminator': '4747', 'bot': True, 'avatar_decoration': None, 'avatar': '27393ead653e37b4e9c745dcd536d593'}], 'user_settings_proto': 'CgQIDxgPEgAiBgoEE9AAgCoAMgA6AEICOAFKAFIAWgoKCAoGb25saW5lYhMKBAoCa28SCwjk+/////////8Bco4BCgoKCFGAgor+C2ANCgoKCEYQgmoIzGcNCgoKCApAgs1SkGMMCgoKCAqAwujMy2cNCgoKCDJwwtBJINEMCgoKCAqAQuzXFUoNCgoKCAIAQhCZ1OQJEjhRgIKK/gtgDUYQgmoIzGcNCkCCzVKQYwwKgMLozMtnDTJwwtBJINEMCoBC7NcVSg0CAEIQmdTkCQ==', 'user_settings': {'inline_attachment_media': True, 'show_current_game': True, 'friend_source_flags': {'all': True}, 'view_nsfw_guilds': False, 'enable_tts_command': True, 'render_reactions': True, 'gif_auto_play': True, 'stream_notifications_enabled': True, 'animate_emoji': True, 'afk_timeout': 600, 'detect_platform_accounts': True, 'status': 'online', 'explicit_content_filter': 1, 'custom_status': None, 'default_guilds_restricted': False, 'theme': 'dark', 'allow_accessibility_detection': True, 'locale': 'ko', 'native_phone_integration_enabled': True, 'guild_positions': ['963783508130693201', '965964981612974150', '892715836459073546', '965964726033088522', '923554899994767410', '957601887895584778', '712928394899226626'], 'timezone_offset': -540, 'friend_discovery_flags': 0, 'contact_sync_enabled': False, 'disable_games_tab': False, 'guild_folders': [{'name': None, 'id': None, 'guild_ids': ['963783508130693201'], 'color': None}, {'name': None, 'id': None, 'guild_ids': ['965964981612974150'], 'color': None}, {'name': None, 'id': None, 'guild_ids': ['892715836459073546'], 'color': None}, {'name': None, 'id': None, 'guild_ids': ['965964726033088522'], 'color': None}, {'name': None, 'id': None, 'guild_ids': ['923554899994767410'], 'color': None}, {'name': None, 'id': None, 'guild_ids': ['957601887895584778'], 'color': None}, {'name': None, 'id': None, 'guild_ids': ['712928394899226626'], 'color': None}], 'inline_embed_media': True, 'developer_mode': False, 'render_embeds': True, 'animate_stickers': 0, 'message_display_compact': False, 'convert_emoticons': True, 'passwordless': True, 'restricted_guilds': []}, 'user_guild_settings': {'version': 1, 'partial': False, 'entries': [{'version': 1, 'suppress_roles': False, 'suppress_everyone': False, 'notify_highlights': 0, 'muted': False, 'mute_scheduled_events': False, 'mute_config': None, 'mobile_push': True, 'message_notifications': 0, 'hide_muted_channels': False, 'guild_id': '890928664944992256', 'channel_overrides': [{'muted': True, 'mute_config': {'selected_time_window': None, 'end_time': '2022-03-30T13:49:39+00:00'}, 'message_notifications': 3, 'collapsed': False, 'channel_id': '890928664944992259'}]}]}, 'user': {'verified': True, 'username': 'qstep12', 'purchased_flags': 0, 'premium': False, 'phone': None, 'nsfw_allowed': True, 'mobile': True, 'mfa_enabled': False, 'id': '935696794833256509', 'flags': 0, 'email': 'myserver5g5t@gmail.com', 'discriminator': '5064', 'desktop': False, 'bio': '', 'banner_color': None, 'banner': None, 'avatar_decoration': None, 'avatar': None, 'accent_color': None}, 'tutorial': None, 'sessions': [{'status': 'online', 'session_id': '1f3db2c1e30bb81e325120b5f1da8ae4', 'client_info': {'version': 0, 'os': 'windows', 'client': 'web'}, 'activities': []}, {'status': 'online', 'session_id': '84e9c00ad440e0c240625324857370dd', 'client_info': {'version': 0, 'os': 'windows', 'client': 'web'}, 'activities': []}], 'session_id': '84e9c00ad440e0c240625324857370dd', 'relationships': [{'user_id': '857940869452791818', 'type': 1, 'nickname': None, 'id': '857940869452791818'}], 'read_state': {'version': 728, 'partial': False, 'entries': [{'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '958323876499181588', 'id': '738930616573231125'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '966628145753096212', 'id': '738930838590193774'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '966233201259462676', 'id': '745599772248768552'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '968317433523884042', 'id': '762969306967048214'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '966235365067358238', 'id': '762969365313749004'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '967530499251781683', 'id': '775699524789862451'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963782809011494932', 'id': '890928664944992259'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963783773646880818', 'id': '890931920819601479'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '962932328634658859', 'id': '890932477554741359'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963780948594417674', 'id': '890933810269650985'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959358993128648754', 'id': '891542091686105099'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963783953465098250', 'id': '891542227925499904'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963771979050123334', 'id': '898910713110732840'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '965876849068621865', 'id': '910105307064197151'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959971351949615174', 'id': '911689930051313724'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959008051443154944', 'id': '911696423316226048'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959359202369863710', 'id': '911696467423531008'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959869502970023976', 'id': '911696504484429885'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959850847112658984', 'id': '911696594557091921'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959466972976922694', 'id': '911704408025366568'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959361846639472690', 'id': '911704561507508230'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959805481629655111', 'id': '911710688534200330'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959982552523870218', 'id': '911710844172271667'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959726668094795787', 'id': '913053160497623067'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959760952985796688', 'id': '913065727118946324'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '958859317757489192', 'id': '919583016995663882'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959623712305475604', 'id': '920359016608194680'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '960030519234535424', 'id': '923554899994767413'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '926371070892707860', 'id': '923555275078766623'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959804507779391548', 'id': '924305580485660692'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '935699707915816970', 'id': '928493726119125045'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959992232218333246', 'id': '929759496920768522'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959034141586898944', 'id': '929759636922454077'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '947867757985292308', 'id': '933151454045306880'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959723544948912132', 'id': '933351950223826974'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '960054068787683328', 'id': '935406364912664576'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '968393668409049118', 'id': '935698580906340362'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959460856033325066', 'id': '935731209483472931'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959845821589880892', 'id': '937002722845134848'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959871945489408101', 'id': '939170644917125181'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '939475676992520202', 'id': '939475492833222676'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '968394038971617291', 'id': '943008519416852510'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963779451806707802', 'id': '947423740059328582'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963782919795642428', 'id': '947648890595835974'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959772834861809685', 'id': '948462569675452446'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '962572303391154187', 'id': '949988752758022154'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '959490173266182164', 'id': '953665395125018654'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963054671067484213', 'id': '955663607411138610'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963405781112332418', 'id': '955663873858502656'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '962754747356569661', 'id': '955665459980673024'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '957231801447903233', 'id': '957175006612320256'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '957231823165997056', 'id': '957231798314749992'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '967599494155866243', 'id': '957601888373710929'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '961253424463245342', 'id': '958319583582887937'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963780466056527882', 'id': '958710866331721728'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963431586823536670', 'id': '959478577630433290'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '965570445485174824', 'id': '959775011399405588'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '965182461032149003', 'id': '960542692000030770'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '960792393718825000', 'id': '960792278669078569'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '961862893987577856', 'id': '961862857287405638'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '962260079770476565', 'id': '962259842863599626'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963801168692264990', 'id': '963800928073433118'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '967652272978931712', 'id': '963801048730976336'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963802687114211378', 'id': '963802505412767776'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '963930616557092885', 'id': '963929705990467666'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '964048484250550314', 'id': '964045356289626203'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '967655586592346122', 'id': '965579667446857818'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '965582271174283304', 'id': '965580067608625192'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '967653975258177617', 'id': '965591883608911882'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '967655836430250034', 'id': '965959545698529302'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '967708114092691476', 'id': '965964726473470002'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '965965756355448832', 'id': '965964981612974153'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '966118074199736350', 'id': '966118055459577866'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '966659408568397845', 'id': '966659296270110750'}, {'mention_count': 0, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': '968394042356404274', 'id': '968394040229916704'}, {'mention_count': 1, 'last_pin_timestamp': '1970-01-01T00:00:00+00:00', 'last_message_id': 0, 'id': '969198679326093342'}]}, 'private_channels': [{'type': 1, 'recipient_ids': ['857940869452791818'], 'last_message_id': '968393668409049118', 'id': '935698580906340362'}, {'type': 1, 'recipient_ids': ['861135193398444082'], 'last_message_id': '957231801447903233', 'id': '957175006612320256'}, {'type': 1, 'recipient_ids': ['159985870458322944'], 'last_message_id': '957231823165997056', 'id': '957231798314749992'}, {'type': 1, 'recipient_ids': ['961620436737744906'], 'last_message_id': '968394042356404274', 'id': '968394040229916704'}], 'merged_members': [[{'user_id': '935696794833256509', 'roles': ['923498655921627166'], 'mute': False, 'joined_at': '2022-03-28T11:29:00.803000+00:00', 'hoisted_role': '923498655921627166', 'flags': 0, 'deaf': False}], [{'user_id': '935696794833256509', 'roles': ['931358735392198657', '928495756581691402'], 'mute': False, 'joined_at': '2022-01-26T00:52:33.773000+00:00', 'hoisted_role': '928495756581691402', 'flags': 0, 'deaf': False}], [{'user_id': '935696794833256509', 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-26T06:10:50.507067+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'avatar': None}], [{'user_id': '935696794833256509', 'roles': [], 'mute': False, 'joined_at': '2022-03-28T13:23:13.732000+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False}], [{'user_id': '935696794833256509', 'roles': [], 'mute': False, 'joined_at': '2022-04-20T07:16:06.542000+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False}], [{'user_id': '935696794833256509', 'roles': [], 'mute': False, 'joined_at': '2022-04-25T12:24:49.416000+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False}]], 'guilds': [{'owner_id': '339997635677257740', 'system_channel_flags': 13, 'name': '하루 커뮤니티', 'system_channel_id': '959775011399405588', 'joined_at': '2022-03-28T11:29:00.803000+00:00', 'max_video_channel_users': 25, 'vanity_url_code': 'harubot', 'nsfw_level': 0, 'afk_timeout': 300, 'stickers': [{'type': 2, 'tags': 'laughing', 'name': '하?루', 'id': '925382895588212777', 'guild_id': '712928394899226626', 'format_type': 1, 'description': '', 'available': True, 'asset': ''}, {'type': 2, 'tags': 'slight_smile', 'name': '움직이는 하?루', 'id': '931395334767263784', 'guild_id': '712928394899226626', 'format_type': 2, 'description': '', 'available': True, 'asset': ''}, {'type': 2, 'tags': 'kissing_smiling_eyes', 'name': '하? 뿅!', 'id': '933998212388364318', 'guild_id': '712928394899226626', 'format_type': 2, 'description': '', 'available': True, 'asset': ''}, {'type': 2, 'tags': 'grinning', 'name': '하루', 'id': '943363721936392232', 'guild_id': '712928394899226626', 'format_type': 1, 'description': '', 'available': True, 'asset': ''}, {'type': 2, 'tags': 'smiley', 'name': '큰 하루', 'id': '943364043383664640', 'guild_id': '712928394899226626', 'format_type': 1, 'description': '', 'available': True, 'asset': ''}, {'type': 2, 'tags': 'face_with_raised_eyebrow', 'name': '...', 'id': '960504922535768094', 'guild_id': '712928394899226626', 'format_type': 1, 'description': '', 'available': True, 'asset': ''}, {'type': 2, 'tags': 'smiling_face_with_tear', 'name': 'ㅜㅜ', 'id': '960504978810748958', 'guild_id': '712928394899226626', 'format_type': 1, 'description': '', 'available': True, 'asset': ''}, {'type': 2, 'tags': 'sob', 'name': '미안해..', 'id': '960506877693812746', 'guild_id': '712928394899226626', 'format_type': 1, 'description': '', 'available': True, 'asset': ''}, {'type': 2, 'tags': 'sob', 'name': 'sorry..', 'id': '962600524325199942', 'guild_id': '712928394899226626', 'format_type': 1, 'description': '', 'available': True, 'asset': ''}, {'type': 2, 'tags': 'sob', 'name': 'ごめん。。', 'id': '962600580168163358', 'guild_id': '712928394899226626', 'format_type': 1, 'description': '', 'available': True, 'asset': ''}], 'large': True, 'channels': [{'type': 4, 'position': 2, 'permission_overwrites': [{'type': 0, 'id': '713199302603833446', 'deny': '1024', 'allow': '0'}, {'type': 0, 'id': '712928394899226626', 'deny': '2048', 'allow': '66624'}], 'name': '공지', 'id': '713199400171733022', 'flags': 0}, {'type': 4, 'position': 3, 'permission_overwrites': [{'type': 0, 'id': '923498655921627166', 'deny': '137439264768', 'allow': '0'}, {'type': 0, 'id': '714675869397942422', 'deny': '0', 'allow': '691556181568'}, {'type': 0, 'id': '713199302603833446', 'deny': '0', 'allow': '137439266880'}], 'name': '일반', 'id': '713199469646053407', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 3, 'permission_overwrites': [{'type': 0, 'id': '714675869397942422', 'deny': '0', 'allow': '1049600'}, {'type': 0, 'id': '712928394899226626', 'deny': '1049600', 'allow': '0'}], 'parent_id': '745599550839848961', 'name': '관리자', 'last_message_id': '968976608159465594', 'id': '722336976971235358', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 6, 'permission_overwrites': [{'type': 0, 'id': '712928394899226626', 'deny': '2048', 'allow': '66624'}, {'type': 0, 'id': '713199302603833446', 'deny': '1024', 'allow': '0'}], 'parent_id': '713199400171733022', 'name': '규칙', 'last_message_id': '958323876499181588', 'id': '738930616573231125', 'flags': 0}, {'type': 5, 'topic': None, 'rate_limit_per_user': 0, 'position': 5, 'permission_overwrites': [{'type': 0, 'id': '923498655921627166', 'deny': '0', 'allow': '64'}, {'type': 0, 'id': '712928394899226626', 'deny': '2048', 'allow': '66624'}, {'type': 0, 'id': '713199302603833446', 'deny': '1024', 'allow': '0'}], 'parent_id': '713199400171733022', 'name': '공지', 'last_message_id': '966628145753096212', 'id': '738930838590193774', 'flags': 0}, {'type': 4, 'position': 1, 'permission_overwrites': [{'type': 0, 'id': '712928394899226626', 'deny': '1049600', 'allow': '0'}, {'type': 0, 'id': '714675869397942422', 'deny': '0', 'allow': '1049600'}], 'name': '관리자', 'id': '745599550839848961', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 9, 'permission_overwrites': [{'type': 0, 'id': '712928394899226626', 'deny': '2048', 'allow': '66624'}, {'type': 0, 'id': '713199302603833446', 'deny': '1024', 'allow': '0'}], 'parent_id': '713199400171733022', 'name': '환영합니다', 'last_message_id': '969576558861901886', 'id': '745599772248768552', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 11, 'permission_overwrites': [{'type': 0, 'id': '713199302603833446', 'deny': '3072', 'allow': '0'}, {'type': 0, 'id': '923498655921627166', 'deny': '49152', 'allow': '0'}], 'parent_id': '713199469646053407', 'name': '채팅', 'last_message_id': '969583712641617931', 'id': '762969306967048214', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 13, 'permission_overwrites': [{'type': 0, 'id': '923498655921627166', 'deny': '137439264768', 'allow': '0'}, {'type': 0, 'id': '713199302603833446', 'deny': '0', 'allow': '137439266880'}, {'type': 0, 'id': '714675869397942422', 'deny': '0', 'allow': '691556181568'}], 'parent_id': '713199469646053407', 'name': '명령어', 'last_message_id': '969582932094255134', 'id': '762969365313749004', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 14, 'permission_overwrites': [{'type': 0, 'id': '923498655921627166', 'deny': '137439264768', 'allow': '0'}, {'type': 0, 'id': '713199302603833446', 'deny': '0', 'allow': '137439266880'}, {'type': 0, 'id': '714675869397942422', 'deny': '0', 'allow': '691556181568'}], 'parent_id': '713199469646053407', 'name': '문의', 'last_message_id': '969562645722198016', 'id': '775699524789862451', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 8, 'permission_overwrites': [{'type': 0, 'id': '712928394899226626', 'deny': '2048', 'allow': '66624'}, {'type': 0, 'id': '713199302603833446', 'deny': '1024', 'allow': '0'}], 'parent_id': '713199400171733022', 'name': '웹사이트', 'last_message_id': '923498170867130388', 'id': '923497787553906729', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 4, 'permission_overwrites': [{'type': 0, 'id': '714675869397942422', 'deny': '0', 'allow': '1049600'}, {'type': 0, 'id': '712928394899226626', 'deny': '1049600', 'allow': '0'}], 'parent_id': '745599550839848961', 'name': '로그', 'last_message_id': '969583035894878308', 'id': '923498255701131325', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 7, 'permission_overwrites': [{'type': 0, 'id': '713199302603833446', 'deny': '1024', 'allow': '0'}, {'type': 0, 'id': '712928394899226626', 'deny': '2048', 'allow': '66624'}], 'parent_id': '713199400171733022', 'name': '음악-명령어', 'last_message_id': '934314669382959135', 'id': '934314385160167434', 'flags': 0}, {'user_limit': 10000, 'type': 13, 'topic': None, 'rtc_region': None, 'position': 0, 'permission_overwrites': [{'type': 0, 'id': '712928394899226626', 'deny': '0', 'allow': '4294967296'}], 'parent_id': '713199469646053407', 'name': 'radio', 'id': '958310736768139284', 'flags': 0, 'bitrate': 64000}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 2, 'permission_overwrites': [{'type': 0, 'id': '923498655921627166', 'deny': '2097152', 'allow': '0'}, {'type': 0, 'id': '713199302603833446', 'deny': '0', 'allow': '2097152'}, {'type': 0, 'id': '712928394899226626', 'deny': '35652096', 'allow': '0'}], 'parent_id': '713199469646053407', 'name': 'music', 'last_message_id': None, 'id': '958310890229338113', 'flags': 0, 'bitrate': 384000}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 0, 'permission_overwrites': [{'type': 0, 'id': '923498655921627166', 'deny': '1088', 'allow': '0'}, {'type': 0, 'id': '712928394899226626', 'deny': '2048', 'allow': '66560'}], 'name': '인증', 'last_message_id': '959078887021760532', 'id': '958314076444979240', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 12, 'permission_overwrites': [{'type': 0, 'id': '923498655921627166', 'deny': '0', 'allow': '32768'}, {'type': 0, 'id': '713199302603833446', 'deny': '1024', 'allow': '0'}], 'parent_id': '713199469646053407', 'name': '하루-창작방', 'last_pin_timestamp': '2022-04-01T17:04:31+00:00', 'last_message_id': '969451230973792286', 'id': '959478577630433290', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 10, 'permission_overwrites': [{'type': 0, 'id': '712928394899226626', 'deny': '2048', 'allow': '66624'}, {'type': 0, 'id': '713199302603833446', 'deny': '1024', 'allow': '0'}], 'parent_id': '713199400171733022', 'name': '서버-부스트', 'last_message_id': '969232019664011284', 'id': '959775011399405588', 'flags': 0}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 1, 'permission_overwrites': [{'type': 0, 'id': '712928394899226626', 'deny': '2097152', 'allow': '0'}, {'type': 0, 'id': '713199302603833446', 'deny': '1048576', 'allow': '2097152'}, {'type': 0, 'id': '923498655921627166', 'deny': '0', 'allow': '35652096'}], 'parent_id': '713199469646053407', 'name': 'voice', 'last_message_id': None, 'id': '959816092203769896', 'flags': 0, 'bitrate': 64000}, {'type': 4, 'position': 0, 'permission_overwrites': [{'type': 0, 'id': '712928394899226626', 'deny': '1049600', 'allow': '0'}, {'type': 0, 'id': '713199302603833446', 'deny': '0', 'allow': '1049600'}, {'type': 0, 'id': '958313561032126467', 'deny': '1024', 'allow': '0'}, {'type': 0, 'id': '923496771144011787', 'deny': '1024', 'allow': '0'}, {'type': 0, 'id': '959722221889277993', 'deny': '1024', 'allow': '1048576'}, {'type': 0, 'id': '720789386928848966', 'deny': '0', 'allow': '0'}], 'name': '개발자', 'id': '960360026248212501', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 1, 'permission_overwrites': [{'type': 0, 'id': '923496771144011787', 'deny': '1024', 'allow': '0'}, {'type': 0, 'id': '712928394899226626', 'deny': '1049600', 'allow': '0'}, {'type': 0, 'id': '959722221889277993', 'deny': '1024', 'allow': '1048576'}, {'type': 0, 'id': '713199302603833446', 'deny': '0', 'allow': '1049600'}, {'type': 0, 'id': '958313561032126467', 'deny': '1024', 'allow': '0'}, {'type': 0, 'id': '720789386928848966', 'deny': '0', 'allow': '0'}], 'parent_id': '960360026248212501', 'name': 'todo', 'last_message_id': '966537406478159882', 'id': '960360236798066738', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 2, 'permission_overwrites': [{'type': 0, 'id': '712928394899226626', 'deny': '1049600', 'allow': '0'}, {'type': 0, 'id': '959722221889277993', 'deny': '1024', 'allow': '1048576'}, {'type': 0, 'id': '713199302603833446', 'deny': '0', 'allow': '1049600'}, {'type': 0, 'id': '720789386928848966', 'deny': '0', 'allow': '0'}, {'type': 0, 'id': '923496771144011787', 'deny': '1024', 'allow': '0'}, {'type': 0, 'id': '958313561032126467', 'deny': '1024', 'allow': '0'}], 'parent_id': '960360026248212501', 'name': 'dev', 'last_message_id': '969495530814197770', 'id': '960360435511623700', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 15, 'permission_overwrites': [{'type': 0, 'id': '714675869397942422', 'deny': '0', 'allow': '124928'}, {'type': 0, 'id': '713199302603833446', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '923498655921627166', 'deny': '2112', 'allow': '66560'}], 'parent_id': '713199469646053407', 'name': '처벌-로그', 'last_message_id': '969257626280013824', 'id': '960542692000030770', 'flags': 0}], 'discovery_splash': '04864d6fd7a5de28a95ef8c9edc11ad8', 'mfa_level': 1, 'member_count': 4931, 'explicit_content_filter': 2, 'default_message_notifications': 1, 'lazy': True, 'max_members': 500000, 'premium_progress_bar_enabled': False, 'verification_level': 2, 'splash': 'be69af78091ef092d8a0e70b0f748def', 'description': '하루 디스코드 봇의 커뮤니티입니다. 환영해요!', 'premium_subscription_count': 24, 'public_updates_channel_id': '722336976971235358', 'stage_instances': [], 'threads': [], 'roles': [{'unicode_emoji': None, 'tags': {}, 'position': 0, 'permissions': '0', 'name': '@everyone', 'mentionable': False, 'managed': False, 'id': '712928394899226626', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '495574108046753814'}, 'position': 10, 'permissions': '2198485855958', 'name': '하루', 'mentionable': False, 'managed': True, 'id': '713199302603833446', 'icon': '674826b4a002b6c4260d82cd1997ff12', 'hoist': True, 'color': 16702948}, {'unicode_emoji': None, 'tags': {}, 'position': 5, 'permissions': '2188553743942', 'name': '관리자', 'mentionable': False, 'managed': False, 'id': '714675869397942422', 'icon': '360648ea02d944fe22acbf2a1616cf28', 'hoist': True, 'color': 6337459}, {'unicode_emoji': None, 'tags': {}, 'position': 11, 'permissions': '6546771529', 'name': '개발자', 'mentionable': False, 'managed': False, 'id': '720789386928848966', 'icon': '02a17bf436bc836b0015cea60f79d2d3', 'hoist': True, 'color': 11920381}, {'unicode_emoji': None, 'tags': {'premium_subscriber': None}, 'position': 3, 'permissions': '143985593920', 'name': '서버 부스터', 'mentionable': False, 'managed': True, 'id': '773533117234544670', 'icon': 'aa6c9e02cab17192ade4b3454c545e1f', 'hoist': True, 'color': 13014726}, {'unicode_emoji': None, 'tags': {'bot_id': '536991182035746816'}, 'position': 6, 'permissions': '8', 'name': 'Wick', 'mentionable': False, 'managed': True, 'id': '923496771144011787', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 2, 'permissions': '831112990272', 'name': '멤버', 'mentionable': False, 'managed': False, 'id': '923498655921627166', 'icon': None, 'hoist': True, 'color': 10210697}, {'unicode_emoji': None, 'tags': {'bot_id': '298822483060981760'}, 'position': 1, 'permissions': '536988833', 'name': 'Logger', 'mentionable': False, 'managed': True, 'id': '958311653399756874', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '159985870458322944'}, 'position': 7, 'permissions': '1945627743', 'name': 'MEE6', 'mentionable': False, 'managed': True, 'id': '958313561032126467', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 4, 'permissions': '0', 'name': '아티스트', 'mentionable': False, 'managed': False, 'id': '959641879824187412', 'icon': None, 'hoist': False, 'color': 15126129}, {'unicode_emoji': None, 'tags': {}, 'position': 9, 'permissions': '0', 'name': '봇', 'mentionable': False, 'managed': False, 'id': '959722221889277993', 'icon': 'b4c8bf5270e6448e01b1b03b407ba01b', 'hoist': False, 'color': 4818400}, {'unicode_emoji': None, 'tags': {'bot_id': '962524558114566174'}, 'position': 8, 'permissions': '8', 'name': 'next', 'mentionable': False, 'managed': True, 'id': '962525100484214816', 'icon': None, 'hoist': False, 'color': 0}], 'afk_channel_id': None, 'features': ['MEMBER_VERIFICATION_GATE_ENABLED', 'ROLE_ICONS', 'DISCOVERABLE', 'NEWS', 'BANNER', 'THREE_DAY_THREAD_ARCHIVE', 'VANITY_URL', 'PRIVATE_THREADS', 'SEVEN_DAY_THREAD_ARCHIVE', 'THREADS_ENABLED', 'INVITE_SPLASH', 'ANIMATED_ICON', 'NEW_THREAD_PERMISSIONS', 'ANIMATED_BANNER', 'MEMBER_PROFILES', 'ENABLED_DISCOVERABLE_BEFORE', 'PREVIEW_ENABLED', 'COMMUNITY'], 'icon': '7505bf66ff83240c416f84adf982aaf6', 'premium_tier': 3, 'nsfw': False, 'hub_type': None, 'banner': '0f8c89ff5c0df9ccc4891ade50a55f29', 'id': '712928394899226626', 'guild_hashes': {'version': 1, 'roles': {'omitted': False, 'hash': '1655880YJwc'}, 'metadata': {'omitted': False, 'hash': 'jHwYPTuaZuI'}, 'channels': {'omitted': False, 'hash': 'Q2EMA0TfDEE'}}, 'preferred_locale': 'ko', 'application_command_counts': {'3': 0, '2': 0, '1': 39}, 'rules_channel_id': '738930616573231125', 'emojis': [{'roles': [], 'require_colons': True, 'name': 'harumolu', 'managed': False, 'id': '925383409981866014', 'available': True, 'animated': False}, {'roles': [], 'require_colons': True, 'name': 'haru', 'managed': False, 'id': '958344993158864936', 'available': True, 'animated': False}, {'roles': [], 'require_colons': True, 'name': 'haruwhat', 'managed': False, 'id': '960504807871889459', 'available': True, 'animated': False}, {'roles': [], 'require_colons': True, 'name': 'haruwhat', 'managed': False, 'id': '960504825739628564', 'available': True, 'animated': False}], 'application_id': None, 'region': 'deprecated', 'guild_scheduled_events': []}, {'owner_id': '857940869452791818', 'system_channel_flags': 0, 'name': 'playdiz<플레이 디즈>', 'system_channel_id': '923554899994767413', 'joined_at': '2022-01-26T00:52:33.773000+00:00', 'max_video_channel_users': 25, 'vanity_url_code': None, 'nsfw_level': 0, 'afk_timeout': 300, 'stickers': [], 'large': False, 'channels': [{'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 21, 'permission_overwrites': [], 'parent_id': '924499956008648715', 'name': '1', 'last_message_id': None, 'id': '946228506851938374', 'flags': 0, 'bitrate': 64000}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 0, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '2048', 'allow': '66560'}], 'parent_id': '923554899994767411', 'name': 'log', 'last_message_id': '960030519234535424', 'id': '923554899994767413', 'flags': 0}, {'user_limit': 57, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 16, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '1049600', 'allow': '0'}, {'type': 0, 'id': '924651922026283018', 'deny': '65012480', 'allow': '1048576'}], 'parent_id': '924627503270731776', 'name': 'NV4 1-3', 'last_message_id': None, 'id': '925183996575506454', 'flags': 0, 'bitrate': 64000}, {'user_limit': 30, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 20, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '1024', 'allow': '0'}], 'parent_id': '924627503270731776', 'name': 'SUPER 4D grahpic plus<1-1>', 'last_message_id': None, 'id': '925950870254919721', 'flags': 0, 'bitrate': 64000}, {'type': 4, 'position': 4, 'permission_overwrites': [], 'name': '소식', 'id': '933151429823180851', 'flags': 0}, {'user_limit': 40, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 19, 'permission_overwrites': [{'type': 0, 'id': '924651922026283018', 'deny': '65012480', 'allow': '1048576'}, {'type': 0, 'id': '923554899994767410', 'deny': '1049600', 'allow': '0'}, {'type': 0, 'id': '924502895876009994', 'deny': '1048576', 'allow': '0'}], 'parent_id': '924627503270731776', 'name': 'NV6 ULTRA 1-2', 'last_message_id': None, 'id': '925539685101633578', 'flags': 0, 'bitrate': 64000}, {'user_limit': 21, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 7, 'permission_overwrites': [{'type': 0, 'id': '924502895876009994', 'deny': '0', 'allow': '1048576'}, {'type': 0, 'id': '923554899994767410', 'deny': '1048576', 'allow': '0'}], 'parent_id': '924499956008648715', 'name': '방송 1 <75kbps>', 'last_message_id': None, 'id': '924503687072714783', 'flags': 0, 'bitrate': 64000}, {'user_limit': 40, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 18, 'permission_overwrites': [{'type': 0, 'id': '924651922026283018', 'deny': '65012480', 'allow': '1048576'}, {'type': 0, 'id': '923554899994767410', 'deny': '1049600', 'allow': '0'}], 'parent_id': '924627503270731776', 'name': 'NV6 ULTRA 1-1', 'last_message_id': None, 'id': '925273460350001223', 'flags': 0, 'bitrate': 64000}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 12, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '924627503270731776', 'name': 'NZ5 1-3', 'last_message_id': None, 'id': '924632428767764511', 'flags': 0, 'bitrate': 22000}, {'user_limit': 53, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 14, 'permission_overwrites': [{'type': 0, 'id': '924651922026283018', 'deny': '65012480', 'allow': '1048576'}, {'type': 0, 'id': '923554899994767410', 'deny': '1048576', 'allow': '0'}], 'parent_id': '924627503270731776', 'name': 'NV5 1-1 Sound plus', 'last_message_id': None, 'id': '924652519299354684', 'flags': 0, 'bitrate': 65000}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 12, 'permission_overwrites': [], 'parent_id': '933151429823180851', 'name': '마크', 'last_message_id': '947867757985292308', 'id': '933151454045306880', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 11, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '923554899994767411', 'name': '질문', 'last_pin_timestamp': '2022-01-12T13:15:18+00:00', 'last_message_id': '933151777489027142', 'id': '930808990638702622', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 10, 'permission_overwrites': [{'type': 0, 'id': '931358735392198657', 'deny': '0', 'allow': '2048'}, {'type': 0, 'id': '928495756581691402', 'deny': '535529258065', 'allow': '0'}, {'type': 0, 'id': '923554899994767410', 'deny': '2048', 'allow': '66560'}], 'parent_id': '923554899994767411', 'name': '인증', 'last_pin_timestamp': '2022-02-06T12:32:38+00:00', 'last_message_id': '939861143239925810', 'id': '928493726119125045', 'flags': 0}, {'user_limit': 12, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 2, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '924499956008648715', 'name': 'friends2', 'last_message_id': None, 'id': '924500338474623046', 'flags': 0, 'bitrate': 64000}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 14, 'permission_overwrites': [], 'parent_id': '923554899994767411', 'name': '신고', 'last_message_id': '939475676992520202', 'id': '939475492833222676', 'flags': 0}, {'user_limit': 20, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 8, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '1048576', 'allow': '0'}, {'type': 0, 'id': '924502895876009994', 'deny': '0', 'allow': '1048576'}], 'parent_id': '924499956008648715', 'name': '방송 2<80kbps>', 'last_message_id': None, 'id': '924505151866302477', 'flags': 0, 'bitrate': 80000}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 3, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '65536', 'allow': '0'}], 'parent_id': '923576837186150410', 'name': '코드-구매', 'last_pin_timestamp': '2021-12-23T23:20:22+00:00', 'last_message_id': '923716695649026048', 'id': '923576931071434762', 'flags': 0}, {'user_limit': 20, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 5, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '924499956008648715', 'name': 'friends5 단체', 'last_message_id': None, 'id': '924500554414182490', 'flags': 0, 'bitrate': 64000}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 2, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '923554899994767411', 'name': '로그-복구', 'last_pin_timestamp': '2021-12-31T01:42:40+00:00', 'last_message_id': '926371070892707860', 'id': '923555275078766623', 'flags': 0, 'default_auto_archive_duration': 60}, {'user_limit': 20, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 6, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '924499956008648715', 'name': 'friends6단체', 'last_message_id': None, 'id': '924500699209924618', 'flags': 0, 'bitrate': 64000}, {'user_limit': 0, 'type': 2, 'rtc_region': 'south-korea', 'rate_limit_per_user': 0, 'position': 9, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '1048576', 'allow': '0'}, {'type': 0, 'id': '924502895876009994', 'deny': '0', 'allow': '1048576'}], 'parent_id': '924499956008648715', 'name': '방송 3 시참<75kbps>', 'last_message_id': None, 'id': '924622991206264852', 'flags': 0, 'bitrate': 75000}, {'type': 4, 'position': 3, 'permission_overwrites': [], 'name': '서버 전용', 'id': '924627503270731776', 'flags': 0}, {'user_limit': 14, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 3, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '924499956008648715', 'name': 'friends3', 'last_message_id': None, 'id': '924500379708837909', 'flags': 0, 'bitrate': 64000}, {'user_limit': 10, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 1, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '924499956008648715', 'name': 'friends1', 'last_message_id': None, 'id': '924500223714291753', 'flags': 0, 'bitrate': 64000}, {'type': 4, 'position': 0, 'permission_overwrites': [], 'name': '채팅 채널', 'id': '923554899994767411', 'flags': 0}, {'user_limit': 16, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 4, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '924499956008648715', 'name': 'friends4', 'last_message_id': None, 'id': '924500459828428850', 'flags': 0, 'bitrate': 64000}, {'type': 4, 'position': 1, 'permission_overwrites': [], 'name': '보상 코드', 'id': '923576837186150410', 'flags': 0}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 13, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '65012480', 'allow': '1048576'}], 'parent_id': '924627503270731776', 'name': 'NV5 1-4', 'last_message_id': None, 'id': '924632516663574549', 'flags': 0, 'bitrate': 21000}, {'type': 0, 'topic': None, 'rate_limit_per_user': 5, 'position': 4, 'permission_overwrites': [{'type': 0, 'id': '928495756581691402', 'deny': '0', 'allow': '0'}, {'type': 0, 'id': '923554899994767410', 'deny': '65536', 'allow': '0'}], 'parent_id': '923576837186150410', 'name': 'playmaru123krokr-코드', 'last_pin_timestamp': '2021-12-23T23:17:13+00:00', 'last_message_id': '930608021715976213', 'id': '923578658503929956', 'flags': 0}, {'type': 4, 'position': 2, 'permission_overwrites': [], 'name': 'GAMING', 'id': '924499956008648715', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 8, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '924499956008648715', 'name': '전체-채팅', 'last_message_id': '933711459144302593', 'id': '924500035981439056', 'flags': 0}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 11, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '924627503270731776', 'name': 'NV5 1-2', 'last_message_id': None, 'id': '924632315156652052', 'flags': 0, 'bitrate': 22000}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 13, 'permission_overwrites': [], 'parent_id': '923554899994767411', 'name': 'command', 'last_message_id': '960054068787683328', 'id': '935406364912664576', 'flags': 0}, {'user_limit': 55, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 15, 'permission_overwrites': [{'type': 0, 'id': '924651922026283018', 'deny': '65012480', 'allow': '1048576'}, {'type': 0, 'id': '923554899994767410', 'deny': '1048576', 'allow': '0'}], 'parent_id': '924627503270731776', 'name': 'NV5 1-2 sound plus', 'last_message_id': None, 'id': '924826723579736104', 'flags': 0, 'bitrate': 64000}, {'user_limit': 52, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 17, 'permission_overwrites': [{'type': 0, 'id': '924651922026283018', 'deny': '65012480', 'allow': '1048576'}, {'type': 0, 'id': '923554899994767410', 'deny': '1049600', 'allow': '0'}], 'parent_id': '924627503270731776', 'name': 'NV5 1-4', 'last_message_id': None, 'id': '925265627067854918', 'flags': 0, 'bitrate': 64000}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 10, 'permission_overwrites': [{'type': 0, 'id': '923554899994767410', 'deny': '0', 'allow': '0'}], 'parent_id': '924627503270731776', 'name': 'NV5 1-1', 'last_message_id': None, 'id': '924630474071097404', 'flags': 0, 'bitrate': 21000}], 'discovery_splash': None, 'mfa_level': 0, 'member_count': 16, 'explicit_content_filter': 2, 'default_message_notifications': 1, 'lazy': True, 'max_members': 500000, 'premium_progress_bar_enabled': False, 'verification_level': 1, 'splash': None, 'description': None, 'premium_subscription_count': 0, 'public_updates_channel_id': '923554899994767413', 'stage_instances': [], 'threads': [], 'roles': [{'unicode_emoji': None, 'tags': {}, 'position': 0, 'permissions': '549755813888', 'name': '@everyone', 'mentionable': False, 'managed': False, 'id': '923554899994767410', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 14, 'permissions': '1071849664343', 'name': '방송<twitch,youtube>', 'mentionable': False, 'managed': False, 'id': '924502895876009994', 'icon': None, 'hoist': False, 'color': 8666532}, {'unicode_emoji': None, 'tags': {}, 'position': 13, 'permissions': '1069484068417', 'name': 'sound plus ➕', 'mentionable': False, 'managed': False, 'id': '924651922026283018', 'icon': None, 'hoist': False, 'color': 14051342}, {'unicode_emoji': None, 'tags': {'bot_id': '909431605473443900'}, 'position': 12, 'permissions': '2147483647', 'name': 'Chetytipi10', 'mentionable': False, 'managed': True, 'id': '924829993069068309', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '159985870458322944'}, 'position': 11, 'permissions': '1945627743', 'name': 'MEE6', 'mentionable': False, 'managed': True, 'id': '926285617908809749', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '282859044593598464'}, 'position': 18, 'permissions': '2080374975', 'name': 'ProBot ✨', 'mentionable': False, 'managed': True, 'id': '926286517893222440', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '275813801792634880'}, 'position': 15, 'permissions': '268790848', 'name': 'Zira', 'mentionable': False, 'managed': True, 'id': '928493500352315434', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 10, 'permissions': '691558796352', 'name': 'VERIFYED ✅', 'mentionable': False, 'managed': False, 'id': '928495756581691402', 'icon': None, 'hoist': True, 'color': 2140238}, {'unicode_emoji': None, 'tags': {}, 'position': 9, 'permissions': '1071698529857', 'name': 'new role', 'mentionable': False, 'managed': False, 'id': '928496246069551175', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '929005465772359730'}, 'position': 8, 'permissions': '8', 'name': 'MA/player10', 'mentionable': False, 'managed': True, 'id': '929148030291177483', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 7, 'permissions': '858993460224', 'name': '경험(+10 스레드 생성)', 'mentionable': False, 'managed': False, 'id': '930810900145918055', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 6, 'permissions': '549755880448', 'name': 'NOT VERIFYED', 'mentionable': False, 'managed': False, 'id': '931358735392198657', 'icon': None, 'hoist': True, 'color': 12332581}, {'unicode_emoji': None, 'tags': {'bot_id': '402528814548254720'}, 'position': 5, 'permissions': '805366784', 'name': 'PatchBot', 'mentionable': False, 'managed': True, 'id': '933151196431142932', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '931687961781731359'}, 'position': 16, 'permissions': '2147483647', 'name': '<!>BOX', 'mentionable': False, 'managed': True, 'id': '936239247122391051', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '943401970348224542'}, 'position': 3, 'permissions': '8', 'name': 'PLAYER14', 'mentionable': False, 'managed': True, 'id': '943403929029472270', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '945928002364125194'}, 'position': 17, 'permissions': '2147483647', 'name': 'Playset 1', 'mentionable': False, 'managed': True, 'id': '946187165275136033', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '951020404565221396'}, 'position': 2, 'permissions': '8', 'name': 'Security왓치케이알', 'mentionable': False, 'managed': True, 'id': '954532727133208599', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '574812330760863744'}, 'position': 1, 'permissions': '140424637553', 'name': 'Doraemon', 'mentionable': False, 'managed': True, 'id': '960030518890598412', 'icon': None, 'hoist': False, 'color': 0}], 'afk_channel_id': None, 'features': ['COMMUNITY', 'NEWS'], 'icon': None, 'premium_tier': 0, 'nsfw': False, 'hub_type': None, 'banner': None, 'id': '923554899994767410', 'guild_hashes': {'version': 1, 'roles': {'omitted': False, 'hash': 'wCqTBTUUlyo'}, 'metadata': {'omitted': False, 'hash': '46Rpu5VnNmM'}, 'channels': {'omitted': False, 'hash': 'ZZYr/QAICAc'}}, 'preferred_locale': 'ko', 'application_command_counts': {'3': 0, '2': 0, '1': 66}, 'rules_channel_id': '924500035981439056', 'emojis': [{'roles': [], 'require_colons': True, 'name': 'ok', 'managed': False, 'id': '928497279600566283', 'available': True, 'animated': False}], 'application_id': None, 'region': 'deprecated', 'guild_scheduled_events': []}, {'owner_id': '857940869452791818', 'system_channel_flags': 0, 'name': '므루낚 시터', 'system_channel_id': '943008519416852510', 'joined_at': '2022-04-26T06:10:50.507067+00:00', 'max_video_channel_users': 25, 'vanity_url_code': None, 'nsfw_level': 0, 'afk_timeout': 300, 'stickers': [], 'large': False, 'channels': [{'type': 4, 'position': 0, 'permission_overwrites': [], 'name': '채팅 채널', 'id': '943008518921912343', 'flags': 0}, {'type': 4, 'position': 0, 'permission_overwrites': [], 'name': '음성 채널', 'id': '943008518921912344', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 0, 'permission_overwrites': [], 'parent_id': '943008518921912343', 'name': '낚시방1', 'last_message_id': '968394038971617291', 'id': '943008519416852510', 'flags': 0}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 0, 'permission_overwrites': [], 'parent_id': '943008518921912344', 'name': '일반', 'last_message_id': None, 'id': '943008519416852511', 'flags': 0, 'bitrate': 64000}], 'discovery_splash': None, 'mfa_level': 0, 'member_count': 4, 'explicit_content_filter': 0, 'default_message_notifications': 0, 'lazy': True, 'max_members': 500000, 'premium_progress_bar_enabled': False, 'verification_level': 0, 'splash': None, 'description': None, 'premium_subscription_count': 0, 'public_updates_channel_id': None, 'stage_instances': [], 'threads': [], 'roles': [{'unicode_emoji': None, 'tags': {}, 'position': 0, 'permissions': '1071698660929', 'name': '@everyone', 'mentionable': False, 'managed': False, 'id': '943008518921912341', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '693818502657867878'}, 'position': 1, 'permissions': '126016', 'name': '이프', 'mentionable': False, 'managed': True, 'id': '943010302717480964', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '961620436737744906'}, 'position': 1, 'permissions': '8', 'name': 'Event alarm🎁', 'mentionable': False, 'managed': True, 'id': '968392944732233731', 'icon': None, 'hoist': False, 'color': 0}], 'afk_channel_id': None, 'features': [], 'icon': None, 'premium_tier': 0, 'nsfw': False, 'hub_type': None, 'banner': None, 'id': '943008518921912341', 'guild_hashes': {'version': 1, 'roles': {'omitted': False, 'hash': '6VSuvJIT5jE'}, 'metadata': {'omitted': False, 'hash': 'CocjjVAedDs'}, 'channels': {'omitted': False, 'hash': '/VSk1hSsu4A'}}, 'preferred_locale': 'en-US', 'application_command_counts': {'3': 0, '2': 0, '1': 0}, 'rules_channel_id': None, 'emojis': [], 'application_id': None, 'region': 'deprecated', 'guild_scheduled_events': []}, {'owner_id': '857940869452791818', 'system_channel_flags': 0, 'name': '뮤송【/】 [New updates season 4】', 'system_channel_id': '957601888373710929', 'joined_at': '2022-03-28T13:23:13.732000+00:00', 'max_video_channel_users': 25, 'vanity_url_code': None, 'nsfw_level': 0, 'afk_timeout': 300, 'stickers': [], 'large': False, 'channels': [{'type': 4, 'position': 0, 'permission_overwrites': [], 'name': 'Text Channels', 'id': '957601887895584780', 'flags': 0}, {'type': 4, 'position': 0, 'permission_overwrites': [], 'name': 'Voice Channels', 'id': '957601888373710928', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 0, 'permission_overwrites': [], 'parent_id': '957601887895584780', 'name': 'general', 'last_message_id': '968280822568329256', 'id': '957601888373710929', 'flags': 0}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 0, 'permission_overwrites': [], 'parent_id': '957601888373710928', 'name': 'General', 'last_message_id': None, 'id': '957601888373710930', 'flags': 0, 'bitrate': 64000}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 1, 'permission_overwrites': [], 'parent_id': '957601887895584780', 'name': '『업데이트-update』', 'last_message_id': '960792393718825000', 'id': '960792278669078569', 'flags': 0}], 'discovery_splash': None, 'mfa_level': 0, 'member_count': 6, 'explicit_content_filter': 0, 'default_message_notifications': 0, 'lazy': True, 'max_members': 500000, 'premium_progress_bar_enabled': False, 'verification_level': 0, 'splash': None, 'description': None, 'premium_subscription_count': 0, 'public_updates_channel_id': None, 'stage_instances': [], 'threads': [], 'roles': [{'unicode_emoji': None, 'tags': {}, 'position': 0, 'permissions': '1071698660929', 'name': '@everyone', 'mentionable': False, 'managed': False, 'id': '957601887895584778', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '957227056557613059'}, 'position': 1, 'permissions': '8', 'name': 'muyaw!', 'mentionable': False, 'managed': True, 'id': '957982037845901365', 'icon': None, 'hoist': False, 'color': 0}], 'afk_channel_id': None, 'features': [], 'icon': None, 'premium_tier': 0, 'nsfw': False, 'hub_type': None, 'banner': None, 'id': '957601887895584778', 'guild_hashes': {'version': 1, 'roles': {'omitted': False, 'hash': 'yB/A+yUNEbM'}, 'metadata': {'omitted': False, 'hash': 'QD45aocoNp8'}, 'channels': {'omitted': False, 'hash': 'g+D2tcQYs6U'}}, 'preferred_locale': 'en-US', 'application_command_counts': {'3': 0, '2': 0, '1': 0}, 'rules_channel_id': None, 'emojis': [], 'application_id': None, 'region': 'deprecated', 'guild_scheduled_events': []}, {'owner_id': '857940869452791818', 'system_channel_flags': 0, 'name': '모여봐요 거래의 숲', 'system_channel_id': None, 'joined_at': '2022-04-20T07:16:06.542000+00:00', 'max_video_channel_users': 25, 'vanity_url_code': None, 'nsfw_level': 0, 'afk_timeout': 300, 'stickers': [], 'large': False, 'channels': [{'type': 4, 'position': 0, 'permission_overwrites': [], 'name': '거래처', 'id': '965579050439540786', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 0, 'permission_overwrites': [{'type': 0, 'id': '965575215516102736', 'deny': '2048', 'allow': '0'}], 'parent_id': '965579050439540786', 'name': '✅안전-거래처', 'last_message_id': '967655586592346122', 'id': '965579667446857818', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 1, 'permission_overwrites': [{'type': 0, 'id': '965575215516102736', 'deny': '2048', 'allow': '0'}], 'parent_id': '965579050439540786', 'name': '📛기존-거래처', 'last_message_id': '965582271174283304', 'id': '965580067608625192', 'flags': 0}, {'type': 4, 'position': 2, 'permission_overwrites': [], 'name': '거래', 'id': '965590510150483968', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 2, 'permission_overwrites': [{'type': 0, 'id': '965594703527550976', 'deny': '0', 'allow': '1024'}, {'type': 0, 'id': '965575215516102736', 'deny': '1024', 'allow': '0'}], 'parent_id': '965590510150483968', 'name': '🌀✅라이브-채팅-거래', 'last_message_id': None, 'id': '965590838900035624', 'flags': 0}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 0, 'permission_overwrites': [{'type': 0, 'id': '965594703527550976', 'deny': '0', 'allow': '1049600'}, {'type': 0, 'id': '965575215516102736', 'deny': '1049600', 'allow': '0'}], 'parent_id': '965590510150483968', 'name': '🌀✅라이브 음성 챗 거래', 'last_message_id': None, 'id': '965590903462961192', 'flags': 0, 'bitrate': 64000}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 3, 'permission_overwrites': [], 'parent_id': '965590510150483968', 'name': '🌀📛라이브-챗-거래', 'last_message_id': '967653975258177617', 'id': '965591883608911882', 'flags': 0}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 1, 'permission_overwrites': [], 'parent_id': '965590510150483968', 'name': '🌀📛라이브 음성 챗 거래', 'last_message_id': None, 'id': '965592233124462593', 'flags': 0, 'bitrate': 64000}, {'type': 4, 'position': 3, 'permission_overwrites': [{'type': 0, 'id': '965575215516102736', 'deny': '1049600', 'allow': '0'}, {'type': 0, 'id': '965595453506871306', 'deny': '0', 'allow': '1049600'}], 'name': '예약자 전용', 'id': '965595681144336414', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 4, 'permission_overwrites': [{'type': 0, 'id': '965575215516102736', 'deny': '1024', 'allow': '0'}], 'parent_id': '965595681144336414', 'name': '예약-전용-자유방', 'last_message_id': None, 'id': '965596688368681051', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 5, 'permission_overwrites': [{'type': 0, 'id': '965595453506871306', 'deny': '0', 'allow': '1024'}, {'type': 0, 'id': '965575215516102736', 'deny': '1024', 'allow': '0'}], 'parent_id': '965595681144336414', 'name': '🌀예약-챗1', 'last_message_id': None, 'id': '965596777468284930', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 6, 'permission_overwrites': [{'type': 0, 'id': '965575215516102736', 'deny': '1049600', 'allow': '0'}, {'type': 0, 'id': '965595453506871306', 'deny': '0', 'allow': '1049600'}], 'parent_id': '965595681144336414', 'name': '🌀예약-챗-2', 'last_message_id': None, 'id': '965596962894270504', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 7, 'permission_overwrites': [{'type': 0, 'id': '965575215516102736', 'deny': '1024', 'allow': '0'}], 'parent_id': '965595681144336414', 'name': '🌀에약-챗3', 'last_message_id': None, 'id': '965597049997361202', 'flags': 0}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 2, 'permission_overwrites': [{'type': 0, 'id': '965595453506871306', 'deny': '0', 'allow': '1049600'}, {'type': 0, 'id': '965575215516102736', 'deny': '1049600', 'allow': '0'}], 'parent_id': '965595681144336414', 'name': '🌀예약 음챗1', 'last_message_id': None, 'id': '965597114417704980', 'flags': 0, 'bitrate': 64000}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 3, 'permission_overwrites': [{'type': 0, 'id': '965595453506871306', 'deny': '0', 'allow': '1049600'}, {'type': 0, 'id': '965575215516102736', 'deny': '1049600', 'allow': '0'}], 'parent_id': '965595681144336414', 'name': '🌀예약 음챗2', 'last_message_id': None, 'id': '965597603284787201', 'flags': 0, 'bitrate': 64000}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 4, 'permission_overwrites': [{'type': 0, 'id': '965575215516102736', 'deny': '1049600', 'allow': '0'}], 'parent_id': '965595681144336414', 'name': '🌀에약 음챗3', 'last_message_id': None, 'id': '965597701557338132', 'flags': 0, 'bitrate': 64000}, {'type': 4, 'position': 4, 'permission_overwrites': [], 'name': '채팅', 'id': '965959514274803742', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 8, 'permission_overwrites': [], 'parent_id': '965959514274803742', 'name': '명령어', 'last_message_id': '969205753153982475', 'id': '965959545698529302', 'flags': 0}, {'type': 4, 'position': 5, 'permission_overwrites': [], 'name': '<배너>', 'id': '966118007980040194', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 9, 'permission_overwrites': [{'type': 0, 'id': '965575215516102736', 'deny': '2048', 'allow': '0'}], 'parent_id': '966118007980040194', 'name': '배너서버', 'last_message_id': '966118074199736350', 'id': '966118055459577866', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 10, 'permission_overwrites': [], 'parent_id': '966118007980040194', 'name': 'kdl', 'last_message_id': None, 'id': '966118956177960990', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 11, 'permission_overwrites': [{'type': 0, 'id': '965575215516102736', 'deny': '2048', 'allow': '0'}], 'parent_id': '966118007980040194', 'name': '서버상점', 'last_message_id': '966659408568397845', 'id': '966659296270110750', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 12, 'permission_overwrites': [{'type': 1, 'id': '557628352828014614', 'deny': '0', 'allow': '257040'}, {'type': 0, 'id': '965583804976750612', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '965575215516102736', 'deny': '1024', 'allow': '0'}, {'type': 1, 'id': '857940869452791818', 'deny': '0', 'allow': '3072'}], 'name': 'ticket-0002', 'last_message_id': '967653774913048577', 'id': '967653774573322280', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 13, 'permission_overwrites': [], 'parent_id': '966118007980040194', 'nsfw': False, 'name': '최저가몰루샵', 'last_message_id': None, 'id': '969123342986649671', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 14, 'permission_overwrites': [{'type': 1, 'id': '688006481815404558', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '965583804976750612', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '965575215516102736', 'deny': '1024', 'allow': '0'}, {'type': 1, 'id': '557628352828014614', 'deny': '0', 'allow': '257040'}], 'parent_id': None, 'nsfw': False, 'name': 'ticket-0003', 'last_message_id': '969224225212760084', 'id': '969143948448784404', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 15, 'permission_overwrites': [{'type': 0, 'id': '965575215516102736', 'deny': '2048', 'allow': '0'}], 'parent_id': '966118007980040194', 'nsfw': False, 'name': '서버보드', 'last_message_id': '969224107185029181', 'id': '969198679326093342', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 16, 'permission_overwrites': [], 'parent_id': None, 'nsfw': False, 'name': '인증', 'last_pin_timestamp': '2022-04-28T12:01:24+00:00', 'last_message_id': '969213188639969290', 'id': '969206581403193386', 'flags': 0}], 'discovery_splash': None, 'mfa_level': 0, 'member_count': 8, 'explicit_content_filter': 0, 'default_message_notifications': 0, 'lazy': True, 'max_members': 500000, 'premium_progress_bar_enabled': False, 'verification_level': 0, 'splash': None, 'description': None, 'premium_subscription_count': 0, 'public_updates_channel_id': None, 'stage_instances': [], 'threads': [], 'roles': [{'unicode_emoji': None, 'tags': {}, 'position': 0, 'permissions': '1071698660929', 'name': '@everyone', 'mentionable': False, 'managed': False, 'id': '965575215516102736', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 6, 'permissions': '1071698660937', 'name': 'ADMAIN', 'mentionable': False, 'managed': False, 'id': '965583804976750612', 'icon': None, 'hoist': True, 'color': 14103594}, {'unicode_emoji': None, 'tags': {'bot_id': '557628352828014614'}, 'position': 4, 'permissions': '2416045072', 'name': 'Ticket Tool', 'mentionable': False, 'managed': True, 'id': '965585777838948355', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 3, 'permissions': '1071698660929', 'name': '인증됨 (안전 거래)', 'mentionable': False, 'managed': False, 'id': '965594703527550976', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 2, 'permissions': '1071698660929', 'name': '예약됨', 'mentionable': False, 'managed': False, 'id': '965595453506871306', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {'bot_id': '302050872383242240'}, 'position': 1, 'permissions': '2147486737', 'name': 'DISBOARD.org', 'mentionable': False, 'managed': True, 'id': '967653973832134767', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 5, 'permissions': '1071698660937', 'name': '봇', 'mentionable': False, 'managed': False, 'id': '967656257303478312', 'icon': None, 'hoist': True, 'color': 3447003}, {'unicode_emoji': None, 'tags': {'bot_id': '961897035068493886'}, 'position': 1, 'permissions': '8', 'name': '복구봇', 'mentionable': False, 'managed': True, 'id': '969200765950378077', 'icon': None, 'hoist': False, 'color': 0}, {'unicode_emoji': None, 'tags': {}, 'position': 1, 'permissions': '1071697610305', 'name': '인증 안됨', 'mentionable': False, 'managed': False, 'id': '969205920083095593', 'icon': None, 'hoist': False, 'color': 0}], 'afk_channel_id': None, 'features': [], 'icon': '1d0984b433fc0dbff6d7b3010b1ff4a2', 'premium_tier': 0, 'nsfw': False, 'hub_type': None, 'banner': None, 'id': '965575215516102736', 'guild_hashes': {'version': 1, 'roles': {'omitted': False, 'hash': 'lf1YaZKc1do'}, 'metadata': {'omitted': False, 'hash': 'L4BlPOTa5Rk'}, 'channels': {'omitted': False, 'hash': 'eeuEcc75Dc4'}}, 'preferred_locale': 'en-US', 'application_command_counts': {'3': 0, '2': 0, '1': 6}, 'rules_channel_id': None, 'emojis': [], 'application_id': None, 'region': 'deprecated', 'guild_scheduled_events': []}, {'owner_id': '935696794833256509', 'system_channel_flags': 0, 'name': 'discord classic support server', 'system_channel_id': '968125429976301591', 'joined_at': '2022-04-25T12:24:49.416000+00:00', 'max_video_channel_users': 25, 'vanity_url_code': None, 'nsfw_level': 0, 'afk_timeout': 300, 'stickers': [], 'large': False, 'channels': [{'type': 4, 'position': 0, 'permission_overwrites': [], 'name': 'Text Channels', 'id': '968125429976301589', 'flags': 0}, {'type': 4, 'position': 0, 'permission_overwrites': [], 'name': 'Voice Channels', 'id': '968125429976301590', 'flags': 0}, {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 0, 'permission_overwrites': [], 'parent_id': '968125429976301589', 'name': 'general', 'last_message_id': None, 'id': '968125429976301591', 'flags': 0}, {'user_limit': 0, 'type': 2, 'rtc_region': None, 'rate_limit_per_user': 0, 'position': 0, 'permission_overwrites': [], 'parent_id': '968125429976301590', 'name': 'General', 'last_message_id': None, 'id': '968125429976301593', 'flags': 0, 'bitrate': 64000}], 'discovery_splash': None, 'mfa_level': 0, 'member_count': 1, 'explicit_content_filter': 0, 'default_message_notifications': 0, 'lazy': True, 'max_members': 500000, 'premium_progress_bar_enabled': False, 'verification_level': 0, 'splash': None, 'description': None, 'premium_subscription_count': 0, 'public_updates_channel_id': None, 'stage_instances': [], 'threads': [], 'roles': [{'unicode_emoji': None, 'tags': {}, 'position': 0, 'permissions': '1071698660929', 'name': '@everyone', 'mentionable': False, 'managed': False, 'id': '968125429976301588', 'icon': None, 'hoist': False, 'color': 0}], 'afk_channel_id': None, 'features': [], 'icon': None, 'premium_tier': 0, 'nsfw': False, 'hub_type': None, 'banner': None, 'id': '968125429976301588', 'guild_hashes': {'version': 1, 'roles': {'omitted': False, 'hash': '8A5IcmlZF4s'}, 'metadata': {'omitted': False, 'hash': 'tKdHJKYQOMo'}, 'channels': {'omitted': False, 'hash': 'PCWiORhDZzs'}}, 'preferred_locale': 'en-US', 'application_command_counts': {'3': 0, '2': 0, '1': 0}, 'rules_channel_id': None, 'emojis': [], 'application_id': None, 'region': 'deprecated', 'guild_scheduled_events': []}], 'guild_join_requests': [], 'guild_experiments': [[4289675902, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['674658876997500938', '779123241259499520', '601504603795881995', '689949103198961671', '537451165151920139', '727949919989661706', '761307140123000842', '770358151617708032', '689951870709792883', '761460558968258570', '743634793572466749', '763838479293349899', '375436620578684930', '498070362962264067', '230576022095921153', '267624335836053506', '697834746734051358', '398627612299362304', '417702211284500482', '90157169906819072', '238237546960781312', '239208569990283267', '619079578215776266', '635240037667045378', '313883312173219840', '89778537522802688', '268832172587089921', '448237321708503041', '111504456838819840', '616881873506795550', '209815380946845697', '369798142289510401', '459793695315853312', '232740312194351106', '523984719835037701', '577957081076989962', '598541499608858634', '137344473976799233', '176028172729450497', '212902524162801664', '134286179121102848', '182712193287061504', '198944348379938816', '442952794480050177', '452237221840551938', '665202093165903893', '378610927034957827', '126798577153474560', '185590609631903755', '275302715603681282', '184140444677046274', '321028061237608448', '387708754814304260', '648031568756998155', '347871491402235914', '513857416983609354', '140933721929940992', '679875946597056683', '353775506128109569', '414234792121597953', '150662382874525696', '607127008173883401', '222078108977594368', '238080556708003851', '579770991056519194', '290843998296342529', '238090316320604161', '84156401483550720', '172018499005317120', '674657048209784872', '305129477627969547', '454282857561718784', '322850917248663552', '522681957373575168', '217055651371679745', '521608697764380694', '783075855991308329', '786363164651683920', '935332448437436506'], 'b': 1}]], [59033752, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['564926287152545803', '175987125626339328', '281683040739262465', '253581140072464384', '337697015171383317', '80438987843444736'], 'b': 1}]], [3363020987, None, 1, [[[[1, [{'s': 0, 'e': 10000}]]], []]], []], [1883865682, None, 2, [[[[-1, [{'s': 0, 'e': 10000}]]], [[2918402255, [[3399957344, 0], [1238858341, 50]]], [2404720969, [[3399957344, None], [1238858341, '793779154335301704']]]]]], [{'k': ['539895910927302686', '857995612813131796', '21154681615024128', '281683040739262465', '799324501930016808', '646834233033359360', '309801877187330068', '846474979566157835', '288803500551569408', '814669604840013874', '834846951068532756', '822219052402606132', '844630653495410731', '828686892215042138', '106446612754100224', '877393448309772319', '854045607547240458', '653805960166375452', '486995793178394664', '680606685303275559', '496737215662129152', '674016652853116990', '745133404189622313', '718565082430308433', '740693615847669801', '740694739233407077', '831968129075773472', '683080886500982786', '760598239606341673', '862757171887603722', '101117820430995456', '783772459580915772', '842964811838259200', '839946949032935483'], 'b': 32}, {'k': ['847184799365857331', '799773162806968390', '882382833493086228', '307922307005939724', '869267695911194645', '631927723320934420', '860615057749966849', '814196235741167637', '902219631522099290', '868361590636945460', '865621861302665249', '912952092627435520', '842453091616817193', '874760774235586580', '880605501623238726', '820003187138363513', '906386555982184459'], 'b': 33}, {'k': ['831646372519346186', '132251458665054209', '777746059300438057', '903688036146098206', '908479207179448383', '170364850256609280', '208104178218696705', '697589858801287198', '867098414985773116', '687522998198337587', '141057463192518656', '573160549903368202', '419471800955568128', '116399262799101957', '769036354826534913', '248199797138391046', '890637346201018438', '423166120405630978', '686084674996535308', '765041546922819584', '690047220023820435', '484776894903091201', '412091025776181258', '171371025659854848', '334452829731422209', '215548882636111872', '200988333520846848', '727027993775702076', '727177541164466226', '777902125187203082', '779072966545113118', '843867856844226580', '877691226541932624', '474258714220691479', '595008222843109409', '798726787890413568', '861411608532877362', '853778301298802698', '740109896044773446', '368789618499387404', '865327931407859719', '363154169294618625', '722167045541855404', '691102782316478494', '889579173725745182', '593622874208600066', '900426507162365992', '545732256346406939', '822192647123894282', '144245070009335810', '891718052301910016', '163878544399794176', '247076274403540993', '900242963358179368', '789145013110964256', '920832086221389824', '442966235416887296', '777295833459851308', '424984616601124865', '869802258152448020', '803151105567359007', '915731765941903371', '176400970719166464', '707303864570740786', '425117296101556234', '83825995651485696', '686599360540442637', '606682496570097686', '733867201794277377', '368864999155695628', '933094744559591464', '767140324509614122', '777926676201209917', '178934793151578112', '854147700785938432', '842453135346761778', '842453185632927764', '842453235301351445', '842453275877441536', '842453322720215061', '842453372582101012', '842453443871244308', '504520262633521162', '805928688126001172', '842802983048970240', '819001497395789885', '831519849112535090', '831520595417628702', '831519299457253407', '942863936783523881', '116294130149097479', '765452597355347978', '933437919430062132', '715111775959384126', '667573125021696011', '609428194092646457', '489520284202696704', '716103356241936460', '831002310976208927', '932102192469532683', '225077695141117955', '275417294228946944', '610934439022952448', '875261646396850176', '944280754681163828', '697668749137805373', '183288252936093696', '787803620761796608', '524447707411120128', '700920788622245918', '878697917374939256', '246818967455268864', '938205609306779738', '788101499162460200', '854507517912809484', '335210335956893697', '691055769654788157', '908480592147005490', '735972684197920819', '832035235095904287', '690711088718807091', '157703151305097216', '358064708269506571', '933544075779538965', '702705793560084530', '894799841652248607', '811740978419073024', '556170418709331988', '187036632338137088', '255860568089427968', '948689995718340649', '756674018370781328', '707015104331251862', '378270734587396097', '946892650353676308', '707660971082252299', '121012449292976128', '133838756447911936', '595916719458091009', '208862070249226240', '368982502917799946', '953399662272978974', '121718716810526720', '910555923536314368', '499817104422207519', '950992620216274944', '852424547189260318', '106934147141877760', '678006094932738049', '950470889487609886', '703425629483434014', '598332189742202888', '789799541435662336', '309711518948392961', '551482336110444559', '487102014354882561'], 'b': 34}, {'k': ['753277270067773555', '781317196654706688'], 'b': 3}]], [3156809952, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['753277270067773555', '781317196654706688', '426434256290578472', '454720872335278084', '539895910927302686', '281683040739262465', '574690850714419200'], 'b': 1}]], [3311741232, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['631927723320934420'], 'b': 1}]], [1405831955, None, 0, [[[[-1, [{'s': 50, 'e': 10000}]], [1, [{'s': 0, 'e': 50}]]], []]], [{'k': ['816784679717044276', '816438683313242122', '908114392263049277', '908153119991529492', '963913819418161182', '949396043743789116', '953652868450254900', '956232130806038559', '966421530395426816', '910670068784824320', '910766202052309052', '747490489384829059', '915728867673645076', '917594655414181898', '271486833223794694', '621181761870757898', '393514558976950272', '162294244642390017', '595738125595050024', '488444879836413975', '416512197590777857', '262030232683413504', '852602631297171507', '323399715842424835', '703067018416619522', '84789673121038336', '929076489385828393', '923601409763586048', '541745734714654731', '663839769410666537', '190796302756347905', '424012709219008522', '280521930371760138', '266796043864113152', '930534056200929290', '692502629808603166', '211228845771063296', '351391375876554752', '443584877829554177', '346465284477026309', '789990500644028458', '223070469148901376', '694472115428261888', '756644176610721842', '371935977196879872', '439249163415453706', '101681392651362304', '117664143837888519', '200837505145110528', '739299507795132486', '736744916012630046', '379103612523249664', '359039577362530314', '646175135585402910', '384984169417277442', '775488934804324382', '378662079361449994', '593348588239716373', '697694775561945109', '224565836277481473', '660909173281652807', '286002948348051456', '825852143478636554', '786729496572985354', '276867850906370049', '118986827355914240', '476413185465778189', '754130819634692106', '270363729009442817', '689885586345033894', '354206121386573824', '696438030189330482', '210867431210483712', '881999891767898172', '611458310553600022', '286207835447099392', '306336628459438083', '954476804687667241', '954472826046390332', '954473884273496124', '954477686967922778', '670839977092972570', '574805795494166549', '710642735786491952', '759748157297917982', '212635560596996097', '356833056562348042', '369537965698842634', '464316540490088448', '958135532590874704', '286252635697315840', '959195654813532202', '851724337945116723', '741895796315914271', '959544974356127784', '959544916848029716', '662267976984297473', '942901217414238249', '478345594641973248', '664866089410232341', '780177518896349189', '336430784204505098', '225755619586605056', '966072905677017099', '802284684377325568', '966419039977111582', '966095003136983121', '889924024367452241', '968232043714588703'], 'b': 1}]], [4150241132, None, 7, [[[[1, [{'s': 0, 'e': 10000}]]], []]], []], [2653930115, None, 0, [[[[2, [{'s': 0, 'e': 10000}]]], []]], []], [3569963622, None, 4, [[[[1, [{'s': 0, 'e': 10000}]]], [[2918402255, [[3399957344, 0], [1238858341, 10000]]]]]], [{'k': ['869375344010993744', '893685272745754694'], 'b': 1}]], [1323538810, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], []]], []], [116360630, None, 5, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['851652142091730954', '535952529587175424', '822219052402606132', '281683040739262465'], 'b': 1}]], [2780791286, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['281683040739262465', '816784679717044276', '814669604840013874', '834876967656489020', '21154681615024128', '822219052402606132', '877393448309772319'], 'b': 1}]], [2009396848, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], [[1604612045, [[1183251248, ['PARTNERED', 'VERIFIED']]]]]], [[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['733525406203773049'], 'b': 1}]], [3579083301, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []], [[[1, [{'s': 0, 'e': 10000}]]], [[1604612045, [[1183251248, ['INTERNAL_EMPLOYEE_ONLY']]]]]], [[[1, [{'s': 0, 'e': 10000}]]], [[1604612045, [[1183251248, ['BOT_DEVELOPER_EARLY_ACCESS']]]], [2918402255, [[3399957344, None], [1238858341, 26]]]]], [[[1, [{'s': 0, 'e': 10000}]]], [[3013771838, [[3013771838, ['563852950481666048', '428774019613982720', '576105656881512450', '135968563931512832', '363154169294618625', '132251458665054209', '907446341175738368', '492371812722802688', '273534239310479360', '442952794480050177', '495413339912929290', '910453251445510155', '961030210919202826', '686599360540442637', '634094287146975246', '424012709219008522', '473532289876492295', '359039577362530314', '764663217624055818', '675998580019953675', '889427674378940436', '613425648685547541', '567099257367035926', '254463427949494292', '880899217973968917', '697694775561945109', '523984719835037701', '683822545799348229', '432763481289261077', '622494904991612957', '679919537000415262', '911382562000211999', '774118086222675999', '221708975698083841', '142082511902605313', '235531949916028929', '469586581599158303', '437645337818038302', '867784605293084702', '841573134531821608', '885418158788345897', '776954436257185833', '869706146871664690', '786729496572985354', '729854780834447411', '836632804925505586', '695660855186030643', '522477306787397642', '897162092652683314', '585994345086451723', '324341517135380491', '353180331773526027', '403698615446536203', '930594723280851004', '854785687273996349', '936317138904440892', '785684103935688764', '667560445975986187', '832020515941908550', '818844825696206918', '864147158777462854', '955975928616452166', '889924024367452241', '942897714956472401', '690236525337641043', '706356477765353563', '885366173976383588', '806291338126426212', '745363970248147045', '949021181976125540', '782831067534327828', '942646368453935204', '786557653924708373', '595317990191398933', '110241763247017984', '102860784329052160', '670600220589031424', '182121241111560192', '157728722999443456', '125440014904590336', '189571157446492161', '260066959238889472', '223122687227199489', '267624335836053506', '275302715603681282', '144245070009335810', '100463940835762176', '832649952043204659', '524552788932558848', '543489725546364928', '451446182515048448', '368552693888974848', '694472115428261888', '917594655414181898', '890663529487687691', '111504456838819840', '94882524378968064', '143821685726904320', '127861440957644800', '177387572505346048']]]]]], [[[1, [{'s': 0, 'e': 10000}]]], [[3013771838, [[3013771838, ['148606162810568704', '244230771232079873', '268882317391429632', '172018499005317120', '320043986821840896', '187217643009212416', '349243932447604736', '791933894965985280', '134286179121102848', '607127008173883401', '269408827059732490', '187450744427773963', '238080556708003851', '400731973661753355', '120330239996854274', '859736561830592522', '417702211284500482', '438650836512669699', '696144075577098250', '274439447234347010', '323399715842424835', '535117596337635349', '569929112932712469', '838099086573305879', '261646233913917443', '613439869607477269', '454767470507589653', '592086777716801559', '465725314325151764', '741895796315914271', '424668227843391489', '321410260176732160', '203212265854337025', '310642856781938689', '595738125595050024', '927427107666133033', '758329811843153961', '722704869835669554', '378662079361449994', '723216557261717514', '271748696574656522', '696438030189330482', '819709630540021810', '368499635674808331', '759118772316667961', '269929244706996226', '767758005437071420', '498066096474030092', '735499608876253244', '692113439220564038', '881207955029110855', '877239953174691910', '310162323220201475', '732311394879406192', '726147919895330938', '238237546960781312', '666005492660830208', '115332333745340416', '803395866227507200', '164502763621974016', '217520546437529600', '449841515485855744', '167091858412011520', '468472345854607360', '650947289669566465', '252988599690199041', '370708369951948800', '535716836088479744', '123641386921754625', '236313384100954113', '198289648194289665', '555024278123315201', '728905379274162177', '226576492782551042', '256926147827335170', '90157169906819072', '327123793040637952', '459793695315853312', '284739959821434880', '334891772696330241', '316186751565824001', '223070469148901376', '133319143339327488', '475174120657780737', '152981670507577344']]]]]], [[[-1, [{'s': 0, 'e': 10000}]]], []]], []], [2932960528, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['814669604840013874', '816784679717044276', '281683040739262465', '21154681615024128'], 'b': 1}]], [59132052, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['808870572401754153'], 'b': 1}]], [197355340, None, 2, [[[[1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['344700413288644611', '816316046759559238', '771800742977077289', '930594723280851004', '724313246198268077', '897162092652683314', '715043968886505484', '815369174096412692', '265561352683126786', '817576132726620200', '264363165855252480', '819278845475029054', '99708694404530176', '806337479194968085', '954071401810260059', '946529187974488094', '959500365450063893', '290926798626357250'], 'b': 1}]], [4129638126, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], [[2918402255, [[3399957344, 1000], [1238858341, None]]], [1604612045, [[1183251248, ['COMMUNITY']]]]]]], [{'k': ['870040296652701727'], 'b': 1}]], [3607703918, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], []], [4030301365, '2022-01_hubs_engagement_experiments', 1, [[[[-1, [{'s': 6666, 'e': 9999}, {'s': 9999, 'e': 10000}]], [1, [{'s': 3333, 'e': 6666}]]], []]], [{'k': ['882680660588904448', '882703776794959873', '859533785225494528', '859533828754505741'], 'b': 1}]], [1643537656, 'activities_beb_wtp_experiments', 2, [[[[2, [{'s': 0, 'e': 10000}]]], [[1604612045, [[1183251248, ['HAD_EARLY_ACTIVITIES_ACCESS']]]]]], [[[-1, [{'s': 750, 'e': 10000}]], [3, [{'s': 0, 'e': 100}, {'s': 200, 'e': 300}, {'s': 400, 'e': 450}, {'s': 450, 'e': 500}, {'s': 550, 'e': 650}, {'s': 650, 'e': 750}]]], [[2918402255, [[3399957344, 0], [1238858341, 100]]]]], [[[-1, [{'s': 750, 'e': 10000}]], [3, [{'s': 0, 'e': 100}, {'s': 200, 'e': 300}, {'s': 400, 'e': 450}, {'s': 450, 'e': 500}, {'s': 550, 'e': 650}, {'s': 650, 'e': 750}]]], [[1604612045, [[1183251248, ['EXPOSED_TO_ACTIVITIES_WTP_EXPERIMENT']]]]]]], [{'k': ['942661770399608912', '873376763261091901', '860609921602682910', '631927723320934420', '864899668143767586', '616703513287720961', '938883881497661490', '935678633492774982', '885675338263330837', '868361590636945460'], 'b': 3}, {'k': ['963512170472149002'], 'b': 2}]], [436093779, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], [[1604612045, [[1183251248, ['PARTNERED']]]]]], [[[1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['816784679717044276', '799349358776549378', '905901917526454322', '829352407955669062', '763838479293349899', '910000582599802911', '651597514407018516', '232731780556259330', '435572461912719360', '900109648869355550', '915309034532384858', '875535587900284979', '533420789547139077', '876918412369088582', '613425648685547541', '889260980620640277', '667137258976968718', '169256939211980800', '319296225864056842', '901190550726778890', '313901926465142784', '743397937870143559', '832035235095904287', '690711088718807091', '678006094932738049', '826886694866649158', '808241932919767050', '289587909051416579', '613439869607477269', '742094927403679816', '254463427949494292', '870993545459277825', '607127008173883401', '756096490300112957', '635632859998060554', '307433337126125568', '414234792121597953', '292516924557099008', '695660855186030643', '817576132726620200', '876882171724431360', '399748376499060741', '434487340535382016', '432161954577252363', '439499796194000896', '880097733556449321', '807680068520378369', '833872081585700874', '749778386942951443', '475174120657780737', '900105738754609153', '367751693749977109', '765611756441436160', '551449197904265216', '498122527235768321', '294215057129340938', '618826436299456533', '707341019275853847', '792019592788049951', '189120545571340288', '424012709219008522', '387327067416690699', '690640528152330351', '641574644578648068', '193120847844737025', '632804599979311144', '697834746734051358', '238080556708003851', '711836407768940605', '445318777572294687', '567099257367035926', '662246299369734154', '402902866139938847', '835111665200136242', '738858485772582973', '384811165949231104', '729433343925420032', '628421552991371275', '605462595239149568', '606803744012763136', '856270069612281876', '211362312014135296', '692412843370348615', '897162092652683314', '123315443208421377', '833560390050119740', '678600884342620170', '347871491402235914', '378662079361449994', '786557653924708373', '187450744427773963', '846085486094057534', '488478892873744385', '417825368062558219', '643872402731958288', '722704869835669554', '264363165855252480', '801178173945151490', '292277485310312448', '440255430271434763', '486932163636232193', '363985050578190336', '321410260176732160', '224565836277481473', '325383927797907466', '720723932738486323', '398627612299362304', '417702211284500482', '368499635674808331', '222078108977594368', '837055272127954985', '393088095840370689', '498851748690264082', '656203538862571545', '240476702138957825', '885118687621820428', '574905707925864462', '788795502124204062', '482594344390623240', '343580026400407564', '715043968886505484', '354075193154600965', '238090316320604161', '215838530889318401', '223843160810323968', '702144279807656038', '588025780718796810', '324806970538459139', '442952794480050177', '737773923021619290', '448924362154835988', '499022271571165202', '619458164546338817', '489514135608885250', '473532289876492295', '244230771232079873', '697211224168857610', '405924909584482334', '367085393985929227', '614401335080779776', '712214142324572258', '448544060714778625', '718008287525863454', '120330239996854274', '807893609454108763', '442252698964721669', '558322816416743459', '829450470963019817', '140933721929940992', '174837853778345984', '724313246198268077', '564411425066450974', '473085256233123841', '747461462271852566', '488582775658774543', '354045326476443648', '619859303402307604', '413040346138804224', '269508806759809042', '171371025659854848', '828993558085500978', '589589816576966676', '360462032811851777', '842431855236349983', '603906781214670858', '891527184894799912', '771934506093248542', '881613033837834291', '375436620578684930', '804509381349736458', '747467177979805847', '909297860464484413', '281683040739262465', '814669604840013874', '815369174096412692', '398998849026261003', '735499608876253244', '258766867945095168', '917473453353861120', '834603503413624832'], 'b': 1}]], [2514864559, None, 1, [[[[1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['840296607785287763', '816784679717044276', '814669604840013874', '21154681615024128', '281683040739262465'], 'b': 1}]], [1107510295, '2022-01_hubs_engagement_experiments', 0, [[[[-1, [{'s': 0, 'e': 3333}, {'s': 3333, 'e': 6666}, {'s': 6666, 'e': 9999}, {'s': 9999, 'e': 10000}]]], [[4148745523, [[4148745523, [2]]]]]]], [{'k': ['882680660588904448'], 'b': 1}]], [1926000171, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['21154681615024128'], 'b': 0}, {'k': ['842461512206516224', '882680660588904448'], 'b': 1}]], [4089758233, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['872226993368866857', '885418158788345897', '920077926236573717', '903535540752769024', '537451165151920139', '885366173976383588', '854785687273996349', '921122723609063444', '921123375877881876', '917473453353861120', '689949103198961671', '889924024367452241', '829352407955669062', '816784679717044276', '935332448437436506', '651597514407018516', '921490685830525009', '837055272127954985', '897162092652683314', '873965360989208596', '765611756441436160', '428409938210062343', '807680068520378369', '420386453063991306', '670600220589031424', '817576132726620200', '445318777572294687', '907446341175738368', '747461462271852566', '265565751010787328', '567099257367035926', '489514135608885250', '384811165949231104', '254463427949494292', '473532289876492295', '424012709219008522', '209815380946845697', '442952794480050177'], 'b': 1}]], [2977574011, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['918917884883922954'], 'b': 1}]], [2100948821, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['918917884883922954'], 'b': 1}]], [3101779923, None, 0, [[[[-1, [{'s': 4000, 'e': 10000}]], [1, [{'s': 500, 'e': 1000}, {'s': 2500, 'e': 4000}]]], []]], [{'k': ['880225006615932928', '880225048194072576', '880225097162588241', '856605399154688045'], 'b': 1}]], [3265871252, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['651595875897835540', '763838479293349899', '876918412369088582', '816784679717044276', '929477917505884240', '922622818703798322', '667617745034280962', '954115275958145085', '435572461912719360', '915309034532384858', '601504603795881995', '809846768074227723', '865684357355405333', '911856319621910578', '537451165151920139', '940354069506183199', '921490685830525009', '771800742977077289', '651597514407018516'], 'b': 1}]], [4155457890, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['651595875897835540', '424012709219008522', '674657048209784872', '86312116675448832', '143821685726904320', '368499635674808331', '881118111967883295', '364119753972776960', '417825368062558219', '792019592788049951', '738858485772582973', '662246299369734154', '488478892873744385', '355119082808541184', '193120847844737025', '742094927403679816', '909120162739916891', '174837853778345984', '359039577362530314', '756096490300112957', '641574644578648068', '189571157446492161', '942646368453935204', '177387572505346048', '670600220589031424', '585994345086451723', '142082511902605313', '125440014904590336', '223122687227199489', '622494904991612957', '818844825696206918', '522477306787397642', '492371812722802688', '786557653924708373', '100463940835762176', '832649952043204659', '368552693888974848', '451446182515048448', '867784605293084702', '828689308470214656', '747615824352903298', '69211343922056403', '430369020043198485', '869085029110796289', '927427107666133033', '432763481289261077', '616213357095157790', '753251058045681837', '536623076796923924', '891011813867655278', '907446341175738368', '841573134531821608', '890688502105247756', '807680068520378369', '692412843370348615', '782831067534327828', '831646372519346186', '706356477765353563', '651597514407018516', '944381105342124082', '897162092652683314', '169256939211980800', '613425648685547541', '954115275958145085', '876918412369088582', '814669604840013874', '667560445975986187', '861411608532877362', '813789514225025075', '266695661670367232', '942897714956472401'], 'b': 1}]], [3578488087, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['651595875897835540', '816784679717044276', '232731780556259330', '921490685830525009', '944381105342124082', '697474023914733575', '222078108977594368', '488582775658774543', '765611756441436160', '756096490300112957', '747461462271852566', '442252698964721669', '408196129470152705', '55294077867917312', '120330239996854274', '670600220589031424', '143821685726904320', '221708975698083841', '445318777572294687', '764663217624055818', '524552788932558848', '324341517135380491', '169256939211980800', '613425648685547541'], 'b': 1}]], [2201448248, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['908114392263049277', '852602631297171507', '966419039977111582'], 'b': 1}]], [4200595067, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['908114392263049277', '958135532590874704', '223070469148901376', '786729496572985354', '424012709219008522', '694472115428261888', '739299507795132486', '359039577362530314', '224565836277481473', '371935977196879872', '703067018416619522', '378662079361449994', '756644176610721842', '212635560596996097', '488444879836413975', '963913819418161182', '966419039977111582'], 'b': 1}]], [3832113202, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], [[3013771838, [[3013771838, ['641831858807767072', '747615824352903298', '667560445975986187', '593348588239716373', '697694775561945109', '567099257367035926', '432763481289261077']]]]]]], [{'k': ['844630653495410731', '814669604840013874', '363154169294618625', '881942699555573831'], 'b': 2}, {'k': ['21154681615024128', '900242963358179368', '281683040739262465', '822219052402606132', '834846951068532756', '309801877187330068', '496737215662129152', '106446612754100224', '760598239606341673', '680606685303275559', '847184799365857331', '288803500551569408', '828686892215042138', '343128759773298700', '877393448309772319', '535952529587175424', '646834233033359360', '537070934553526272', '337697015171383317', '144245070009335810', '897162092652683314', '818844825696206918', '861411608532877362'], 'b': 1}]], [3581547507, None, 0, [[[[-1, [{'s': 2000, 'e': 10000}]], [1, [{'s': 1000, 'e': 2000}]]], []]], [{'k': ['928443563660943391'], 'b': 1}]], [2445595452, None, 1, [[[[2, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['834846951068532756', '880225006615932928', '880225048194072576', '880225097162588241', '872631710032990268', '815369174096412692'], 'b': 1}]], [3487922809, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], [[1604612045, [[1183251248, ['BOT_DEVELOPER_EARLY_ACCESS']]]]]], [[[-1, [{'s': 0, 'e': 5000}]], [1, [{'s': 5000, 'e': 5400}, {'s': 5400, 'e': 5500}, {'s': 5500, 'e': 6000}, {'s': 6000, 'e': 7000}, {'s': 7000, 'e': 8000}, {'s': 8000, 'e': 9000}, {'s': 9000, 'e': 10000}]]], []]], [{'k': ['771800742977077289', '772904309264089089', '281683040739262465', '815369174096412692', '667808371780485138'], 'b': 1}]], [1412337990, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['799349358776549378', '763838479293349899'], 'b': 1}]], [3049059627, None, 1, [[[[-1, [{'s': 0, 'e': 10000}]]], [[2918402255, [[3399957344, 200], [1238858341, None]]]]]], [{'k': ['885366173976383588', '613425648685547541', '889427674378940436', '651597514407018516'], 'b': 1}, {'k': ['885418158788345897', '942881322584637490'], 'b': 2}]], [781151715, None, 2, [[[[1, [{'s': 5000, 'e': 10000}]]], []]], [{'k': ['651595875897835540'], 'b': 1}]], [4022944350, None, 0, [[[[-1, [{'s': 4000, 'e': 10000}]], [1, [{'s': 500, 'e': 1000}, {'s': 2500, 'e': 4000}]]], []]], []], [783116086, None, 0, [[[[-1, [{'s': 5000, 'e': 10000}]], [1, [{'s': 100, 'e': 200}, {'s': 600, 'e': 1000}, {'s': 3000, 'e': 5000}]]], []]], []], [979987649, None, 1, [[[[1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['880225006615932928', '880225097162588241'], 'b': 1}]], [3811644885, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], []], [3168398662, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['876918412369088582', '816784679717044276', '814669604840013874', '281683040739262465', '900242963358179368'], 'b': 1}]], [65583835, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['651595875897835540'], 'b': 1}]], [672826033, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['949396043743789116', '953652868450254900', '956232130806038559', '954472826046390332', '954476804687667241', '954473884273496124', '954477686967922778', '959195654813532202', '959544974356127784', '959544916848029716', '966072905677017099', '802284684377325568', '225755619586605056', '664866089410232341', '336430784204505098', '478345594641973248', '780177518896349189'], 'b': 1}]], [3674963204, None, 2, [[[[-1, [{'s': 1600, 'e': 10000}]], [1, [{'s': 100, 'e': 200}, {'s': 300, 'e': 400}, {'s': 600, 'e': 800}, {'s': 1200, 'e': 1600}]]], [[1604612045, [[1183251248, ['DISCOVERABLE']]]]]]], [{'k': ['951951155175489606', '937840859544682529', '953754308971733103'], 'b': 1}]], [1899119674, None, 1, [[[[1, [{'s': 100, 'e': 200}, {'s': 600, 'e': 1000}, {'s': 2500, 'e': 4000}, {'s': 7000, 'e': 10000}]]], [[1604612045, [[1183251248, ['COMMUNITY', 'PARTNERED', 'VERIFIED']]]]]]], [{'k': ['874345844743213126'], 'b': 1}]], [1098427320, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['954115275958145085', '816784679717044276', '651597514407018516', '575762611111592007', '211228845771063296', '143821685726904320', '354075193154600965', '127861440957644800', '567099257367035926', '859736561830592522', '187450744427773963', '838099086573305879', '378662079361449994', '897162092652683314'], 'b': 1}]], [4075694601, None, 2, [[[[-1, [{'s': 4000, 'e': 10000}]], [1, [{'s': 300, 'e': 600}, {'s': 1900, 'e': 2600}]], [2, [{'s': 600, 'e': 900}, {'s': 2600, 'e': 3300}]], [3, [{'s': 900, 'e': 1200}, {'s': 3300, 'e': 4000}]]], [[2404720969, [[3399957344, '948006656409600000'], [1238858341, None]]]]]], []], [4270134199, None, 0, [[[[1, [{'s': 0, 'e': 10000}]]], []]], []], [3706997973, None, 0, [[[[-1, [{'s': 4000, 'e': 10000}]], [1, [{'s': 100, 'e': 200}, {'s': 800, 'e': 1200}, {'s': 2500, 'e': 3000}]], [2, [{'s': 200, 'e': 300}, {'s': 1200, 'e': 1600}, {'s': 3000, 'e': 3500}]], [3, [{'s': 300, 'e': 400}, {'s': 1600, 'e': 2000}, {'s': 3500, 'e': 4000}]]], []]], [{'k': ['844630653495410731'], 'b': 3}]], [3963400733, None, 0, [[[[-1, [{'s': 4000, 'e': 10000}]], [1, [{'s': 500, 'e': 1000}, {'s': 2500, 'e': 4000}]]], [[2918402255, [[3399957344, 30], [1238858341, None]]]]]], [{'k': ['880225006615932928'], 'b': 1}]], [2046791764, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['956977244549574696', '844422121848700948', '880520065575960588', '413890591840272394', '410537146672349205', '597638925346930701', '557662127305785361', '397566282729390110', '739225212658122886', '686661995121868830', '883048687012544653', '908137963374903336', '869302105586933912', '870667037498830878', '887448599607251004', '930892666705694800', '606111887876292622', '920377252120789082', '613813861610684416', '705527597425229885', '810930354244026400', '908735106594779198', '435912040142602260', '831398059484250142', '913721755670040587', '436265725162684419', '935717723823026206', '910713381118410772', '919886516707270717', '921398379148361728', '929832871500341318', '930639587901050940', '939671359905202216', '913683101182459976', '917960660283961364', '932292001456619601', '949378262990196806', '915790225719066694', '925946170201743404', '882281249367007283', '935083272705310730', '942440521102688306', '945653918904496139', '841430459421425695', '939980518840230008', '941873525386530907', '746515257396297838', '927394887756824577', '943506746582900746', '933227385799729192', '254406334051647498', '842033459861258250', '902802282855399487', '933688831218184242', '942154377618153482', '922193061440798790', '938714033324978237', '816899460478926870', '913452976545357862', '899738897490272336', '692596382036656209', '929031536286785537', '493408109713293312', '907304448022446090', '539473903194472449', '927960415592402945', '888707528509239297', '919629194869227612', '929466359614685264', '926916007551963146', '920597044396191746', '854187550535843880', '924070724275167282', '720941030219972678', '849299109188730950', '950840192862945330', '889468532834836530', '937486623770296321', '716311300132831232', '728554788605657119', '920062509346598942', '936300282877456414', '953497626718920735', '851738596721033227', '885423228779118643', '893243413175107584', '949053214110662748', '931805266389925950', '940765047674785852', '943911840499511297', '887937851512209468', '865868085524693012', '926319456563650631', '947538592018878484', '893255240021852170', '947267143081283665', '937995333147967488', '900186181805957120', '935094453306273793', '938565525208961115', '925488768645988412', '934398376487833610', '906516279232458762', '948296164845957140', '337603294883086346', '542403978693050389', '805176195552903188', '899412693696544769', '931161375533850634', '908073302868766731', '925164781764231178', '817771825160519700', '918104042427797514', '765429969794891866', '862328141833437234', '873152491108311041', '915564378676412417', '932780239388540939', '936250076496556072', '944281382430081084', '808434872225759314', '933289487121915904', '557650516222410774', '857628041463595008', '939898317549211749', '892344070951813131', '909649981974142977', '932565529263235124', '945830718003638353', '947953079897161788', '945751410035794021', '901298661932294164', '922788907458916362', '928743855912812594', '930568975077748766', '919697495393714226', '929111380026609724', '940864777981399040', '951099193529872435', '922481145252282408', '298751332817436678', '938414842711277598', '909220935524044870', '931955766494101596', '740287152843128944', '888071754684174436', '929124387339255870', '933277850004508702', '828337689082331166', '830166241792229388', '900495643099938867', '953439572992339968', '875616013272629318', '937375363665887313', '437724816535977999', '930271527922970714', '882638713845342278', '818351761005346826', '907111293826256916', '912314917393154128', '900810644561997885', '920378023717523486', '930359000967557192', '935772791129661510', '947495665263599667', '808292126818304041', '937698779866484766', '936207822331445278', '893005435823607869', '913358296726003742', '849397158108725278', '899581547261337630', '934833655686254603', '714212558596472864', '931102402482962432', '941801787160145940', '426766614734831616', '885440478277931021', '922115468339343361', '935476434187718666', '937121631132852224', '951170976144584704', '699087752377008130', '935167510502834206', '910795764056358912', '832642183584284702', '912891139785363476', '734739379364429844', '914866577374052432', '931785225116200990', '943139590611554354', '917084540286148648', '918939367765061703', '911573049973817344', '824653376574324828', '888691843225763840', '857676296359247884', '900473028977254431', '922448773735665674', '945388618724294666', '892713147373350943', '945317813692809306', '861875971388604436', '915479433417207828', '919946957454205028', '940822048106745927', '942594112266321970', '923362029086052443', '930673002276880434', '940644268169629827', '943848384060612660', '930901718022115329', '943603756287803393', '933987803556089866'], 'b': 1}]], [3510816342, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['908114392263049277'], 'b': 1}]], [754016061, None, 2, [[[[1, [{'s': 0, 'e': 10000}]]], [[1604612045, [[1183251248, ['BOT_DEVELOPER_EARLY_ACCESS']]]], [2918402255, [[3399957344, 1], [1238858341, 26]]]]], [[[-1, [{'s': 0, 'e': 10000}]]], [[1604612045, [[1183251248, ['COMMUNITY', 'HUB', 'PARTNERED']]]]]], [[[-1, [{'s': 0, 'e': 500}, {'s': 500, 'e': 1000}, {'s': 1000, 'e': 1500}, {'s': 1500, 'e': 2000}, {'s': 5000, 'e': 10000}]], [1, [{'s': 2500, 'e': 3000}, {'s': 4000, 'e': 5000}]]], [[2918402255, [[3399957344, 1], [1238858341, 200]]]]]], [{'k': ['814196235741167637'], 'b': 1}]], [1574506570, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['281683040739262465', '814196235741167637', '822219052402606132', '21154681615024128', '834846951068532756', '847184799365857331', '862757171887603722'], 'b': 1}]], [3091408911, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []], [[[1, [{'s': 0, 'e': 10000}]]], [[1604612045, [[1183251248, ['INTERNAL_EMPLOYEE_ONLY']]]]]], [[[1, [{'s': 0, 'e': 10000}]]], [[1604612045, [[1183251248, ['BOT_DEVELOPER_EARLY_ACCESS']]]], [2918402255, [[3399957344, None], [1238858341, 26]]]]], [[[1, [{'s': 0, 'e': 10000}]]], [[3013771838, [[3013771838, ['563852950481666048', '428774019613982720', '576105656881512450', '135968563931512832', '363154169294618625', '132251458665054209', '907446341175738368', '492371812722802688', '273534239310479360', '442952794480050177', '495413339912929290', '910453251445510155', '961030210919202826', '686599360540442637', '634094287146975246', '424012709219008522', '473532289876492295', '359039577362530314', '764663217624055818', '675998580019953675', '889427674378940436', '613425648685547541', '567099257367035926', '254463427949494292', '880899217973968917', '697694775561945109', '523984719835037701', '683822545799348229', '432763481289261077', '622494904991612957', '679919537000415262', '911382562000211999', '774118086222675999', '221708975698083841', '142082511902605313', '235531949916028929', '469586581599158303', '437645337818038302', '867784605293084702', '841573134531821608', '885418158788345897', '776954436257185833', '869706146871664690', '786729496572985354', '729854780834447411', '836632804925505586', '695660855186030643', '522477306787397642', '897162092652683314', '585994345086451723', '324341517135380491', '353180331773526027', '403698615446536203', '930594723280851004', '854785687273996349', '936317138904440892', '785684103935688764', '667560445975986187', '832020515941908550', '818844825696206918', '864147158777462854', '955975928616452166', '889924024367452241', '942897714956472401', '690236525337641043', '706356477765353563', '885366173976383588', '806291338126426212', '745363970248147045', '949021181976125540', '782831067534327828', '942646368453935204', '786557653924708373', '595317990191398933', '110241763247017984', '102860784329052160', '670600220589031424', '182121241111560192', '157728722999443456', '125440014904590336', '189571157446492161', '260066959238889472', '223122687227199489', '267624335836053506', '275302715603681282', '144245070009335810', '100463940835762176', '832649952043204659', '524552788932558848', '543489725546364928', '451446182515048448', '368552693888974848', '694472115428261888', '917594655414181898', '890663529487687691', '111504456838819840', '94882524378968064', '143821685726904320', '127861440957644800', '177387572505346048']]]]]], [[[1, [{'s': 0, 'e': 10000}]]], [[3013771838, [[3013771838, ['148606162810568704', '244230771232079873', '268882317391429632', '172018499005317120', '320043986821840896', '187217643009212416', '349243932447604736', '791933894965985280', '134286179121102848', '607127008173883401', '269408827059732490', '187450744427773963', '238080556708003851', '400731973661753355', '120330239996854274', '859736561830592522', '417702211284500482', '438650836512669699', '696144075577098250', '274439447234347010', '323399715842424835', '535117596337635349', '569929112932712469', '838099086573305879', '261646233913917443', '613439869607477269', '454767470507589653', '592086777716801559', '465725314325151764', '741895796315914271', '424668227843391489', '321410260176732160', '203212265854337025', '310642856781938689', '595738125595050024', '927427107666133033', '758329811843153961', '722704869835669554', '378662079361449994', '723216557261717514', '271748696574656522', '696438030189330482', '819709630540021810', '368499635674808331', '759118772316667961', '269929244706996226', '767758005437071420', '498066096474030092', '735499608876253244', '692113439220564038', '881207955029110855', '877239953174691910', '310162323220201475', '732311394879406192', '726147919895330938', '238237546960781312', '666005492660830208', '115332333745340416', '803395866227507200', '164502763621974016', '217520546437529600', '449841515485855744', '167091858412011520', '468472345854607360', '650947289669566465', '252988599690199041', '370708369951948800', '535716836088479744', '123641386921754625', '236313384100954113', '198289648194289665', '555024278123315201', '728905379274162177', '226576492782551042', '256926147827335170', '90157169906819072', '327123793040637952', '459793695315853312', '284739959821434880', '334891772696330241', '316186751565824001', '223070469148901376', '133319143339327488', '475174120657780737', '152981670507577344']]]]]], [[[-1, [{'s': 0, 'e': 10000}]]], []]], []], [4088869428, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['651595875897835540'], 'b': 1}]], [1990672009, None, 0, [[[[-1, [{'s': 0, 'e': 10000}]]], []]], [{'k': ['908114392263049277', '963913819418161182'], 'b': 1}]], [3044186384, None, 0, [[[[1, [{'s': 100, 'e': 200}, {'s': 600, 'e': 1000}, {'s': 1500, 'e': 2000}, {'s': 3500, 'e': 5000}, {'s': 7500, 'e': 10000}]]], []]], [{'k': ['844630653495410731', '961653274111512638'], 'b': 1}]], [2839692969, None, 0, [[[[-1, [{'s': 1000, 'e': 10000}]], [1, [{'s': 0, 'e': 1000}]]], [[1604612045, [[1183251248, ['DISCOVERABLE']]]]]]], [{'k': ['922748688403693578'], 'b': 1}]]], 'geo_ordered_rtc_regions': ['south-korea', 'japan', 'hongkong', 'singapore', 'india'], 'friend_suggestion_count': 0, 'experiments': [[70411085, 0, 1, -1, 0], [16416918, 0, 1, -1, 0], [3816091942, 3, 2, -1, 0], [4130837190, 0, 10, -1, 0], [852550504, 3, 1, -1, 0], [2599708267, 0, 1, -1, 0], [1365487849, 6, 1, -1, 0], [3128009767, 0, 10, -1, 0], [2973729510, 2, 1, -1, 0], [2571931329, 1, 6, -1, 0], [1260103069, 0, 1, -1, 0], [2003494159, 1, 1, -1, 0], [2458926251, 1, 6, -1, 2], [4027800, 1, 6, -1, 3], [51193042, 0, 1, -1, 0], [2063302207, 1, 1, -1, 0], [2634540382, 3, 1, -1, 0], [427713714, 0, 1, -1, 0], [3388129398, 0, 1, -1, 0], [3316720711, 0, 1, -1, 0], [156590431, 0, 1, -1, 2], [1126477623, 0, 1, -1, 0], [2617218444, 4, 1, -1, 2], [3615263239, 0, 1, -1, 0], [414823706, 0, 1, -1, 0], [3035674767, 0, 1, -1, 0], [261678880, 0, 1, -1, 0], [1758928808, 2, 1, -1, 0], [144783748, 0, 1, -1, 0], [2311413706, 0, 1, -1, 0], [1304635016, 0, 1, -1, 0], [2031154483, 0, 1, -1, 0], [1609782151, 0, 1, -1, 2], [1047093347, 0, 1, -1, 2], [3354177721, 0, 1, -1, 0], [3643362751, 0, 1, -1, 0], [698017395, 0, 1, -1, 0], [902020832, 3, 3, -1, 1], [1503481915, 0, 1, -1, 2], [3346844407, 0, 1, -1, 0], [3753034466, 1, 2, -1, 0], [881221695, 1, 1, -1, 0], [105505141, 1, 1, -1, 1], [3921541483, 2, 1, -1, 0], [3125584553, 1, 1, -1, 0], [219203323, 1, 1, -1, 0], [2854861606, 0, 1, -1, 1], [203190011, 0, 1, -1, 0], [2416791266, 1, 1, -1, 0], [1740882580, 1, 1, -1, 0], [3526033165, 0, 1, -1, 0], [3699939463, 0, 1, -1, 2], [1913882179, 0, 1, -1, 2], [3884403666, 1, 1, -1, 0], [949804751, 3, 1, -1, 0], [2365882538, 1, 1, -1, 0], [2839301427, 1, 1, -1, 0], [2740541143, 1, 1, -1, 0], [1567199723, 0, 1, -1, 1], [2237617796, 0, 1, -1, 0], [2804024497, 0, 1, -1, 2], [2481496956, 0, 1, -1, 0], [1305004983, 0, 1, -1, 0], [2735830691, 0, 1, -1, 0], [4196771574, 6, 6, -1, 0], [3121542871, 1, 1, -1, 0], [934741861, 2, 1, -1, 1], [2639499196, 3, 1, -1, 1], [1926403380, 0, 1, -1, 0], [2419414706, 0, 5, -1, 3], [1175582167, 1, 1, -1, 0], [2012365622, 0, 1, -1, 0], [3615787841, 0, 1, -1, 0], [626435732, 1, 0, -1, 0], [1369422507, 0, 1, -1, 0], [4257117014, 1, 1, -1, 0], [2191591221, 0, 1, -1, 0], [1860870966, 0, 1, -1, 0], [613690816, 2, 1, -1, 0], [754424255, 0, 1, -1, 0], [282861292, 0, 0, -1, 0], [2950595281, 2, 1, -1, 0], [4263969313, 2, 1, -1, 2], [2496945544, 0, 1, -1, 0], [3662016164, 3, 2, -1, 0], [2486607747, 0, 1, -1, 0], [604497254, 0, 0, -1, 0], [2736193736, 0, 1, -1, 0], [1138665623, 0, 1, -1, 0], [3542498455, 0, 1, -1, 0], [723256323, 0, 1, -1, 0], [3805175685, 0, 0, -1, 0], [3866818837, 0, 1, -1, 0], [3450899088, 1, 1, -1, 0], [3656796460, 0, 1, -1, 0], [334012295, 0, 1, -1, 0], [1685515200, 0, 7, -1, 0], [1748842958, 1, 1, -1, 0], [899439768, 1, 1, -1, 0], [1216567253, 0, 1, -1, 0], [3047034364, 0, 2, -1, 0], [799757083, 0, 3, -1, 0], [854704408, 0, 1, -1, 0], [1308053712, 0, 1, -1, 0], [1363066938, 3, 1, -1, 1], [86234200, 0, 1, -1, 0], [1814483290, 0, 1, -1, 0], [3074844387, 0, 3, -1, 0], [2855612301, 0, 1, -1, 0], [4084522269, 0, 1, -1, 0], [1613012371, 0, 1, -1, 0], [3567821600, 0, 0, -1, 1], [3557480712, 0, 1, -1, 0], [3606428003, 0, 0, -1, 0], [2815803943, 0, 1, -1, 0], [3889077804, 2, 1, -1, 0], [4079214319, 2, 1, -1, 0], [2447247632, 4, 2, -1, 0], [1621989768, 0, 0, -1, 0], [191312409, 2, 1, -1, 0]], 'country_code': 'KR', 'consents': {'personalization': {'consented': True}}, 'connected_accounts': [], 'analytics_token': 'OTM1Njk2Nzk0ODMzMjU2NTA5.b-f3RwTZ7eG9obBxicHi1C6Fom4', '_trace': ['["gateway-prd-main-z5fg",{"micros":127524,"calls":["discord-sessions-green-prd-2-132",{"micros":125292,"calls":["start_session",{"micros":51626,"calls":["discord-api-766c4c8cc4-hlnrk",{"micros":44800,"calls":["get_user",{"micros":6991},"add_authorized_ip",{"micros":5203},"get_guilds",{"micros":3763},"private_channels",{"micros":5804},"read_states",{"micros":4493},"coros_wait",{"micros":2189},"aliases",{"micros":3907},"affine_user_ids",{"micros":685},"experiments",{"micros":3804}]}]},"guilds_connect",{"micros":433,"calls":[]},"presence_connect",{"micros":0,"calls":[]}]}]}]']}}
[gateway] < {'t': 'READY_SUPPLEMENTAL', 's': 2, 'op': 0, 'd': {'merged_presences': {'guilds': [[{'user_id': '615880272591978506', 'status': 'dnd', 'client_status': {'desktop': 'dnd'}, 'activities': [{'type': 0, 'timestamps': {'start': 1651236851000}, 'state': '게임 중', 'name': 'League of Legends', 'id': 'f3c9b8eedd1ce9cb', 'details': '소환사의 협곡 (일반)', 'created_at': 1651236847455, 'assets': {'large_text': '케인', 'large_image': '403244947891027978'}, 'application_id': '401518684763586560'}]}, {'user_id': '159985870458322944', 'status': 'online', 'client_status': {'web': 'online'}, 'activities': []}], [{'user_id': '159985870458322944', 'status': 'online', 'client_status': {'web': 'online'}, 'activities': []}], [], [{'user_id': '615880272591978506', 'status': 'dnd', 'client_status': {'desktop': 'dnd'}, 'activities': [{'type': 0, 'timestamps': {'start': 1651236851000}, 'state': '게임 중', 'name': 'League of Legends', 'id': 'f3c9b8eedd1ce9cb', 'details': '소환사의 협곡 (일반)', 'created_at': 1651236847455, 'assets': {'large_text': '케인', 'large_image': '403244947891027978'}, 'application_id': '401518684763586560'}]}], [], []], 'friends': []}, 'merged_members': [[{'user_id': '801661916275539969', 'roles': ['923498655921627166'], 'mute': False, 'joined_at': '2022-04-08T10:59:20.648000+00:00', 'hoisted_role': '923498655921627166', 'flags': 0, 'deaf': False}, {'user_id': '425246853555027978', 'roles': ['923498655921627166', '714675869397942422', '773533117234544670'], 'premium_since': '2022-04-02T12:53:42.650000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2021-09-26T13:57:22.097000+00:00', 'hoisted_role': '714675869397942422', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'avatar': 'a_af3d071b92d231d46682f1bee6100187'}, {'user_id': '801661916275539969', 'roles': ['923498655921627166'], 'mute': False, 'joined_at': '2022-04-08T10:59:20.648000+00:00', 'hoisted_role': '923498655921627166', 'flags': 0, 'deaf': False}, {'user_id': '425246853555027978', 'roles': ['923498655921627166', '714675869397942422', '773533117234544670'], 'premium_since': '2022-04-02T12:53:42.650000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2021-09-26T13:57:22.097000+00:00', 'hoisted_role': '714675869397942422', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'avatar': 'a_af3d071b92d231d46682f1bee6100187'}, {'user_id': '615880272591978506', 'roles': ['923498655921627166'], 'mute': False, 'joined_at': '2022-04-02T10:17:18.261000+00:00', 'hoisted_role': '923498655921627166', 'flags': 0, 'deaf': False}, {'user_id': '159985870458322944', 'roles': ['959722221889277993', '958313561032126467'], 'mute': False, 'joined_at': '2022-03-29T10:35:57.624000+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False}], [{'user_id': '857940869452791818', 'roles': ['930810900145918055'], 'mute': False, 'joined_at': '2021-12-23T12:37:26.988000+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False}, {'user_id': '159985870458322944', 'roles': ['926285617908809749'], 'mute': False, 'joined_at': '2021-12-31T01:28:20.919000+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False}], [{'user_id': '961620436737744906', 'roles': ['968392944732233731'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-26T06:07:49.959322+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'avatar': None}, {'user_id': '857940869452791818', 'roles': [], 'mute': False, 'joined_at': '2022-02-15T04:59:11.176000+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False}], [{'user_id': '857940869452791818', 'roles': [], 'mute': False, 'joined_at': '2022-03-27T11:28:01.468000+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False}, {'user_id': '615880272591978506', 'roles': [], 'mute': False, 'joined_at': '2022-03-29T08:17:16.076000+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False}, {'user_id': '503160271301246976', 'roles': [], 'mute': False, 'joined_at': '2022-04-22T04:59:31.515000+00:00', 'hoisted_role': None, 'flags': 0, 'deaf': False}], [{'user_id': '857940869452791818', 'roles': ['965594703527550976', '965583804976750612'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T11:31:10.910000+00:00', 'hoisted_role': '965583804976750612', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'avatar': None}], []], 'guilds': [{'voice_states': [{'user_id': '425246853555027978', 'suppress': False, 'session_id': 'ce472f670575f6c731f18f68925af0d6', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'deaf': False, 'channel_id': '959816092203769896'}, {'user_id': '801661916275539969', 'suppress': False, 'session_id': '2cc0b1a66600e302a91c66ab06b60d9f', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'deaf': False, 'channel_id': '959816092203769896'}], 'id': '712928394899226626', 'embedded_activities': []}, {'voice_states': [], 'id': '923554899994767410', 'embedded_activities': []}, {'voice_states': [], 'id': '943008518921912341', 'embedded_activities': []}, {'voice_states': [], 'id': '957601887895584778', 'embedded_activities': []}, {'voice_states': [], 'id': '965575215516102736', 'embedded_activities': []}, {'voice_states': [], 'id': '968125429976301588', 'embedded_activities': []}]}}
Exception ignored in thread started by: <bound method GatewayServer._response_loop of <discum.gateway.gateway.GatewayServer object at 0x000001AC999E6E80>>
Traceback (most recent call last):
File "C:\Users\white\AppData\Local\Programs\Python\Python38\lib\site-packages\discum\gateway\gateway.py", line 300, in _response_loop
function(resp, **params)
File "C:\Users\white\AppData\Local\Programs\Python\Python38\lib\site-packages\discum\gateway\guild\combo.py", line 71, in fetchMembers
self.gatewayobj.session.guild(guild_id).resetMembers() #reset
File "C:\Users\white\AppData\Local\Programs\Python\Python38\lib\site-packages\discum\gateway\session.py", line 246, in resetMembers
Session.settings_ready['guilds'][self.guildID]['members'] = {}
KeyError: '964831443316527154'
[gateway] < {'t': 'MESSAGE_CREATE', 's': 3, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2022-04-29T12:59:36.393000+00:00', 'referenced_message': None, 'pinned': False, 'nonce': '969583734116319232', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['923498655921627166'], 'mute': False, 'joined_at': '2022-04-08T09:07:11.732000+00:00', 'hoisted_role': '923498655921627166', 'flags': 0, 'deaf': False}, 'id': '969583734892404746', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '요즘 정보력 ㄷㄷ하네', 'components': [], 'channel_id': '762969306967048214', 'author': {'username': 'RaDiaN', 'public_flags': 0, 'id': '706372689413013526', 'discriminator': '2152', 'avatar_decoration': None, 'avatar': 'ffa556a1c90ea69e6027f1f5d5053011'}, 'attachments': [], 'guild_id': '712928394899226626'}}
Exception ignored in thread started by: <bound method GatewayServer._response_loop of <discum.gateway.gateway.GatewayServer object at 0x000001AC999E6E80>>
Traceback (most recent call last):
File "C:\Users\white\AppData\Local\Programs\Python\Python38\lib\site-packages\discum\gateway\gateway.py", line 300, in _response_loop
function(resp, **params)
File "C:\Users\white\AppData\Local\Programs\Python\Python38\lib\site-packages\discum\gateway\guild\combo.py", line 89, in fetchMembers
ranges = self.getRanges(index, multiplier, self.gatewayobj.session.guild(guild_id).memberCount) if not endFetching else [[0],[0]]
File "C:\Users\white\AppData\Local\Programs\Python\Python38\lib\site-packages\discum\gateway\session.py", line 376, in memberCount
return Session.settings_ready['guilds'][self.guildID]['member_count']
KeyError: '964831443316527154

what is this error

@Ryder2048
Copy link

@notTapE-7403
Copy link

i ham having a problem can anyone help me?
image

@Abdohelm
Copy link

Abdohelm commented Jan 3, 2023

<bound method GatewayServer._response_loop of <discum.gateway.gateway.GatewayServer object at 0x0000019848F755A0>>

Traceback (most recent call last):
File "C:\Users\Abdo\AppData\Local\Programs\Python\Python311\Lib\site-packages\discum-1.4.1-py3.11.egg\discum\gateway\gateway.py", line 303, in _response_loop
function(resp, **params)
File "C:\Users\Abdo\AppData\Local\Programs\Python\Python311\Lib\site-packages\discum-1.4.1-py3.11.egg\discum\gateway\guild\combo.py", line 70, in fetchMembers
if not self.gatewayobj.session.guild(guild_id).hasMembers and reset:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Abdo\AppData\Local\Programs\Python\Python311\Lib\site-packages\discum-1.4.1-py3.11.egg\discum\gateway\session.py", line 233, in hasMembers
if self.guildID not in Session.settings_ready['guilds']:
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
KeyError: 'guilds'

@SunviZaaminn
Copy link

same problem

@SunviZaaminn
Copy link

@SunviZaaminn
Copy link

@soufgameyt
Copy link

@FUNNYPINAY dont put it in onedrive move it to downloads

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment