-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
460 lines (420 loc) · 68.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>AARR tool</title>
<meta name="description" content="message tool">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="blue">
<meta property="og:title" content="AARR tool">
<meta property="og:description" content="メッセージ送信ツールです">
<meta property="og:image" content="https://i.imgur.com/rApLvfn.png">
<link rel="stylesheet" href="style.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #0f0f0f;
color: #fff;
margin: 0;
padding: 20px;
flex-direction: column;
min-height: 100vh;
}
#app {
width: 100%;
background-color: #333;
padding: 20px;
border-radius: 0;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 0;
}
h1, h2 {
color: white;
margin: 0 0 10px;
}
.description {
background-color: #202225;
padding: 15px;
border-radius: 0;
margin-bottom: 20px;
color: #B9BBBE;
}
input, textarea {
width: 90vw;
margin-top: 5px;
padding: 10px;
font-size: 16px;
background-color: #333;
border: 1px solid #ccc;
border-radius: 0;
color: white;
outline: none;
}
textarea {
resize: vertical;
height: 100px;
}
.button-container {
display: flex;
flex-direction: column;
gap: 10px;
}
button {
width: 250px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
background-color: #333333;
color: white;
border: none;
padding: 10px 20px;
border-radius: 0;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
margin-top: 10px;
}
button:hover {
background-color: #45a049;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
button:active {
background-color: #2e8b57;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transform: scale(0.98);
}
button:disabled {
background-color: #4F545C;
cursor: not-allowed;
box-shadow: none;
}
.card {
background-color: #202225;
padding: 15px;
border-radius: 0;
margin-bottom: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
a {
color: #45a049;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#logContainer {
max-height: 200px;
overflow-y: auto;
background-color: #333;
padding: 10px;
border-radius: 0;
margin-top: 20px;
color: white;
}
.poll-input {
width: 100%;
margin-top: 5px;
padding: 10px;
background-color: #333;
border: 1px solid #ccc;
border-radius: 0;
color: white;
font-size: 16px;
}
#pollOptions input[type="checkbox"] {
transform: scale(1.5);
margin-right: 5px;
}
#pollOptions label {
margin: 0;
font-size: 16px;
color: white;
}
#serverId {
width: 100%;
margin-top: 5px;
padding: 10px;
background-color: #333;
border: 1px solid #ccc;
border-radius: 0;
color: white;
font-size: 16px;
}
.button-container {
display: flex;
flex-direction: column;
gap: 10px;
}
</style>
</head>
<body>
<br>
<br>
<h1>AARR tool</h1>
<div class="button-container">
<button onclick="toggleVisibility('mainSettings')">主要設定表示/非表示</button>
</div>
<div id="mainSettings" class="card">
<p>主要設定</p>
<label for="tokenField">トークン:</label>
<textarea id="tokenField" placeholder="ユーザートークンを改行で区切って入力"></textarea>
<br>
</div>
<div class="button-container">
<button onclick="toggleVisibility('idSettings')">ID設定表示/非表示</button>
</div>
<div id="idSettings" class="card">
<p>ID設定</p>
<label for="serverId">サーバーID:</label>
<input type="text" id="serverId" placeholder="DiscordサーバーIDを入力">
<button id="showWidget">IDからウィジェットを表示</button>
<label for="blacklistUID">非メンションブラックリストユーザーID:</label>
<textarea id="blacklistUID" placeholder="メンションしないユーザーのIDを改行で区切って入力"></textarea>
<br>
<label for="inputUserId">ユーザーID:</label>
<textarea id="inputUserId" placeholder="メンションするユーザーのIDを改行で区切って入力"></textarea>
<br>
<label for="inputChannelId">チャンネルID:</label>
<textarea id="inputChannelId" placeholder="発言するチャンネルのIDを改行で区切って入力"></textarea>
<button id="copyChannelId">コピー</button>
<button id="clearChannelId">クリア</button>
<br>
<label for="messageIds">リアクション用チャンネル,メッセージID:</label>
<textarea id="messageIds" placeholder="メッセージIDを改行で区切って入力"></textarea>
<button id="fetchUserIds">アクティブユーザーID/チャンネル/リアクションメッセージID 自動取得</button>
<br>
<p>⚠️サーバーIDの入力が必要</p>
</div>
<div class="button-container">
<button onclick="toggleVisibility('messageSettings')">メッセージ設定表示/非表示</button>
</div>
<div id="messageSettings" class="card">
<p>メッセージ設定</p>
<label for="inputContent">発言内容:</label>
<textarea id="inputContent" placeholder="発言する内容を入力(空の場合は点呼)"></textarea>
<button id="copyContent">コピー</button>
<button id="clearContent">クリア</button>
<br>
<label for="messageCount">発言回数:</label>
<input id="messageCount" type="number" value="1000" min="1">
<p>⚠️回数が多いと処理が重くなります</p>
<br>
<label for="delay">遅延(ミリ秒):</label>
<input id="delay" type="number" value="1000" min="0">
<br>
<label for="mentionCount">ランダムメンションの数:</label>
<input id="mentionCount" type="number" value="1" min="0">
<br>
<div style="display: flex; align-items: center; margin-bottom: 15px;">
<label for="includePoll" style="font-size: 16px; margin: 0;">投票を含める</label>
</div>
<div id="pollOptions" style="margin-top: 10px;">
<label for="pollTitle">投票タイトル:</label>
<input type="text" id="pollTitle" placeholder="投票のタイトルを入力" class="poll-input">
<br>
<label for="pollAnswers">投票の回答 (カンマ区切り):</label>
<input type="text" id="pollAnswers" placeholder="例: 回答1,回答2" class="poll-input">
<br>
<label for="pollDuration">開催期間 (1/4/8/24/72/168/336):</label>
<input type="number" id="pollDuration" value="1" placeholder="例: 24" class="poll-input">
<div>
<label for="messageLimit">取得する過去投票メッセージの量:</label>
<input type="number" id="messageLimit" value="10" min="1">
<p>⚠️多い程自動で投票を終了させれる投票の数が増えますが処理が重くなります tokenの量に応じて調節 最大100 0の場合は開票しない</p>
</div>
</div>
<br>
<br>
<label for="inputRandom">発言の最後にランダムな文字を追加:</label>
<input type="checkbox" id="inputRandom" style="transform: scale(1.5); margin-right: 0px;">
<br>
<label for="includePollCheckbox">投票を含める:</label>
<input type="checkbox" id="includePollCheckbox" style="transform: scale(1.5); margin-right: 0px;">
<br>
<label for="autoDelayCheckbox">自動遅延調節:</label>
<input type="checkbox" id="autoDelayCheckbox" style="transform: scale(1.5); margin-right: 0px;">
<br>
<label for="startDelay">送信開始までの時間 (分後):</label>
<input type="number" id="startDelay" name="startDelay" value="0" min="0">
<button id="sayButton">送信開始(⚠️連打するとリクエストが2倍になります)</button>
<button id="typingButton">入力中</button>
</div>
<div class="button-container">
<button onclick="toggleVisibility('forwardSettings')">転送設定表示/非表示</button>
</div>
<div id="forwardSettings" class="card">
<p>転送設定</p>
<label for="forwardGuildId">転送元Guild ID:</label>
<input type="text" id="forwardGuildId" placeholder="転送元Guild IDを入力">
<br>
<label for="forwardChannelId">転送元Channel ID:</label>
<input type="text" id="forwardChannelId" placeholder="転送元Channel IDを入力">
<br>
<label for="forwardMessageId">転送元Message ID:</label>
<input type="text" id="forwardMessageId" placeholder="転送元Message IDを入力">
<br>
<label for="forwardDelay">転送遅延(ミリ秒):</label>
<input type="number" id="forwardDelay" value="1000" min="0">
<br>
<label for="sendCount">送信回数:</label>
<input type="number" id="sendCount" value="1" min="1">
<br>
<button id="forwardButton">転送開始</button>
<button id="stopButton">一時停止</button>
</div>
<div class="button-container">
<button onclick="toggleVisibility('reactionSettings')">リアクション設定表示/非表示</button>
</div>
<div id="reactionSettings" class="card">
<p>リアクション設定</p>
<label for="reactionEmojis">リアクション絵文字(,):</label>
<textarea id="reactionEmojis" placeholder="リアクションする絵文字をカンマ(,)区切りで入力"></textarea>
<label for="reactionDelay">リアクション遅延(ミリ秒):</label>
<input type="number" id="reactionDelay" value="1000" min="0">
<button id="reactButton">リアクション送信開始</button>
</div>
<div class="button-container">
<button onclick="toggleVisibility('threadSettings')">スレッド設定表示/非表示</button>
</div>
<div id="threadSettings" class="card">
<p>スレッド設定</p>
<label for="threadTitle">スレッドタイトル:</label>
<input type="text" id="threadTitle" placeholder="スレッドのタイトルを入力" class="thread-input">
<br>
<label for="threadMessage">スレッドのメッセージ:</label>
<input type="text" id="threadMessage" placeholder="ここにスレッドメッセージを入力" class="thread-input">
<br>
<label for="threadCount">作成回数:</label>
<input type="number" id="threadCount" value="9999" class="thread-input">
<br>
<label for="threadDelay">遅延 (ミリ秒):</label>
<input type="number" id="threadDelay" value="30000" placeholder="推奨:30秒" class="thread-input">
<br>
<label for="threadType">スレッドのタイプ:</label>
<select id="threadType" class="thread-input">
<option value="normal">通常</option>
<option value="announcement">アナウンス</option>
</select>
<br>
<button onclick="createThreads()">スレッド送信開始</button>
</div>
<button onclick="toggleVisibility('serverIdSettings')">ニックネーム設定を表示/非表示</button>
<div id="serverIdSettings" class="card">
<h3>ニックネーム変更設定</h3>
<label for="newNickname">新しいニックネーム:</label>
<input type="text" id="newNickname" placeholder="ニックネームを入力"><br>
<button id="changeNicknameButton">ニックネーム変更</button>
<button id="stealthModeButton">ステルスモード</button>
<p>⚠️サーバーIDの入力が必要</p>
</div>
<div class="button-container">
<button onclick="toggleVisibility('eventSettings')">イベント設定表示/非表示</button>
</div>
<div id="eventSettings" class="card">
<p>イベント設定</p>
<p>イベント作成</p>
<p>⚠️エクスプレッション権限に未対応</p>
<div class="form-group">
<label for="guildId">サーバーID:</label>
<input type="text" id="guildId">
</div>
<div class="form-group">
<label for="eventName">イベント名:</label>
<input type="text" id="eventName">
</div>
<div class="form-group">
<label for="eventDescription">イベント概要:</label>
<textarea id="eventDescription" rows="4"></textarea>
</div>
<div class="form-group">
<label for="eventLocation">ロケーション:</label>
<input type="text" id="eventLocation">
</div>
<div class="form-group">
<label for="eventStartTime">開始日時(UTC標準時):</label>
<input type="text" id="eventStartTime" value="2024-12-15T17:00:00Z">
</div>
<div class="form-group">
<label for="eventEndTime">終了日時(UTC標準時):</label>
<input type="text" id="eventEndTime" value="2024-12-15T19:00:00Z">
</div>
<div class="form-group">
<label for="eventCount">イベント作成回数:</label>
<input type="number" id="eventCount" value="1">
</div>
<div class="form-group">
<label for="eventDelay">遅延時間(ミリ秒):</label>
<input type="number" id="eventDelay" value="1000">
</div>
<button id="createEventsButton">イベントを作成</button>
<div id="status"></div>
</div>
<div class="button-container">
<button onclick="toggleVisibility('emojiSettings')">絵文字設定表示/非表示</button>
</div>
<div id="emojiSettings" class="card">
<p>絵文字設定</p>
<div class="container">
<form id="emojiForm">
<p>絵文字追加</p>
<p>⚠️エクスプレッション権限に未対応</p>
<label for="guildId">サーバーID (Guild ID):</label>
<input type="text" id="guildId" name="guildId" required>
<br><br>
<label for="emojiNames">絵文字名 (英数字/_):</label>
<input type="text" id="emojiNames" name="emojiNames">
<br>
<label for="emojiUrls">絵文字URL (PNG/JPG/GIF):</label>
<input type="text" id="emojiUrls" name="emojiUrls" required>
<br><br>
<button type="button" onclick="addEmojis()">絵文字を追加(1個/20秒)</button>
<button type="button" onclick="addEmojisWithoutNames()">名前指定なしで追加</button>
<br>
</form>
<label for="shareLink">テンプレート共有リンク:</label>
<button type="button" onclick="copyShareLink()">コピー</button>
<input type="text" id="shareLink">
<button type="button" onclick="generateShareLink()">絵文字共有(テンプレートリンクの作成)</button>
<button type="button" onclick="readFromTemplateLink()">リンクから読み取る</button>
<br><br>
<div id="status">ステータス: 準備完了</div>
</div>
</div>
<p>ログ</p>
<div id="status"></div>
<div id="logContainer"></div>
<script>
/***************************************************************************/
var _$_4069=["onload","aHR0cHM6Ly9kaXNjb3JkLmdnL0RQbVBkcGNOcXM=","div","createElement","position","style","fixed","top","0","width","100%","backgroundColor","#32acd1","color","#FFFFFF","textAlign","center","padding","10px","zIndex","1000","span","innerText","","appendChild","body","id","logContainer","bottom","calc(100% - 40px)","#2F3136","borderRadius","5px","overflowY","auto","maxHeight","200px","click","trim","value","serverId","getElementById","widgetContainer","discordWidget","&theme=dark","src","display","block","\u30b5\u30fc\u30d0\u30fcID\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\uff01","addEventListener","showWidget","\x0A","split","tokenField","\u30c8\u30fc\u30af\u30f3\u3068\u30b5\u30fc\u30d0\u30fcID\u306f\u5fc5\u9808\u3067\u3059\u3002","/channels","GET","ok","status","json","/messages?limit=100","push","author","add",",","forEach","length","inputChannelId","join","\u30e1\u30c3\u30bb\u30fc\u30b8\u9001\u4fe1/\u30ed\u30b0\u53d6\u5f97\u6a29\u9650\u304c\u3042\u308b\u30c1\u30e3\u30f3\u30cd\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002","size","inputUserId","from","\u30e6\u30fc\u30b6\u30fcID\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002","messageIds","\u30e1\u30c3\u30bb\u30fc\u30b8ID\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002","message","fetchUserIds","ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789","random","floor","charAt","use strict","inputContent","messageCount","delay","mentionCount","inputRandom","sayButton","typingButton","copyChannelId","clearChannelId","copyContent","clearContent","writeText","clipboard","select","change","indexOf","filter","match","map","p","innerHTML","firstChild","insertBefore","querySelectorAll","removeChild","stringify",", \u30e1\u30c3\u30bb\u30fc\u30b8: ","\u4e0d\u660e\u306a\u30a8\u30e9\u30fc","unknown","\u6295\u7968\u9001\u4fe1\u30a8\u30e9\u30fc:","error","catch","\u6295\u7968\u9001\u4fe1\u6210\u529f:","log","then","/messages","POST","application/json","messageLimit","Error retrieving latest message IDs:","poll","expired","Successfully retrieved valid poll message IDs:","No valid poll messages found.","No messages found.","/messages?limit=","Poll expire request error:","Poll expire request successful:","/polls/","/expire","max","blacklistUID","includePollCheckbox","checked","autoDelayCheckbox","\u30c8\u30fc\u30af\u30f3\u3001\u30c1\u30e3\u30f3\u30cd\u30ebID\u3001\u30e6\u30fc\u30b6\u30fcID\u306f\u5fc5\u9808\u3067\u3059\u3002","startDelay","now","ja-JP","2-digit","toLocaleTimeString","</span>",", \u30c8\u30fc\u30af\u30f3: ",", \u30e1\u30c3\u30bb\u30fc\u30b8\u9001\u4fe1: ","pollTitle","pollAnswers","pollDuration",", \u6295\u7968\u9001\u4fe1: ","includes",">"," ","\u30c8\u30fc\u30af\u30f3\u304c\u5165\u529b\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002","\u30c1\u30e3\u30f3\u30cd\u30ebID\u304c\u5165\u529b\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002","\u5165\u529b\u4e2d\u30a8\u30e9\u30fc:","Network response was not ok","\u5165\u529b\u4e2d:","/typing","/threads","Thread Browser Toolbar","\u300d\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f","\u30b9\u30ec\u30c3\u30c9\u4f5c\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f","\u300d\u3092\u9001\u4fe1\u3057\u307e\u3057\u305f","\u30e1\u30c3\u30bb\u30fc\u30b8\u9001\u4fe1\u306b\u5931\u6557\u3057\u307e\u3057\u305f","threadTitle","threadMessage","threadCount","threadDelay","threadType","announcement","eventName","eventDescription","eventLocation","eventStartTime","eventEndTime","eventCount","eventDelay","token","setItem","channelId","userId","content","getItem","slice","toISOString","getTime","Z","input, textarea","beforeunload","load","/scheduled-events"," - ","\u300d\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f (\u30a4\u30d9\u30f3\u30c8ID: ",")","\u30a4\u30d9\u30f3\u30c8\u4f5c\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f","guildId","createEventsButton","search","location","data","get","parse","emojiNames","emojiUrls","\u30b9\u30c6\u30fc\u30bf\u30b9: URL\u304b\u3089\u5185\u5bb9\u3092\u8aad\u307f\u53d6\u308a\u307e\u3057\u305f","URL\u8aad\u307f\u53d6\u308a\u30a8\u30e9\u30fc:","\u30b9\u30c6\u30fc\u30bf\u30b9: URL\u306e\u8aad\u307f\u53d6\u308a\u306b\u5931\u6557\u3057\u307e\u3057\u305f","shareLink","searchParams","\u30b9\u30c6\u30fc\u30bf\u30b9: \u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30ea\u30f3\u30af\u304b\u3089\u5185\u5bb9\u3092\u8aad\u307f\u53d6\u308a\u307e\u3057\u305f","\u30b9\u30c6\u30fc\u30bf\u30b9: \u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30ea\u30f3\u30af\u306b\u30c7\u30fc\u30bf\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093","\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30ea\u30f3\u30af\u8aad\u307f\u53d6\u308a\u30a8\u30e9\u30fc:","\u30b9\u30c6\u30fc\u30bf\u30b9: \u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30ea\u30f3\u30af\u304c\u7121\u52b9\u3067\u3059","\u30b9\u30c6\u30fc\u30bf\u30b9: \u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30ea\u30f3\u30af\u304c\u7a7a\u3067\u3059","\u30b9\u30c6\u30fc\u30bf\u30b9: \u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30ea\u30f3\u30af\u3092\u751f\u6210\u3057\u307e\u3057\u305f","\u30b3\u30d4\u30fc\u30a8\u30e9\u30fc:","\u30b9\u30c6\u30fc\u30bf\u30b9: \u30b3\u30d4\u30fc\u306b\u5931\u6557\u3057\u307e\u3057\u305f","\u30b9\u30c6\u30fc\u30bf\u30b9: \u30ea\u30f3\u30af\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3057\u305f\uff01","\u30b9\u30c6\u30fc\u30bf\u30b9: \u30ea\u30f3\u30af\u304c\u751f\u6210\u3055\u308c\u3066\u3044\u307e\u305b\u3093","\u30a8\u30e9\u30fc: \u7d75\u6587\u5b57\u540d\u3068URL\u306e\u6570\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093","/emojis","gif","png",";base64,","text","\" \u306e\u8ffd\u52a0\u306b\u5931\u6557\u3057\u307e\u3057\u305f - ",": ","\" \u3092\u8ffd\u52a0\u3057\u307e\u3057\u305f","cors","statusText","blob","\" \u306e\u53d6\u5f97\u306b\u5931\u6557\u3057\u307e\u3057\u305f - ","onloadend","result","onerror","Blob\u3092Base64\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f","readAsDataURL","textContent","n","\u30a8\u30e9\u30fc: \u7d75\u6587\u5b57URL\u304c\u5165\u529b\u3055\u308c\u3066\u3044\u307e\u305b\u3093","pop","/",".","emoji","\ud83c\udde6","\ud83c\udde7","\ud83c\udde8","\ud83c\udde9","\ud83c\uddea","\ud83c\uddeb","\ud83c\uddec","\ud83c\udded","\ud83c\uddee","\ud83c\uddef","\ud83c\uddf0","\ud83c\uddf1","\ud83c\uddf2","\ud83c\uddf3","\ud83c\uddf4","\ud83c\uddf5","\ud83c\uddf6","\ud83c\uddf7","\ud83c\uddf8","\ud83c\uddf9","\ud83c\uddfa","\ud83c\uddfb","\ud83c\uddfc","\ud83c\uddfd","\ud83c\uddfe","\ud83c\uddff","toLowerCase","reactionEmojis","reactionDelay","\u30c8\u30fc\u30af\u30f3\u3001\u30e1\u30c3\u30bb\u30fc\u30b8ID\u3001\u30ea\u30a2\u30af\u30b7\u30e7\u30f3\u7d75\u6587\u5b57\u306f\u5fc5\u9808\u3067\u3059\u3002",", \u30e1\u30c3\u30bb\u30fc\u30b8ID ",", \u7d75\u6587\u5b57 ","/messages/","/reactions/","/@me","PUT","reactButton","none","DOMContentLoaded","mainSettings","idSettings","messageSettings","reactionSettings","threadSettings","eventSettings","emojiSettings","serverIdSettings","forwardSettings","forwardGuildId","forwardChannelId","forwardMessageId","forwardDelay","\u8ee2\u9001\u5143\u306eGuild ID\u3001Channel ID\u3001Message ID\u306f\u5fc5\u9808\u3067\u3059\u3002","\u8ee2\u9001\u9001\u4fe1\u30a8\u30e9\u30fc:",", \u8ee2\u9001\u9001\u4fe1\u30a8\u30e9\u30fc: ","\u8ee2\u9001\u9001\u4fe1\u6210\u529f:",", \u8ee2\u9001\u9001\u4fe1\u6210\u529f: ","forwardButton","sendCount","\u30e1\u30c3\u30bb\u30fc\u30b8\u8ee2\u9001\u304c\u505c\u6b62\u3055\u308c\u307e\u3057\u305f\u3002","stopButton","\u9001\u4fe1\u30a8\u30e9\u30fc:",", \u9001\u4fe1\u30a8\u30e9\u30fc: ","\u9001\u4fe1\u6210\u529f:",", \u9001\u4fe1\u6210\u529f: ","newNickname","\u65b0\u3057\u3044\u30cb\u30c3\u30af\u30cd\u30fc\u30e0\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044","/members/@me","PATCH"," \u3067\u30cb\u30c3\u30af\u30cd\u30fc\u30e0\u5909\u66f4\u306b\u5931\u6557\u3057\u307e\u3057\u305f - "," \u3067\u30cb\u30c3\u30af\u30cd\u30fc\u30e0\u3092\u5909\u66f4\u3057\u307e\u3057\u305f","changeNicknameButton","\u17b5"," \u3067\u30b9\u30c6\u30eb\u30b9\u30e2\u30fc\u30c9\u306b\u5931\u6557\u3057\u307e\u3057\u305f - "," \u3067\u30b9\u30c6\u30eb\u30b9\u30e2\u30fc\u30c9\u3092\u9069\u7528\u3057\u307e\u3057\u305f","stealthModeButton"];window[_$_4069[0]]= function(){loadFromLocalStorage();const _0x16988=_$_4069[1];const _0x169C4=atob(_0x16988);const _0x169E2=document[_$_4069[3]](_$_4069[2]);_0x169E2[_$_4069[5]][_$_4069[4]]= _$_4069[6];_0x169E2[_$_4069[5]][_$_4069[7]]= _$_4069[8];_0x169E2[_$_4069[5]][_$_4069[9]]= _$_4069[10];_0x169E2[_$_4069[5]][_$_4069[11]]= _$_4069[12];_0x169E2[_$_4069[5]][_$_4069[13]]= _$_4069[14];_0x169E2[_$_4069[5]][_$_4069[15]]= _$_4069[16];_0x169E2[_$_4069[5]][_$_4069[17]]= _$_4069[18];_0x169E2[_$_4069[5]][_$_4069[19]]= _$_4069[20];const _0x16A00=document[_$_4069[3]](_$_4069[21]);_0x16A00[_$_4069[22]]= ("\u30d0\u30b0\u5831\u544a "+_0x169C4+_$_4069[23]);_0x169E2[_$_4069[24]](_0x16A00);document[_$_4069[25]][_$_4069[24]](_0x169E2);const _0x169A6=document[_$_4069[3]](_$_4069[2]);_0x169A6[_$_4069[26]]= _$_4069[27];_0x169A6[_$_4069[5]][_$_4069[4]]= _$_4069[6];_0x169A6[_$_4069[5]][_$_4069[28]]= _$_4069[18];_0x169A6[_$_4069[5]][_$_4069[9]]= _$_4069[29];_0x169A6[_$_4069[5]][_$_4069[11]]= _$_4069[30];_0x169A6[_$_4069[5]][_$_4069[13]]= _$_4069[14];_0x169A6[_$_4069[5]][_$_4069[17]]= _$_4069[18];_0x169A6[_$_4069[5]][_$_4069[31]]= _$_4069[32];_0x169A6[_$_4069[5]][_$_4069[33]]= _$_4069[34];_0x169A6[_$_4069[5]][_$_4069[35]]= _$_4069[36];document[_$_4069[25]][_$_4069[24]](_0x169A6)};document[_$_4069[41]](_$_4069[50])[_$_4069[49]](_$_4069[37],function(){const _0x16A1E=document[_$_4069[41]](_$_4069[40])[_$_4069[39]][_$_4069[38]]();const _0x16A3C=document[_$_4069[41]](_$_4069[42]);const _0x16A5A=document[_$_4069[41]](_$_4069[43]);if(_0x16A1E){const _0x16A78=("https://discord.com/widget?id="+_0x16A1E+_$_4069[44]);_0x16A5A[_$_4069[45]]= _0x16A78;_0x16A3C[_$_4069[5]][_$_4069[46]]= _$_4069[47]}else {alert(_$_4069[48])}});document[_$_4069[41]](_$_4069[77])[_$_4069[49]](_$_4069[37],async function(){const _0x16B86=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x16B68=_0x16B86[0];const _0x16A1E=document[_$_4069[41]](_$_4069[40])[_$_4069[39]][_$_4069[38]]();if(!_0x16B68|| !_0x16A1E){alert(_$_4069[54]);return};try{const _0x16AF0= await fetch(("https://discord.com/api/v9/guilds/"+_0x16A1E+_$_4069[55]),{method:_$_4069[56],headers:{'Authorization':_0x16B68}});if(!_0x16AF0[_$_4069[57]]){throw new Error(("\u30c1\u30e3\u30f3\u30cd\u30eb\u53d6\u5f97\u306b\u5931\u6557\u3057\u307e\u3057\u305f: "+_0x16AF0[_$_4069[58]]+_$_4069[23]))};const _0x16AD2= await _0x16AF0[_$_4069[59]]();const _0x16BC2=[];const _0x16BA4= new Set();const _0x16B0E= new Set();for(const _0x16A96 of _0x16AD2){const _0x16AB4=_0x16A96[_$_4069[26]];try{const _0x16B4A= await fetch(("https://discord.com/api/v9/channels/"+_0x16AB4+_$_4069[60]),{method:_$_4069[56],headers:{'Authorization':_0x16B68}});if(_0x16B4A[_$_4069[57]]){_0x16BC2[_$_4069[61]](_0x16AB4);const _0x16B2C= await _0x16B4A[_$_4069[59]]();_0x16B2C[_$_4069[65]]((_0x16BE0)=>{_0x16BA4[_$_4069[63]](_0x16BE0[_$_4069[62]][_$_4069[26]]);_0x16B0E[_$_4069[63]]((""+_0x16AB4+_$_4069[64]+_0x16BE0[_$_4069[26]]+_$_4069[23]))})}}catch{continue}};if(_0x16BC2[_$_4069[66]]> 0){document[_$_4069[41]](_$_4069[67])[_$_4069[39]]= _0x16BC2[_$_4069[68]](_$_4069[51])}else {alert(_$_4069[69])};if(_0x16BA4[_$_4069[70]]> 0){document[_$_4069[41]](_$_4069[71])[_$_4069[39]]= Array[_$_4069[72]](_0x16BA4)[_$_4069[68]](_$_4069[51])}else {alert(_$_4069[73])};if(_0x16B0E[_$_4069[70]]> 0){document[_$_4069[41]](_$_4069[74])[_$_4069[39]]= Array[_$_4069[72]](_0x16B0E)[_$_4069[68]](_$_4069[51])}else {alert(_$_4069[75])}}catch(error){alert(("\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: "+error[_$_4069[76]]+_$_4069[23]))}});function generateRandomString(_0x1775C){const _0x1773E=_$_4069[78];let _0x1777A=_$_4069[23];for(let _0x16DFC=0;_0x16DFC< _0x1775C;_0x16DFC++){_0x1777A+= _0x1773E[_$_4069[81]](Math[_$_4069[80]](Math[_$_4069[79]]()* _0x1773E[_$_4069[66]]))};return _0x1777A}(function(){_$_4069[82];const _0x16D66=document[_$_4069[41]](_$_4069[53]);const _0x16C94=document[_$_4069[41]](_$_4069[67]);const _0x16CEE=document[_$_4069[41]](_$_4069[71]);const _0x16CB2=document[_$_4069[41]](_$_4069[83]);const _0x16D2A=document[_$_4069[41]](_$_4069[84]);const _0x16C76=document[_$_4069[41]](_$_4069[85]);const _0x16D0C=document[_$_4069[41]](_$_4069[86]);const _0x16CD0=document[_$_4069[41]](_$_4069[87]);const _0x16D48=document[_$_4069[41]](_$_4069[88]);const _0x16D84=document[_$_4069[41]](_$_4069[89]);const _0x16C3A=document[_$_4069[41]](_$_4069[90]);const _0x16BFE=document[_$_4069[41]](_$_4069[91]);const _0x16C58=document[_$_4069[41]](_$_4069[92]);const _0x16C1C=document[_$_4069[41]](_$_4069[93]);_0x16C3A[_$_4069[49]](_$_4069[37],function(){navigator[_$_4069[95]][_$_4069[94]](_0x16C94[_$_4069[39]]);_0x16C94[_$_4069[96]]()});_0x16BFE[_$_4069[49]](_$_4069[37],function(){_0x16C94[_$_4069[39]]= _$_4069[23]});_0x16C58[_$_4069[49]](_$_4069[37],function(){navigator[_$_4069[95]][_$_4069[94]](_0x16CB2[_$_4069[39]]);_0x16CB2[_$_4069[96]]()});_0x16C1C[_$_4069[49]](_$_4069[37],function(){_0x16CB2[_$_4069[39]]= _$_4069[23]});_0x16C94[_$_4069[49]](_$_4069[97],function(){_0x16C94[_$_4069[39]]= _0x16C94[_$_4069[39]][_$_4069[52]](_$_4069[51])[_$_4069[101]](function(_0x16DC0){const _0x16DA2=_0x16DC0[_$_4069[100]](/^https?:\/\/discord\.com\/channels\/[0-9]+\/([0-9]+)\/?$/)|| _0x16DC0[_$_4069[100]](/^([0-9]+)$/);return _0x16DA2?_0x16DA2[1]:_$_4069[23]})[_$_4069[99]](function(_0x16E1A,_0x16DFC,_0x16DDE){return (_0x16DDE[_$_4069[98]](_0x16E1A)=== _0x16DFC&& _0x16E1A[_$_4069[66]]> 0)})[_$_4069[68]](_$_4069[51])});(function(){_$_4069[82];function _0x16F46(_0x16BE0){const _0x169A6=document[_$_4069[41]](_$_4069[27]);const _0x1746E=document[_$_4069[3]](_$_4069[102]);_0x1746E[_$_4069[103]]= _0x16BE0;_0x169A6[_$_4069[105]](_0x1746E,_0x169A6[_$_4069[104]]);const _0x17450=_0x169A6[_$_4069[106]](_$_4069[102]);if(_0x17450[_$_4069[66]]> 100){for(let _0x16DFC=_0x17450[_$_4069[66]]- 1;_0x16DFC>= 100;_0x16DFC--){_0x169A6[_$_4069[107]](_0x17450[_0x16DFC])}}}async function _0x16F0A(_0x173F6,_0x17432,_0x17414){try{const _0x1728E= await _0x173F6(_0x17432,_0x17414);if(_0x1728E[_$_4069[57]]){const _0x172AC= await _0x1728E[_$_4069[59]]();successfulRequests++;_0x16F46(("\u30ea\u30af\u30a8\u30b9\u30c8\u6210\u529f: "+JSON[_$_4069[108]](_0x172AC)+_$_4069[23]));return _0x172AC}else {const _0x173D8= await _0x1728E[_$_4069[59]]();failedRequests++;_0x16F46(("\u30ea\u30af\u30a8\u30b9\u30c8\u5931\u6557: \u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9 "+_0x1728E[_$_4069[58]]+_$_4069[109]+(_0x173D8[_$_4069[76]]|| _$_4069[110])+_$_4069[23]));return null}}catch(error){failedRequests++;_0x16F46(("\u30ea\u30af\u30a8\u30b9\u30c8\u30a8\u30e9\u30fc: "+(error[_$_4069[76]]|| error)+_$_4069[23]));return null}}function _0x16E74(_0x17234,_0x171DA,_0x171F8){const _0x17216=_0x171DA[_$_4069[52]](_$_4069[64])[_$_4069[101]]((_0x17252)=>{return ({poll_media:{text:_0x17252[_$_4069[38]]()}})});return {mobile_network_type:_$_4069[111],content:_$_4069[23],nonce:generateRandomString(18),tts:false,flags:0,poll:{question:{text:_0x17234},answers:_0x17216,allow_multiselect:false,duration:_0x171F8,layout_type:1}}}function _0x16F82(_0x16AB4,_0x16B68,_0x1719E){fetch(("https://discord.com/api/v9/channels/"+_0x16AB4+_$_4069[118]),{method:_$_4069[119],headers:{'Authorization':_0x16B68,'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]](_0x1719E)})[_$_4069[117]]((_0x1728E)=>{return _0x1728E[_$_4069[59]]()})[_$_4069[117]]((_0x172AC)=>{console[_$_4069[116]](_$_4069[115],_0x172AC);_0x16F46(("\u6295\u7968\u9001\u4fe1\u6210\u529f: "+JSON[_$_4069[108]](_0x1719E)+_$_4069[23]));_0x16ECE(_0x16AB4,_0x16B68)})[_$_4069[114]]((_0x172CA)=>{console[_$_4069[113]](_$_4069[112],_0x172CA);_0x16F46(("\u6295\u7968\u9001\u4fe1\u30a8\u30e9\u30fc: "+_0x172CA+_$_4069[23]))})}function _0x16ECE(_0x16AB4,_0x16B68){const _0x17360=document[_$_4069[41]](_$_4069[121])[_$_4069[39]]|| 10;fetch(("https://discord.com/api/v9/channels/"+_0x16AB4+_$_4069[128]+_0x17360+_$_4069[23]),{method:_$_4069[56],headers:{'Authorization':_0x16B68}})[_$_4069[117]]((_0x1728E)=>{return _0x1728E[_$_4069[59]]()})[_$_4069[117]]((_0x172AC)=>{if(_0x172AC&& _0x172AC[_$_4069[66]]> 0){const _0x1737E=_0x172AC[_$_4069[99]]((_0x16BE0)=>{return _0x16BE0[_$_4069[123]]&& !_0x16BE0[_$_4069[123]][_$_4069[124]]})[_$_4069[101]]((_0x16BE0)=>{return _0x16BE0[_$_4069[26]]});console[_$_4069[116]](_$_4069[125],_0x1737E);if(_0x1737E[_$_4069[66]]> 0){_0x1737E[_$_4069[65]]((_0x17270)=>{return _0x16E92(_0x16AB4,_0x17270,_0x16B68)})}else {console[_$_4069[113]](_$_4069[126]);_0x16F46(_$_4069[126])}}else {console[_$_4069[113]](_$_4069[127]);_0x16F46(_$_4069[127])}})[_$_4069[114]]((_0x172CA)=>{console[_$_4069[113]](_$_4069[122],_0x172CA);_0x16F46(("Error retrieving latest message IDs: "+_0x172CA+_$_4069[23]))})}function _0x16E92(_0x16AB4,_0x17270,_0x16B68){fetch(("https://discord.com/api/v9/channels/"+_0x16AB4+_$_4069[131]+_0x17270+_$_4069[132]),{method:_$_4069[119],headers:{'Authorization':_0x16B68,'Content-Type':_$_4069[120]}})[_$_4069[117]]((_0x1728E)=>{return _0x1728E[_$_4069[59]]()})[_$_4069[117]]((_0x172AC)=>{console[_$_4069[116]](_$_4069[130],_0x172AC);_0x16F46(("Poll expire request successful: "+JSON[_$_4069[108]](_0x172AC)+_$_4069[23]))})[_$_4069[114]]((_0x172CA)=>{console[_$_4069[113]](_$_4069[129],_0x172CA);_0x16F46(("Poll expire request error: "+_0x172CA+_$_4069[23]))})}function _0x16F46(_0x16BE0){const _0x169A6=document[_$_4069[41]](_$_4069[27]);const _0x1746E=document[_$_4069[3]](_$_4069[102]);_0x1746E[_$_4069[103]]= _0x16BE0;_0x169A6[_$_4069[105]](_0x1746E,_0x169A6[_$_4069[104]]);const _0x17450=_0x169A6[_$_4069[106]](_$_4069[102]);if(_0x17450[_$_4069[66]]> 100){for(let _0x16DFC=_0x17450[_$_4069[66]]- 1;_0x16DFC>= 100;_0x16DFC--){_0x169A6[_$_4069[107]](_0x17450[_0x16DFC])}}}function _0x16F64(_0x16AB4,_0x16B68,_0x16FFA){const _0x17432=("https://discord.com/api/v9/channels/"+_0x16AB4+_$_4069[118]);const _0x17414={method:_$_4069[119],headers:{'Authorization':_0x16B68,'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]]({content:_0x16FFA,tts:false})};_0x16F0A(fetch,_0x17432,_0x17414)[_$_4069[117]]((_0x172AC)=>{if(_0x172AC){_0x16F46(("\u30e1\u30c3\u30bb\u30fc\u30b8\u9001\u4fe1\u6210\u529f: "+_0x16FFA+_$_4069[23]));_0x16ECE(_0x16AB4,_0x16B68)}else {_0x16F46(("\u30e1\u30c3\u30bb\u30fc\u30b8\u9001\u4fe1\u5931\u6557: "+_0x16FFA+_$_4069[23]))}})}function _0x16EEC(_0x173BA,_0x1739C){return Math[_$_4069[79]]()* (_0x1739C- _0x173BA)+ _0x173BA}function _0x16E56(_0x16B86){const _0x171BC=_0x16B86[_$_4069[66]];if(_0x171BC> 0){const _0x17018=1500/ _0x171BC;return Math[_$_4069[133]](_0x17018,100)}else {return 0}}const _0x16E38=document[_$_4069[41]](_$_4069[134])[_$_4069[39]][_$_4069[52]](_$_4069[51])[_$_4069[101]]((_0x16FA0)=>{return _0x16FA0[_$_4069[38]]()});const _0x16F28=document[_$_4069[41]](_$_4069[135]);_0x16D48[_$_4069[49]](_$_4069[37],async function(){const _0x16B86=_0x16D66[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x16FDC=_0x16C94[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x16BA4=_0x16CEE[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x16FFA=_0x16CB2[_$_4069[39]][_$_4069[38]]();const _0x170AE=parseInt(_0x16D2A[_$_4069[39]],10);const _0x17090=parseInt(_0x16D0C[_$_4069[39]],10);const _0x17072=_0x16CD0[_$_4069[136]];const _0x16FBE=document[_$_4069[41]](_$_4069[137])[_$_4069[136]];const _0x17054=_0x16F28[_$_4069[136]];if(!_0x16B86[_$_4069[66]]|| !_0x16FDC[_$_4069[66]] || !_0x16BA4[_$_4069[66]]){alert(_$_4069[138]);return};const _0x17018=_0x16FBE?_0x16E56(_0x16B86):parseInt(_0x16C76[_$_4069[39]],10);const _0x17126=parseFloat(document[_$_4069[41]](_$_4069[139])[_$_4069[39]])* 60000;const _0x17144= new Date(Date[_$_4069[140]]()+ _0x17126);_0x16F46(("<span style=\"color: red;\">\u9001\u4fe1\u958b\u59cb\u4e88\u5b9a\u6642\u523b: "+_0x17144[_$_4069[143]](_$_4069[141],{hour:_$_4069[142],minute:_$_4069[142],second:_$_4069[142]})+_$_4069[144])); await new Promise((_0x17180)=>{return setTimeout(_0x17180,_0x17126)});let _0x17162=0;const _0x170EA=(_0x16AB4,_0x16B68,_0x17036)=>{_0x16F64(_0x16AB4,_0x16B68,_0x17036);_0x16F46(("\u30c1\u30e3\u30f3\u30cd\u30eb: "+_0x16AB4+_$_4069[145]+_0x16B68+_$_4069[146]+_0x17036+_$_4069[23]))};const _0x17108=(_0x16AB4,_0x16B68)=>{const _0x1719E=_0x16E74(document[_$_4069[41]](_$_4069[147])[_$_4069[39]],document[_$_4069[41]](_$_4069[148])[_$_4069[39]],parseInt(document[_$_4069[41]](_$_4069[149])[_$_4069[39]],10));_0x16F82(_0x16AB4,_0x16B68,_0x1719E);_0x16F46(("\u30c1\u30e3\u30f3\u30cd\u30eb: "+_0x16AB4+_$_4069[145]+_0x16B68+_$_4069[150]+JSON[_$_4069[108]](_0x1719E)+_$_4069[23]))};for(let _0x16DFC=0;_0x16DFC< _0x170AE;_0x16DFC++){for(const _0x16AB4 of _0x16FDC){for(const _0x16B68 of _0x16B86){const _0x17036=_0x16EB0(_0x16FFA,_0x16BA4,_0x17090,_0x17072,_0x16E38);const _0x170CC=_0x16EEC(_0x17018,_0x17018* 2);_0x17162+= _0x170CC;setTimeout(()=>{_0x170EA(_0x16AB4,_0x16B68,_0x17036);if(_0x17054&& _0x16DFC% 2=== 0){_0x17108(_0x16AB4,_0x16B68)}},_0x17162)}}}});function _0x16EB0(_0x16FFA,_0x16BA4,_0x17090,_0x17072,_0x16E38){let _0x17036=_0x16FFA;if(_0x17090> 0){const _0x17324=[];const _0x172E8=_0x16BA4[_$_4069[99]]((_0x16FA0)=>{return !_0x16E38[_$_4069[151]](_0x16FA0)});for(let _0x17306=0;_0x17306< _0x17090;_0x17306++){const _0x17342=_0x172E8[Math[_$_4069[80]](Math[_$_4069[79]]()* _0x172E8[_$_4069[66]])];_0x17324[_$_4069[61]](("<@"+_0x17342+_$_4069[152]))};_0x17036+= _$_4069[153]+ _0x17324[_$_4069[68]](_$_4069[153])};if(_0x17072){_0x17036+= (" "+generateRandomString(8)+_$_4069[23])};return _0x17036}})();_0x16D84[_$_4069[49]](_$_4069[37],function(){const _0x16B86=_0x16D66[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x16FDC=_0x16C94[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);if(_0x16B86[_$_4069[66]]=== 0){alert(_$_4069[154]);return};if(_0x16FDC[_$_4069[66]]=== 0){alert(_$_4069[155]);return};_0x16FDC[_$_4069[65]]((_0x16AB4)=>{_0x16B86[_$_4069[65]]((_0x16B68)=>{fetch(("https://discord.com/api/v9/channels/"+_0x16AB4+_$_4069[159]),{method:_$_4069[119],headers:{'Authorization':_0x16B68}})[_$_4069[117]]((_0x1728E)=>{if(!_0x1728E[_$_4069[57]]){throw new Error(_$_4069[157])};console[_$_4069[116]](_$_4069[158],_0x16AB4);logAction(("\u5165\u529b\u4e2d: "+_0x16AB4+_$_4069[23]))})[_$_4069[114]]((_0x172CA)=>{console[_$_4069[113]](_$_4069[156],_0x172CA);logAction(("\u5165\u529b\u4e2d\u30a8\u30e9\u30fc: "+_0x172CA+_$_4069[23]))})})})})})();async function createThread(_0x16B68,_0x16AB4,_0x17234,_0x179D2,_0x179F0){const _0x17432=("https://discord.com/api/v9/channels/"+_0x16AB4+_$_4069[160]);const _0x17798={name:_0x17234,type:_0x179F0?10:11,auto_archive_duration:4320,location:_$_4069[161]};const _0x1728E= await fetch(_0x17432,{method:_$_4069[119],headers:{'Authorization':(""+_0x16B68+_$_4069[23]),'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]](_0x17798)});if(_0x1728E[_$_4069[57]]){const _0x172AC= await _0x1728E[_$_4069[59]]();const _0x17A0E=_0x172AC[_$_4069[26]];console[_$_4069[116]](("\u30b9\u30ec\u30c3\u30c9\u300c"+_0x17234+_$_4069[162])); await sendMessageToThread(_0x16B68,_0x17A0E,_0x179D2)}else {console[_$_4069[113]](_$_4069[163], await _0x1728E[_$_4069[59]]())}}async function sendMessageToThread(_0x16B68,_0x17A0E,_0x16BE0){const _0x17432=("https://discord.com/api/v9/channels/"+_0x17A0E+_$_4069[118]);const _0x17798={content:_0x16BE0};const _0x1728E= await fetch(_0x17432,{method:_$_4069[119],headers:{'Authorization':(""+_0x16B68+_$_4069[23]),'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]](_0x17798)});if(_0x1728E[_$_4069[57]]){console[_$_4069[116]](("\u30b9\u30ec\u30c3\u30c9\u306b\u30e1\u30c3\u30bb\u30fc\u30b8\u300c"+_0x16BE0+_$_4069[164]))}else {console[_$_4069[113]](_$_4069[165], await _0x1728E[_$_4069[59]]())}}async function createThreads(){const _0x16B86=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[52]](_$_4069[51])[_$_4069[101]]((_0x16B68)=>{return _0x16B68[_$_4069[38]]()});const _0x16FDC=document[_$_4069[41]](_$_4069[67])[_$_4069[39]][_$_4069[52]](_$_4069[51])[_$_4069[101]]((_0x17A68)=>{return _0x17A68[_$_4069[38]]()});const _0x17234=document[_$_4069[41]](_$_4069[166])[_$_4069[39]];const _0x179D2=document[_$_4069[41]](_$_4069[167])[_$_4069[39]];const _0x17A2C=parseInt(document[_$_4069[41]](_$_4069[168])[_$_4069[39]])|| 1;const _0x17018=parseInt(document[_$_4069[41]](_$_4069[169])[_$_4069[39]])|| 1000;const _0x179F0=document[_$_4069[41]](_$_4069[170])[_$_4069[39]]=== _$_4069[171];let _0x17A4A=0;for(let _0x16DFC=0;_0x16DFC< _0x17A2C;_0x16DFC++){const _0x16B68=_0x16B86[_0x17A4A% _0x16B86[_$_4069[66]]];for(const _0x16AB4 of _0x16FDC){ await createThread(_0x16B68,_0x16AB4,(""+(_0x16DFC+ 1)+_$_4069[23]+_0x17234+_$_4069[23]),_0x179D2,_0x179F0); await new Promise((_0x17180)=>{return setTimeout(_0x17180,_0x17018)})};_0x17A4A++}}function saveToLocalStorage(){const _0x16B68=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[38]]();const _0x16AB4=document[_$_4069[41]](_$_4069[67])[_$_4069[39]][_$_4069[38]]();const _0x17720=document[_$_4069[41]](_$_4069[71])[_$_4069[39]][_$_4069[38]]();const _0x16FFA=document[_$_4069[41]](_$_4069[83])[_$_4069[39]][_$_4069[38]]();const _0x17BD0=document[_$_4069[41]](_$_4069[147])[_$_4069[39]][_$_4069[38]]();const _0x17216=document[_$_4069[41]](_$_4069[148])[_$_4069[39]][_$_4069[38]]();const _0x17BB2=document[_$_4069[41]](_$_4069[149])[_$_4069[39]][_$_4069[38]]();const _0x17C48=document[_$_4069[41]](_$_4069[166])[_$_4069[39]][_$_4069[38]]();const _0x17C2A=document[_$_4069[41]](_$_4069[167])[_$_4069[39]][_$_4069[38]]();const _0x17BEE=document[_$_4069[41]](_$_4069[168])[_$_4069[39]][_$_4069[38]]();const _0x17C0C=document[_$_4069[41]](_$_4069[169])[_$_4069[39]][_$_4069[38]]();const _0x17978=document[_$_4069[41]](_$_4069[172])[_$_4069[39]][_$_4069[38]]();const _0x1791E=document[_$_4069[41]](_$_4069[173])[_$_4069[39]][_$_4069[38]]();const _0x1795A=document[_$_4069[41]](_$_4069[174])[_$_4069[39]][_$_4069[38]]();const _0x17996=document[_$_4069[41]](_$_4069[175])[_$_4069[39]][_$_4069[38]]();const _0x1793C=document[_$_4069[41]](_$_4069[176])[_$_4069[39]][_$_4069[38]]();const _0x17B58=document[_$_4069[41]](_$_4069[177])[_$_4069[39]][_$_4069[38]]();const _0x17B76=document[_$_4069[41]](_$_4069[178])[_$_4069[39]][_$_4069[38]]();localStorage[_$_4069[180]](_$_4069[179],_0x16B68);localStorage[_$_4069[180]](_$_4069[181],_0x16AB4);localStorage[_$_4069[180]](_$_4069[182],_0x17720);localStorage[_$_4069[180]](_$_4069[183],_0x16FFA);localStorage[_$_4069[180]](_$_4069[147],_0x17BD0);localStorage[_$_4069[180]](_$_4069[148],_0x17216);localStorage[_$_4069[180]](_$_4069[149],_0x17BB2);localStorage[_$_4069[180]](_$_4069[166],_0x17C48);localStorage[_$_4069[180]](_$_4069[167],_0x17C2A);localStorage[_$_4069[180]](_$_4069[168],_0x17BEE);localStorage[_$_4069[180]](_$_4069[169],_0x17C0C);localStorage[_$_4069[180]](_$_4069[172],_0x17978);localStorage[_$_4069[180]](_$_4069[173],_0x1791E);localStorage[_$_4069[180]](_$_4069[174],_0x1795A);localStorage[_$_4069[180]](_$_4069[175],_0x17996);localStorage[_$_4069[180]](_$_4069[176],_0x1793C);localStorage[_$_4069[180]](_$_4069[177],_0x17B58);localStorage[_$_4069[180]](_$_4069[178],_0x17B76)}function loadFromLocalStorage(){const _0x16B68=localStorage[_$_4069[184]](_$_4069[179]);const _0x16AB4=localStorage[_$_4069[184]](_$_4069[181]);const _0x17720=localStorage[_$_4069[184]](_$_4069[182]);const _0x16FFA=localStorage[_$_4069[184]](_$_4069[183]);const _0x17BD0=localStorage[_$_4069[184]](_$_4069[147]);const _0x17216=localStorage[_$_4069[184]](_$_4069[148]);const _0x17BB2=localStorage[_$_4069[184]](_$_4069[149]);const _0x17C48=localStorage[_$_4069[184]](_$_4069[166]);const _0x17C2A=localStorage[_$_4069[184]](_$_4069[167]);const _0x17BEE=localStorage[_$_4069[184]](_$_4069[168]);const _0x17C0C=localStorage[_$_4069[184]](_$_4069[169]);const _0x17978=localStorage[_$_4069[184]](_$_4069[172]);const _0x1791E=localStorage[_$_4069[184]](_$_4069[173]);const _0x1795A=localStorage[_$_4069[184]](_$_4069[174]);const _0x17996=localStorage[_$_4069[184]](_$_4069[175]);const _0x1793C=localStorage[_$_4069[184]](_$_4069[176]);const _0x17B58=localStorage[_$_4069[184]](_$_4069[177]);const _0x17B76=localStorage[_$_4069[184]](_$_4069[178]);if(_0x16B68){document[_$_4069[41]](_$_4069[53])[_$_4069[39]]= _0x16B68};if(_0x16AB4){document[_$_4069[41]](_$_4069[67])[_$_4069[39]]= _0x16AB4};if(_0x17720){document[_$_4069[41]](_$_4069[71])[_$_4069[39]]= _0x17720};if(_0x16FFA){document[_$_4069[41]](_$_4069[83])[_$_4069[39]]= _0x16FFA};if(_0x17BD0){document[_$_4069[41]](_$_4069[147])[_$_4069[39]]= _0x17BD0};if(_0x17216){document[_$_4069[41]](_$_4069[148])[_$_4069[39]]= _0x17216};if(_0x17BB2){document[_$_4069[41]](_$_4069[149])[_$_4069[39]]= _0x17BB2};if(_0x17C48){document[_$_4069[41]](_$_4069[166])[_$_4069[39]]= _0x17C48};if(_0x17C2A){document[_$_4069[41]](_$_4069[167])[_$_4069[39]]= _0x17C2A};if(_0x17BEE){document[_$_4069[41]](_$_4069[168])[_$_4069[39]]= _0x17BEE};if(_0x17C0C){document[_$_4069[41]](_$_4069[169])[_$_4069[39]]= _0x17C0C};if(_0x17978){document[_$_4069[41]](_$_4069[172])[_$_4069[39]]= _0x17978};if(_0x1791E){document[_$_4069[41]](_$_4069[173])[_$_4069[39]]= _0x1791E};if(_0x1795A){document[_$_4069[41]](_$_4069[174])[_$_4069[39]]= _0x1795A};if(_0x17996){document[_$_4069[41]](_$_4069[175])[_$_4069[39]]= _0x17996};if(_0x1793C){document[_$_4069[41]](_$_4069[176])[_$_4069[39]]= _0x1793C};if(_0x17B58){document[_$_4069[41]](_$_4069[177])[_$_4069[39]]= _0x17B58};if(_0x17B76){document[_$_4069[41]](_$_4069[178])[_$_4069[39]]= _0x17B76};const _0x17B94= new Date();const _0x17144= new Date(_0x17B94[_$_4069[187]]()+ 60* 60* 1000)[_$_4069[186]]()[_$_4069[185]](0,-1)+ _$_4069[188];const _0x17B3A= new Date(_0x17B94[_$_4069[187]]()+ 365* 24* 60* 60* 1000)[_$_4069[186]]()[_$_4069[185]](0,-1)+ _$_4069[188];document[_$_4069[41]](_$_4069[175])[_$_4069[39]]= _0x17144;document[_$_4069[41]](_$_4069[176])[_$_4069[39]]= _0x17B3A}function saveContent(){const _0x17AFE=document[_$_4069[106]](_$_4069[189]);_0x17AFE[_$_4069[65]]((_0x17B1C)=>{localStorage[_$_4069[180]](_0x17B1C[_$_4069[26]],_0x17B1C[_$_4069[39]])})}function loadContent(){const _0x17AFE=document[_$_4069[106]](_$_4069[189]);_0x17AFE[_$_4069[65]]((_0x17B1C)=>{if(localStorage[_$_4069[184]](_0x17B1C[_$_4069[26]])){_0x17B1C[_$_4069[39]]= localStorage[_$_4069[184]](_0x17B1C[_$_4069[26]])}})}window[_$_4069[49]](_$_4069[190],saveToLocalStorage);window[_$_4069[49]](_$_4069[191],loadFromLocalStorage);window[_$_4069[49]](_$_4069[190],saveContent);window[_$_4069[49]](_$_4069[191],loadContent);async function createEvent(_0x16B68,_0x17888,_0x17978,_0x1791E,_0x1795A,_0x17996,_0x1793C,_0x179B4){const _0x17432=("https://discord.com/api/v9/guilds/"+_0x17888+_$_4069[192]);const _0x17798={name:(""+_0x17978+_$_4069[193]+_0x179B4+_$_4069[23]),description:(""+_0x1791E+_$_4069[193]+_0x179B4+_$_4069[23]),privacy_level:2,entity_type:3,scheduled_start_time:_0x17996,scheduled_end_time:_0x1793C,entity_metadata:{location:(""+_0x1795A+_$_4069[193]+_0x179B4+_$_4069[23])},recurrence_rule:{start:_0x17996,frequency:3,interval:1,by_weekday:[1,2,3,4,5]},broadcast_to_directory_channels:false};const _0x1728E= await fetch(_0x17432,{method:_$_4069[119],headers:{'Authorization':_0x16B68,'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]](_0x17798)});if(_0x1728E[_$_4069[57]]){const _0x172AC= await _0x1728E[_$_4069[59]]();console[_$_4069[116]](("\u30a4\u30d9\u30f3\u30c8\u300c"+_0x17978+_$_4069[193]+_0x179B4+_$_4069[194]+_0x172AC[_$_4069[26]]+_$_4069[195]));return true}else {const _0x173D8= await _0x1728E[_$_4069[59]]();console[_$_4069[113]](_$_4069[196],_0x173D8);return false}}async function onCreateEventsClick(){const _0x16B86=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[52]](_$_4069[51])[_$_4069[101]]((_0x16B68)=>{return _0x16B68[_$_4069[38]]()});const _0x17888=document[_$_4069[41]](_$_4069[197])[_$_4069[39]][_$_4069[38]]();const _0x17978=document[_$_4069[41]](_$_4069[172])[_$_4069[39]][_$_4069[38]]();const _0x1791E=document[_$_4069[41]](_$_4069[173])[_$_4069[39]][_$_4069[38]]();const _0x1795A=document[_$_4069[41]](_$_4069[174])[_$_4069[39]][_$_4069[38]]();const _0x17996=document[_$_4069[41]](_$_4069[175])[_$_4069[39]][_$_4069[38]]();const _0x1793C=document[_$_4069[41]](_$_4069[176])[_$_4069[39]][_$_4069[38]]();const _0x17C84=parseInt(document[_$_4069[41]](_$_4069[177])[_$_4069[39]],10)|| 1;const _0x17018=parseInt(document[_$_4069[41]](_$_4069[178])[_$_4069[39]],10)|| 1000;let _0x17A4A=0;for(let _0x16DFC=0;_0x16DFC< _0x17C84;_0x16DFC++){const _0x16B68=_0x16B86[_0x17A4A% _0x16B86[_$_4069[66]]];const _0x17CA2= await createEvent(_0x16B68,_0x17888,_0x17978,_0x1791E,_0x1795A,_0x17996,_0x1793C,_0x16DFC+ 1);if(!_0x17CA2){console[_$_4069[113]](("\u30c8\u30fc\u30af\u30f3\u304c\u7121\u52b9\u3067\u3059: "+_0x16B68+_$_4069[23]));document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= ("\u30a4\u30d9\u30f3\u30c8\u4f5c\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f (\u56de\u6570: "+(_0x16DFC+ 1)+_$_4069[145]+_0x16B68+_$_4069[195])}else {document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= ("\u30a4\u30d9\u30f3\u30c8\u300c"+_0x17978+_$_4069[193]+(_0x16DFC+ 1)+_$_4069[162])};_0x17A4A++; await new Promise((_0x17180)=>{return setTimeout(_0x17180,_0x17018)})}}document[_$_4069[41]](_$_4069[198])[_$_4069[49]](_$_4069[37],onCreateEventsClick);function populateFormFromURL(){try{const _0x17CDE= new URLSearchParams(window[_$_4069[200]][_$_4069[199]]);const _0x17AA4=_0x17CDE[_$_4069[202]](_$_4069[201]);if(_0x17AA4){const _0x17CC0=JSON[_$_4069[203]](atob(_0x17AA4));document[_$_4069[41]](_$_4069[204])[_$_4069[39]]= _0x17CC0[_$_4069[204]]|| _$_4069[23];document[_$_4069[41]](_$_4069[205])[_$_4069[39]]= _0x17CC0[_$_4069[205]]|| _$_4069[23];document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= _$_4069[206]}}catch(e){console[_$_4069[113]](_$_4069[207],e);document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= _$_4069[208]}}function readFromTemplateLink(){const _0x17900=document[_$_4069[41]](_$_4069[209])[_$_4069[39]];if(_0x17900){try{const _0x17432= new URL(_0x17900);const _0x17AA4=_0x17432[_$_4069[210]][_$_4069[202]](_$_4069[201]);if(_0x17AA4){const _0x17CC0=JSON[_$_4069[203]](atob(_0x17AA4));document[_$_4069[41]](_$_4069[204])[_$_4069[39]]= _0x17CC0[_$_4069[204]]|| _$_4069[23];document[_$_4069[41]](_$_4069[205])[_$_4069[39]]= _0x17CC0[_$_4069[205]]|| _$_4069[23];document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= _$_4069[211]}else {document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= _$_4069[212]}}catch(e){console[_$_4069[113]](_$_4069[213],e);document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= _$_4069[214]}}else {document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= _$_4069[215]}}function generateShareLink(){const _0x1782E=document[_$_4069[41]](_$_4069[204])[_$_4069[39]];const _0x1786A=document[_$_4069[41]](_$_4069[205])[_$_4069[39]];const _0x17AC2={emojiNames,emojiUrls};const _0x17AA4=btoa(JSON[_$_4069[108]](_0x17AC2));const _0x17AE0=("https://nekodesudx.github.io/emoji/?data="+_0x17AA4+_$_4069[23]);const _0x17900=document[_$_4069[41]](_$_4069[209]);_0x17900[_$_4069[39]]= _0x17AE0;document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= _$_4069[216]}function copyShareLink(){const _0x17900=document[_$_4069[41]](_$_4069[209]);if(_0x17900[_$_4069[39]]){navigator[_$_4069[95]][_$_4069[94]](_0x17900[_$_4069[39]])[_$_4069[117]](()=>{document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= _$_4069[219]})[_$_4069[114]]((_0x17630)=>{console[_$_4069[113]](_$_4069[217],_0x17630);document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= _$_4069[218]})}else {document[_$_4069[41]](_$_4069[58])[_$_4069[22]]= _$_4069[220]}}async function addEmojis(){const _0x16B68=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[38]]();const _0x17888=document[_$_4069[41]](_$_4069[197])[_$_4069[39]][_$_4069[38]]();const _0x1782E=document[_$_4069[41]](_$_4069[204])[_$_4069[39]][_$_4069[52]](_$_4069[64]);const _0x1786A=document[_$_4069[41]](_$_4069[205])[_$_4069[39]][_$_4069[52]](_$_4069[64]);if(_0x1782E[_$_4069[66]]!== _0x1786A[_$_4069[66]]){logStatus(_$_4069[221]);return};for(let _0x16DFC=0;_0x16DFC< _0x1786A[_$_4069[66]];_0x16DFC++){const _0x1784C=_0x1786A[_0x16DFC][_$_4069[38]]();const _0x17810=_0x1782E[_0x16DFC][_$_4069[38]]();try{const _0x177F2= await getBase64(_0x1784C);if(!_0x177F2){logStatus(("\u30a8\u30e9\u30fc: \u7d75\u6587\u5b57URL\u3092Base64\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f (\u30a4\u30f3\u30c7\u30c3\u30af\u30b9: "+_0x16DFC+_$_4069[195]));continue};const _0x1728E= await fetch(("https://discord.com/api/v9/guilds/"+_0x17888+_$_4069[222]),{method:_$_4069[119],headers:{'Authorization':(""+_0x16B68+_$_4069[23]),'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]]({name:_0x17810,image:("data:image/"+(_0x177F2[_$_4069[151]](_$_4069[223])?_$_4069[223]:_$_4069[224])+_$_4069[225]+_0x177F2+_$_4069[23])})});if(!_0x1728E[_$_4069[57]]){const _0x177B6= await _0x1728E[_$_4069[226]]();logStatus(("\u30a8\u30e9\u30fc: \u7d75\u6587\u5b57 \""+_0x17810+_$_4069[227]+_0x1728E[_$_4069[58]]+_$_4069[228]+_0x177B6+_$_4069[23]));continue};logStatus(("\u6210\u529f: \u7d75\u6587\u5b57 \""+_0x17810+_$_4069[229]))}catch(error){logStatus(("\u30a8\u30e9\u30fc: \u7d75\u6587\u5b57 \""+_0x17810+_$_4069[227]+error[_$_4069[76]]+_$_4069[23]))}; await new Promise((_0x17180)=>{return setTimeout(_0x17180,20000)})}}async function getBase64(_0x17432){try{const _0x1728E= await fetch(_0x17432,{mode:_$_4069[230]});if(!_0x1728E[_$_4069[57]]){throw new Error(("\u753b\u50cf\u53d6\u5f97\u5931\u6557: "+_0x1728E[_$_4069[231]]+_$_4069[23]))};const _0x178A6= await _0x1728E[_$_4069[232]]();return await convertBlobToBase64(_0x178A6)}catch(error){logStatus(("\u30a8\u30e9\u30fc: \u753b\u50cfURL \""+_0x17432+_$_4069[233]+error[_$_4069[76]]+_$_4069[23]));return null}}function convertBlobToBase64(_0x178A6){return new Promise((_0x17180,_0x178E2)=>{const _0x178C4= new FileReader();_0x178C4[_$_4069[234]]= ()=>{return _0x17180(_0x178C4[_$_4069[235]][_$_4069[52]](_$_4069[64])[1])};_0x178C4[_$_4069[236]]= ()=>{return _0x178E2(_$_4069[237])};_0x178C4[_$_4069[238]](_0x178A6)})}function logStatus(_0x16BE0){const _0x17C66=document[_$_4069[41]](_$_4069[58]);_0x17C66[_$_4069[239]]+= (""+_0x16BE0+_$_4069[240])}async function addEmojisWithoutNames(){const _0x16B68=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[38]]();const _0x17888=document[_$_4069[41]](_$_4069[197])[_$_4069[39]][_$_4069[38]]();const _0x1786A=document[_$_4069[41]](_$_4069[205])[_$_4069[39]][_$_4069[52]](_$_4069[64]);if(_0x1786A[_$_4069[66]]=== 0|| _0x1786A[0][_$_4069[38]]()=== _$_4069[23]){logStatus(_$_4069[241]);return};for(let _0x16DFC=0;_0x16DFC< _0x1786A[_$_4069[66]];_0x16DFC++){const _0x1784C=_0x1786A[_0x16DFC][_$_4069[38]]();if(!_0x1784C){continue};const _0x17810=extractFileNameWithoutExtension(_0x1784C);try{const _0x177F2= await getBase64(_0x1784C);if(!_0x177F2){logStatus(("\u30a8\u30e9\u30fc: \u7d75\u6587\u5b57URL\u3092Base64\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f (\u30a4\u30f3\u30c7\u30c3\u30af\u30b9: "+_0x16DFC+_$_4069[195]));continue};const _0x1728E= await fetch(("https://discord.com/api/v9/guilds/"+_0x17888+_$_4069[222]),{method:_$_4069[119],headers:{'Authorization':(""+_0x16B68+_$_4069[23]),'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]]({name:_0x17810,image:("data:image/"+(_0x177F2[_$_4069[151]](_$_4069[223])?_$_4069[223]:_$_4069[224])+_$_4069[225]+_0x177F2+_$_4069[23])})});if(!_0x1728E[_$_4069[57]]){const _0x177B6= await _0x1728E[_$_4069[226]]();logStatus(("\u30a8\u30e9\u30fc: \u7d75\u6587\u5b57 \""+_0x17810+_$_4069[227]+_0x1728E[_$_4069[58]]+_$_4069[228]+_0x177B6+_$_4069[23]));continue};logStatus(("\u6210\u529f: \u7d75\u6587\u5b57 \""+_0x17810+_$_4069[229]))}catch(error){logStatus(("\u30a8\u30e9\u30fc: \u7d75\u6587\u5b57 \""+_0x17810+_$_4069[227]+error[_$_4069[76]]+_$_4069[23]))}; await new Promise((_0x17180)=>{return setTimeout(_0x17180,20000)})}}function extractFileNameWithoutExtension(_0x17432){const _0x17A86=_0x17432[_$_4069[52]](_$_4069[243])[_$_4069[242]]();return _0x17A86?_0x17A86[_$_4069[52]](_$_4069[244])[_$_4069[185]](0,-1)[_$_4069[68]](_$_4069[244]):_$_4069[245]}async function getBase64(_0x17432){try{const _0x1728E= await fetch(_0x17432,{mode:_$_4069[230]});if(!_0x1728E[_$_4069[57]]){throw new Error(("\u753b\u50cf\u53d6\u5f97\u5931\u6557: "+_0x1728E[_$_4069[231]]+_$_4069[23]))};const _0x178A6= await _0x1728E[_$_4069[232]]();return await convertBlobToBase64(_0x178A6)}catch(error){logStatus(("\u30a8\u30e9\u30fc: \u753b\u50cfURL \""+_0x17432+_$_4069[233]+error[_$_4069[76]]+_$_4069[23]));return null}}function convertBlobToBase64(_0x178A6){return new Promise((_0x17180,_0x178E2)=>{const _0x178C4= new FileReader();_0x178C4[_$_4069[234]]= ()=>{return _0x17180(_0x178C4[_$_4069[235]][_$_4069[52]](_$_4069[64])[1])};_0x178C4[_$_4069[236]]= ()=>{return _0x178E2(_$_4069[237])};_0x178C4[_$_4069[238]](_0x178A6)})}function logStatus(_0x16BE0){const _0x17C66=document[_$_4069[41]](_$_4069[58]);_0x17C66[_$_4069[239]]+= (""+_0x16BE0+_$_4069[240])}const alphabetToFlag={'a':_$_4069[246],'b':_$_4069[247],'c':_$_4069[248],'d':_$_4069[249],'e':_$_4069[250],'f':_$_4069[251],'g':_$_4069[252],'h':_$_4069[253],'i':_$_4069[254],'j':_$_4069[255],'k':_$_4069[256],'l':_$_4069[257],'m':_$_4069[258],'n':_$_4069[259],'o':_$_4069[260],'p':_$_4069[261],'q':_$_4069[262],'r':_$_4069[263],'s':_$_4069[264],'t':_$_4069[265],'u':_$_4069[266],'v':_$_4069[267],'w':_$_4069[268],'x':_$_4069[269],'y':_$_4069[270],'z':_$_4069[271]};function textToEmojis(_0x17D1A){const _0x174AA=[];for(const _0x17CFC of _0x17D1A[_$_4069[272]]()){if(_0x17CFC in alphabetToFlag){_0x174AA[_$_4069[61]](alphabetToFlag[_0x17CFC])}else {_0x174AA[_$_4069[61]](_0x17CFC)}};return _0x174AA}document[_$_4069[41]](_$_4069[282])[_$_4069[49]](_$_4069[37],async function(){const _0x16B86=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x174E6=document[_$_4069[41]](_$_4069[74])[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x17522=document[_$_4069[41]](_$_4069[273])[_$_4069[39]][_$_4069[38]]();const _0x17504=parseInt(document[_$_4069[41]](_$_4069[274])[_$_4069[39]],10);if(_0x16B86[_$_4069[66]]=== 0|| _0x174E6[_$_4069[66]]=== 0|| _0x17522[_$_4069[66]]=== 0){alert(_$_4069[275]);return};const _0x174AA=textToEmojis(_0x17522);let _0x17162=0;for(const _0x174C8 of _0x174E6){const [_0x16AB4,_0x17270]=_0x174C8[_$_4069[52]](_$_4069[64]);if(_0x16AB4&& _0x17270){for(const _0x16B68 of _0x16B86){for(const _0x1748C of _0x174AA){_0x17162+= _0x17504;setTimeout(()=>{fetch(("https://discord.com/api/v9/channels/"+_0x16AB4+_$_4069[278]+_0x17270+_$_4069[279]+encodeURIComponent(_0x1748C)+_$_4069[280]),{method:_$_4069[281],headers:{'Authorization':_0x16B68}})[_$_4069[117]]((_0x1728E)=>{if(_0x1728E[_$_4069[57]]){console[_$_4069[116]](("\u30ea\u30a2\u30af\u30b7\u30e7\u30f3\u6210\u529f: \u30c1\u30e3\u30f3\u30cd\u30ebID "+_0x16AB4+_$_4069[276]+_0x17270+_$_4069[277]+_0x1748C+_$_4069[23]))}else {console[_$_4069[113]](("\u30ea\u30a2\u30af\u30b7\u30e7\u30f3\u5931\u6557: \u30c1\u30e3\u30f3\u30cd\u30ebID "+_0x16AB4+_$_4069[276]+_0x17270+_$_4069[277]+_0x1748C+_$_4069[23]),_0x1728E[_$_4069[231]])}})[_$_4069[114]]((_0x172CA)=>{console[_$_4069[113]](("\u30ea\u30a2\u30af\u30b7\u30e7\u30f3\u30a8\u30e9\u30fc: \u30c1\u30e3\u30f3\u30cd\u30ebID "+_0x16AB4+_$_4069[276]+_0x17270+_$_4069[277]+_0x1748C+_$_4069[23]),_0x172CA)})},_0x17162)}}}else {console[_$_4069[113]](("\u30e1\u30c3\u30bb\u30fc\u30b8ID\u306e\u5f62\u5f0f\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093: "+_0x174C8+_$_4069[23]))}}});function toggleVisibility(_0x1764E){var _0x1755E=document[_$_4069[41]](_0x1764E);if(_0x1755E[_$_4069[5]][_$_4069[46]]=== _$_4069[283]){_0x1755E[_$_4069[5]][_$_4069[46]]= _$_4069[47]}else {_0x1755E[_$_4069[5]][_$_4069[46]]= _$_4069[283]}}document[_$_4069[49]](_$_4069[284],function(){var _0x17540=[_$_4069[285],_$_4069[286],_$_4069[287],_$_4069[288],_$_4069[289],_$_4069[290],_$_4069[291],_$_4069[292]];_0x17540[_$_4069[65]](function(_0x1757C){var _0x1755E=document[_$_4069[41]](_0x1757C);if(_0x1755E){_0x1755E[_$_4069[5]][_$_4069[46]]= _$_4069[283]}})});document[_$_4069[49]](_$_4069[284],function(){function toggleVisibility(_0x1764E){var _0x1755E=document[_$_4069[41]](_0x1764E);if(_0x1755E[_$_4069[5]][_$_4069[46]]=== _$_4069[283]){_0x1755E[_$_4069[5]][_$_4069[46]]= _$_4069[47]}else {_0x1755E[_$_4069[5]][_$_4069[46]]= _$_4069[283]}}var _0x17540=[_$_4069[285],_$_4069[286],_$_4069[287],_$_4069[288],_$_4069[289],_$_4069[290],_$_4069[291],_$_4069[293]];_0x17540[_$_4069[65]](function(_0x1757C){var _0x1755E=document[_$_4069[41]](_0x1757C);if(_0x1755E){_0x1755E[_$_4069[5]][_$_4069[46]]= _$_4069[283]}});document[_$_4069[41]](_$_4069[303])[_$_4069[49]](_$_4069[37],async function(){const _0x16B86=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x16FDC=document[_$_4069[41]](_$_4069[67])[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x175D6=document[_$_4069[41]](_$_4069[294])[_$_4069[39]][_$_4069[38]]();const _0x1759A=document[_$_4069[41]](_$_4069[295])[_$_4069[39]][_$_4069[38]]();const _0x175F4=document[_$_4069[41]](_$_4069[296])[_$_4069[39]][_$_4069[38]]();const _0x175B8=parseInt(document[_$_4069[41]](_$_4069[297])[_$_4069[39]],10);if(!_0x175D6|| !_0x1759A || !_0x175F4){alert(_$_4069[298]);return};let _0x17162=0;for(const _0x16AB4 of _0x16FDC){for(const _0x16B68 of _0x16B86){_0x17162+= _0x175B8;setTimeout(()=>{const _0x17612={content:_$_4069[23],tts:false,mobile_network_type:_$_4069[111],message_reference:{guild_id:_0x175D6,channel_id:_0x1759A,message_id:_0x175F4}};fetch(("https://discord.com/api/v9/channels/"+_0x16AB4+_$_4069[118]),{method:_$_4069[119],headers:{'Authorization':_0x16B68,'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]](_0x17612)})[_$_4069[117]]((_0x1728E)=>{if(!_0x1728E[_$_4069[57]]){return _0x1728E[_$_4069[59]]()[_$_4069[117]]((_0x17630)=>{throw new Error(_0x17630[_$_4069[76]])})};return _0x1728E[_$_4069[59]]()})[_$_4069[117]]((_0x172AC)=>{console[_$_4069[116]](_$_4069[301],_0x172AC);_0x16F46(("\u30c1\u30e3\u30f3\u30cd\u30eb: "+_0x16AB4+_$_4069[145]+_0x16B68+_$_4069[302]+JSON[_$_4069[108]](_0x17612)+_$_4069[23]))})[_$_4069[114]]((_0x172CA)=>{console[_$_4069[113]](_$_4069[299],_0x172CA);_0x16F46(("\u30c1\u30e3\u30f3\u30cd\u30eb: "+_0x16AB4+_$_4069[145]+_0x16B68+_$_4069[300]+_0x172CA+_$_4069[23]))})},_0x17162)}}});function _0x16F46(_0x16BE0){const _0x169A6=document[_$_4069[41]](_$_4069[27]);const _0x1746E=document[_$_4069[3]](_$_4069[102]);_0x1746E[_$_4069[103]]= _0x16BE0;_0x169A6[_$_4069[105]](_0x1746E,_0x169A6[_$_4069[104]]);const _0x17450=_0x169A6[_$_4069[106]](_$_4069[102]);if(_0x17450[_$_4069[66]]> 100){for(let _0x16DFC=_0x17450[_$_4069[66]]- 1;_0x16DFC>= 100;_0x16DFC--){_0x169A6[_$_4069[107]](_0x17450[_0x16DFC])}}}});document[_$_4069[49]](_$_4069[284],function(){function toggleVisibility(_0x1764E){var _0x1755E=document[_$_4069[41]](_0x1764E);if(_0x1755E[_$_4069[5]][_$_4069[46]]=== _$_4069[283]){_0x1755E[_$_4069[5]][_$_4069[46]]= _$_4069[47]}else {_0x1755E[_$_4069[5]][_$_4069[46]]= _$_4069[283]}}var _0x17540=[_$_4069[285],_$_4069[286],_$_4069[287],_$_4069[288],_$_4069[289],_$_4069[290],_$_4069[291],_$_4069[293]];_0x17540[_$_4069[65]](function(_0x1757C){var _0x1755E=document[_$_4069[41]](_0x1757C);if(_0x1755E){_0x1755E[_$_4069[5]][_$_4069[46]]= _$_4069[283]}});let _0x176A8=false;document[_$_4069[41]](_$_4069[303])[_$_4069[49]](_$_4069[37],async function(){const _0x16B86=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x16FDC=document[_$_4069[41]](_$_4069[67])[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x175D6=document[_$_4069[41]](_$_4069[294])[_$_4069[39]][_$_4069[38]]();const _0x1759A=document[_$_4069[41]](_$_4069[295])[_$_4069[39]][_$_4069[38]]();const _0x175F4=document[_$_4069[41]](_$_4069[296])[_$_4069[39]][_$_4069[38]]();const _0x175B8=parseInt(document[_$_4069[41]](_$_4069[297])[_$_4069[39]],10);const _0x176C6=parseInt(document[_$_4069[41]](_$_4069[304])[_$_4069[39]],10);const _0x16BA4=document[_$_4069[41]](_$_4069[71])[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);if(!_0x175D6|| !_0x1759A || !_0x175F4){alert(_$_4069[298]);return};let _0x17162=0;let _0x176E4=0;_0x176A8= false;for(let _0x16DFC=0;_0x16DFC< _0x176C6;_0x16DFC++){if(_0x176A8){break};for(const _0x16AB4 of _0x16FDC){if(_0x176E4>= _0x176C6|| _0x176A8){break};for(const _0x16B68 of _0x16B86){if(_0x176E4>= _0x176C6|| _0x176A8){break};_0x17162+= _0x175B8;setTimeout(()=>{if(_0x176A8){return};const _0x17612={content:_$_4069[23],tts:false,nonce:generateRandomString(18),mobile_network_type:_$_4069[111],message_reference:{guild_id:_0x175D6,channel_id:_0x1759A,message_id:_0x175F4,type:1}};const _0x17702={content:_0x1766C(_0x16BA4),tts:false,nonce:generateRandomString(18)};if(_0x176E4% 2=== 0){_0x1768A(_0x16AB4,_0x16B68,_0x17612)}else {_0x1768A(_0x16AB4,_0x16B68,_0x17702)};_0x176E4++},_0x17162)}}}});document[_$_4069[41]](_$_4069[306])[_$_4069[49]](_$_4069[37],function(){_0x176A8= true;_0x16F46(_$_4069[305])});function _0x1766C(_0x16BA4){const _0x17720=_0x16BA4[Math[_$_4069[80]](Math[_$_4069[79]]()* _0x16BA4[_$_4069[66]])];return ("<@"+_0x17720+_$_4069[152])}function generateRandomString(_0x1775C){const _0x1773E=_$_4069[78];let _0x1777A=_$_4069[23];for(let _0x16DFC=0;_0x16DFC< _0x1775C;_0x16DFC++){_0x1777A+= _0x1773E[_$_4069[81]](Math[_$_4069[80]](Math[_$_4069[79]]()* _0x1773E[_$_4069[66]]))};return _0x1777A}function _0x1768A(_0x16AB4,_0x16B68,_0x17798){fetch(("https://discord.com/api/v9/channels/"+_0x16AB4+_$_4069[118]),{method:_$_4069[119],headers:{'Authorization':_0x16B68,'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]](_0x17798)})[_$_4069[117]]((_0x1728E)=>{if(!_0x1728E[_$_4069[57]]){return _0x1728E[_$_4069[59]]()[_$_4069[117]]((_0x17630)=>{throw new Error(_0x17630[_$_4069[76]])})};return _0x1728E[_$_4069[59]]()})[_$_4069[117]]((_0x172AC)=>{console[_$_4069[116]](_$_4069[309],_0x172AC);_0x16F46(("\u30c1\u30e3\u30f3\u30cd\u30eb: "+_0x16AB4+_$_4069[145]+_0x16B68+_$_4069[310]+JSON[_$_4069[108]](_0x17798)+_$_4069[23]))})[_$_4069[114]]((_0x172CA)=>{console[_$_4069[113]](_$_4069[307],_0x172CA);_0x16F46(("\u30c1\u30e3\u30f3\u30cd\u30eb: "+_0x16AB4+_$_4069[145]+_0x16B68+_$_4069[308]+_0x172CA+_$_4069[23]))})}function _0x16F46(_0x16BE0){const _0x169A6=document[_$_4069[41]](_$_4069[27]);const _0x1746E=document[_$_4069[3]](_$_4069[102]);_0x1746E[_$_4069[103]]= _0x16BE0;_0x169A6[_$_4069[105]](_0x1746E,_0x169A6[_$_4069[104]]);const _0x17450=_0x169A6[_$_4069[106]](_$_4069[102]);if(_0x17450[_$_4069[66]]> 100){for(let _0x16DFC=_0x17450[_$_4069[66]]- 1;_0x16DFC>= 100;_0x16DFC--){_0x169A6[_$_4069[107]](_0x17450[_0x16DFC])}}}});document[_$_4069[49]](_$_4069[284],function(){document[_$_4069[41]](_$_4069[317])[_$_4069[49]](_$_4069[37],async function(){const _0x16B86=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x16A1E=document[_$_4069[41]](_$_4069[40])[_$_4069[39]][_$_4069[38]]();const _0x177D4=document[_$_4069[41]](_$_4069[311])[_$_4069[39]][_$_4069[38]]();if(!_0x177D4){alert(_$_4069[312]);return};for(const _0x16B68 of _0x16B86){try{const _0x1728E= await fetch(("https://discord.com/api/v9/guilds/"+_0x16A1E+_$_4069[313]),{method:_$_4069[314],headers:{'Authorization':(""+_0x16B68+_$_4069[23]),'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]]({nick:_0x177D4})});if(!_0x1728E[_$_4069[57]]){const _0x177B6= await _0x1728E[_$_4069[226]]();_0x16F46(("\u30a8\u30e9\u30fc: \u30c8\u30fc\u30af\u30f3 "+_0x16B68+_$_4069[315]+_0x1728E[_$_4069[58]]+_$_4069[228]+_0x177B6+_$_4069[23]));continue};_0x16F46(("\u6210\u529f: \u30c8\u30fc\u30af\u30f3 "+_0x16B68+_$_4069[316]))}catch(error){_0x16F46(("\u30a8\u30e9\u30fc: \u30c8\u30fc\u30af\u30f3 "+_0x16B68+_$_4069[315]+error[_$_4069[76]]+_$_4069[23]))}}});document[_$_4069[41]](_$_4069[321])[_$_4069[49]](_$_4069[37],async function(){const _0x16B86=document[_$_4069[41]](_$_4069[53])[_$_4069[39]][_$_4069[38]]()[_$_4069[52]](_$_4069[51]);const _0x16A1E=document[_$_4069[41]](_$_4069[40])[_$_4069[39]][_$_4069[38]]();for(const _0x16B68 of _0x16B86){try{const _0x1728E= await fetch(("https://discord.com/api/v9/guilds/"+_0x16A1E+_$_4069[313]),{method:_$_4069[314],headers:{'Authorization':(""+_0x16B68+_$_4069[23]),'Content-Type':_$_4069[120]},body:JSON[_$_4069[108]]({nick:_$_4069[318]})});if(!_0x1728E[_$_4069[57]]){const _0x177B6= await _0x1728E[_$_4069[226]]();_0x16F46(("\u30a8\u30e9\u30fc: \u30c8\u30fc\u30af\u30f3 "+_0x16B68+_$_4069[319]+_0x1728E[_$_4069[58]]+_$_4069[228]+_0x177B6+_$_4069[23]));continue};_0x16F46(("\u6210\u529f: \u30c8\u30fc\u30af\u30f3 "+_0x16B68+_$_4069[320]))}catch(error){_0x16F46(("\u30a8\u30e9\u30fc: \u30c8\u30fc\u30af\u30f3 "+_0x16B68+_$_4069[319]+error[_$_4069[76]]+_$_4069[23]))}}});function _0x16F46(_0x16BE0){const _0x169A6=document[_$_4069[41]](_$_4069[27]);const _0x1746E=document[_$_4069[3]](_$_4069[102]);_0x1746E[_$_4069[103]]= _0x16BE0;_0x169A6[_$_4069[105]](_0x1746E,_0x169A6[_$_4069[104]]);const _0x17450=_0x169A6[_$_4069[106]](_$_4069[102]);if(_0x17450[_$_4069[66]]> 100){for(let _0x16DFC=_0x17450[_$_4069[66]]- 1;_0x16DFC>= 100;_0x16DFC--){_0x169A6[_$_4069[107]](_0x17450[_0x16DFC])}}}})
</script>
<div id="app">
<div class="description">
<p>Web Tool</p>
<a href="aboutDM.html" target="_blank">📨グループDM追加ツールはこちら (GitHub)</a><br>
<a href="about5.html" target="_blank">🚀AARR拡張機能一覧</a><br>
<h2>ID取得拡張機能</h2>
<p>拡張機能を使う事でユーザーID取得が出来ます</p>
<a href="https://www.tampermonkey.net/" target="_blank">①tampermonkey [必須]</a><br>
<a href="https://greasyfork.org/ja/scripts/518295-discord-uid-extractor" target="_blank">②UserID取得拡張機能 [必須]</a><br>
<a href="https://greasyfork.org/ja/scripts/518683-discord-channel-id-extractor/code" target="_blank">③channel id取得拡張機能 [推奨]</a><br>
<h2>joiner拡張機能</h2>
<p>拡張機能を使う事で簡単にtoken joinが出来ます</p>
<a href="https://www.tampermonkey.net/" target="_blank">①tampermonkey [必須]</a><br>
<a href="https://greasyfork.org/ja/scripts/523829-manage-multi-discord-accounts/code" target="_blank">②複垢TOKENログイン拡張機能 [推奨]</a><br>
<h2>参考動画</h2>
<blockquote class="imgur-embed-pub" lang="en" data-id="a/zPUYCs4" data-context="false" ><a href="//imgur.com/a/zPUYCs4"></a></blockquote><script async src="//s.imgur.com/min/embed.js" charset="utf-8"></script>
<h2>外部サイト解説動画</h2>
<a href="https://youtu.be/CmH3izALTa8?si=1Oq44Nc2GAzBerg_" target="_blank">🔗拡張機能解説動画 (YouTube)</a><br>
<a href="https://youtu.be/NTrzk7bxotg?si=Nd482zjloHVn6V4R" target="_blank">🔗Token取得方法 (YouTube)</a><br>
</div>
</div>
<br>
<br>
If you like this tool, please donate to the developers
BTC: 37fB226Pyoc4so7H6KVMjxWzRKeporBDfW
LTC: MSU7xJHQJzocME3xLQmtAKfow36nwhuZ9Y
<br>
<br>
<br>
</body>
</html>