@radzztnzx/baileys 4.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (102) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +527 -0
  3. package/WAProto/index.js +169661 -0
  4. package/engine-requirements.js +10 -0
  5. package/lib/Defaults/baileys-version.json +3 -0
  6. package/lib/Defaults/debug_output.txt +0 -0
  7. package/lib/Defaults/index.js +147 -0
  8. package/lib/Defaults/phonenumber-mcc.json +223 -0
  9. package/lib/Signal/Group/ciphertext-message.js +15 -0
  10. package/lib/Signal/Group/group-session-builder.js +64 -0
  11. package/lib/Signal/Group/group_cipher.js +96 -0
  12. package/lib/Signal/Group/index.js +57 -0
  13. package/lib/Signal/Group/keyhelper.js +55 -0
  14. package/lib/Signal/Group/queue-job.js +57 -0
  15. package/lib/Signal/Group/sender-chain-key.js +34 -0
  16. package/lib/Signal/Group/sender-key-distribution-message.js +66 -0
  17. package/lib/Signal/Group/sender-key-message.js +69 -0
  18. package/lib/Signal/Group/sender-key-name.js +51 -0
  19. package/lib/Signal/Group/sender-key-record.js +53 -0
  20. package/lib/Signal/Group/sender-key-state.js +99 -0
  21. package/lib/Signal/Group/sender-message-key.js +29 -0
  22. package/lib/Signal/libsignal.js +174 -0
  23. package/lib/Socket/Client/abstract-socket-client.js +13 -0
  24. package/lib/Socket/Client/index.js +19 -0
  25. package/lib/Socket/Client/mobile-socket-client.js +65 -0
  26. package/lib/Socket/Client/web-socket-client.js +62 -0
  27. package/lib/Socket/business.js +260 -0
  28. package/lib/Socket/chats.js +1002 -0
  29. package/lib/Socket/groups.js +317 -0
  30. package/lib/Socket/index.js +11 -0
  31. package/lib/Socket/messages-recv.js +1110 -0
  32. package/lib/Socket/messages-send.js +831 -0
  33. package/lib/Socket/newsletter.js +347 -0
  34. package/lib/Socket/registration.js +166 -0
  35. package/lib/Socket/socket.js +663 -0
  36. package/lib/Socket/usync.js +70 -0
  37. package/lib/Socket//345/262/224/345/255/220.js +637 -0
  38. package/lib/Store/index.js +10 -0
  39. package/lib/Store/make-cache-manager-store.js +83 -0
  40. package/lib/Store/make-in-memory-store.js +427 -0
  41. package/lib/Store/make-ordered-dictionary.js +81 -0
  42. package/lib/Store/object-repository.js +27 -0
  43. package/lib/Types/Auth.js +2 -0
  44. package/lib/Types/Call.js +2 -0
  45. package/lib/Types/Chat.js +4 -0
  46. package/lib/Types/Contact.js +2 -0
  47. package/lib/Types/Events.js +2 -0
  48. package/lib/Types/GroupMetadata.js +2 -0
  49. package/lib/Types/Label.js +27 -0
  50. package/lib/Types/LabelAssociation.js +9 -0
  51. package/lib/Types/Message.js +9 -0
  52. package/lib/Types/Newsletter.js +38 -0
  53. package/lib/Types/Product.js +2 -0
  54. package/lib/Types/Signal.js +2 -0
  55. package/lib/Types/Socket.js +2 -0
  56. package/lib/Types/State.js +2 -0
  57. package/lib/Types/USync.js +2 -0
  58. package/lib/Types/index.js +42 -0
  59. package/lib/Utils/auth-utils.js +206 -0
  60. package/lib/Utils/baileys-event-stream.js +63 -0
  61. package/lib/Utils/business.js +234 -0
  62. package/lib/Utils/chat-utils.js +729 -0
  63. package/lib/Utils/crypto.js +151 -0
  64. package/lib/Utils/decode-wa-message.js +198 -0
  65. package/lib/Utils/event-buffer.js +514 -0
  66. package/lib/Utils/generics.js +498 -0
  67. package/lib/Utils/history.js +96 -0
  68. package/lib/Utils/index.js +33 -0
  69. package/lib/Utils/link-preview.js +93 -0
  70. package/lib/Utils/logger.js +7 -0
  71. package/lib/Utils/lt-hash.js +51 -0
  72. package/lib/Utils/make-mutex.js +43 -0
  73. package/lib/Utils/messages-media.js +819 -0
  74. package/lib/Utils/messages.js +819 -0
  75. package/lib/Utils/noise-handler.js +155 -0
  76. package/lib/Utils/process-message.js +321 -0
  77. package/lib/Utils/signal.js +153 -0
  78. package/lib/Utils/use-multi-file-auth-state.js +119 -0
  79. package/lib/Utils/validate-connection.js +229 -0
  80. package/lib/WABinary/constants.js +40 -0
  81. package/lib/WABinary/decode.js +252 -0
  82. package/lib/WABinary/encode.js +265 -0
  83. package/lib/WABinary/generic-utils.js +198 -0
  84. package/lib/WABinary/index.js +21 -0
  85. package/lib/WABinary/jid-utils.js +62 -0
  86. package/lib/WABinary/types.js +2 -0
  87. package/lib/WAM/BinaryInfo.js +13 -0
  88. package/lib/WAM/constants.js +15350 -0
  89. package/lib/WAM/encode.js +155 -0
  90. package/lib/WAM/index.js +19 -0
  91. package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
  92. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
  93. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
  94. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
  95. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
  96. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +24 -0
  97. package/lib/WAUSync/Protocols/index.js +20 -0
  98. package/lib/WAUSync/USyncQuery.js +89 -0
  99. package/lib/WAUSync/USyncUser.js +26 -0
  100. package/lib/WAUSync/index.js +19 -0
  101. package/lib/index.js +49 -0
  102. package/package.json +113 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 z4phdev
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,527 @@
1
+ # WhatsApp Baileys
2
+
3
+ <p align="center">
4
+ <img src="https://files.catbox.moe/6063gl.jpg" alt="Thumbnail" />
5
+ </p>
6
+
7
+ WhatsApp Baileys is an open-source library designed to help developers build automation solutions and integrations with WhatsApp efficiently and directly. Using websocket technology without the need for a browser, this library supports a wide range of features such as message management, chat handling, group administration, as well as interactive messages and action buttons for a more dynamic user experience.
8
+
9
+ Actively developed and maintained, baileys continuously receives updates to enhance stability and performance. One of the main focuses is to improve the pairing and authentication processes to be more stable and secure. Pairing features can be customized with your own codes, making the process more reliable and less prone to interruptions.
10
+
11
+ This library is highly suitable for building business bots, chat automation systems, customer service solutions, and various other communication automation applications that require high stability and comprehensive features. With a lightweight and modular design, baileys is easy to integrate into different systems and platforms.
12
+
13
+ ---
14
+
15
+ ### Main Features and Advantages
16
+
17
+ - Supports automatic and custom pairing processes
18
+ - Fixes previous pairing issues that often caused failures or disconnections
19
+ - Supports interactive messages, action buttons, and dynamic menus
20
+ - Efficient automatic session management for reliable operation
21
+ - Compatible with the latest multi-device features from WhatsApp
22
+ - Lightweight, stable, and easy to integrate into various systems
23
+ - Suitable for developing bots, automation, and complete communication solutions
24
+ - Comprehensive documentation and example codes to facilitate development
25
+
26
+ ---
27
+
28
+ ## Getting Started
29
+
30
+ Begin by installing the library via your preferred package manager, then follow the provided configuration guide. You can also utilize the ready-made example codes to understand how the features work. Use session storage and interactive messaging features to build complete, stable solutions tailored to your business or project needs.
31
+
32
+ ---
33
+
34
+ ## Add Function ( Simple code )
35
+
36
+ ### Label Group
37
+
38
+ Tag/Label Member Grop
39
+
40
+ ```javascript
41
+ sock.setLabelGroup(jid, string);
42
+ ```
43
+
44
+ ---
45
+
46
+ ### Check ID Channel
47
+
48
+ Get ID Channel From Url
49
+
50
+ ```javascript
51
+ sock.newsletterFromUrl(url);
52
+ ```
53
+
54
+ Result JSON
55
+
56
+ ```json
57
+ {
58
+ "name": "Name Channel",
59
+ "id": "Channel ID",
60
+ "state": "Status Channel",
61
+ "subscribers": "Followers",
62
+ "verification": "UNVERIFIED",
63
+ "creation_time": 1728547155,
64
+ "description": "Description Channel"
65
+ }
66
+ ```
67
+
68
+ ---
69
+
70
+ ### Check banned number
71
+
72
+ You can see the status of blocked numbers here
73
+
74
+ ```javascript
75
+ sock.checkWhatsApp(jid);
76
+ ```
77
+
78
+ ---
79
+
80
+ ## SendMessage Documentation
81
+
82
+ ### Status Mention Group & Private Message
83
+
84
+ Send Status Mention Group/Private Chat
85
+
86
+ ```javascript
87
+ await sock.sendStatusMention(content, jid);
88
+ ```
89
+
90
+ ### Status Group Message V2
91
+
92
+ Send Group Status With Version 2
93
+
94
+ ```javascript
95
+ await sock.sendMessage(jid, {
96
+ groupStatusMessage: {
97
+ text: "Hello World",
98
+ },
99
+ });
100
+ ```
101
+
102
+ ### Album Message (Multiple Images)
103
+
104
+ Send multiple images in a single album message:
105
+
106
+ ```javascript
107
+ await sock.sendMessage(
108
+ jid,
109
+ {
110
+ albumMessage: [
111
+ { image: cihuy, caption: "Foto pertama" },
112
+ { image: { url: "URL IMAGE" }, caption: "Foto kedua" },
113
+ ],
114
+ },
115
+ { quoted: m },
116
+ );
117
+ ```
118
+
119
+ ### Event Message
120
+
121
+ Create and send WhatsApp event invitations:
122
+
123
+ ```javascript
124
+ await sock.sendMessage(
125
+ jid,
126
+ {
127
+ eventMessage: {
128
+ isCanceled: false,
129
+ name: "Hello World",
130
+ description: "z4phdev",
131
+ location: {
132
+ degreesLatitude: 0,
133
+ degreesLongitude: 0,
134
+ name: "rowrrrr",
135
+ },
136
+ joinLink: "https://call.whatsapp.com/video/saweitt",
137
+ startTime: "1763019000",
138
+ endTime: "1763026200",
139
+ extraGuestsAllowed: false,
140
+ },
141
+ },
142
+ { quoted: m },
143
+ );
144
+ ```
145
+
146
+ ### Poll Result Message
147
+
148
+ Display poll results with vote counts:
149
+
150
+ ```javascript
151
+ await sock.sendMessage(
152
+ jid,
153
+ {
154
+ pollResultMessage: {
155
+ name: "Hello World",
156
+ pollVotes: [
157
+ {
158
+ optionName: "TEST 1",
159
+ optionVoteCount: "112233",
160
+ },
161
+ {
162
+ optionName: "TEST 2",
163
+ optionVoteCount: "1",
164
+ },
165
+ ],
166
+ },
167
+ },
168
+ { quoted: m },
169
+ );
170
+ ```
171
+
172
+ ### Simple Interactive Message
173
+
174
+ Send basic interactive messages with copy button functionality:
175
+
176
+ ```javascript
177
+ await sock.sendMessage(
178
+ jid,
179
+ {
180
+ interactiveMessage: {
181
+ header: "Hello World",
182
+ title: "Hello World",
183
+ footer: "telegram: @saweitt ",
184
+ buttons: [
185
+ {
186
+ name: "cta_copy",
187
+ buttonParamsJson: JSON.stringify({
188
+ display_text: "copy code",
189
+ id: "123456789",
190
+ copy_code: "ABC123XYZ",
191
+ }),
192
+ },
193
+ ],
194
+ },
195
+ },
196
+ { quoted: m },
197
+ );
198
+ ```
199
+
200
+ ### Interactive Message with Native Flow
201
+
202
+ Send interactive messages with buttons, copy actions, and native flow features:
203
+
204
+ ```javascript
205
+ await sock.sendMessage(
206
+ jid,
207
+ {
208
+ interactiveMessage: {
209
+ header: "Hello World",
210
+ title: "Hello World",
211
+ footer: "telegram: @saweitt",
212
+ image: { url: "https://example.com/image.jpg" },
213
+ nativeFlowMessage: {
214
+ messageParamsJson: JSON.stringify({
215
+ limited_time_offer: {
216
+ text: "idk hummmm?",
217
+ url: "https://t.me/saweitt",
218
+ copy_code: "z4phdev",
219
+ expiration_time: Date.now() * 999,
220
+ },
221
+ bottom_sheet: {
222
+ in_thread_buttons_limit: 2,
223
+ divider_indices: [1, 2, 3, 4, 5, 999],
224
+ list_title: "z4phdev",
225
+ button_title: "z4phdev",
226
+ },
227
+ tap_target_configuration: {
228
+ title: " X ",
229
+ description: "bomboclard",
230
+ canonical_url: "https://t.me/saweitt",
231
+ domain: "shop.example.com",
232
+ button_index: 0,
233
+ },
234
+ }),
235
+ buttons: [
236
+ {
237
+ name: "single_select",
238
+ buttonParamsJson: JSON.stringify({
239
+ has_multiple_buttons: true,
240
+ }),
241
+ },
242
+ {
243
+ name: "call_permission_request",
244
+ buttonParamsJson: JSON.stringify({
245
+ has_multiple_buttons: true,
246
+ }),
247
+ },
248
+ {
249
+ name: "single_select",
250
+ buttonParamsJson: JSON.stringify({
251
+ title: "Hello World",
252
+ sections: [
253
+ {
254
+ title: "title",
255
+ highlight_label: "label",
256
+ rows: [
257
+ {
258
+ title: "@saweitt",
259
+ description: "love you",
260
+ id: "row_2",
261
+ },
262
+ ],
263
+ },
264
+ ],
265
+ has_multiple_buttons: true,
266
+ }),
267
+ },
268
+ {
269
+ name: "cta_copy",
270
+ buttonParamsJson: JSON.stringify({
271
+ display_text: "copy code",
272
+ id: "123456789",
273
+ copy_code: "ABC123XYZ",
274
+ }),
275
+ },
276
+ ],
277
+ },
278
+ },
279
+ },
280
+ { quoted: m },
281
+ );
282
+ ```
283
+
284
+ ### Interactive Message with Thumbnail
285
+
286
+ Send interactive messages with thumbnail image and copy button:
287
+
288
+ ```javascript
289
+ await sock.sendMessage(
290
+ jid,
291
+ {
292
+ interactiveMessage: {
293
+ header: "Hello World",
294
+ title: "Hello World",
295
+ footer: "telegram: @saweitt",
296
+ image: { url: "https://example.com/image.jpg" },
297
+ buttons: [
298
+ {
299
+ name: "cta_copy",
300
+ buttonParamsJson: JSON.stringify({
301
+ display_text: "copy code",
302
+ id: "123456789",
303
+ copy_code: "ABC123XYZ",
304
+ }),
305
+ },
306
+ ],
307
+ },
308
+ },
309
+ { quoted: m },
310
+ );
311
+ ```
312
+
313
+ ### Product Message
314
+
315
+ Send product catalog messages with buttons and merchant information:
316
+
317
+ ```javascript
318
+ await sock.sendMessage(
319
+ jid,
320
+ {
321
+ productMessage: {
322
+ title: "Produk Contoh",
323
+ description: "Ini adalah deskripsi produk",
324
+ thumbnail: { url: "https://example.com/image.jpg" },
325
+ productId: "PROD001",
326
+ retailerId: "RETAIL001",
327
+ url: "https://example.com/product",
328
+ body: "Detail produk",
329
+ footer: "Harga spesial",
330
+ priceAmount1000: 50000,
331
+ currencyCode: "USD",
332
+ buttons: [
333
+ {
334
+ name: "cta_url",
335
+ buttonParamsJson: JSON.stringify({
336
+ display_text: "Beli Sekarang",
337
+ url: "https://example.com/buy",
338
+ }),
339
+ },
340
+ ],
341
+ },
342
+ },
343
+ { quoted: m },
344
+ );
345
+ ```
346
+
347
+ ### Interactive Message with Document Buffer
348
+
349
+ Send interactive messages with document from buffer (file system) - **Note: Documents only support buffer**:
350
+
351
+ ```javascript
352
+ await sock.sendMessage(
353
+ jid,
354
+ {
355
+ interactiveMessage: {
356
+ header: "Hello World",
357
+ title: "Hello World",
358
+ footer: "telegram: @saweitt",
359
+ document: fs.readFileSync("./package.json"),
360
+ mimetype: "application/pdf",
361
+ fileName: "saweitt.pdf",
362
+ jpegThumbnail: fs.readFileSync("./document.jpeg"),
363
+ contextInfo: {
364
+ mentionedJid: [jid],
365
+ forwardingScore: 777,
366
+ isForwarded: false,
367
+ },
368
+ externalAdReply: {
369
+ title: "shenń Bot",
370
+ body: "anu team",
371
+ mediaType: 3,
372
+ thumbnailUrl: "https://example.com/image.jpg",
373
+ mediaUrl: " X ",
374
+ sourceUrl: "https://t.me/saweitt",
375
+ showAdAttribution: true,
376
+ renderLargerThumbnail: false,
377
+ },
378
+ buttons: [
379
+ {
380
+ name: "cta_url",
381
+ buttonParamsJson: JSON.stringify({
382
+ display_text: "Telegram",
383
+ url: "https://t.me/saweitt",
384
+ merchant_url: "https://t.me/saweitt",
385
+ }),
386
+ },
387
+ ],
388
+ },
389
+ },
390
+ { quoted: m },
391
+ );
392
+ ```
393
+
394
+ ### Interactive Message with Document Buffer (Simple)
395
+
396
+ Send interactive messages with document from buffer (file system) without contextInfo and externalAdReply - **Note: Documents only support buffer**:
397
+
398
+ ```javascript
399
+ await sock.sendMessage(
400
+ jid,
401
+ {
402
+ interactiveMessage: {
403
+ header: "Hello World",
404
+ title: "Hello World",
405
+ footer: "telegram: @saweitt",
406
+ document: fs.readFileSync("./package.json"),
407
+ mimetype: "application/pdf",
408
+ fileName: "saweitt.pdf",
409
+ jpegThumbnail: fs.readFileSync("./document.jpeg"),
410
+ buttons: [
411
+ {
412
+ name: "cta_url",
413
+ buttonParamsJson: JSON.stringify({
414
+ display_text: "Telegram",
415
+ url: "https://t.me/saweitt",
416
+ merchant_url: "https://t.me/saweitt",
417
+ }),
418
+ },
419
+ ],
420
+ },
421
+ },
422
+ { quoted: m },
423
+ );
424
+ ```
425
+
426
+ ### Request Payment Message
427
+
428
+ Send payment request messages with custom background and sticker:
429
+
430
+ ```javascript
431
+ let quotedType = m.quoted?.mtype || "";
432
+ let quotedContent = JSON.stringify({ [quotedType]: m.quoted }, null, 2);
433
+
434
+ await sock.sendMessage(
435
+ jid,
436
+ {
437
+ requestPaymentMessage: {
438
+ currency: "IDR",
439
+ amount: 10000000,
440
+ from: m.sender,
441
+ sticker: JSON.parse(quotedContent),
442
+ background: {
443
+ id: "100",
444
+ fileLength: "0",
445
+ width: 1000,
446
+ height: 1000,
447
+ mimetype: "image/webp",
448
+ placeholderArgb: 0xff00ffff,
449
+ textArgb: 0xffffffff,
450
+ subtextArgb: 0xffaa00ff,
451
+ },
452
+ },
453
+ },
454
+ { quoted: m },
455
+ );
456
+ ```
457
+
458
+ ---
459
+
460
+ ## Why Choose WhatsApp Baileys?
461
+
462
+ Because this library offers high stability, full features, and an actively improved pairing process. It is ideal for developers aiming to create professional and secure WhatsApp automation solutions. Support for the latest WhatsApp features ensures compatibility with platform updates.
463
+
464
+ ---
465
+
466
+ ### Technical Notes
467
+
468
+ - Supports custom pairing codes that are stable and secure
469
+ - Fixes previous issues related to pairing and authentication
470
+ - Features interactive messages and action buttons for dynamic menu creation
471
+ - Automatic and efficient session management for long-term stability
472
+ - Compatible with the latest multi-device features from WhatsApp
473
+ - Easy to integrate and customize based on your needs
474
+ - Perfect for developing bots, customer service automation, and other communication applications
475
+ - Has 1 newsletter follow, only the developer's WhatsApp channel: [WhatsApp Channel](https://whatsapp.com/channel/0029VaranC0KmCPQCHryFs2C)
476
+
477
+ ---
478
+
479
+ For complete documentation, installation guides, and implementation examples, please visit the official repository and community forums. We continually update and improve this library to meet the needs of developers and users of modern WhatsApp automation solutions.
480
+
481
+ **Thank you for choosing WhatsApp Baileys as your WhatsApp automation solution!**
482
+
483
+ ---
484
+
485
+ ### Contact Developer
486
+
487
+ For questions, support, or collaboration, feel free to contact the developer:
488
+
489
+ - **Telegram**: [Telegram Contact](https://t.me/RadzzOffc)
490
+ - **Channel WhatsApp**: [Channel WhatsApp](https://whatsapp.com/channel/0029Vb7WngB4inooJKYUX101)
491
+
492
+ ### 🙌 Contributors outside the Baileys code
493
+
494
+ Thanks to the following awesome contributors who help improve this project 💖
495
+
496
+ <table>
497
+ <tr>
498
+ <td align="center">
499
+ <a href="https://github.com/z4phdev">
500
+ <img src="https://github.com/z4phdev.png" width="80px;" style="border-radius:50%;" alt="Developer"/>
501
+ <br />
502
+ <sub><b>z4phdev</b></sub>
503
+ </a>
504
+ </td>
505
+ <td align="center">
506
+ <a href="https://github.com/kiuur">
507
+ <img src="https://github.com/kiuur.png" width="80px;" style="border-radius:50%;" alt="Contributor"/>
508
+ <br />
509
+ <sub><b>KyuuRzy</b></sub>
510
+ </a>
511
+ </td>
512
+ <td align="center">
513
+ <a href="https://github.com/RexxHayanasi">
514
+ <img src="https://github.com/RexxHayanasi.png" width="80px;" style="border-radius:50%;" alt="Contributor"/>
515
+ <br />
516
+ <sub><b>RexxHayanasi</b></sub>
517
+ </a>
518
+ </td>
519
+ <td align="center">
520
+ <a href="https://github.com/RadzzOffc">
521
+ <img src="https://github.com/RadzzOffc.png" width="80px;" style="border-radius:50%;" alt="Contributor"/>
522
+ <br />
523
+ <sub><b>RadzzOffc</b></sub>
524
+ </a>
525
+ </td>
526
+ </tr>
527
+ </table>