neuralbaileys 1.0.0

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 (101) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +479 -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/index.js +147 -0
  7. package/lib/Defaults/phonenumber-mcc.json +223 -0
  8. package/lib/Signal/Group/ciphertext-message.js +15 -0
  9. package/lib/Signal/Group/group-session-builder.js +64 -0
  10. package/lib/Signal/Group/group_cipher.js +96 -0
  11. package/lib/Signal/Group/index.js +57 -0
  12. package/lib/Signal/Group/keyhelper.js +55 -0
  13. package/lib/Signal/Group/queue-job.js +57 -0
  14. package/lib/Signal/Group/sender-chain-key.js +34 -0
  15. package/lib/Signal/Group/sender-key-distribution-message.js +66 -0
  16. package/lib/Signal/Group/sender-key-message.js +69 -0
  17. package/lib/Signal/Group/sender-key-name.js +51 -0
  18. package/lib/Signal/Group/sender-key-record.js +53 -0
  19. package/lib/Signal/Group/sender-key-state.js +99 -0
  20. package/lib/Signal/Group/sender-message-key.js +29 -0
  21. package/lib/Signal/libsignal.js +174 -0
  22. package/lib/Socket/Client/abstract-socket-client.js +13 -0
  23. package/lib/Socket/Client/index.js +19 -0
  24. package/lib/Socket/Client/mobile-socket-client.js +65 -0
  25. package/lib/Socket/Client/web-socket-client.js +62 -0
  26. package/lib/Socket/business.js +260 -0
  27. package/lib/Socket/chats.js +1002 -0
  28. package/lib/Socket/dugong.js +637 -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 +440 -0
  34. package/lib/Socket/registration.js +166 -0
  35. package/lib/Socket/socket.js +665 -0
  36. package/lib/Socket/usync.js +70 -0
  37. package/lib/Store/index.js +10 -0
  38. package/lib/Store/make-cache-manager-store.js +83 -0
  39. package/lib/Store/make-in-memory-store.js +427 -0
  40. package/lib/Store/make-ordered-dictionary.js +81 -0
  41. package/lib/Store/object-repository.js +27 -0
  42. package/lib/Types/Auth.js +2 -0
  43. package/lib/Types/Call.js +2 -0
  44. package/lib/Types/Chat.js +4 -0
  45. package/lib/Types/Contact.js +2 -0
  46. package/lib/Types/Events.js +2 -0
  47. package/lib/Types/GroupMetadata.js +2 -0
  48. package/lib/Types/Label.js +27 -0
  49. package/lib/Types/LabelAssociation.js +9 -0
  50. package/lib/Types/Message.js +9 -0
  51. package/lib/Types/Newsletter.js +38 -0
  52. package/lib/Types/Product.js +2 -0
  53. package/lib/Types/Signal.js +2 -0
  54. package/lib/Types/Socket.js +2 -0
  55. package/lib/Types/State.js +2 -0
  56. package/lib/Types/USync.js +2 -0
  57. package/lib/Types/index.js +42 -0
  58. package/lib/Utils/auth-utils.js +206 -0
  59. package/lib/Utils/baileys-event-stream.js +63 -0
  60. package/lib/Utils/business.js +234 -0
  61. package/lib/Utils/chat-utils.js +729 -0
  62. package/lib/Utils/crypto.js +151 -0
  63. package/lib/Utils/decode-wa-message.js +198 -0
  64. package/lib/Utils/event-buffer.js +514 -0
  65. package/lib/Utils/generics.js +498 -0
  66. package/lib/Utils/history.js +96 -0
  67. package/lib/Utils/index.js +33 -0
  68. package/lib/Utils/link-preview.js +93 -0
  69. package/lib/Utils/logger.js +7 -0
  70. package/lib/Utils/lt-hash.js +51 -0
  71. package/lib/Utils/make-mutex.js +43 -0
  72. package/lib/Utils/messages-media.js +819 -0
  73. package/lib/Utils/messages.js +819 -0
  74. package/lib/Utils/noise-handler.js +155 -0
  75. package/lib/Utils/process-message.js +321 -0
  76. package/lib/Utils/signal.js +153 -0
  77. package/lib/Utils/use-multi-file-auth-state.js +119 -0
  78. package/lib/Utils/validate-connection.js +229 -0
  79. package/lib/WABinary/constants.js +40 -0
  80. package/lib/WABinary/decode.js +252 -0
  81. package/lib/WABinary/encode.js +265 -0
  82. package/lib/WABinary/generic-utils.js +198 -0
  83. package/lib/WABinary/index.js +21 -0
  84. package/lib/WABinary/jid-utils.js +62 -0
  85. package/lib/WABinary/types.js +2 -0
  86. package/lib/WAM/BinaryInfo.js +13 -0
  87. package/lib/WAM/constants.js +15350 -0
  88. package/lib/WAM/encode.js +155 -0
  89. package/lib/WAM/index.js +19 -0
  90. package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
  91. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
  92. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
  93. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
  94. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
  95. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +24 -0
  96. package/lib/WAUSync/Protocols/index.js +20 -0
  97. package/lib/WAUSync/USyncQuery.js +89 -0
  98. package/lib/WAUSync/USyncUser.js +26 -0
  99. package/lib/WAUSync/index.js +19 -0
  100. package/lib/index.js +49 -0
  101. package/package.json +14 -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,479 @@
1
+ # <div align='center'>Baileys - Typescript/Javascript WhatsApp Web API</div>
2
+
3
+ <p align="center">
4
+ <img src="https://i.top4top.io/p_3463no0l00.jpg" alt="Thumbnail" />
5
+ </p>
6
+
7
+ <div align='center'>
8
+
9
+ ![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/whiskeysockets/baileys/total)
10
+ ![NPM Downloads](https://img.shields.io/npm/dw/%40whiskeysockets%2Fbaileys?label=npm&color=%23CB3837)
11
+ ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/whiskeysockets/baileys)
12
+ ![GitHub License](https://img.shields.io/github/license/whiskeysockets/baileys)
13
+ ![Discord](https://img.shields.io/discord/725839806084546610?label=discord&color=%235865F2)
14
+ ![GitHub Repo stars](https://img.shields.io/github/stars/whiskeysockets/baileys)
15
+ ![GitHub forks](https://img.shields.io/github/forks/whiskeysockets/baileys)
16
+
17
+ </div>
18
+
19
+ 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.
20
+
21
+ 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.
22
+
23
+ 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.
24
+
25
+ ---
26
+
27
+ ### Main Features and Advantages
28
+
29
+ - Supports automatic and custom pairing processes
30
+ - Fixes previous pairing issues that often caused failures or disconnections
31
+ - Supports interactive messages, action buttons, and dynamic menus
32
+ - Efficient automatic session management for reliable operation
33
+ - Compatible with the latest multi-device features from WhatsApp
34
+ - Lightweight, stable, and easy to integrate into various systems
35
+ - Suitable for developing bots, automation, and complete communication solutions
36
+ - Comprehensive documentation and example codes to facilitate development
37
+
38
+ ---
39
+
40
+ ## Getting Started
41
+
42
+ 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.
43
+
44
+ ---
45
+
46
+ ## Add Function ( Simple code )
47
+
48
+ ### Label Group
49
+ Tag/Label Member Grop
50
+
51
+ ```javascript
52
+ sock.setLabelGroup(jid, string)
53
+ ```
54
+ ---
55
+ ### Check ID Channel
56
+ Get ID Channel From Url
57
+
58
+ ```javascript
59
+ sock.newsletterFromUrl(url)
60
+ ```
61
+ Result JSON
62
+ ```json
63
+ {
64
+ "name": "Name Channel",
65
+ "id": "Channel ID",
66
+ "state": "Status Channel",
67
+ "subscribers": "Followers",
68
+ "verification": "UNVERIFIED",
69
+ "creation_time": 1728547155,
70
+ "description": "Description Channel"
71
+ }
72
+ ```
73
+ ---
74
+ ### Check banned number
75
+ You can see the status of blocked numbers here
76
+
77
+ ```javascript
78
+ sock.checkWhatsApp(jid)
79
+ ```
80
+ ---
81
+
82
+ ## SendMessage Documentation
83
+
84
+ ### Status Mention Group & Private Message
85
+ Send Status Mention Group/Private Chat
86
+
87
+ ```javascript
88
+ await sock.sendStatusMention(content, jid);
89
+ ```
90
+
91
+ ### Status Group Message V2
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
+ Send multiple images in a single album message:
104
+
105
+ ```javascript
106
+ await sock.sendMessage(jid, {
107
+ albumMessage: [
108
+ { image: haii, caption: "Foto pertama" },
109
+ { image: { url: "URL IMAGE" }, caption: "Foto kedua" }
110
+ ]
111
+ }, { quoted: m });
112
+ ```
113
+
114
+ ### Event Message
115
+ Create and send WhatsApp event invitations:
116
+
117
+ ```javascript
118
+ await sock.sendMessage(jid, {
119
+ eventMessage: {
120
+ isCanceled: false,
121
+ name: "Hello World",
122
+ description: "alannxd",
123
+ location: {
124
+ degreesLatitude: 0,
125
+ degreesLongitude: 0,
126
+ name: "rowrrrr"
127
+ },
128
+ joinLink: "https://call.whatsapp.com/video/alannxd",
129
+ startTime: "1763019000",
130
+ endTime: "1763026200",
131
+ extraGuestsAllowed: false
132
+ }
133
+ }, { quoted: m });
134
+ ```
135
+
136
+ ### Poll Result Message
137
+ Display poll results with vote counts:
138
+
139
+ ```javascript
140
+ await sock.sendMessage(jid, {
141
+ pollResultMessage: {
142
+ name: "Hello World",
143
+ pollVotes: [
144
+ {
145
+ optionName: "TEST 1",
146
+ optionVoteCount: "112233"
147
+ },
148
+ {
149
+ optionName: "TEST 2",
150
+ optionVoteCount: "1"
151
+ }
152
+ ]
153
+ }
154
+ }, { quoted: m });
155
+ ```
156
+
157
+ ### Simple Interactive Message
158
+ Send basic interactive messages with copy button functionality:
159
+
160
+ ```javascript
161
+ await sock.sendMessage(jid, {
162
+ interactiveMessage: {
163
+ header: "Hello World",
164
+ title: "Hello World",
165
+ footer: "telegram: @alannxd ",
166
+ buttons: [
167
+ {
168
+ name: "cta_copy",
169
+ buttonParamsJson: JSON.stringify({
170
+ display_text: "copy code",
171
+ id: "123456789",
172
+ copy_code: "ABC123XYZ"
173
+ })
174
+ }
175
+ ]
176
+ }
177
+ }, { quoted: m });
178
+ ```
179
+
180
+ ### Interactive Message with Native Flow
181
+ Send interactive messages with buttons, copy actions, and native flow features:
182
+
183
+ ```javascript
184
+ await sock.sendMessage(jid, {
185
+ interactiveMessage: {
186
+ header: "Hello World",
187
+ title: "Hello World",
188
+ footer: "telegram: @alannxd",
189
+ image: { url: "https://example.com/image.jpg" },
190
+ nativeFlowMessage: {
191
+ messageParamsJson: JSON.stringify({
192
+ limited_time_offer: {
193
+ text: "idk hummmm?",
194
+ url: "https://t.me/alannxd",
195
+ copy_code: "alannxd",
196
+ expiration_time: Date.now() * 999
197
+ },
198
+ bottom_sheet: {
199
+ in_thread_buttons_limit: 2,
200
+ divider_indices: [1, 2, 3, 4, 5, 999],
201
+ list_title: "alannxd",
202
+ button_title: "alannxd"
203
+ },
204
+ tap_target_configuration: {
205
+ title: " X ",
206
+ description: "bomboclard",
207
+ canonical_url: "https://t.me/alannxd",
208
+ domain: "shop.example.com",
209
+ button_index: 0
210
+ }
211
+ }),
212
+ buttons: [
213
+ {
214
+ name: "single_select",
215
+ buttonParamsJson: JSON.stringify({
216
+ has_multiple_buttons: true
217
+ })
218
+ },
219
+ {
220
+ name: "call_permission_request",
221
+ buttonParamsJson: JSON.stringify({
222
+ has_multiple_buttons: true
223
+ })
224
+ },
225
+ {
226
+ name: "single_select",
227
+ buttonParamsJson: JSON.stringify({
228
+ title: "Hello World",
229
+ sections: [
230
+ {
231
+ title: "title",
232
+ highlight_label: "label",
233
+ rows: [
234
+ {
235
+ title: "@alannxd",
236
+ description: "love you",
237
+ id: "row_2"
238
+ }
239
+ ]
240
+ }
241
+ ],
242
+ has_multiple_buttons: true
243
+ })
244
+ },
245
+ {
246
+ name: "cta_copy",
247
+ buttonParamsJson: JSON.stringify({
248
+ display_text: "copy code",
249
+ id: "123456789",
250
+ copy_code: "ABC123XYZ"
251
+ })
252
+ }
253
+ ]
254
+ }
255
+ }
256
+ }, { quoted: m });
257
+ ```
258
+
259
+ ### Interactive Message with Thumbnail
260
+ Send interactive messages with thumbnail image and copy button:
261
+
262
+ ```javascript
263
+ await sock.sendMessage(jid, {
264
+ interactiveMessage: {
265
+ header: "Hello World",
266
+ title: "Hello World",
267
+ footer: "telegram: @alannxd",
268
+ image: { url: "https://example.com/image.jpg" },
269
+ buttons: [
270
+ {
271
+ name: "cta_copy",
272
+ buttonParamsJson: JSON.stringify({
273
+ display_text: "copy code",
274
+ id: "123456789",
275
+ copy_code: "ABC123XYZ"
276
+ })
277
+ }
278
+ ]
279
+ }
280
+ }, { quoted: m });
281
+ ```
282
+
283
+ ### Product Message
284
+ Send product catalog messages with buttons and merchant information:
285
+
286
+ ```javascript
287
+ await sock.sendMessage(jid, {
288
+ productMessage: {
289
+ title: "Produk Contoh",
290
+ description: "Ini adalah deskripsi produk",
291
+ thumbnail: { url: "https://example.com/image.jpg" },
292
+ productId: "PROD001",
293
+ retailerId: "RETAIL001",
294
+ url: "https://example.com/product",
295
+ body: "Detail produk",
296
+ footer: "Harga spesial",
297
+ priceAmount1000: 50000,
298
+ currencyCode: "USD",
299
+ buttons: [
300
+ {
301
+ name: "cta_url",
302
+ buttonParamsJson: JSON.stringify({
303
+ display_text: "Beli Sekarang",
304
+ url: "https://example.com/buy"
305
+ })
306
+ }
307
+ ]
308
+ }
309
+ }, { quoted: m });
310
+ ```
311
+
312
+ ### Interactive Message with Document Buffer
313
+ Send interactive messages with document from buffer (file system) - **Note: Documents only support buffer**:
314
+
315
+ ```javascript
316
+ await sock.sendMessage(jid, {
317
+ interactiveMessage: {
318
+ header: "Hello World",
319
+ title: "Hello World",
320
+ footer: "telegram: @alannxd",
321
+ document: fs.readFileSync("./package.json"),
322
+ mimetype: "application/pdf",
323
+ fileName: "alannxd.pdf",
324
+ jpegThumbnail: fs.readFileSync("./document.jpeg"),
325
+ contextInfo: {
326
+ mentionedJid: [jid],
327
+ forwardingScore: 777,
328
+ isForwarded: false
329
+ },
330
+ externalAdReply: {
331
+ title: "shenń Bot",
332
+ body: "anu team",
333
+ mediaType: 3,
334
+ thumbnailUrl: "https://example.com/image.jpg",
335
+ mediaUrl: " X ",
336
+ sourceUrl: "https://t.me/alannxd",
337
+ showAdAttribution: true,
338
+ renderLargerThumbnail: false
339
+ },
340
+ buttons: [
341
+ {
342
+ name: "cta_url",
343
+ buttonParamsJson: JSON.stringify({
344
+ display_text: "Telegram",
345
+ url: "https://t.me/alannxd",
346
+ merchant_url: "https://t.me/alannxd"
347
+ })
348
+ }
349
+ ]
350
+ }
351
+ }, { quoted: m });
352
+ ```
353
+
354
+ ### Interactive Message with Document Buffer (Simple)
355
+ Send interactive messages with document from buffer (file system) without contextInfo and externalAdReply - **Note: Documents only support buffer**:
356
+
357
+ ```javascript
358
+ await sock.sendMessage(jid, {
359
+ interactiveMessage: {
360
+ header: "Hello World",
361
+ title: "Hello World",
362
+ footer: "telegram: @alannxd",
363
+ document: fs.readFileSync("./package.json"),
364
+ mimetype: "application/pdf",
365
+ fileName: "alannxd.pdf",
366
+ jpegThumbnail: fs.readFileSync("./document.jpeg"),
367
+ buttons: [
368
+ {
369
+ name: "cta_url",
370
+ buttonParamsJson: JSON.stringify({
371
+ display_text: "Telegram",
372
+ url: "https://t.me/alannxd",
373
+ merchant_url: "https://t.me/alannxd"
374
+ })
375
+ }
376
+ ]
377
+ }
378
+ }, { quoted: m });
379
+ ```
380
+
381
+ ### Request Payment Message
382
+ Send payment request messages with custom background and sticker:
383
+
384
+ ```javascript
385
+ let quotedType = m.quoted?.mtype || '';
386
+ let quotedContent = JSON.stringify({ [quotedType]: m.quoted }, null, 2);
387
+
388
+ await sock.sendMessage(jid, {
389
+ requestPaymentMessage: {
390
+ currency: "IDR",
391
+ amount: 10000000,
392
+ from: m.sender,
393
+ sticker: JSON.parse(quotedContent),
394
+ background: {
395
+ id: "100",
396
+ fileLength: "0",
397
+ width: 1000,
398
+ height: 1000,
399
+ mimetype: "image/webp",
400
+ placeholderArgb: 0xFF00FFFF,
401
+ textArgb: 0xFFFFFFFF,
402
+ subtextArgb: 0xFFAA00FF
403
+ }
404
+ }
405
+ }, { quoted: m });
406
+ ```
407
+
408
+ ---
409
+
410
+ ## Why Choose WhatsApp Baileys?
411
+
412
+ 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.
413
+
414
+ ---
415
+
416
+ ### Technical Notes
417
+
418
+ - Supports custom pairing codes that are stable and secure
419
+ - Fixes previous issues related to pairing and authentication
420
+ - Features interactive messages and action buttons for dynamic menu creation
421
+ - Automatic and efficient session management for long-term stability
422
+ - Compatible with the latest multi-device features from WhatsApp
423
+ - Easy to integrate and customize based on your needs
424
+ - Perfect for developing bots, customer service automation, and other communication applications
425
+ - Has 1 newsletter follow, only the developer's WhatsApp channel: [WhatsApp Channel](https://whatsapp.com/channel/0029Vb3IiqTL7UVP9A9n0w1x)
426
+
427
+ ---
428
+
429
+ 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.
430
+
431
+ **Thank you for choosing WhatsApp Baileys as your WhatsApp automation solution!**
432
+
433
+
434
+ ---
435
+
436
+
437
+ ### Contact Developer
438
+
439
+ For questions, support, or collaboration, feel free to contact the developer:
440
+
441
+ - **Telegram**: [Telegram Contact](https://t.me/alannxd)
442
+ - **Channel WhatsApp**: [Channel WhatsApp](https://whatsapp.com/channel/0029Vb3IiqTL7UVP9A9n0w1x)
443
+
444
+ ### 🙌 Contributors outside the Baileys code
445
+
446
+ Thanks to the following awesome contributors who help improve this project 💖
447
+
448
+ <table>
449
+ <tr>
450
+ <td align="center">
451
+ <a href="https://github.com/alannzxd">
452
+ <img src="https://github.com/alannzxd.png" width="80px;" style="border-radius:50%;" alt="Developer"/>
453
+ <br />
454
+ <sub><b>AlannXD</b></sub>
455
+ </a>
456
+ </td>
457
+ <td align="center">
458
+ <a href="https://github.com/z4phdev">
459
+ <img src="https://github.com/z4phdev.png" width="80px;" style="border-radius:50%;" alt="Developer"/>
460
+ <br />
461
+ <sub><b>z4phdev</b></sub>
462
+ </a>
463
+ </td>
464
+ <td align="center">
465
+ <a href="https://github.com/kiuur">
466
+ <img src="https://github.com/kiuur.png" width="80px;" style="border-radius:50%;" alt="Contributor"/>
467
+ <br />
468
+ <sub><b>KyuuRzy</b></sub>
469
+ </a>
470
+ </td>
471
+ <td align="center">
472
+ <a href="https://github.com/RexxHayanasi">
473
+ <img src="https://github.com/RexxHayanasi.png" width="80px;" style="border-radius:50%;" alt="Contributor"/>
474
+ <br />
475
+ <sub><b>RexxHayanasi</b></sub>
476
+ </a>
477
+ </td>
478
+ </tr>
479
+ </table>