@allior/wmake-streamelements-events 2.0.2 → 2.0.4

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 (66) hide show
  1. package/dist/react/hooks/use-on-event-received.d.ts +1 -1
  2. package/dist/react/hooks/use-on-widget-load.d.ts +1 -1
  3. package/dist/react/index.iife.js +2 -2
  4. package/dist/react/index.iife.js.map +1 -1
  5. package/dist/react/index.js +32 -92
  6. package/dist/react/index.js.map +1 -1
  7. package/dist/root/guards/on-event-received.d.ts +1 -1
  8. package/dist/root/index.iife.js +2 -2
  9. package/dist/root/index.iife.js.map +1 -1
  10. package/dist/root/index.js +2 -3116
  11. package/dist/root/queue/alert-queue.d.ts +1 -1
  12. package/dist/root/queue/next-alert-callback.d.ts +1 -1
  13. package/dist/root/types/on-event-received/message.d.ts +1 -1
  14. package/dist/root-BzhLLMHq.js +2934 -0
  15. package/dist/root-BzhLLMHq.js.map +1 -0
  16. package/package.json +11 -13
  17. package/dist/root/index.js.map +0 -1
  18. package/src/react/hooks/index.ts +0 -3
  19. package/src/react/hooks/use-event-listener.ts +0 -20
  20. package/src/react/hooks/use-on-event-received.ts +0 -108
  21. package/src/react/hooks/use-on-widget-load.ts +0 -15
  22. package/src/react/index.ts +0 -3
  23. package/src/react/types/index.ts +0 -1
  24. package/src/react/types/window-events.ts +0 -6
  25. package/src/root/aggregate.ts +0 -257
  26. package/src/root/classifier.ts +0 -271
  27. package/src/root/commands.ts +0 -39
  28. package/src/root/data/field-value.ts +0 -2
  29. package/src/root/data/index.ts +0 -2
  30. package/src/root/data/widget-load.ts +0 -5
  31. package/src/root/guards/index.ts +0 -1
  32. package/src/root/guards/on-event-received.ts +0 -58
  33. package/src/root/index.ts +0 -11
  34. package/src/root/keys.ts +0 -14
  35. package/src/root/message/index.ts +0 -1
  36. package/src/root/message/twitch/index.ts +0 -2
  37. package/src/root/message/twitch/message.ts +0 -48
  38. package/src/root/message/twitch/user-message-data.ts +0 -112
  39. package/src/root/queue/alert-queue.ts +0 -31
  40. package/src/root/queue/index.ts +0 -2
  41. package/src/root/queue/next-alert-callback.ts +0 -7
  42. package/src/root/sources/alerts.ts +0 -163
  43. package/src/root/sources/index.ts +0 -5
  44. package/src/root/sources/messages.ts +0 -1611
  45. package/src/root/sources/on-widget-load-detail.ts +0 -968
  46. package/src/root/types/index.ts +0 -2
  47. package/src/root/types/on-event-received/base.ts +0 -94
  48. package/src/root/types/on-event-received/cheer.ts +0 -10
  49. package/src/root/types/on-event-received/donation.ts +0 -29
  50. package/src/root/types/on-event-received/follower.ts +0 -9
  51. package/src/root/types/on-event-received/index.ts +0 -58
  52. package/src/root/types/on-event-received/message.ts +0 -13
  53. package/src/root/types/on-event-received/moderation.ts +0 -7
  54. package/src/root/types/on-event-received/other.ts +0 -14
  55. package/src/root/types/on-event-received/raid.ts +0 -10
  56. package/src/root/types/on-event-received/subscriber.ts +0 -77
  57. package/src/root/types/on-widget-load/base.ts +0 -35
  58. package/src/root/types/on-widget-load/index.ts +0 -3
  59. package/src/root/types/on-widget-load/recents.ts +0 -33
  60. package/src/root/types/on-widget-load/session.ts +0 -102
  61. package/src/root/window-event-map.ts +0 -9
  62. package/tsconfig.app.json +0 -31
  63. package/tsconfig.json +0 -8
  64. package/tsconfig.node.json +0 -25
  65. package/vite.config.ts +0 -36
  66. package/vite.iife.config.ts +0 -52
@@ -1,97 +1,37 @@
1
- import { AlertQueue as k, TwitchUserMessageData as z, UserRole as I, classifyEvent as Q, getCacheKey as q, getTestAlertKey as H, getTestMessageKey as J, normalizeIncomingEvent as V, parseTier as X, testAlert as Y, testAlerts as Z, testMessage as _, testMessages as $, testOnWidgetLoadDetail as N } from "../root/index.js";
2
- import { useRef as l, useEffect as u } from "react";
3
- function o(e, t, c = []) {
4
- const i = l(t);
5
- i.current = t, u(() => {
6
- const r = (a) => i.current.call(window, a);
7
- return window.addEventListener(e, r), () => window.removeEventListener(e, r);
8
- }, [e, ...c]);
1
+ import { a as e, c as t, d as n, f as r, i, l as a, m as o, n as s, o as c, p as l, r as u, s as d, t as f, u as p } from "../root-BzhLLMHq.js";
2
+ import { useEffect as m, useRef as h } from "react";
3
+ //#region src/react/hooks/use-event-listener.ts
4
+ function g(e, t, n = []) {
5
+ let r = h(t);
6
+ r.current = t, m(() => {
7
+ let t = (e) => r.current.call(window, e);
8
+ return window.addEventListener(e, t), () => window.removeEventListener(e, t);
9
+ }, [e, ...n]);
9
10
  }
10
- const d = (e) => typeof e == "object" && e !== null && "listener" in e;
11
- function s(e) {
12
- return (t) => d(t) && e(t);
11
+ //#endregion
12
+ //#region src/root/guards/on-event-received.ts
13
+ var _ = (e) => typeof e == "object" && !!e && "listener" in e;
14
+ function v(e) {
15
+ return (t) => _(t) && e(t);
13
16
  }
14
- const v = s(
15
- (e) => e.listener === "message"
16
- ), g = s(
17
- (e) => e.listener === "follower-latest"
18
- ), f = s(
19
- (e) => e.listener === "subscriber-latest"
20
- ), D = s(
21
- (e) => e.listener === "cheer-latest"
22
- ), R = s(
23
- (e) => e.listener === "raid-latest"
24
- ), O = s(
25
- (e) => e.listener === "donation"
26
- ), b = s(
27
- (e) => e.listener === "delete-message"
28
- ), m = s(
29
- (e) => e.listener === "delete-messages"
30
- ), w = s(
31
- (e) => {
32
- var t;
33
- return e.listener === "event" && ((t = e.event) == null ? void 0 : t.type) === "communityGiftPurchase";
34
- }
35
- ), E = s(
36
- (e) => {
37
- var t;
38
- return e.listener === "event" && ((t = e.event) == null ? void 0 : t.type) === "subscriber";
39
- }
40
- ), M = s(
41
- (e) => {
42
- var t;
43
- return e.listener === "event:test" && ((t = e.event) == null ? void 0 : t.listener) === "widget-button";
44
- }
45
- );
46
- function n(e, t, c = []) {
47
- o(
48
- "onEventReceived",
49
- (i) => {
50
- e(i.detail) && t(i);
51
- },
52
- c
53
- );
17
+ var y = v((e) => e.listener === "message"), b = v((e) => e.listener === "follower-latest"), x = v((e) => e.listener === "subscriber-latest"), S = v((e) => e.listener === "cheer-latest"), C = v((e) => e.listener === "raid-latest"), w = v((e) => e.listener === "donation"), T = v((e) => e.listener === "delete-message"), E = v((e) => e.listener === "delete-messages"), D = v((e) => e.listener === "event" && e.event?.type === "communityGiftPurchase"), O = v((e) => e.listener === "event" && e.event?.type === "subscriber"), k = v((e) => e.listener === "event:test" && e.event?.listener === "widget-button");
18
+ //#endregion
19
+ //#region src/react/hooks/use-on-event-received.ts
20
+ function A(e, t, n = []) {
21
+ g("onEventReceived", (n) => {
22
+ e(n.detail) && t(n);
23
+ }, n);
54
24
  }
55
- function L(e, t = []) {
56
- o("onEventReceived", e, t);
25
+ function j(e, t = []) {
26
+ g("onEventReceived", e, t);
57
27
  }
58
- const y = (e, t) => n(v, e, t), p = y, T = (e, t) => n(M, e, t), C = (e, t) => n(g, e, t), W = (e, t) => n(w, e, t), A = (e, t) => n(f, e, t), G = (e, t) => n(E, e, t), S = (e, t) => n(D, e, t), K = (e, t) => n(R, e, t), P = (e, t) => n(O, e, t), x = (e, t) => n(b, e, t), B = (e, t) => n(m, e, t);
59
- function F(e, t = []) {
60
- o(
61
- "onWidgetLoad",
62
- e,
63
- t
64
- );
28
+ var M = (e, t) => A(y, e, t), N = M, P = (e, t) => A(k, e, t), F = (e, t) => A(b, e, t), I = (e, t) => A(D, e, t), L = (e, t) => A(x, e, t), R = (e, t) => A(O, e, t), z = (e, t) => A(S, e, t), B = (e, t) => A(C, e, t), V = (e, t) => A(w, e, t), H = (e, t) => A(T, e, t), U = (e, t) => A(E, e, t);
29
+ //#endregion
30
+ //#region src/react/hooks/use-on-widget-load.ts
31
+ function W(e, t = []) {
32
+ g("onWidgetLoad", e, t);
65
33
  }
66
- export {
67
- k as AlertQueue,
68
- z as TwitchUserMessageData,
69
- I as UserRole,
70
- Q as classifyEvent,
71
- q as getCacheKey,
72
- H as getTestAlertKey,
73
- J as getTestMessageKey,
74
- V as normalizeIncomingEvent,
75
- X as parseTier,
76
- Y as testAlert,
77
- Z as testAlerts,
78
- _ as testMessage,
79
- $ as testMessages,
80
- N as testOnWidgetLoadDetail,
81
- o as useEventListener,
82
- S as useOnCheerReceived,
83
- W as useOnCommunityGiftPurchaseReceived,
84
- x as useOnDeleteMessage,
85
- B as useOnDeleteMessages,
86
- P as useOnDonationReceived,
87
- L as useOnEventReceived,
88
- C as useOnFollowerReceived,
89
- p as useOnMessageReceived,
90
- K as useOnRaidReceived,
91
- A as useOnSubscriberLatestReceived,
92
- G as useOnSubscriberReceived,
93
- y as useOnTwitchMessageReceived,
94
- T as useOnWidgetButtonReceived,
95
- F as useOnWidgetLoad
96
- };
97
- //# sourceMappingURL=index.js.map
34
+ //#endregion
35
+ export { f as AlertQueue, s as TwitchUserMessageData, u as UserRole, r as classifyEvent, l as getCacheKey, i as getTestAlertKey, e as getTestMessageKey, n as normalizeIncomingEvent, o as parseTier, c as testAlert, a as testAlerts, d as testMessage, t as testMessages, p as testOnWidgetLoadDetail, g as useEventListener, z as useOnCheerReceived, I as useOnCommunityGiftPurchaseReceived, H as useOnDeleteMessage, U as useOnDeleteMessages, V as useOnDonationReceived, j as useOnEventReceived, F as useOnFollowerReceived, N as useOnMessageReceived, B as useOnRaidReceived, L as useOnSubscriberLatestReceived, R as useOnSubscriberReceived, M as useOnTwitchMessageReceived, P as useOnWidgetButtonReceived, W as useOnWidgetLoad };
36
+
37
+ //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../src/react/hooks/use-event-listener.ts","../../src/root/guards/on-event-received.ts","../../src/react/hooks/use-on-event-received.ts","../../src/react/hooks/use-on-widget-load.ts"],"sourcesContent":["import { type DependencyList, useEffect, useRef } from \"react\";\nimport type {\n\tWindowEventKey,\n\tWindowEventListener,\n} from \"../types/window-events.js\";\n\nexport function useEventListener<K extends WindowEventKey>(\n\teventName: K,\n\thandler: WindowEventListener<K>,\n\tdeps: DependencyList = [],\n): void {\n\tconst callbackRef = useRef<WindowEventListener<K>>(handler);\n\tcallbackRef.current = handler;\n\n\tuseEffect(() => {\n\t\tconst fn = (ev: WindowEventMap[K]) => callbackRef.current.call(window, ev);\n\t\twindow.addEventListener(eventName, fn);\n\t\treturn () => window.removeEventListener(eventName, fn);\n\t}, [eventName, ...deps]);\n}\n","import type {\n\tCheerDetail,\n\tCommunityGiftPurchaseDetail,\n\tDeleteMessageDetail,\n\tDeleteMessagesDetail,\n\tDonationDetail,\n\tFollowerDetail,\n\tMinimalEvent,\n\tRaidDetail,\n\tSubscriberDetail,\n\tSubscriberLatestDetail,\n\tTwitchMessageDetail,\n\tWidgetButtonDetail,\n} from \"@/root/types/on-event-received\";\n\nexport const isDetail = (d: unknown): d is MinimalEvent =>\n\ttypeof d === \"object\" && d !== null && \"listener\" in d;\n\nexport function createGuard<T extends MinimalEvent>(\n\tpredicate: (d: MinimalEvent) => boolean,\n) {\n\treturn (d: unknown): d is T => isDetail(d) && predicate(d);\n}\n\nexport const isTwitchMessageEvent = createGuard<TwitchMessageDetail>(\n\t(d) => d.listener === \"message\",\n);\nexport const isFollowerDetail = createGuard<FollowerDetail>(\n\t(d) => d.listener === \"follower-latest\",\n);\nexport const isSubscriberLatestDetail = createGuard<SubscriberLatestDetail>(\n\t(d) => d.listener === \"subscriber-latest\",\n);\nexport const isCheerDetail = createGuard<CheerDetail>(\n\t(d) => d.listener === \"cheer-latest\",\n);\nexport const isRaidDetail = createGuard<RaidDetail>(\n\t(d) => d.listener === \"raid-latest\",\n);\nexport const isDonationDetail = createGuard<DonationDetail>(\n\t(d) => d.listener === \"donation\",\n);\nexport const isDeleteMessageDetail = createGuard<DeleteMessageDetail>(\n\t(d) => d.listener === \"delete-message\",\n);\nexport const isDeleteMessagesDetail = createGuard<DeleteMessagesDetail>(\n\t(d) => d.listener === \"delete-messages\",\n);\nexport const isCommunityGiftPurchaseDetail =\n\tcreateGuard<CommunityGiftPurchaseDetail>(\n\t\t(d) => d.listener === \"event\" && d.event?.type === \"communityGiftPurchase\",\n\t);\nexport const isSubscriberDetail = createGuard<SubscriberDetail>(\n\t(d) => d.listener === \"event\" && d.event?.type === \"subscriber\",\n);\nexport const isWidgetButtonDetail = createGuard<WidgetButtonDetail>(\n\t(d) => d.listener === \"event:test\" && d.event?.listener === \"widget-button\",\n);\n","import type { DependencyList } from \"react\";\nimport {\n\tisCheerDetail,\n\tisCommunityGiftPurchaseDetail,\n\tisDeleteMessageDetail,\n\tisDeleteMessagesDetail,\n\tisDonationDetail,\n\tisFollowerDetail,\n\tisRaidDetail,\n\tisSubscriberDetail,\n\tisSubscriberLatestDetail,\n\tisTwitchMessageEvent,\n\tisWidgetButtonDetail,\n} from \"@/root/guards\";\nimport type {\n\tCheerDetail,\n\tCommunityGiftPurchaseDetail,\n\tDeleteMessageDetail,\n\tDeleteMessagesDetail,\n\tDonationDetail,\n\tFollowerDetail,\n\tMinimalEvent,\n\tRaidDetail,\n\tSubscriberDetail,\n\tSubscriberLatestDetail,\n\tTwitchMessageDetail,\n\tWidgetButtonDetail,\n} from \"@/root/types/on-event-received\";\nimport type { WindowEventListener } from \"../types/window-events\";\nimport { useEventListener } from \"./use-event-listener\";\n\nfunction useOnEvent<T extends MinimalEvent>(\n\tguard: (d: unknown) => d is T,\n\thandler: (ev: CustomEvent<T>) => void,\n\tdeps: DependencyList = [],\n) {\n\tuseEventListener(\n\t\t\"onEventReceived\",\n\t\t(ev) => {\n\t\t\tif (guard(ev.detail)) handler(ev as CustomEvent<T>);\n\t\t},\n\t\tdeps,\n\t);\n}\n\nexport function useOnEventReceived(\n\thandler: WindowEventListener<\"onEventReceived\">,\n\tdeps: DependencyList = [],\n): void {\n\tuseEventListener(\"onEventReceived\", handler, deps);\n}\n\nexport const useOnTwitchMessageReceived = (\n\thandler: (ev: CustomEvent<TwitchMessageDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isTwitchMessageEvent, handler, deps);\n\nexport const useOnMessageReceived = useOnTwitchMessageReceived;\n\nexport const useOnWidgetButtonReceived = (\n\thandler: (ev: CustomEvent<WidgetButtonDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isWidgetButtonDetail, handler, deps);\n\nexport const useOnFollowerReceived = (\n\thandler: (ev: CustomEvent<FollowerDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isFollowerDetail, handler, deps);\n\nexport const useOnCommunityGiftPurchaseReceived = (\n\thandler: (ev: CustomEvent<CommunityGiftPurchaseDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isCommunityGiftPurchaseDetail, handler, deps);\n\nexport const useOnSubscriberLatestReceived = (\n\thandler: (ev: CustomEvent<SubscriberLatestDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isSubscriberLatestDetail, handler, deps);\n\nexport const useOnSubscriberReceived = (\n\thandler: (ev: CustomEvent<SubscriberDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isSubscriberDetail, handler, deps);\n\nexport const useOnCheerReceived = (\n\thandler: (ev: CustomEvent<CheerDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isCheerDetail, handler, deps);\n\nexport const useOnRaidReceived = (\n\thandler: (ev: CustomEvent<RaidDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isRaidDetail, handler, deps);\n\nexport const useOnDonationReceived = (\n\thandler: (ev: CustomEvent<DonationDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isDonationDetail, handler, deps);\n\nexport const useOnDeleteMessage = (\n\thandler: (ev: CustomEvent<DeleteMessageDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isDeleteMessageDetail, handler, deps);\n\nexport const useOnDeleteMessages = (\n\thandler: (ev: CustomEvent<DeleteMessagesDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isDeleteMessagesDetail, handler, deps);\n","import type { DependencyList } from \"react\";\nimport type { WindowEventListener } from \"@/react/types/window-events.js\";\nimport type { OnWidgetLoadEventDetails } from \"@/root/types/on-widget-load\";\nimport { useEventListener } from \"./use-event-listener.js\";\n\nexport function useOnWidgetLoad<FieldData = unknown>(\n\thandler: (ev: CustomEvent<OnWidgetLoadEventDetails<FieldData>>) => void,\n\tdeps: DependencyList = [],\n): void {\n\tuseEventListener(\n\t\t\"onWidgetLoad\",\n\t\thandler as WindowEventListener<\"onWidgetLoad\">,\n\t\tdeps,\n\t);\n}\n"],"names":["useEventListener","eventName","handler","deps","callbackRef","useRef","useEffect","fn","ev","isDetail","d","createGuard","predicate","isTwitchMessageEvent","isFollowerDetail","isSubscriberLatestDetail","isCheerDetail","isRaidDetail","isDonationDetail","isDeleteMessageDetail","isDeleteMessagesDetail","isCommunityGiftPurchaseDetail","_a","isSubscriberDetail","isWidgetButtonDetail","useOnEvent","guard","useOnEventReceived","useOnTwitchMessageReceived","useOnMessageReceived","useOnWidgetButtonReceived","useOnFollowerReceived","useOnCommunityGiftPurchaseReceived","useOnSubscriberLatestReceived","useOnSubscriberReceived","useOnCheerReceived","useOnRaidReceived","useOnDonationReceived","useOnDeleteMessage","useOnDeleteMessages","useOnWidgetLoad"],"mappings":";;AAMO,SAASA,EACfC,GACAC,GACAC,IAAuB,CAAA,GAChB;AACP,QAAMC,IAAcC,EAA+BH,CAAO;AAC1D,EAAAE,EAAY,UAAUF,GAEtBI,EAAU,MAAM;AACf,UAAMC,IAAK,CAACC,MAA0BJ,EAAY,QAAQ,KAAK,QAAQI,CAAE;AACzE,kBAAO,iBAAiBP,GAAWM,CAAE,GAC9B,MAAM,OAAO,oBAAoBN,GAAWM,CAAE;AAAA,EACtD,GAAG,CAACN,GAAW,GAAGE,CAAI,CAAC;AACxB;ACJO,MAAMM,IAAW,CAACC,MACxB,OAAOA,KAAM,YAAYA,MAAM,QAAQ,cAAcA;AAE/C,SAASC,EACfC,GACC;AACD,SAAO,CAACF,MAAuBD,EAASC,CAAC,KAAKE,EAAUF,CAAC;AAC1D;AAEO,MAAMG,IAAuBF;AAAA,EACnC,CAACD,MAAMA,EAAE,aAAa;AACvB,GACaI,IAAmBH;AAAA,EAC/B,CAACD,MAAMA,EAAE,aAAa;AACvB,GACaK,IAA2BJ;AAAA,EACvC,CAACD,MAAMA,EAAE,aAAa;AACvB,GACaM,IAAgBL;AAAA,EAC5B,CAACD,MAAMA,EAAE,aAAa;AACvB,GACaO,IAAeN;AAAA,EAC3B,CAACD,MAAMA,EAAE,aAAa;AACvB,GACaQ,IAAmBP;AAAA,EAC/B,CAACD,MAAMA,EAAE,aAAa;AACvB,GACaS,IAAwBR;AAAA,EACpC,CAACD,MAAMA,EAAE,aAAa;AACvB,GACaU,IAAyBT;AAAA,EACrC,CAACD,MAAMA,EAAE,aAAa;AACvB,GACaW,IACZV;AAAA,EACC,CAACD,MAAA;;AAAM,WAAAA,EAAE,aAAa,aAAWY,IAAAZ,EAAE,UAAF,gBAAAY,EAAS,UAAS;AAAA;AACpD,GACYC,IAAqBZ;AAAA,EACjC,CAACD,MAAA;;AAAM,WAAAA,EAAE,aAAa,aAAWY,IAAAZ,EAAE,UAAF,gBAAAY,EAAS,UAAS;AAAA;AACpD,GACaE,IAAuBb;AAAA,EACnC,CAACD,MAAA;;AAAM,WAAAA,EAAE,aAAa,kBAAgBY,IAAAZ,EAAE,UAAF,gBAAAY,EAAS,cAAa;AAAA;AAC7D;AC1BA,SAASG,EACRC,GACAxB,GACAC,IAAuB,CAAA,GACtB;AACD,EAAAH;AAAA,IACC;AAAA,IACA,CAACQ,MAAO;AACP,MAAIkB,EAAMlB,EAAG,MAAM,OAAWA,CAAoB;AAAA,IACnD;AAAA,IACAL;AAAA,EAAA;AAEF;AAEO,SAASwB,EACfzB,GACAC,IAAuB,IAChB;AACP,EAAAH,EAAiB,mBAAmBE,GAASC,CAAI;AAClD;AAEO,MAAMyB,IAA6B,CACzC1B,GACAC,MACIsB,EAAWZ,GAAsBX,GAASC,CAAI,GAEtC0B,IAAuBD,GAEvBE,IAA4B,CACxC5B,GACAC,MACIsB,EAAWD,GAAsBtB,GAASC,CAAI,GAEtC4B,IAAwB,CACpC7B,GACAC,MACIsB,EAAWX,GAAkBZ,GAASC,CAAI,GAElC6B,IAAqC,CACjD9B,GACAC,MACIsB,EAAWJ,GAA+BnB,GAASC,CAAI,GAE/C8B,IAAgC,CAC5C/B,GACAC,MACIsB,EAAWV,GAA0Bb,GAASC,CAAI,GAE1C+B,IAA0B,CACtChC,GACAC,MACIsB,EAAWF,GAAoBrB,GAASC,CAAI,GAEpCgC,IAAqB,CACjCjC,GACAC,MACIsB,EAAWT,GAAed,GAASC,CAAI,GAE/BiC,IAAoB,CAChClC,GACAC,MACIsB,EAAWR,GAAcf,GAASC,CAAI,GAE9BkC,IAAwB,CACpCnC,GACAC,MACIsB,EAAWP,GAAkBhB,GAASC,CAAI,GAElCmC,IAAqB,CACjCpC,GACAC,MACIsB,EAAWN,GAAuBjB,GAASC,CAAI,GAEvCoC,IAAsB,CAClCrC,GACAC,MACIsB,EAAWL,GAAwBlB,GAASC,CAAI;ACtG9C,SAASqC,EACftC,GACAC,IAAuB,IAChB;AACP,EAAAH;AAAA,IACC;AAAA,IACAE;AAAA,IACAC;AAAA,EAAA;AAEF;"}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../../src/react/hooks/use-event-listener.ts","../../src/root/guards/on-event-received.ts","../../src/react/hooks/use-on-event-received.ts","../../src/react/hooks/use-on-widget-load.ts"],"sourcesContent":["import { type DependencyList, useEffect, useRef } from \"react\";\nimport type {\n\tWindowEventKey,\n\tWindowEventListener,\n} from \"../types/window-events.js\";\n\nexport function useEventListener<K extends WindowEventKey>(\n\teventName: K,\n\thandler: WindowEventListener<K>,\n\tdeps: DependencyList = [],\n): void {\n\tconst callbackRef = useRef<WindowEventListener<K>>(handler);\n\tcallbackRef.current = handler;\n\n\tuseEffect(() => {\n\t\tconst fn = (ev: WindowEventMap[K]) => callbackRef.current.call(window, ev);\n\t\twindow.addEventListener(eventName, fn);\n\t\treturn () => window.removeEventListener(eventName, fn);\n\t}, [eventName, ...deps]);\n}\n","import type {\n\tCheerDetail,\n\tCommunityGiftPurchaseDetail,\n\tDeleteMessageDetail,\n\tDeleteMessagesDetail,\n\tDonationDetail,\n\tFollowerDetail,\n\tMinimalEvent,\n\tRaidDetail,\n\tSubscriberDetail,\n\tSubscriberLatestDetail,\n\tTwitchMessageDetail,\n\tWidgetButtonDetail,\n} from \"@/root/types/on-event-received\";\n\nexport const isDetail = (d: unknown): d is MinimalEvent =>\n\ttypeof d === \"object\" && d !== null && \"listener\" in d;\n\nexport function createGuard<T extends MinimalEvent>(\n\tpredicate: (d: MinimalEvent) => boolean,\n) {\n\treturn (d: unknown): d is T => isDetail(d) && predicate(d);\n}\n\nexport const isTwitchMessageEvent = createGuard<TwitchMessageDetail>(\n\t(d) => d.listener === \"message\",\n);\nexport const isFollowerDetail = createGuard<FollowerDetail>(\n\t(d) => d.listener === \"follower-latest\",\n);\nexport const isSubscriberLatestDetail = createGuard<SubscriberLatestDetail>(\n\t(d) => d.listener === \"subscriber-latest\",\n);\nexport const isCheerDetail = createGuard<CheerDetail>(\n\t(d) => d.listener === \"cheer-latest\",\n);\nexport const isRaidDetail = createGuard<RaidDetail>(\n\t(d) => d.listener === \"raid-latest\",\n);\nexport const isDonationDetail = createGuard<DonationDetail>(\n\t(d) => d.listener === \"donation\",\n);\nexport const isDeleteMessageDetail = createGuard<DeleteMessageDetail>(\n\t(d) => d.listener === \"delete-message\",\n);\nexport const isDeleteMessagesDetail = createGuard<DeleteMessagesDetail>(\n\t(d) => d.listener === \"delete-messages\",\n);\nexport const isCommunityGiftPurchaseDetail =\n\tcreateGuard<CommunityGiftPurchaseDetail>(\n\t\t(d) => d.listener === \"event\" && d.event?.type === \"communityGiftPurchase\",\n\t);\nexport const isSubscriberDetail = createGuard<SubscriberDetail>(\n\t(d) => d.listener === \"event\" && d.event?.type === \"subscriber\",\n);\nexport const isWidgetButtonDetail = createGuard<WidgetButtonDetail>(\n\t(d) => d.listener === \"event:test\" && d.event?.listener === \"widget-button\",\n);\n","import type { DependencyList } from \"react\";\nimport {\n\tisCheerDetail,\n\tisCommunityGiftPurchaseDetail,\n\tisDeleteMessageDetail,\n\tisDeleteMessagesDetail,\n\tisDonationDetail,\n\tisFollowerDetail,\n\tisRaidDetail,\n\tisSubscriberDetail,\n\tisSubscriberLatestDetail,\n\tisTwitchMessageEvent,\n\tisWidgetButtonDetail,\n} from \"@/root/guards\";\nimport type {\n\tCheerDetail,\n\tCommunityGiftPurchaseDetail,\n\tDeleteMessageDetail,\n\tDeleteMessagesDetail,\n\tDonationDetail,\n\tFollowerDetail,\n\tMinimalEvent,\n\tRaidDetail,\n\tSubscriberDetail,\n\tSubscriberLatestDetail,\n\tTwitchMessageDetail,\n\tWidgetButtonDetail,\n} from \"@/root/types/on-event-received\";\nimport type { WindowEventListener } from \"../types/window-events\";\nimport { useEventListener } from \"./use-event-listener\";\n\nfunction useOnEvent<T extends MinimalEvent>(\n\tguard: (d: unknown) => d is T,\n\thandler: (ev: CustomEvent<T>) => void,\n\tdeps: DependencyList = [],\n) {\n\tuseEventListener(\n\t\t\"onEventReceived\",\n\t\t(ev) => {\n\t\t\tif (guard(ev.detail)) handler(ev as CustomEvent<T>);\n\t\t},\n\t\tdeps,\n\t);\n}\n\nexport function useOnEventReceived(\n\thandler: WindowEventListener<\"onEventReceived\">,\n\tdeps: DependencyList = [],\n): void {\n\tuseEventListener(\"onEventReceived\", handler, deps);\n}\n\nexport const useOnTwitchMessageReceived = (\n\thandler: (ev: CustomEvent<TwitchMessageDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isTwitchMessageEvent, handler, deps);\n\nexport const useOnMessageReceived = useOnTwitchMessageReceived;\n\nexport const useOnWidgetButtonReceived = (\n\thandler: (ev: CustomEvent<WidgetButtonDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isWidgetButtonDetail, handler, deps);\n\nexport const useOnFollowerReceived = (\n\thandler: (ev: CustomEvent<FollowerDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isFollowerDetail, handler, deps);\n\nexport const useOnCommunityGiftPurchaseReceived = (\n\thandler: (ev: CustomEvent<CommunityGiftPurchaseDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isCommunityGiftPurchaseDetail, handler, deps);\n\nexport const useOnSubscriberLatestReceived = (\n\thandler: (ev: CustomEvent<SubscriberLatestDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isSubscriberLatestDetail, handler, deps);\n\nexport const useOnSubscriberReceived = (\n\thandler: (ev: CustomEvent<SubscriberDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isSubscriberDetail, handler, deps);\n\nexport const useOnCheerReceived = (\n\thandler: (ev: CustomEvent<CheerDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isCheerDetail, handler, deps);\n\nexport const useOnRaidReceived = (\n\thandler: (ev: CustomEvent<RaidDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isRaidDetail, handler, deps);\n\nexport const useOnDonationReceived = (\n\thandler: (ev: CustomEvent<DonationDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isDonationDetail, handler, deps);\n\nexport const useOnDeleteMessage = (\n\thandler: (ev: CustomEvent<DeleteMessageDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isDeleteMessageDetail, handler, deps);\n\nexport const useOnDeleteMessages = (\n\thandler: (ev: CustomEvent<DeleteMessagesDetail>) => void,\n\tdeps?: DependencyList,\n) => useOnEvent(isDeleteMessagesDetail, handler, deps);\n","import type { DependencyList } from \"react\";\nimport type { WindowEventListener } from \"@/react/types/window-events.js\";\nimport type { OnWidgetLoadEventDetails } from \"@/root/types/on-widget-load\";\nimport { useEventListener } from \"./use-event-listener.js\";\n\nexport function useOnWidgetLoad<FieldData = unknown>(\n\thandler: (ev: CustomEvent<OnWidgetLoadEventDetails<FieldData>>) => void,\n\tdeps: DependencyList = [],\n): void {\n\tuseEventListener(\n\t\t\"onWidgetLoad\",\n\t\thandler as WindowEventListener<\"onWidgetLoad\">,\n\t\tdeps,\n\t);\n}\n"],"mappings":";;;AAMA,SAAgB,EACf,GACA,GACA,IAAuB,EAAE,EAClB;CACP,IAAM,IAAc,EAA+B,EAAQ;AAG3D,CAFA,EAAY,UAAU,GAEtB,QAAgB;EACf,IAAM,KAAM,MAA0B,EAAY,QAAQ,KAAK,QAAQ,EAAG;AAE1E,SADA,OAAO,iBAAiB,GAAW,EAAG,QACzB,OAAO,oBAAoB,GAAW,EAAG;IACpD,CAAC,GAAW,GAAG,EAAK,CAAC;;;;ACHzB,IAAa,KAAY,MACxB,OAAO,KAAM,cAAY,KAAc,cAAc;AAEtD,SAAgB,EACf,GACC;AACD,SAAQ,MAAuB,EAAS,EAAE,IAAI,EAAU,EAAE;;AAG3D,IAAa,IAAuB,GAClC,MAAM,EAAE,aAAa,UACtB,EACY,IAAmB,GAC9B,MAAM,EAAE,aAAa,kBACtB,EACY,IAA2B,GACtC,MAAM,EAAE,aAAa,oBACtB,EACY,IAAgB,GAC3B,MAAM,EAAE,aAAa,eACtB,EACY,IAAe,GAC1B,MAAM,EAAE,aAAa,cACtB,EACY,IAAmB,GAC9B,MAAM,EAAE,aAAa,WACtB,EACY,IAAwB,GACnC,MAAM,EAAE,aAAa,iBACtB,EACY,IAAyB,GACpC,MAAM,EAAE,aAAa,kBACtB,EACY,IACZ,GACE,MAAM,EAAE,aAAa,WAAW,EAAE,OAAO,SAAS,wBACnD,EACW,IAAqB,GAChC,MAAM,EAAE,aAAa,WAAW,EAAE,OAAO,SAAS,aACnD,EACY,IAAuB,GAClC,MAAM,EAAE,aAAa,gBAAgB,EAAE,OAAO,aAAa,gBAC5D;;;AC1BD,SAAS,EACR,GACA,GACA,IAAuB,EAAE,EACxB;AACD,GACC,oBACC,MAAO;AACP,EAAI,EAAM,EAAG,OAAO,IAAE,EAAQ,EAAqB;IAEpD,EACA;;AAGF,SAAgB,EACf,GACA,IAAuB,EAAE,EAClB;AACP,GAAiB,mBAAmB,GAAS,EAAK;;AAGnD,IAAa,KACZ,GACA,MACI,EAAW,GAAsB,GAAS,EAAK,EAEvC,IAAuB,GAEvB,KACZ,GACA,MACI,EAAW,GAAsB,GAAS,EAAK,EAEvC,KACZ,GACA,MACI,EAAW,GAAkB,GAAS,EAAK,EAEnC,KACZ,GACA,MACI,EAAW,GAA+B,GAAS,EAAK,EAEhD,KACZ,GACA,MACI,EAAW,GAA0B,GAAS,EAAK,EAE3C,KACZ,GACA,MACI,EAAW,GAAoB,GAAS,EAAK,EAErC,KACZ,GACA,MACI,EAAW,GAAe,GAAS,EAAK,EAEhC,KACZ,GACA,MACI,EAAW,GAAc,GAAS,EAAK,EAE/B,KACZ,GACA,MACI,EAAW,GAAkB,GAAS,EAAK,EAEnC,KACZ,GACA,MACI,EAAW,GAAuB,GAAS,EAAK,EAExC,KACZ,GACA,MACI,EAAW,GAAwB,GAAS,EAAK;;;ACtGtD,SAAgB,EACf,GACA,IAAuB,EAAE,EAClB;AACP,GACC,gBACA,GACA,EACA"}
@@ -1,4 +1,4 @@
1
- import type { CheerDetail, CommunityGiftPurchaseDetail, DeleteMessageDetail, DeleteMessagesDetail, DonationDetail, FollowerDetail, MinimalEvent, RaidDetail, SubscriberDetail, SubscriberLatestDetail, TwitchMessageDetail, WidgetButtonDetail } from "@/root/types/on-event-received";
1
+ import type { CheerDetail, CommunityGiftPurchaseDetail, DeleteMessageDetail, DeleteMessagesDetail, DonationDetail, FollowerDetail, MinimalEvent, RaidDetail, SubscriberDetail, SubscriberLatestDetail, TwitchMessageDetail, WidgetButtonDetail } from "../../root/types/on-event-received";
2
2
  export declare const isDetail: (d: unknown) => d is MinimalEvent;
3
3
  export declare function createGuard<T extends MinimalEvent>(predicate: (d: MinimalEvent) => boolean): (d: unknown) => d is T;
4
4
  export declare const isTwitchMessageEvent: (d: unknown) => d is TwitchMessageDetail;
@@ -1,2 +1,2 @@
1
- var P=Object.defineProperty;var W=(l,y,v)=>y in l?P(l,y,{enumerable:!0,configurable:!0,writable:!0,value:v}):l[y]=v;var x=(l,y,v)=>W(l,typeof y!="symbol"?y+"":y,v);(function(l){"use strict";function y(t){if(t==null)return{tier:0,tierText:""};const a=typeof t=="string"?t:String(t),e=parseInt(a,10);return Number.isNaN(e)?{tier:0,tierText:a}:{tier:e>=3e3?3:e>=2e3?2:e>=1e3?1:0,tierText:a}}function v(t){const a=t.listener,e=t.event??{},r=e.activityGroup,s=e.activityId??e._id;return r?String(r):s?String(s):a==="subscriber-latest"&&e.bulkGifted?"sl-bulk-"+(e.sender??"")+"-"+(e.amount??"")+"-"+(e.tier??"")+"-"+(e._id??""):`sl-${e._id??e.activityId??""}`}function G(t){var o;const a=t.listener,e=t.event??{},r=e.data??e,s=y(r.tier??e.tier);if(a==="event"){if(e.type==="communityGiftPurchase"){const n=r.username&&String(r.username).toLowerCase()==="anonymous"||r.sender==="Anonymous";return{type:n?"community-gift-anonymous":"community-gift",tier:s.tier,tierText:s.tierText,totalAmount:parseInt(String(r.amount),10)||1,recipients:[],sender:n?void 0:r.sender??r.displayName??r.username,anonymousDisplayName:n?r.displayName??"Anonymous":void 0}}if(e.type==="subscriber"){const n=r.gifted===!0,p=r.sender,u=parseInt(String(r.amount),10)||1,d=r.username??r.displayName,c=e.activityGroup;if(p==="Anonymous"&&c)return{type:"community-gift-anonymous",_role:"recipient",activityGroup:c,recipient:d??r.displayName,tier:s.tier,tierText:s.tierText};if(n&&p&&p!=="Anonymous"){if(!(r.communityGifted===!0||c!=null&&c!=="")){const m=String(r.message??"").indexOf("first Gift Sub")!==-1;return{type:"solo-sub-to-someone",sender:p,recipient:d??r.displayName,tier:s.tier,tierText:s.tierText,firstGiftInChannel:m}}return{type:"community-gift",_role:"recipient",activityGroup:c??"",recipient:d??r.displayName,tier:s.tier,tierText:s.tierText}}return!n&&u>1?{type:"sub-renewal",name:d??r.displayName,months:u,tier:s.tier,tierText:s.tierText}:!n&&u===1?{type:"self-sub",name:d??r.displayName,tier:s.tier,tierText:s.tierText}:c?{type:"community-gift",_role:"recipient",activityGroup:c,recipient:d??r.displayName,tier:s.tier,tierText:s.tierText}:{type:"unknown",detail:t}}return{type:"unknown",detail:t}}if(a==="subscriber-latest"){const n=e.bulkGifted===!0,p=e.sender,u=e.name,d=parseInt(String(e.amount),10)||1,c=e.gifted===!0,i=e.isCommunityGift===!0||e.communityGifted===!0;if(n&&p==="Anonymous")return{type:"community-gift-anonymous",tier:s.tier,tierText:s.tierText,totalAmount:d,recipients:[]};if(n&&p)return{type:"community-gift",sender:p,tier:s.tier,tierText:s.tierText,totalAmount:d,recipients:[]};if(c&&!i&&p){const m=String(e.message??"").indexOf("first Gift Sub")!==-1;return{type:"solo-sub-to-someone",sender:p,recipient:u??"",tier:s.tier,tierText:s.tierText,firstGiftInChannel:m}}return!c&&d>1?{type:"sub-renewal",name:u??"",months:d,tier:s.tier,tierText:s.tierText}:!c&&d===1&&(p==null||u===p)?{type:"self-sub",name:u??"",tier:s.tier,tierText:s.tierText}:{type:"unknown",detail:t}}if(a==="follower-latest")return{type:"follow",name:e.name??""};if(a==="cheer-latest"){const n=parseInt(String(e.amount),10)||0;return{type:"cheer",name:e.name??"",amount:n}}if(a==="raid-latest"){const n=parseInt(String(e.amount),10)||0;return{type:"raid",name:e.name??"",viewers:n}}if(a==="donation"){const n=(o=t.event)==null?void 0:o.data;return{type:"donation",amount:(n==null?void 0:n.amount_main)??(n==null?void 0:n.amount)??0,currency:n==null?void 0:n.currency,username:n==null?void 0:n.username,message:n==null?void 0:n.message,billingSystem:n==null?void 0:n.billing_system,id:n==null?void 0:n.id}}return{type:"unknown",detail:t}}const R=2500,b={},h={};function E(t,a){if(!t)return null;if(typeof t._has=="function"&&typeof t._set=="function")return t;const e=t[a];return e&&typeof e._has=="function"?e:null}function C(t,a,e,r){const s=E(e,a.type);s!=null&&s._has(t)||(s&&s._set(t,!0),r(a))}function D(t,a,e,r){const s=b[t];if(!s)return;delete b[t],h[t]&&(clearTimeout(h[t]),delete h[t]);const o=s.purchase,n=s.subscribers??[],p=s.type,u=s.tier,d=s.tierText,c=s.totalAmount??n.length,i=n.map(f=>f.recipient??f.username??f.name).filter(Boolean),m=n[0],B=m==null?void 0:m.sender,w=(o==null?void 0:o.sender)??s.sender??B;p==="community-gift"&&r&&w===r||(p==="community-gift-anonymous"?C(t,{type:"community-gift-anonymous",tier:u,tierText:d,totalAmount:c,recipients:i,anonymousDisplayName:o==null?void 0:o.anonymousDisplayName},a,e):C(t,{type:"community-gift",sender:w,tier:u,tierText:d,totalAmount:c,recipients:i},a,e))}function F(t,a,e){const r=a==null?void 0:a.cacheSubs,s=(a==null?void 0:a.broadcasterLogin)??"",o=G(t);if(!o){e(null);return}const n=E(r,o.type),p=v(t),u=t.event??{},d=u.data??u;if(o._role==="recipient"){const c=o,i=c.activityGroup??p;b[i]||(b[i]={type:c.type,subscribers:[],tier:c.tier,tierText:c.tierText,totalAmount:0}),h[i]&&clearTimeout(h[i]),h[i]=setTimeout(()=>{D(i,r,e,s)},R),b[i].subscribers.push({recipient:c.recipient,username:d.username,name:d.displayName,sender:d.sender}),b[i].totalAmount===0&&(b[i].totalAmount=1);return}if(o.type==="community-gift-anonymous"||o.type==="community-gift"){if(t.listener==="event"&&u.type==="communityGiftPurchase"){const i=u.activityGroup??(d==null?void 0:d.activityGroup)??p,m=o;b[i]?(b[i].purchase=m,b[i].tier=m.tier,b[i].tierText=m.tierText,b[i].totalAmount=m.totalAmount??b[i].totalAmount,b[i].sender=m.sender,h[i]&&clearTimeout(h[i]),h[i]=setTimeout(()=>{D(i,r,e,s)},R)):(b[i]={type:m.type,purchase:m,subscribers:[],tier:m.tier,tierText:m.tierText,totalAmount:Number(m.totalAmount)||0,sender:m.sender},h[i]=setTimeout(()=>{D(i,r,e,s)},R));return}if(t.listener==="subscriber-latest"){const i=o;if(o.type==="community-gift"&&s&&i.sender===s){e(null);return}return}return}if(o.type==="self-sub"||o.type==="solo-sub-to-someone"||o.type==="sub-renewal"){if(n!=null&&n._has(p)){e(null);return}n&&n._set(p,!0);const c=o;if(o.type==="solo-sub-to-someone"&&s&&c.sender===s){e(null);return}e(o)}}const M={session:{data:{"follower-latest":{name:"imacanadiannn"},"follower-session":{count:0},"follower-week":{count:0},"follower-month":{count:0},"follower-goal":{amount:137},"follower-total":{count:118,activityId:"",sessionTop:!1},"subscriber-latest":{name:"",amount:0,tier:"",message:""},"subscriber-new-latest":{name:"",amount:0,message:""},"subscriber-resub-latest":{name:"",amount:0,message:""},"subscriber-gifted-latest":{name:"",amount:0,message:"",tier:"",sender:""},"subscriber-session":{count:0},"subscriber-new-session":{count:0},"subscriber-resub-session":{count:0},"subscriber-gifted-session":{count:0},"subscriber-week":{count:0},"subscriber-month":{count:0},"subscriber-goal":{amount:0},"subscriber-total":{count:0,activityId:"",sessionTop:!1},"subscriber-points":{amount:0,activityId:"",sessionTop:!1},"subscriber-alltime-gifter":{name:"",amount:0},"host-latest":{name:"",amount:0},"raid-latest":{name:"agnascor2",amount:6},"cheer-session":{amount:0},"cheer-week":{amount:0},"cheer-month":{amount:0},"cheer-total":{amount:0},"cheer-count":{count:0},"cheer-goal":{amount:0},"cheer-latest":{name:"",amount:0},"cheer-session-top-donation":{amount:0,name:""},"cheer-weekly-top-donation":{amount:0,name:""},"cheer-monthly-top-donation":{amount:0,name:""},"cheer-alltime-top-donation":{amount:0,name:""},"cheer-session-top-donator":{amount:0,name:""},"cheer-weekly-top-donator":{amount:0,name:""},"cheer-monthly-top-donator":{amount:0,name:""},"cheer-alltime-top-donator":{amount:0,name:""},"tip-latest":{name:"",amount:0},"tip-session-top-donation":{amount:0,name:""},"tip-weekly-top-donation":{name:"",amount:0},"tip-monthly-top-donation":{name:"",amount:0},"tip-alltime-top-donation":{name:"",amount:0},"tip-session-top-donator":{amount:0,name:""},"tip-weekly-top-donator":{name:"",amount:0},"tip-monthly-top-donator":{name:"",amount:0},"tip-alltime-top-donator":{name:"",amount:0},"tip-session":{amount:0},"tip-week":{amount:0},"tip-month":{amount:0},"tip-total":{amount:0},"tip-count":{count:0},"tip-goal":{amount:0},"merch-goal-orders":{amount:0},"merch-goal-items":{amount:0},"merch-goal-total":{amount:0},"merch-latest":{name:"",amount:0,items:[]},"charityCampaignDonation-latest":{name:"",amount:0},"charityCampaignDonation-weekly-top-donation":{name:"",amount:0},"charityCampaignDonation-monthly-top-donation":{name:"",amount:0},"charityCampaignDonation-alltime-top-donation":{name:"",amount:0},"charityCampaignDonation-weekly-top-donator":{name:"",amount:0},"charityCampaignDonation-monthly-top-donator":{name:"",amount:0},"charityCampaignDonation-alltime-top-donator":{name:"",amount:0},"cheerPurchase-latest":{name:"",amount:0},"cheerPurchase-weekly-top-donation":{name:"",amount:0},"cheerPurchase-monthly-top-donation":{name:"",amount:0},"cheerPurchase-alltime-top-donation":{name:"",amount:0},"cheerPurchase-weekly-top-donator":{name:"",amount:0},"cheerPurchase-monthly-top-donator":{name:"",amount:0},"cheerPurchase-alltime-top-donator":{name:"",amount:0},"superchat-latest":{name:"",amount:0},"superchat-weekly-top-donation":{name:"",amount:0},"superchat-monthly-top-donation":{name:"",amount:0},"superchat-alltime-top-donation":{name:"",amount:0},"superchat-weekly-top-donator":{name:"",amount:0},"superchat-monthly-top-donator":{name:"",amount:0},"superchat-alltime-top-donator":{name:"",amount:0},"superchat-session":{amount:0},"superchat-week":{amount:0},"superchat-month":{amount:0},"superchat-total":{amount:0},"superchat-count":{count:0},"superchat-goal":{amount:0},"purchase-latest":{name:"",amount:0,avatar:"",message:"",items:[]},"follower-recent":[{name:"imacanadiannn",createdAt:"2026-01-13T01:53:50.296Z",type:"follower"},{name:"piwo143",createdAt:"2026-01-13T01:51:39.472Z",type:"follower"},{name:"latvan_",createdAt:"2026-01-12T23:54:29.235Z",type:"follower"},{name:"wheinwait",createdAt:"2026-01-12T23:11:28.946Z",type:"follower"},{name:"agnascor2",createdAt:"2026-01-12T23:11:14.880Z",type:"follower"},{name:"sunlitetuts",createdAt:"2026-01-12T21:03:59.207Z",type:"follower"},{name:"ayanamya",createdAt:"2026-01-12T20:00:55.509Z",type:"follower"},{name:"hopeless28",createdAt:"2026-01-12T18:35:21.731Z",type:"follower"},{name:"kakoytoclown",createdAt:"2026-01-11T18:39:36.843Z",type:"follower"},{name:"dababe__jq1",createdAt:"2024-10-10T23:27:49.699Z",type:"follower"},{name:"jjjllkmf",createdAt:"2024-05-05T09:44:16.287Z",type:"follower"},{name:"d4c_valintine",createdAt:"2024-05-03T15:13:28.365Z",type:"follower"},{name:"angelbliss_",createdAt:"2024-04-30T20:07:23.132Z",type:"follower"},{name:"o1zich",createdAt:"2024-04-22T16:23:26.139Z",type:"follower"},{name:"nearbuziky",createdAt:"2024-04-19T19:21:27.569Z",type:"follower"},{name:"samirkasamsa",createdAt:"2024-04-19T17:06:38.963Z",type:"follower"},{name:"flip1mip",createdAt:"2024-04-19T17:06:18.276Z",type:"follower"},{name:"valerie_solo",createdAt:"2024-04-19T17:06:07.473Z",type:"follower"},{name:"sxaelence",createdAt:"2024-04-19T07:06:46.330Z",type:"follower"},{name:"avokadik99",createdAt:"2024-04-17T16:11:29.604Z",type:"follower"},{name:"blackvoronstream",createdAt:"2024-04-16T21:29:33.306Z",type:"follower"},{name:"baldejniyy",createdAt:"2024-04-16T21:29:09.647Z",type:"follower"},{name:"p3ch4n_ka",createdAt:"2024-04-16T16:37:31.841Z",type:"follower"},{name:"kakosik_bee",createdAt:"2024-04-16T15:56:27.435Z",type:"follower"},{name:"hikotoru",createdAt:"2024-04-16T15:13:25.226Z",type:"follower"}],"subscriber-recent":[],"host-recent":[],"raid-recent":[{name:"agnascor2",amount:6,createdAt:"2026-01-12T23:08:21.815Z",type:"raid"},{name:"justduckomgg",amount:7,createdAt:"2024-04-19T17:05:53.185Z",type:"raid"},{name:"veessmk",amount:6,createdAt:"2024-04-17T15:40:43.945Z",type:"raid"},{name:"night_sculptor",amount:12,createdAt:"2024-04-16T18:07:40.040Z",type:"raid"},{name:"pixiemays",amount:6,createdAt:"2024-04-16T16:37:24.433Z",type:"raid"},{name:"night_sculptor",amount:8,createdAt:"2024-04-14T18:31:20.049Z",type:"raid"},{name:"pixiemays",amount:19,createdAt:"2024-04-14T13:22:05.794Z",type:"raid"},{name:"pixiemays",amount:15,createdAt:"2024-04-12T17:03:36.115Z",type:"raid"},{name:"alechkavt",amount:9,createdAt:"2024-04-11T17:54:47.691Z",type:"raid"},{name:"pixiemays",amount:8,createdAt:"2024-04-11T14:10:49.548Z",type:"raid"},{name:"night_sculptor",amount:22,createdAt:"2024-04-09T16:13:41.195Z",type:"raid"},{name:"pixiemays",amount:5,createdAt:"2024-04-08T09:54:01.603Z",type:"raid"},{name:"aki_neki",amount:5,createdAt:"2024-04-07T21:52:45.919Z",type:"raid"},{name:"alechkavt",amount:11,createdAt:"2024-04-07T18:59:39.286Z",type:"raid"},{name:"veessmk",amount:15,createdAt:"2024-04-07T16:13:25.172Z",type:"raid"},{name:"veessmk",amount:10,createdAt:"2024-03-17T16:11:38.631Z",type:"raid"}],"charityCampaignDonation-recent":[],"cheer-recent":[],"cheerPurchase-recent":[],"superchat-recent":[],"tip-recent":[],"merch-recent":[],"channel-points-latest":{amount:0,message:"",name:"",redemption:""},"community-gift-latest":{amount:0,name:"",tier:""},"charityCampaignDonation-session-top-donation":{amount:0,name:""},"charityCampaignDonation-session-top-donator":{amount:0,name:""},"cheerPurchase-session-top-donation":{amount:0,name:""},"cheerPurchase-session-top-donator":{amount:0,name:""},"hypetrain-latest":{active:0,amount:0,level:0,levelChanged:0,name:"",type:""},"hypetrain-latest-top-contributors":[],"hypetrain-level-goal":{amount:0},"hypetrain-level-progress":{amount:0,percent:0},"hypetrain-total":{amount:0},"superchat-session-top-donation":{amount:0,name:""},"superchat-session-top-donator":{amount:0,name:""}},settings:{autoReset:!0,calendar:!1,resetOnStart:!1}},recents:[{name:"imacanadiannn",createdAt:"2026-01-13T01:53:50.296Z",type:"follower"},{name:"piwo143",createdAt:"2026-01-13T01:51:39.472Z",type:"follower"},{name:"latvan_",createdAt:"2026-01-12T23:54:29.235Z",type:"follower"},{name:"wheinwait",createdAt:"2026-01-12T23:11:28.946Z",type:"follower"},{name:"agnascor2",createdAt:"2026-01-12T23:11:14.880Z",type:"follower"},{name:"sunlitetuts",createdAt:"2026-01-12T21:03:59.207Z",type:"follower"},{name:"ayanamya",createdAt:"2026-01-12T20:00:55.509Z",type:"follower"},{name:"hopeless28",createdAt:"2026-01-12T18:35:21.731Z",type:"follower"},{name:"kakoytoclown",createdAt:"2026-01-11T18:39:36.843Z",type:"follower"},{name:"dababe__jq1",createdAt:"2024-10-10T23:27:49.699Z",type:"follower"},{name:"jjjllkmf",createdAt:"2024-05-05T09:44:16.287Z",type:"follower"},{name:"d4c_valintine",createdAt:"2024-05-03T15:13:28.365Z",type:"follower"},{name:"angelbliss_",createdAt:"2024-04-30T20:07:23.132Z",type:"follower"},{name:"o1zich",createdAt:"2024-04-22T16:23:26.139Z",type:"follower"},{name:"nearbuziky",createdAt:"2024-04-19T19:21:27.569Z",type:"follower"},{name:"samirkasamsa",createdAt:"2024-04-19T17:06:38.963Z",type:"follower"},{name:"flip1mip",createdAt:"2024-04-19T17:06:18.276Z",type:"follower"},{name:"valerie_solo",createdAt:"2024-04-19T17:06:07.473Z",type:"follower"},{name:"sxaelence",createdAt:"2024-04-19T07:06:46.330Z",type:"follower"},{name:"avokadik99",createdAt:"2024-04-17T16:11:29.604Z",type:"follower"},{name:"blackvoronstream",createdAt:"2024-04-16T21:29:33.306Z",type:"follower"},{name:"baldejniyy",createdAt:"2024-04-16T21:29:09.647Z",type:"follower"},{name:"p3ch4n_ka",createdAt:"2024-04-16T16:37:31.841Z",type:"follower"},{name:"kakosik_bee",createdAt:"2024-04-16T15:56:27.435Z",type:"follower"},{name:"hikotoru",createdAt:"2024-04-16T15:13:25.226Z",type:"follower"},{name:"agnascor2",amount:6,createdAt:"2026-01-12T23:08:21.815Z",type:"raid"},{name:"justduckomgg",amount:7,createdAt:"2024-04-19T17:05:53.185Z",type:"raid"},{name:"veessmk",amount:6,createdAt:"2024-04-17T15:40:43.945Z",type:"raid"},{name:"night_sculptor",amount:12,createdAt:"2024-04-16T18:07:40.040Z",type:"raid"},{name:"pixiemays",amount:6,createdAt:"2024-04-16T16:37:24.433Z",type:"raid"},{name:"night_sculptor",amount:8,createdAt:"2024-04-14T18:31:20.049Z",type:"raid"},{name:"pixiemays",amount:19,createdAt:"2024-04-14T13:22:05.794Z",type:"raid"},{name:"pixiemays",amount:15,createdAt:"2024-04-12T17:03:36.115Z",type:"raid"},{name:"alechkavt",amount:9,createdAt:"2024-04-11T17:54:47.691Z",type:"raid"},{name:"pixiemays",amount:8,createdAt:"2024-04-11T14:10:49.548Z",type:"raid"},{name:"night_sculptor",amount:22,createdAt:"2024-04-09T16:13:41.195Z",type:"raid"},{name:"pixiemays",amount:5,createdAt:"2024-04-08T09:54:01.603Z",type:"raid"},{name:"aki_neki",amount:5,createdAt:"2024-04-07T21:52:45.919Z",type:"raid"},{name:"alechkavt",amount:11,createdAt:"2024-04-07T18:59:39.286Z",type:"raid"},{name:"veessmk",amount:15,createdAt:"2024-04-07T16:13:25.172Z",type:"raid"},{name:"veessmk",amount:10,createdAt:"2024-03-17T16:11:38.631Z",type:"raid"}],currency:{code:"USD",name:"U.S. Dollar",symbol:"$"},channel:{username:"encry_s",apiToken:"HAHANOTNOW",id:"65ba7503dc0415cb368947b1",providerId:"485678132",avatar:"https://static-cdn.jtvnw.net/jtv_user_pictures/6fe93724-803a-4e5a-b58a-1d42fbc84661-profile_image-300x300.jpeg"},fieldData:{testMessageButton:"zaytri_dynamicchatbubbles",previewMode:!1,previewType:"random",previewMessage:"",theme:"animal-crossing",corner:"round",darkMode:!1,highlightStyle:"normal",actionStyle:"italics",maxWidth:400,maxHeight:300,fixedWidth:!1,positionMode:"list",listDirection:"bottom",listAlignment:"center",topEdge:!0,bottomEdge:!0,leftEdge:!0,rightEdge:!0,edgeDeviation:0,padding:30,animation:"dynamic",dynamicModifier:1.75,maxMessages:25,hideOutOfBounds:!0,lifetime:0,delay:1,googleFont:"Nunito",customFont:"",fontSize:18,fontWeight:"bold",textDirection:"ltr",useCustomBorderColors:!0,borderColor:"#fed400",nameColor:"#000000",useCustomMessageColors:!0,backgroundColor:"#fff3c0",textColor:"#000000",pronounsMode:"suffix",pronounsLowercase:!0,pronounsBadgeCustomColors:!1,pronounsBadgeBackgroundColor:"#000000",pronounsBadgeBorderColor:"#FFFFFF",pronounsBadgeTextColor:"#FFFFFF",showBadges:!0,largeEmotes:!0,ffzGlobal:!1,bttvGlobal:!1,emoteOnly:!1,highlightOnly:!1,allowedStrings:[],minMessages:0,messageCooldown:0,raidCooldown:0,raidMin:0,includeEveryone:!0,includeFollowers:"true",minFollowTime:1,includeSubs:!0,includeVIPs:!0,includeMods:!0,allowUserList:[],ignoreUserList:["StreamElements","Streamlabs","Nightbot","Sery_Bot"],ignorePrefixList:["!"],volume:50,soundGroup1:[],userLevelSoundGroup1:"everyone",specificUsersSoundGroup1:[],messageTypeSoundGroup1:"all",soundGroup2:[],userLevelSoundGroup2:"everyone",specificUsersSoundGroup2:[],messageTypeSoundGroup2:"all",soundGroup3:[],userLevelSoundGroup3:"everyone",specificUsersSoundGroup3:[],messageTypeSoundGroup3:"all",soundGroup4:[],userLevelSoundGroup4:"everyone",specificUsersSoundGroup4:[],messageTypeSoundGroup4:"all",soundGroup5:[],userLevelSoundGroup5:"everyone",specificUsersSoundGroup5:[],messageTypeSoundGroup5:"all",soundGroup6:[],userLevelSoundGroup6:"everyone",specificUsersSoundGroup6:[],messageTypeSoundGroup6:"all",soundGroup7:[],userLevelSoundGroup7:"everyone",specificUsersSoundGroup7:[],messageTypeSoundGroup7:"all",soundGroup8:[],userLevelSoundGroup8:"everyone",specificUsersSoundGroup8:[],messageTypeSoundGroup8:"all",soundGroup9:[],userLevelSoundGroup9:"everyone",specificUsersSoundGroup9:[],messageTypeSoundGroup9:"all",soundGroup10:[],userLevelSoundGroup10:"everyone",specificUsersSoundGroup10:[],messageTypeSoundGroup10:"all",widgetName:"Chat Bubbles",widgetAuthor:"Zaytri",widgetVersion:"2.12.0",widgetUpdateUrl:"https://github.com/zaytri/stream-elements-widgets/blob/main/DynamicChatBubbles",ignoreFirst:!0},overlay:{isEditorMode:!0,muted:!1}},K={follower:{listener:"follower-latest",event:{name:"An1by"}},communityGiftAnonymous:{listener:"event",event:{type:"communityGiftPurchase",provider:"twitch",channel:"663b10ba6cd449c4162a2230",activityGroup:"41a50a915794e4ae7cf5e600fd3445d4",data:{amount:2,username:"anonymous",displayName:"AnAnonymousGifter",tier:"2000",sender:"Anonymous"},_id:"699868d7df734989ec85d393",activityId:"699868d7df734989ec85d393"}},communityGift:{listener:"event",event:{type:"communityGiftPurchase",provider:"twitch",channel:"663b10ba6cd449c4162a2230",activityGroup:"841592c0bccbf3e1e7de71e1c8f4d9f0",data:{amount:1,username:"rishamon",displayName:"rishamon",tier:"1000",sender:"rishamon"},_id:"699867c7fef23197a6a089f5",activityId:"699867c7fef23197a6a089f5"}},sub:{listener:"subscriber-latest",event:{name:"An1by",amount:1}},selfSub:{listener:"event",event:{type:"subscriber",provider:"twitch",channel:"663b10ba6cd449c4162a2230",data:{amount:1,username:"rishamon",displayName:"rishamon",tier:"1000"},_id:"6998676317aed69e62b8f283",activityId:"6998676317aed69e62b8f283"}},soloSubToSomeone:{listener:"event",event:{type:"subscriber",provider:"twitch",channel:"663b10ba6cd449c4162a2230",data:{amount:1,username:"encry_s",displayName:"encry_s",message:"rishamon gifted a Tier 1 sub to encry_s! This is their first Gift Sub in the channel!",tier:"1000",sender:"rishamon",gifted:!0},_id:"699866e82d9cd9a70854baf2",activityId:"699866e82d9cd9a70854baf2"}},subRenewal:{listener:"event",event:{type:"subscriber",provider:"twitch",channel:"663b10ba6cd449c4162a2230",data:{amount:8,username:"silgestian",displayName:"SilgeStian",tier:"1000"},_id:"69986dfaf25724ff4162bd1a",activityId:"69986dfaf25724ff4162bd1a"}},bits:{listener:"cheer-latest",event:{name:"An1by",amount:30}},raid:{listener:"raid-latest",event:{name:"An1by",amount:50}},donationShortText:{listener:"donation",event:{data:{alert_type:"1",currency:"RUB",billing_system:"CARD",id:5,amount_main:500,amount:500,username:"An1by",message:"Simple message text"}}},donationLongText:{listener:"donation",event:{data:{alert_type:"1",currency:"RUB",billing_system:"CARD",id:5,amount_main:500,amount:500,username:"An1by",message:`A plain gray stone lay on the shore, basking in the sun's warmth. A shove broke its peace—a thoughtless toss sent it flying. The stone splashed into water. Ripples spread, yet none noticed. It sank to the bottom, heavy with loneliness. "Didn't I deserve to stay where I was happy still?" it wondered.`}}},donation:{listener:"donation",event:{data:{alert_type:"1",currency:"RUB",billing_system:"CARD",id:5,amount_main:500,amount:500,username:"An1by",message:""}}}},S={zeroWidthEmotesInRow:{listener:"message",event:{service:"twitch",data:{time:1768317417111,tags:{"badge-info":"subscriber/23",badges:"broadcaster/1,subscriber/0","client-nonce":"f70c4cd8b6034d1f805298246ee1bc35",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"5f752ae3-4be9-4f93-82d1-d78575ba07fd",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1768317416862",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"}],channel:"an1by",text:"Censored Censored Censored emotes in row",isAction:!1,emotes:[{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:0,end:8},{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:9,end:17},{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:18,end:26}],msgId:"5f752ae3-4be9-4f93-82d1-d78575ba07fd"},renderedText:'<img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">emotes in row'}},zeroWidthEmoteInMiddle:{listener:"message",event:{service:"twitch",data:{time:1768317383248,tags:{"badge-info":"subscriber/23",badges:"broadcaster/1,subscriber/0","client-nonce":"847f9c27722340d090eddcb0d0662b5b",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"3dea1e1e-89f7-4a5f-b743-13ba0386492f",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1768317382987",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"}],channel:"an1by",text:"text and Censored emote",isAction:!1,emotes:[{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:9,end:17}],msgId:"3dea1e1e-89f7-4a5f-b743-13ba0386492f"},renderedText:'text and <img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">emote'}},zeroWidthEmoteFirst:{listener:"message",event:{service:"twitch",data:{time:1768317236883,tags:{"badge-info":"subscriber/23",badges:"broadcaster/1,subscriber/0","client-nonce":"e9d0621827184c1b940fd700ae599d60",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"6f347337-354a-42e5-bab0-935e19d74152",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1768317236625",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"}],channel:"an1by",text:"Censored <- zeroWidth emote on the first place",isAction:!1,emotes:[{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:0,end:8}],msgId:"6f347337-354a-42e5-bab0-935e19d74152"},renderedText:'<img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">&lt;- zeroWidth emote on the first place'}},veryShort:{listener:"message",event:{service:"twitch",data:{time:1749743750546,tags:{"badge-info":"",badges:"","client-nonce":"a3fe71a5771d0c31466dd333c963231e",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"3d0d1a43-45e5-4652-be59-0b31dfeba796",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743749437",turbo:"0","user-id":"958683839","user-type":""},nick:"IHaveVeryBigNickname",userId:"958683839",displayName:"IHaveVeryBigNickname",displayColor:"",badges:[],channel:"IHaveVeryBigNickname",text:"A!",isAction:!1,emotes:[],msgId:"3d0d1a43-45e5-4652-be59-0b31dfeba796"},renderedText:"A!"}},viewer:{listener:"message",event:{service:"twitch",data:{time:1749743750546,tags:{"badge-info":"",badges:"","client-nonce":"a3fe71a5771d0c31466dd333c963231e",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"3d0d1a43-45e5-4652-be59-0b31dfeba796",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743749437",turbo:"0","user-id":"958683839","user-type":""},nick:"SimpleViewer",userId:"958683839",displayName:"SimpleViewer",displayColor:"",badges:[],channel:"SimpleViewer",text:"I finally finished it...",isAction:!1,emotes:[],msgId:"3d0d1a43-45e5-4652-be59-0b31dfeba796"},renderedText:"I finally finished it..."}},vip:{listener:"message",event:{service:"twitch",data:{time:1749743844261,tags:{"badge-info":"",badges:"vip/1","client-nonce":"fd72ba163a9cc1a6486b2eddb0f5d893",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"51cac44b-9908-49d2-b424-489276e1e521",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743843170",turbo:"0","user-id":"958683839","user-type":"",vip:"1"},nick:"VipPersona",userId:"958683839",displayName:"VipPersona",displayColor:"",badges:[{type:"vip",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/b817aba4-fad8-49e2-b88a-7cc744dfa6ec/3",description:"VIP"}],channel:"VipPersona",text:"I am a VIP persona!",isAction:!1,emotes:[],msgId:"51cac44b-9908-49d2-b424-489276e1e521"},renderedText:"I am a VIP persona!"}},vipLong:{listener:"message",event:{service:"twitch",data:{time:1749743844261,tags:{"badge-info":"",badges:"vip/1","client-nonce":"fd72ba163a9cc1a6486b2eddb0f5d893",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"51cac44b-9908-49d2-b424-489276e1e521",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743843170",turbo:"0","user-id":"958683839","user-type":"",vip:"1"},nick:"VipPersona",userId:"958683839",displayName:"VipPersona",displayColor:"",badges:[{type:"vip",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/b817aba4-fad8-49e2-b88a-7cc744dfa6ec/3",description:"VIP"}],channel:"VipPersona",text:"I am a VIP persona! Are you see this?",isAction:!1,emotes:[],msgId:"51cac44b-9908-49d2-b424-489276e1e521"},renderedText:"I am a VIP persona! Are you see this?"}},artist:{listener:"message",event:{service:"twitch",data:{time:1749743916482,tags:{"badge-info":"",badges:"artist-badge/1","client-nonce":"54128d734d44e28ffc32e1ce236993f5",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"8ee7e71a-3608-486a-bd82-a82b65982ca7",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743915371",turbo:"0","user-id":"958683839","user-type":""},nick:"StarArtist",userId:"958683839",displayName:"StarArtist",displayColor:"",badges:[{type:"artist-badge",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/4300a897-03dc-4e83-8c0e-c332fee7057f/3",description:"Artist"}],channel:"StarArtist",text:"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.",isAction:!1,emotes:[],msgId:"8ee7e71a-3608-486a-bd82-a82b65982ca7"},renderedText:"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}},subscriber:{listener:"message",event:{data:{tags:{badges:"subscriber/1",color:"#ff69b4",vip:"0",subscriber:"1","user-id":"100135110","user-type":"subscriber"},nick:"YourSub",userId:"100135110",displayName:"YourSub",displayColor:"#ff69b4",badges:[{type:"partner",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/d12a2e27-16f6-41d0-ab77-b780518f00a3/3",description:"Verified"}],text:"This is a subscriber's test message. I'm just a subscriber, srsly.",emotes:[],msgId:"43285909-412c-4eee-b80d-89f1482ba53142"},renderedText:"This is a subscriber's test message. I'm just a subscriber, srsly."}},founder:{listener:"message",event:{service:"twitch",data:{time:1749743750546,tags:{"badge-info":"",badges:"founder/1,subscriber/1","client-nonce":"a3fe71a5771d0c31466dd333c963231e",color:"","display-name":"sub__founder",emotes:"","first-msg":"0",flags:"",id:"3d0d1a43-45e5-4652-be59-0b31dfeba796",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1749743749437",turbo:"0","user-id":"958683839","user-type":""},nick:"sub__founder",userId:"958683839",displayName:"sub__founder",displayColor:"",badges:[{type:"founder"}],channel:"an1by",text:"I finally finished it...",isAction:!1,emotes:[],msgId:"3d0d1a43-45e5-4652-be59-0b31dfeba796"},renderedText:"I finally finished it..."}},moderator:{listener:"message",event:{service:"twitch",data:{time:1749743997223,tags:{"badge-info":"",badges:"moderator/1",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"3e7ba532-f181-4bcc-90f1-a3c48ca3c820",mod:"1","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743996136",turbo:"0","user-id":"958683839","user-type":"mod"},nick:"mediator",userId:"958683839",displayName:"mediator",displayColor:"",badges:[{type:"moderator",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/3267646d-33f0-4b17-b3df-f923a41db1d0/3",description:"Moderator"}],channel:"mediator",text:"Did someone say... MODERATOR!?",isAction:!1,emotes:[],msgId:"3e7ba532-f181-4bcc-90f1-a3c48ca3c820"},renderedText:"Did someone say... MODERATOR!?"}},moderatorLong:{listener:"message",event:{service:"twitch",data:{time:1749743997223,tags:{"badge-info":"",badges:"moderator/1",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"3e7ba532-f181-4bcc-90f1-a3c48ca3c820",mod:"1","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743996136",turbo:"0","user-id":"958683839","user-type":"mod"},nick:"mediator",userId:"958683839",displayName:"mediator",displayColor:"",badges:[{type:"moderator",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/3267646d-33f0-4b17-b3df-f923a41db1d0/3",description:"Moderator"}],channel:"mediator",text:"Did someone say... MODERATOR!? Yes, I am moderator!",isAction:!1,emotes:[],msgId:"3e7ba532-f181-4bcc-90f1-a3c48ca3c820"},renderedText:"Did someone say... MODERATOR!? Yes, I am moderator!"}},broadcaster:{listener:"message",event:{service:"twitch",data:{time:1749744800809,tags:{"badge-info":"subscriber/16",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"6989104421ee14c0a8c216ef1c6bb5ed",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"35a9bea7-076e-4d17-8cb7-7e65c8111b3d",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1749744799706",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"I made this chat Besplatno",isAction:!1,emotes:[{type:"7tv",name:"Besplatno",id:"01FE70VRT00009TR6M9N941A28",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp",2:"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp",3:"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/3x.webp",4:"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp"},start:17,end:26}],msgId:"35a9bea7-076e-4d17-8cb7-7e65c8111b3d"},renderedText:'I made this chat <img src="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp" srcset="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp 1x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp 2x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp 4x" title="Besplatno" class="emote">'}},broadcasterShort:{listener:"message",event:{service:"twitch",data:{time:1749744800809,tags:{"badge-info":"subscriber/16",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"6989104421ee14c0a8c216ef1c6bb5ed",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"35a9bea7-076e-4d17-8cb7-7e65c8111b3d",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1749744799706",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"okak",isAction:!1,emotes:[],msgId:"35a9bea7-076e-4d17-8cb7-7e65c8111b3d"},renderedText:'I made this chat <img src="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp" srcset="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp 1x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp 2x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp 4x" title="Besplatno" class="emote">'}},emoteSolo:{listener:"message",event:{service:"twitch",data:{time:1749744097330,tags:{"badge-info":"",badges:"",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"9ab645b9-7c27-4c6f-99fd-f63727ca3700",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749744096217",turbo:"0","user-id":"958683839","user-type":""},nick:"tr0l1",userId:"958683839",displayName:"tr0l1",displayColor:"",badges:[],channel:"tr0l1",text:"🤤😮💀👈👉",isAction:!1,emotes:[{type:"emoji",name:"1f62e",id:"1f62e",gif:!1,urls:{1:"https://twemoji.maxcdn.com/36x36/1f62e.png"}},{type:"emoji",name:"1f480",id:"1f480",gif:!1,urls:{1:"https://twemoji.maxcdn.com/36x36/1f480.png"}},{type:"emoji",name:"1f448",id:"1f448",gif:!1,urls:{1:"https://twemoji.maxcdn.com/36x36/1f448.png"}},{type:"emoji",name:"1f449",id:"1f449",gif:!1,urls:{1:"https://twemoji.maxcdn.com/36x36/1f449.png"}}],msgId:"9ab645b9-7c27-4c6f-99fd-f63727ca3700"},renderedText:"🤤😮💀👈👉"}},emoteOne:{listener:"message",event:{service:"twitch",data:{time:1749744131183,tags:{"badge-info":"",badges:"",color:"","display-name":"An1by",emotes:"41:20-27/245:29-43/28087:45-51/58765:53-63/555555584:65-66/64138:10-18","first-msg":"0",flags:"",id:"beb957ea-dfbd-4184-82a3-458121f44867",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749744130018",turbo:"0","user-id":"958683839","user-type":""},nick:"tr0l1",userId:"958683839",displayName:"tr0l1",displayColor:"",badges:[],channel:"tr0l1",text:"SeemsGood",isAction:!1,emotes:[{type:"twitch",name:"SeemsGood",id:"64138",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0"},start:0,end:9}],msgId:"beb957ea-dfbd-4184-82a3-458121f44867"},renderedText:'<img src="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0 4x" title="SeemsGood" class="emote">'}},emoteText:{listener:"message",event:{service:"twitch",data:{time:1749744131183,tags:{"badge-info":"",badges:"",color:"","display-name":"7TVUser",emotes:"41:20-27/245:29-43/28087:45-51/58765:53-63/555555584:65-66/64138:10-18","first-msg":"0",flags:"",id:"beb957ea-dfbd-4184-82a3-458121f44867",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749744130018",turbo:"0","user-id":"958683839","user-type":""},nick:"7TVUser",userId:"958683839",displayName:"7TVUser",displayColor:"",badges:[],channel:"7TVUser",text:"Not emote SeemsGood Kreygasm ResidentSleeper WutFace NotLikeThis <3",isAction:!1,emotes:[{type:"twitch",name:"SeemsGood",id:"64138",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0"},start:10,end:19},{type:"twitch",name:"Kreygasm",id:"41",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/3.0"},start:20,end:28},{type:"twitch",name:"ResidentSleeper",id:"245",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/3.0"},start:29,end:44},{type:"twitch",name:"WutFace",id:"28087",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/3.0"},start:45,end:52},{type:"twitch",name:"NotLikeThis",id:"58765",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/3.0"},start:53,end:64},{type:"twitch",name:"<3",id:"9",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/3.0"},start:65,end:67}],msgId:"beb957ea-dfbd-4184-82a3-458121f44867"},renderedText:'Not emote <img src="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0 4x" title="SeemsGood" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/3.0 4x" title="Kreygasm" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/3.0 4x" title="ResidentSleeper" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/3.0 4x" title="WutFace" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/3.0 4x" title="NotLikeThis" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/3.0 4x" title="<3" class="emote">'}},zeroWidthEmotes:{listener:"message",event:{service:"twitch",data:{time:1759956619137,tags:{"badge-info":"subscriber/20",badges:"","client-nonce":"f7b17aea5c07c5c08fd920278fb52b5a",color:"#DAA520","display-name":"7TVUser",emotes:"","first-msg":"0",flags:"",id:"b44d1c53-1de9-454c-a269-bd8849cbcd2d",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1759956618295",turbo:"0","user-id":"958683839","user-type":""},nick:"7TVUser",userId:"958683839",displayName:"7TVUser",displayColor:"#DAA520",badges:[{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"7TVUser",text:"Zero-width emotes AYAYA PETPET right there!!",isAction:!1,emotes:[{type:"7tv",name:"AYAYA",id:"01GB32XE6R00018VJGJ4A9BNCV",gif:!1,animated:!1,urls:{1:"https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp",2:"https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/2x.webp",3:"https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/3x.webp",4:"https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/4x.webp"},start:18,end:23},{type:"7tv",name:"PETPET",id:"01FE3XY508000AA32JP519W2EW",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp",2:"https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/2x.webp",3:"https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/3x.webp",4:"https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/4x.webp"},start:24,end:30}],msgId:"b44d1c53-1de9-454c-a269-bd8849cbcd2d"},renderedText:'Zero-width emotes <img src="https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp" srcset="https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp 1x, https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/2x.webp 2x, https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/4x.webp 4x" title="AYAYA" class="emote"><img src="https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp" srcset="https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp 1x, https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/2x.webp 2x, https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/4x.webp 4x" title="PETPET" class="emote">right there!!'}},sevenTv:{listener:"message",event:{service:"twitch",data:{time:1749744413746,tags:{"badge-info":"",badges:"","client-nonce":"2bd56e3c058b5a4fc4e46c3e369891e6",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"4c71789c-8c02-4e25-a71f-3a7d0ef19a33",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749744412641",turbo:"0","user-id":"958683839","user-type":""},nick:"tr0l1",userId:"958683839",displayName:"tr0l1",displayColor:"",badges:[],channel:"tr0l1",text:"ало ало Инса Каори Hello everyone! Hello everyone! Hello everyone!Hello everyone! Hello everyone! Hello everyone! Hello everyone! Hello everyone!",isAction:!1,emotes:[{type:"7tv",name:"ало",id:"01F6PRA3N80003BH8AEY9DWKDQ",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp",2:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp",3:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/3x.webp",4:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp"},start:0,end:3},{type:"7tv",name:"ало",id:"01F6PRA3N80003BH8AEY9DWKDQ",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp",2:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp",3:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/3x.webp",4:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp"},start:4,end:7},{type:"7tv",name:"Инса",id:"01JRE4VRRXWF0922HA3F9BZG6M",gif:!1,animated:!1,urls:{1:"https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp",2:"https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/2x.webp",3:"https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/3x.webp",4:"https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/4x.webp"},start:8,end:12},{type:"7tv",name:"Каори",id:"01GY6TCEFG000BGHWA5T6NGBRA",gif:!1,animated:!1,urls:{1:"https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp",2:"https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/2x.webp",3:"https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/3x.webp",4:"https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/4x.webp"},start:13,end:18}],msgId:"4c71789c-8c02-4e25-a71f-3a7d0ef19a33"},renderedText:'<img src="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp" srcset="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp 1x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp 2x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp 4x" title="ало" class="emote"><img src="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp" srcset="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp 1x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp 2x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp 4x" title="ало" class="emote"><img src="https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp" srcset="https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp 1x, https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/2x.webp 2x, https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/4x.webp 4x" title="Инса" class="emote"><img src="https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp" srcset="https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp 1x, https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/2x.webp 2x, https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/4x.webp 4x" title="Каори" class="emote">Hello everyone!'}},sevenTvSolo:{listener:"message",event:{service:"twitch",data:{time:1768321684253,tags:{"badge-info":"subscriber/23",badges:"broadcaster/1,subscriber/0","client-nonce":"51cc77206bf346eda20774b75aac675d",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"e30a02bf-a3c7-40f2-9325-cdc2690d3631",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1768321684074",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"}],channel:"an1by",text:"DurkaDance ͏",isAction:!1,emotes:[{type:"7tv",name:"DurkaDance",id:"01JQBC7K2FX7HE4SFZFJEN6CWY",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp",2:"https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/2x.webp",3:"https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/3x.webp",4:"https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/4x.webp"},start:0,end:10}],msgId:"e30a02bf-a3c7-40f2-9325-cdc2690d3631"},renderedText:'<img src="https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp" srcset="https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp 1x, https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/2x.webp 2x, https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/4x.webp 4x" title="DurkaDance" class="emote"> ͏'}},replyToEmotes:{listener:"message",event:{service:"twitch",data:{time:1761442000746,tags:{"badge-info":"subscriber/21",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"467bc72d78248ec07dfb0602744268ca",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"9efd9377-2bd3-4c69-ace4-c21760337bab",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1761442000143",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"AREYOUAGIRL Censored Emotes there DiscoDoge Кута",isAction:!1,emotes:[{type:"7tv",name:"AREYOUAGIRL",id:"01F6N58M5R0004P7N4A9PK7KD9",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp",2:"https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/2x.webp",3:"https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/3x.webp",4:"https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/4x.webp"},start:0,end:11},{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:12,end:20},{type:"7tv",name:"DiscoDoge",id:"01F6REQR2R0006GRP49Q74YFVT",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp",2:"https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/2x.webp",3:"https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/3x.webp",4:"https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/4x.webp"},start:34,end:43},{type:"7tv",name:"Кута",id:"01GZRXWQMR0001GP2RPRY13KD2",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp",2:"https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/2x.webp",3:"https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/3x.webp",4:"https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/4x.webp"},start:44,end:48}],msgId:"9efd9377-2bd3-4c69-ace4-c21760337bab"},renderedText:'<img src="https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp" srcset="https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp 1x, https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/2x.webp 2x, https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/4x.webp 4x" title="AREYOUAGIRL" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">Emotes there <img src="https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp" srcset="https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp 1x, https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/2x.webp 2x, https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/4x.webp 4x" title="DiscoDoge" class="emote"><img src="https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp" srcset="https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp 1x, https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/2x.webp 2x, https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/4x.webp 4x" title="Кута" class="emote">'}},replyFromEmotes:{listener:"message",event:{service:"twitch",data:{time:1761442023380,tags:{"badge-info":"subscriber/21",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"4052e6a7ed6bb6b8836aa625170c4f7b",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"f7bed8dd-5a48-4209-8617-e1a3c0720ee4",mod:"0","reply-parent-display-name":"An1by","reply-parent-msg-body":"AREYOUAGIRL\\sCensored\\sThere\\semotes\\sDiscoDoge\\sКута","reply-parent-msg-id":"9efd9377-2bd3-4c69-ace4-c21760337bab","reply-parent-user-id":"958683839","reply-parent-user-login":"an1by","reply-thread-parent-display-name":"An1by","reply-thread-parent-msg-id":"9efd9377-2bd3-4c69-ace4-c21760337bab","reply-thread-parent-user-id":"958683839","reply-thread-parent-user-login":"an1by","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1761442022738",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"@An1by I'm replying to message with emotes agarge Looks good, am I right?",isAction:!1,emotes:[{type:"7tv",name:"agarge",id:"01HTDV6DE8000B1F9GAE4NZ73B",gif:!1,animated:!1,urls:{1:"https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp",2:"https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/2x.webp",3:"https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/3x.webp",4:"https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/4x.webp"},start:43,end:49}],msgId:"f7bed8dd-5a48-4209-8617-e1a3c0720ee4"},renderedText:`@An1by I'm replying to message with emotes <img src="https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp" srcset="https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp 1x, https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/2x.webp 2x, https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/4x.webp 4x" title="agarge" class="emote">Looks good, am I right?`}},replyTo:{listener:"message",event:{service:"twitch",data:{time:1761435519083,tags:{"badge-info":"subscriber/21",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"da4c68fddba7eb1be7ae2b6a44c207a2",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"794c103d-a5d5-4ce1-bcd8-98ac6717c8e7",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1761435518511",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"I'll reply to that message",isAction:!1,emotes:[],msgId:"794c103d-a5d5-4ce1-bcd8-98ac6717c8e7"},renderedText:"I'll reply to that message"}},replyFrom:{listener:"message",event:{service:"twitch",data:{time:1761435541811,tags:{"badge-info":"subscriber/21",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"b59db94320a8a01942290c61f6a27480",color:"#DAA520","display-name":"An1by",emotes:"emotesv2_f54e2bcddf4948808b845e37dd4e08de:26-36","first-msg":"0",flags:"",id:"bc101ec7-5663-4ee5-9580-536ed9a5804e",mod:"0","reply-parent-display-name":"An1by","reply-parent-msg-body":"I'll\\sreply\\sto\\sthat\\smessage","reply-parent-msg-id":"794c103d-a5d5-4ce1-bcd8-98ac6717c8e7","reply-parent-user-id":"958683839","reply-parent-user-login":"an1by","reply-thread-parent-display-name":"An1by","reply-thread-parent-msg-id":"794c103d-a5d5-4ce1-bcd8-98ac6717c8e7","reply-thread-parent-user-id":"958683839","reply-thread-parent-user-login":"an1by","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1761435541217",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"@An1by Replying right now akidaKrutoi",isAction:!1,emotes:[{type:"twitch",name:"akidaKrutoi",id:"emotesv2_f54e2bcddf4948808b845e37dd4e08de",gif:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/3.0"},start:26,end:36}],msgId:"bc101ec7-5663-4ee5-9580-536ed9a5804e"},renderedText:'@An1by Replying right now <img src="https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/3.0 4x" title="akidaKrutoi" class="emote">'}}},k="onEventReceived";function V(t){if(typeof window>"u")return;const a=t.startsWith("testMessage_")?t.replace("testMessage_",""):t,e=S[a];e&&window.dispatchEvent(new CustomEvent(k,{detail:e}))}function N(t){if(typeof window>"u")return;const a=t.startsWith("testAlert_")?t.replace("testAlert_",""):t,e=K[a];e&&window.dispatchEvent(new CustomEvent(k,{detail:e}))}function H(t){if(!t.startsWith("testMessage"))return null;const a=t.replace("testMessage","");return a.charAt(0).toLowerCase()+a.slice(1)}function Z(t){if(!t.startsWith("testAlert"))return null;const a=t.replace("testAlert","");return a.charAt(0).toLowerCase()+a.slice(1)}var Q=(t=>(t.BROADCASTER="broadcaster",t.LEAD_MODERATOR="lead_moderator",t.MODERATOR="moderator",t.VIP="vip",t.ARTIST="artist",t.FOUNDER="founder",t.SUBSCRIBER="subscriber",t.TURBO="turbo",t.DEFAULT="default",t))(Q||{});const j=({badges:t=[],tags:a={}})=>{const e=A=>!!t.find(g=>g.type===A),r=a.badges??"",s=a["user-type"]??"",o=r.includes("subscriber/1")||a.subscriber==="1"||e("subscriber"),n=r.includes("founder/1")||e("founder"),p=r.includes("broadcaster/1")||e("broadcaster"),u=a["first-msg"]==="1",d=a.turbo==="1",c=a.vip==="1"||r.includes("vip/1")||e("vip"),i=r.includes("lead_moderator/1")||e("lead_moderator"),m=(a.mod==="1"||r.includes("moderator/1")||s==="mod")&&!i||e("moderator"),B=m||i,w=r.includes("artist-badge/1")||e("artist-badge"),f=[];return p&&f.push("broadcaster"),i&&f.push("lead_moderator"),m&&f.push("moderator"),c&&f.push("vip"),w&&f.push("artist"),n&&f.push("founder"),o&&f.push("subscriber"),d&&f.push("turbo"),f.push("default"),{isSubscriber:o,isBroadcaster:p,isFirstMessageChatter:u,isFounder:n,isTurbo:d,isVip:c,isAnyModerator:B,isModerator:m,isLeadModerator:i,isArtist:w,roles:f,includesBadgeType:e,getSubscriberMonths:()=>{for(const A of["badge-info","badges"]){const g=a[A];if(g){const T=g.match(/^subscriber\/(\d+)$/);if(T)return parseInt(T[1],10)}}return 0},getBadgeUrlByType:A=>{var g;return(g=t.find(T=>T.type===A))==null?void 0:g.url}}};class I{constructor(a){x(this,"queue",[]);x(this,"isShowingAlert",!1);x(this,"onNextAlert");this.onNextAlert=a}push(a){this.queue.push(a)}processNextAlert(){if(this.queue.length===0||this.isShowingAlert)return;const a=this.queue.shift();a&&(this.isShowingAlert=!0,this.onNextAlert(this,a))}}l.AlertQueue=I,l.TwitchUserMessageData=j,l.UserRole=Q,l.classifyEvent=G,l.getCacheKey=v,l.getTestAlertKey=Z,l.getTestMessageKey=H,l.normalizeIncomingEvent=F,l.parseTier=y,l.testAlert=N,l.testAlerts=K,l.testMessage=V,l.testMessages=S,l.testOnWidgetLoadDetail=M,Object.defineProperty(l,Symbol.toStringTag,{value:"Module"})})(this.WmakeStreamelementsEvents=this.WmakeStreamelementsEvents||{});
2
- //# sourceMappingURL=index.iife.js.map
1
+ (function(e){Object.defineProperty(e,Symbol.toStringTag,{value:`Module`});function t(e){if(e==null)return{tier:0,tierText:``};let t=typeof e==`string`?e:String(e),n=parseInt(t,10);return Number.isNaN(n)?{tier:0,tierText:t}:{tier:n>=3e3?3:n>=2e3?2:+(n>=1e3),tierText:t}}function n(e){let t=e.listener,n=e.event??{},r=n.activityGroup,i=n.activityId??n._id;return r?String(r):i?String(i):t===`subscriber-latest`&&n.bulkGifted?`sl-bulk-`+(n.sender??``)+`-`+(n.amount??``)+`-`+(n.tier??``)+`-`+(n._id??``):`sl-${n._id??n.activityId??``}`}function r(e){let n=e.listener,r=e.event??{},i=r.data??r,a=t(i.tier??r.tier);if(n===`event`){if(r.type===`communityGiftPurchase`){let e=i.username&&String(i.username).toLowerCase()===`anonymous`||i.sender===`Anonymous`;return{type:e?`community-gift-anonymous`:`community-gift`,tier:a.tier,tierText:a.tierText,totalAmount:parseInt(String(i.amount),10)||1,recipients:[],sender:e?void 0:i.sender??i.displayName??i.username,anonymousDisplayName:e?i.displayName??`Anonymous`:void 0}}if(r.type===`subscriber`){let t=i.gifted===!0,n=i.sender,o=parseInt(String(i.amount),10)||1,s=i.username??i.displayName,c=r.activityGroup;if(n===`Anonymous`&&c)return{type:`community-gift-anonymous`,_role:`recipient`,activityGroup:c,recipient:s??i.displayName,tier:a.tier,tierText:a.tierText};if(t&&n&&n!==`Anonymous`){if(!(i.communityGifted===!0||c!=null&&c!==``)){let e=String(i.message??``).indexOf(`first Gift Sub`)!==-1;return{type:`solo-sub-to-someone`,sender:n,recipient:s??i.displayName,tier:a.tier,tierText:a.tierText,firstGiftInChannel:e}}return{type:`community-gift`,_role:`recipient`,activityGroup:c??``,recipient:s??i.displayName,tier:a.tier,tierText:a.tierText}}return!t&&o>1?{type:`sub-renewal`,name:s??i.displayName,months:o,tier:a.tier,tierText:a.tierText}:!t&&o===1?{type:`self-sub`,name:s??i.displayName,tier:a.tier,tierText:a.tierText}:c?{type:`community-gift`,_role:`recipient`,activityGroup:c,recipient:s??i.displayName,tier:a.tier,tierText:a.tierText}:{type:`unknown`,detail:e}}return{type:`unknown`,detail:e}}if(n===`subscriber-latest`){let t=r.bulkGifted===!0,n=r.sender,i=r.name,o=parseInt(String(r.amount),10)||1,s=r.gifted===!0,c=r.isCommunityGift===!0||r.communityGifted===!0;if(t&&n===`Anonymous`)return{type:`community-gift-anonymous`,tier:a.tier,tierText:a.tierText,totalAmount:o,recipients:[]};if(t&&n)return{type:`community-gift`,sender:n,tier:a.tier,tierText:a.tierText,totalAmount:o,recipients:[]};if(s&&!c&&n){let e=String(r.message??``).indexOf(`first Gift Sub`)!==-1;return{type:`solo-sub-to-someone`,sender:n,recipient:i??``,tier:a.tier,tierText:a.tierText,firstGiftInChannel:e}}return!s&&o>1?{type:`sub-renewal`,name:i??``,months:o,tier:a.tier,tierText:a.tierText}:!s&&o===1&&(n==null||i===n)?{type:`self-sub`,name:i??``,tier:a.tier,tierText:a.tierText}:{type:`unknown`,detail:e}}if(n===`follower-latest`)return{type:`follow`,name:r.name??``};if(n===`cheer-latest`){let e=parseInt(String(r.amount),10)||0;return{type:`cheer`,name:r.name??``,amount:e}}if(n===`raid-latest`){let e=parseInt(String(r.amount),10)||0;return{type:`raid`,name:r.name??``,viewers:e}}if(n===`donation`){let t=e.event?.data;return{type:`donation`,amount:t?.amount_main??t?.amount??0,currency:t?.currency,username:t?.username,message:t?.message,billingSystem:t?.billing_system,id:t?.id}}return{type:`unknown`,detail:e}}var i=2500,a={},o={};function s(e,t){if(!e)return null;if(typeof e._has==`function`&&typeof e._set==`function`)return e;let n=e[t];return n&&typeof n._has==`function`?n:null}function c(e,t,n,r){let i=s(n,t.type);i?._has(e)||(i&&i._set(e,!0),r(t))}function l(e,t,n,r){let i=a[e];if(!i)return;delete a[e],o[e]&&(clearTimeout(o[e]),delete o[e]);let s=i.purchase,l=i.subscribers??[],u=i.type,d=i.tier,f=i.tierText,p=i.totalAmount??l.length,m=l.map(e=>e.recipient??e.username??e.name).filter(Boolean),h=l[0]?.sender,g=s?.sender??i.sender??h;u===`community-gift`&&r&&g===r||(u===`community-gift-anonymous`?c(e,{type:`community-gift-anonymous`,tier:d,tierText:f,totalAmount:p,recipients:m,anonymousDisplayName:s?.anonymousDisplayName},t,n):c(e,{type:`community-gift`,sender:g,tier:d,tierText:f,totalAmount:p,recipients:m},t,n))}function u(e,t,c){let u=t?.cacheSubs,d=t?.broadcasterLogin??``,f=r(e);if(!f){c(null);return}let p=s(u,f.type),m=n(e),h=e.event??{},g=h.data??h;if(f._role===`recipient`){let e=f,t=e.activityGroup??m;a[t]||(a[t]={type:e.type,subscribers:[],tier:e.tier,tierText:e.tierText,totalAmount:0}),o[t]&&clearTimeout(o[t]),o[t]=setTimeout(()=>{l(t,u,c,d)},i),a[t].subscribers.push({recipient:e.recipient,username:g.username,name:g.displayName,sender:g.sender}),a[t].totalAmount===0&&(a[t].totalAmount=1);return}if(f.type===`community-gift-anonymous`||f.type===`community-gift`){if(e.listener===`event`&&h.type===`communityGiftPurchase`){let e=h.activityGroup??g?.activityGroup??m,t=f;a[e]?(a[e].purchase=t,a[e].tier=t.tier,a[e].tierText=t.tierText,a[e].totalAmount=t.totalAmount??a[e].totalAmount,a[e].sender=t.sender,o[e]&&clearTimeout(o[e]),o[e]=setTimeout(()=>{l(e,u,c,d)},i)):(a[e]={type:t.type,purchase:t,subscribers:[],tier:t.tier,tierText:t.tierText,totalAmount:Number(t.totalAmount)||0,sender:t.sender},o[e]=setTimeout(()=>{l(e,u,c,d)},i));return}if(e.listener===`subscriber-latest`){let e=f;if(f.type===`community-gift`&&d&&e.sender===d){c(null);return}return}return}if(f.type===`self-sub`||f.type===`solo-sub-to-someone`||f.type===`sub-renewal`){if(p?._has(m)){c(null);return}p&&p._set(m,!0);let e=f;if(f.type===`solo-sub-to-someone`&&d&&e.sender===d){c(null);return}c(f)}}var d={session:{data:{"follower-latest":{name:`imacanadiannn`},"follower-session":{count:0},"follower-week":{count:0},"follower-month":{count:0},"follower-goal":{amount:137},"follower-total":{count:118,activityId:``,sessionTop:!1},"subscriber-latest":{name:``,amount:0,tier:``,message:``},"subscriber-new-latest":{name:``,amount:0,message:``},"subscriber-resub-latest":{name:``,amount:0,message:``},"subscriber-gifted-latest":{name:``,amount:0,message:``,tier:``,sender:``},"subscriber-session":{count:0},"subscriber-new-session":{count:0},"subscriber-resub-session":{count:0},"subscriber-gifted-session":{count:0},"subscriber-week":{count:0},"subscriber-month":{count:0},"subscriber-goal":{amount:0},"subscriber-total":{count:0,activityId:``,sessionTop:!1},"subscriber-points":{amount:0,activityId:``,sessionTop:!1},"subscriber-alltime-gifter":{name:``,amount:0},"host-latest":{name:``,amount:0},"raid-latest":{name:`agnascor2`,amount:6},"cheer-session":{amount:0},"cheer-week":{amount:0},"cheer-month":{amount:0},"cheer-total":{amount:0},"cheer-count":{count:0},"cheer-goal":{amount:0},"cheer-latest":{name:``,amount:0},"cheer-session-top-donation":{amount:0,name:``},"cheer-weekly-top-donation":{amount:0,name:``},"cheer-monthly-top-donation":{amount:0,name:``},"cheer-alltime-top-donation":{amount:0,name:``},"cheer-session-top-donator":{amount:0,name:``},"cheer-weekly-top-donator":{amount:0,name:``},"cheer-monthly-top-donator":{amount:0,name:``},"cheer-alltime-top-donator":{amount:0,name:``},"tip-latest":{name:``,amount:0},"tip-session-top-donation":{amount:0,name:``},"tip-weekly-top-donation":{name:``,amount:0},"tip-monthly-top-donation":{name:``,amount:0},"tip-alltime-top-donation":{name:``,amount:0},"tip-session-top-donator":{amount:0,name:``},"tip-weekly-top-donator":{name:``,amount:0},"tip-monthly-top-donator":{name:``,amount:0},"tip-alltime-top-donator":{name:``,amount:0},"tip-session":{amount:0},"tip-week":{amount:0},"tip-month":{amount:0},"tip-total":{amount:0},"tip-count":{count:0},"tip-goal":{amount:0},"merch-goal-orders":{amount:0},"merch-goal-items":{amount:0},"merch-goal-total":{amount:0},"merch-latest":{name:``,amount:0,items:[]},"charityCampaignDonation-latest":{name:``,amount:0},"charityCampaignDonation-weekly-top-donation":{name:``,amount:0},"charityCampaignDonation-monthly-top-donation":{name:``,amount:0},"charityCampaignDonation-alltime-top-donation":{name:``,amount:0},"charityCampaignDonation-weekly-top-donator":{name:``,amount:0},"charityCampaignDonation-monthly-top-donator":{name:``,amount:0},"charityCampaignDonation-alltime-top-donator":{name:``,amount:0},"cheerPurchase-latest":{name:``,amount:0},"cheerPurchase-weekly-top-donation":{name:``,amount:0},"cheerPurchase-monthly-top-donation":{name:``,amount:0},"cheerPurchase-alltime-top-donation":{name:``,amount:0},"cheerPurchase-weekly-top-donator":{name:``,amount:0},"cheerPurchase-monthly-top-donator":{name:``,amount:0},"cheerPurchase-alltime-top-donator":{name:``,amount:0},"superchat-latest":{name:``,amount:0},"superchat-weekly-top-donation":{name:``,amount:0},"superchat-monthly-top-donation":{name:``,amount:0},"superchat-alltime-top-donation":{name:``,amount:0},"superchat-weekly-top-donator":{name:``,amount:0},"superchat-monthly-top-donator":{name:``,amount:0},"superchat-alltime-top-donator":{name:``,amount:0},"superchat-session":{amount:0},"superchat-week":{amount:0},"superchat-month":{amount:0},"superchat-total":{amount:0},"superchat-count":{count:0},"superchat-goal":{amount:0},"purchase-latest":{name:``,amount:0,avatar:``,message:``,items:[]},"follower-recent":[{name:`imacanadiannn`,createdAt:`2026-01-13T01:53:50.296Z`,type:`follower`},{name:`piwo143`,createdAt:`2026-01-13T01:51:39.472Z`,type:`follower`},{name:`latvan_`,createdAt:`2026-01-12T23:54:29.235Z`,type:`follower`},{name:`wheinwait`,createdAt:`2026-01-12T23:11:28.946Z`,type:`follower`},{name:`agnascor2`,createdAt:`2026-01-12T23:11:14.880Z`,type:`follower`},{name:`sunlitetuts`,createdAt:`2026-01-12T21:03:59.207Z`,type:`follower`},{name:`ayanamya`,createdAt:`2026-01-12T20:00:55.509Z`,type:`follower`},{name:`hopeless28`,createdAt:`2026-01-12T18:35:21.731Z`,type:`follower`},{name:`kakoytoclown`,createdAt:`2026-01-11T18:39:36.843Z`,type:`follower`},{name:`dababe__jq1`,createdAt:`2024-10-10T23:27:49.699Z`,type:`follower`},{name:`jjjllkmf`,createdAt:`2024-05-05T09:44:16.287Z`,type:`follower`},{name:`d4c_valintine`,createdAt:`2024-05-03T15:13:28.365Z`,type:`follower`},{name:`angelbliss_`,createdAt:`2024-04-30T20:07:23.132Z`,type:`follower`},{name:`o1zich`,createdAt:`2024-04-22T16:23:26.139Z`,type:`follower`},{name:`nearbuziky`,createdAt:`2024-04-19T19:21:27.569Z`,type:`follower`},{name:`samirkasamsa`,createdAt:`2024-04-19T17:06:38.963Z`,type:`follower`},{name:`flip1mip`,createdAt:`2024-04-19T17:06:18.276Z`,type:`follower`},{name:`valerie_solo`,createdAt:`2024-04-19T17:06:07.473Z`,type:`follower`},{name:`sxaelence`,createdAt:`2024-04-19T07:06:46.330Z`,type:`follower`},{name:`avokadik99`,createdAt:`2024-04-17T16:11:29.604Z`,type:`follower`},{name:`blackvoronstream`,createdAt:`2024-04-16T21:29:33.306Z`,type:`follower`},{name:`baldejniyy`,createdAt:`2024-04-16T21:29:09.647Z`,type:`follower`},{name:`p3ch4n_ka`,createdAt:`2024-04-16T16:37:31.841Z`,type:`follower`},{name:`kakosik_bee`,createdAt:`2024-04-16T15:56:27.435Z`,type:`follower`},{name:`hikotoru`,createdAt:`2024-04-16T15:13:25.226Z`,type:`follower`}],"subscriber-recent":[],"host-recent":[],"raid-recent":[{name:`agnascor2`,amount:6,createdAt:`2026-01-12T23:08:21.815Z`,type:`raid`},{name:`justduckomgg`,amount:7,createdAt:`2024-04-19T17:05:53.185Z`,type:`raid`},{name:`veessmk`,amount:6,createdAt:`2024-04-17T15:40:43.945Z`,type:`raid`},{name:`night_sculptor`,amount:12,createdAt:`2024-04-16T18:07:40.040Z`,type:`raid`},{name:`pixiemays`,amount:6,createdAt:`2024-04-16T16:37:24.433Z`,type:`raid`},{name:`night_sculptor`,amount:8,createdAt:`2024-04-14T18:31:20.049Z`,type:`raid`},{name:`pixiemays`,amount:19,createdAt:`2024-04-14T13:22:05.794Z`,type:`raid`},{name:`pixiemays`,amount:15,createdAt:`2024-04-12T17:03:36.115Z`,type:`raid`},{name:`alechkavt`,amount:9,createdAt:`2024-04-11T17:54:47.691Z`,type:`raid`},{name:`pixiemays`,amount:8,createdAt:`2024-04-11T14:10:49.548Z`,type:`raid`},{name:`night_sculptor`,amount:22,createdAt:`2024-04-09T16:13:41.195Z`,type:`raid`},{name:`pixiemays`,amount:5,createdAt:`2024-04-08T09:54:01.603Z`,type:`raid`},{name:`aki_neki`,amount:5,createdAt:`2024-04-07T21:52:45.919Z`,type:`raid`},{name:`alechkavt`,amount:11,createdAt:`2024-04-07T18:59:39.286Z`,type:`raid`},{name:`veessmk`,amount:15,createdAt:`2024-04-07T16:13:25.172Z`,type:`raid`},{name:`veessmk`,amount:10,createdAt:`2024-03-17T16:11:38.631Z`,type:`raid`}],"charityCampaignDonation-recent":[],"cheer-recent":[],"cheerPurchase-recent":[],"superchat-recent":[],"tip-recent":[],"merch-recent":[],"channel-points-latest":{amount:0,message:``,name:``,redemption:``},"community-gift-latest":{amount:0,name:``,tier:``},"charityCampaignDonation-session-top-donation":{amount:0,name:``},"charityCampaignDonation-session-top-donator":{amount:0,name:``},"cheerPurchase-session-top-donation":{amount:0,name:``},"cheerPurchase-session-top-donator":{amount:0,name:``},"hypetrain-latest":{active:0,amount:0,level:0,levelChanged:0,name:``,type:``},"hypetrain-latest-top-contributors":[],"hypetrain-level-goal":{amount:0},"hypetrain-level-progress":{amount:0,percent:0},"hypetrain-total":{amount:0},"superchat-session-top-donation":{amount:0,name:``},"superchat-session-top-donator":{amount:0,name:``}},settings:{autoReset:!0,calendar:!1,resetOnStart:!1}},recents:[{name:`imacanadiannn`,createdAt:`2026-01-13T01:53:50.296Z`,type:`follower`},{name:`piwo143`,createdAt:`2026-01-13T01:51:39.472Z`,type:`follower`},{name:`latvan_`,createdAt:`2026-01-12T23:54:29.235Z`,type:`follower`},{name:`wheinwait`,createdAt:`2026-01-12T23:11:28.946Z`,type:`follower`},{name:`agnascor2`,createdAt:`2026-01-12T23:11:14.880Z`,type:`follower`},{name:`sunlitetuts`,createdAt:`2026-01-12T21:03:59.207Z`,type:`follower`},{name:`ayanamya`,createdAt:`2026-01-12T20:00:55.509Z`,type:`follower`},{name:`hopeless28`,createdAt:`2026-01-12T18:35:21.731Z`,type:`follower`},{name:`kakoytoclown`,createdAt:`2026-01-11T18:39:36.843Z`,type:`follower`},{name:`dababe__jq1`,createdAt:`2024-10-10T23:27:49.699Z`,type:`follower`},{name:`jjjllkmf`,createdAt:`2024-05-05T09:44:16.287Z`,type:`follower`},{name:`d4c_valintine`,createdAt:`2024-05-03T15:13:28.365Z`,type:`follower`},{name:`angelbliss_`,createdAt:`2024-04-30T20:07:23.132Z`,type:`follower`},{name:`o1zich`,createdAt:`2024-04-22T16:23:26.139Z`,type:`follower`},{name:`nearbuziky`,createdAt:`2024-04-19T19:21:27.569Z`,type:`follower`},{name:`samirkasamsa`,createdAt:`2024-04-19T17:06:38.963Z`,type:`follower`},{name:`flip1mip`,createdAt:`2024-04-19T17:06:18.276Z`,type:`follower`},{name:`valerie_solo`,createdAt:`2024-04-19T17:06:07.473Z`,type:`follower`},{name:`sxaelence`,createdAt:`2024-04-19T07:06:46.330Z`,type:`follower`},{name:`avokadik99`,createdAt:`2024-04-17T16:11:29.604Z`,type:`follower`},{name:`blackvoronstream`,createdAt:`2024-04-16T21:29:33.306Z`,type:`follower`},{name:`baldejniyy`,createdAt:`2024-04-16T21:29:09.647Z`,type:`follower`},{name:`p3ch4n_ka`,createdAt:`2024-04-16T16:37:31.841Z`,type:`follower`},{name:`kakosik_bee`,createdAt:`2024-04-16T15:56:27.435Z`,type:`follower`},{name:`hikotoru`,createdAt:`2024-04-16T15:13:25.226Z`,type:`follower`},{name:`agnascor2`,amount:6,createdAt:`2026-01-12T23:08:21.815Z`,type:`raid`},{name:`justduckomgg`,amount:7,createdAt:`2024-04-19T17:05:53.185Z`,type:`raid`},{name:`veessmk`,amount:6,createdAt:`2024-04-17T15:40:43.945Z`,type:`raid`},{name:`night_sculptor`,amount:12,createdAt:`2024-04-16T18:07:40.040Z`,type:`raid`},{name:`pixiemays`,amount:6,createdAt:`2024-04-16T16:37:24.433Z`,type:`raid`},{name:`night_sculptor`,amount:8,createdAt:`2024-04-14T18:31:20.049Z`,type:`raid`},{name:`pixiemays`,amount:19,createdAt:`2024-04-14T13:22:05.794Z`,type:`raid`},{name:`pixiemays`,amount:15,createdAt:`2024-04-12T17:03:36.115Z`,type:`raid`},{name:`alechkavt`,amount:9,createdAt:`2024-04-11T17:54:47.691Z`,type:`raid`},{name:`pixiemays`,amount:8,createdAt:`2024-04-11T14:10:49.548Z`,type:`raid`},{name:`night_sculptor`,amount:22,createdAt:`2024-04-09T16:13:41.195Z`,type:`raid`},{name:`pixiemays`,amount:5,createdAt:`2024-04-08T09:54:01.603Z`,type:`raid`},{name:`aki_neki`,amount:5,createdAt:`2024-04-07T21:52:45.919Z`,type:`raid`},{name:`alechkavt`,amount:11,createdAt:`2024-04-07T18:59:39.286Z`,type:`raid`},{name:`veessmk`,amount:15,createdAt:`2024-04-07T16:13:25.172Z`,type:`raid`},{name:`veessmk`,amount:10,createdAt:`2024-03-17T16:11:38.631Z`,type:`raid`}],currency:{code:`USD`,name:`U.S. Dollar`,symbol:`$`},channel:{username:`encry_s`,apiToken:`HAHANOTNOW`,id:`65ba7503dc0415cb368947b1`,providerId:`485678132`,avatar:`https://static-cdn.jtvnw.net/jtv_user_pictures/6fe93724-803a-4e5a-b58a-1d42fbc84661-profile_image-300x300.jpeg`},fieldData:{testMessageButton:`zaytri_dynamicchatbubbles`,previewMode:!1,previewType:`random`,previewMessage:``,theme:`animal-crossing`,corner:`round`,darkMode:!1,highlightStyle:`normal`,actionStyle:`italics`,maxWidth:400,maxHeight:300,fixedWidth:!1,positionMode:`list`,listDirection:`bottom`,listAlignment:`center`,topEdge:!0,bottomEdge:!0,leftEdge:!0,rightEdge:!0,edgeDeviation:0,padding:30,animation:`dynamic`,dynamicModifier:1.75,maxMessages:25,hideOutOfBounds:!0,lifetime:0,delay:1,googleFont:`Nunito`,customFont:``,fontSize:18,fontWeight:`bold`,textDirection:`ltr`,useCustomBorderColors:!0,borderColor:`#fed400`,nameColor:`#000000`,useCustomMessageColors:!0,backgroundColor:`#fff3c0`,textColor:`#000000`,pronounsMode:`suffix`,pronounsLowercase:!0,pronounsBadgeCustomColors:!1,pronounsBadgeBackgroundColor:`#000000`,pronounsBadgeBorderColor:`#FFFFFF`,pronounsBadgeTextColor:`#FFFFFF`,showBadges:!0,largeEmotes:!0,ffzGlobal:!1,bttvGlobal:!1,emoteOnly:!1,highlightOnly:!1,allowedStrings:[],minMessages:0,messageCooldown:0,raidCooldown:0,raidMin:0,includeEveryone:!0,includeFollowers:`true`,minFollowTime:1,includeSubs:!0,includeVIPs:!0,includeMods:!0,allowUserList:[],ignoreUserList:[`StreamElements`,`Streamlabs`,`Nightbot`,`Sery_Bot`],ignorePrefixList:[`!`],volume:50,soundGroup1:[],userLevelSoundGroup1:`everyone`,specificUsersSoundGroup1:[],messageTypeSoundGroup1:`all`,soundGroup2:[],userLevelSoundGroup2:`everyone`,specificUsersSoundGroup2:[],messageTypeSoundGroup2:`all`,soundGroup3:[],userLevelSoundGroup3:`everyone`,specificUsersSoundGroup3:[],messageTypeSoundGroup3:`all`,soundGroup4:[],userLevelSoundGroup4:`everyone`,specificUsersSoundGroup4:[],messageTypeSoundGroup4:`all`,soundGroup5:[],userLevelSoundGroup5:`everyone`,specificUsersSoundGroup5:[],messageTypeSoundGroup5:`all`,soundGroup6:[],userLevelSoundGroup6:`everyone`,specificUsersSoundGroup6:[],messageTypeSoundGroup6:`all`,soundGroup7:[],userLevelSoundGroup7:`everyone`,specificUsersSoundGroup7:[],messageTypeSoundGroup7:`all`,soundGroup8:[],userLevelSoundGroup8:`everyone`,specificUsersSoundGroup8:[],messageTypeSoundGroup8:`all`,soundGroup9:[],userLevelSoundGroup9:`everyone`,specificUsersSoundGroup9:[],messageTypeSoundGroup9:`all`,soundGroup10:[],userLevelSoundGroup10:`everyone`,specificUsersSoundGroup10:[],messageTypeSoundGroup10:`all`,widgetName:`Chat Bubbles`,widgetAuthor:`Zaytri`,widgetVersion:`2.12.0`,widgetUpdateUrl:`https://github.com/zaytri/stream-elements-widgets/blob/main/DynamicChatBubbles`,ignoreFirst:!0},overlay:{isEditorMode:!0,muted:!1}},f={follower:{listener:`follower-latest`,event:{name:`An1by`}},communityGiftAnonymous:{listener:`event`,event:{type:`communityGiftPurchase`,provider:`twitch`,channel:`663b10ba6cd449c4162a2230`,activityGroup:`41a50a915794e4ae7cf5e600fd3445d4`,data:{amount:2,username:`anonymous`,displayName:`AnAnonymousGifter`,tier:`2000`,sender:`Anonymous`},_id:`699868d7df734989ec85d393`,activityId:`699868d7df734989ec85d393`}},communityGift:{listener:`event`,event:{type:`communityGiftPurchase`,provider:`twitch`,channel:`663b10ba6cd449c4162a2230`,activityGroup:`841592c0bccbf3e1e7de71e1c8f4d9f0`,data:{amount:1,username:`rishamon`,displayName:`rishamon`,tier:`1000`,sender:`rishamon`},_id:`699867c7fef23197a6a089f5`,activityId:`699867c7fef23197a6a089f5`}},sub:{listener:`subscriber-latest`,event:{name:`An1by`,amount:1}},selfSub:{listener:`event`,event:{type:`subscriber`,provider:`twitch`,channel:`663b10ba6cd449c4162a2230`,data:{amount:1,username:`rishamon`,displayName:`rishamon`,tier:`1000`},_id:`6998676317aed69e62b8f283`,activityId:`6998676317aed69e62b8f283`}},soloSubToSomeone:{listener:`event`,event:{type:`subscriber`,provider:`twitch`,channel:`663b10ba6cd449c4162a2230`,data:{amount:1,username:`encry_s`,displayName:`encry_s`,message:`rishamon gifted a Tier 1 sub to encry_s! This is their first Gift Sub in the channel!`,tier:`1000`,sender:`rishamon`,gifted:!0},_id:`699866e82d9cd9a70854baf2`,activityId:`699866e82d9cd9a70854baf2`}},subRenewal:{listener:`event`,event:{type:`subscriber`,provider:`twitch`,channel:`663b10ba6cd449c4162a2230`,data:{amount:8,username:`silgestian`,displayName:`SilgeStian`,tier:`1000`},_id:`69986dfaf25724ff4162bd1a`,activityId:`69986dfaf25724ff4162bd1a`}},bits:{listener:`cheer-latest`,event:{name:`An1by`,amount:30}},raid:{listener:`raid-latest`,event:{name:`An1by`,amount:50}},donationShortText:{listener:`donation`,event:{data:{alert_type:`1`,currency:`RUB`,billing_system:`CARD`,id:5,amount_main:500,amount:500,username:`An1by`,message:`Simple message text`}}},donationLongText:{listener:`donation`,event:{data:{alert_type:`1`,currency:`RUB`,billing_system:`CARD`,id:5,amount_main:500,amount:500,username:`An1by`,message:`A plain gray stone lay on the shore, basking in the sun's warmth. A shove broke its peace—a thoughtless toss sent it flying. The stone splashed into water. Ripples spread, yet none noticed. It sank to the bottom, heavy with loneliness. "Didn't I deserve to stay where I was happy still?" it wondered.`}}},donation:{listener:`donation`,event:{data:{alert_type:`1`,currency:`RUB`,billing_system:`CARD`,id:5,amount_main:500,amount:500,username:`An1by`,message:``}}}},p={zeroWidthEmotesInRow:{listener:`message`,event:{service:`twitch`,data:{time:1768317417111,tags:{"badge-info":`subscriber/23`,badges:`broadcaster/1,subscriber/0`,"client-nonce":`f70c4cd8b6034d1f805298246ee1bc35`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`5f752ae3-4be9-4f93-82d1-d78575ba07fd`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1768317416862`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`}],channel:`an1by`,text:`Censored Censored Censored emotes in row`,isAction:!1,emotes:[{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:0,end:8},{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:9,end:17},{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:18,end:26}],msgId:`5f752ae3-4be9-4f93-82d1-d78575ba07fd`},renderedText:`<img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">emotes in row`}},zeroWidthEmoteInMiddle:{listener:`message`,event:{service:`twitch`,data:{time:1768317383248,tags:{"badge-info":`subscriber/23`,badges:`broadcaster/1,subscriber/0`,"client-nonce":`847f9c27722340d090eddcb0d0662b5b`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`3dea1e1e-89f7-4a5f-b743-13ba0386492f`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1768317382987`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`}],channel:`an1by`,text:`text and Censored emote`,isAction:!1,emotes:[{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:9,end:17}],msgId:`3dea1e1e-89f7-4a5f-b743-13ba0386492f`},renderedText:`text and <img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">emote`}},zeroWidthEmoteFirst:{listener:`message`,event:{service:`twitch`,data:{time:1768317236883,tags:{"badge-info":`subscriber/23`,badges:`broadcaster/1,subscriber/0`,"client-nonce":`e9d0621827184c1b940fd700ae599d60`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`6f347337-354a-42e5-bab0-935e19d74152`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1768317236625`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`}],channel:`an1by`,text:`Censored <- zeroWidth emote on the first place`,isAction:!1,emotes:[{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:0,end:8}],msgId:`6f347337-354a-42e5-bab0-935e19d74152`},renderedText:`<img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">&lt;- zeroWidth emote on the first place`}},veryShort:{listener:`message`,event:{service:`twitch`,data:{time:1749743750546,tags:{"badge-info":``,badges:``,"client-nonce":`a3fe71a5771d0c31466dd333c963231e`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`3d0d1a43-45e5-4652-be59-0b31dfeba796`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743749437`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`IHaveVeryBigNickname`,userId:`958683839`,displayName:`IHaveVeryBigNickname`,displayColor:``,badges:[],channel:`IHaveVeryBigNickname`,text:`A!`,isAction:!1,emotes:[],msgId:`3d0d1a43-45e5-4652-be59-0b31dfeba796`},renderedText:`A!`}},viewer:{listener:`message`,event:{service:`twitch`,data:{time:1749743750546,tags:{"badge-info":``,badges:``,"client-nonce":`a3fe71a5771d0c31466dd333c963231e`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`3d0d1a43-45e5-4652-be59-0b31dfeba796`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743749437`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`SimpleViewer`,userId:`958683839`,displayName:`SimpleViewer`,displayColor:``,badges:[],channel:`SimpleViewer`,text:`I finally finished it...`,isAction:!1,emotes:[],msgId:`3d0d1a43-45e5-4652-be59-0b31dfeba796`},renderedText:`I finally finished it...`}},vip:{listener:`message`,event:{service:`twitch`,data:{time:1749743844261,tags:{"badge-info":``,badges:`vip/1`,"client-nonce":`fd72ba163a9cc1a6486b2eddb0f5d893`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`51cac44b-9908-49d2-b424-489276e1e521`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743843170`,turbo:`0`,"user-id":`958683839`,"user-type":``,vip:`1`},nick:`VipPersona`,userId:`958683839`,displayName:`VipPersona`,displayColor:``,badges:[{type:`vip`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/b817aba4-fad8-49e2-b88a-7cc744dfa6ec/3`,description:`VIP`}],channel:`VipPersona`,text:`I am a VIP persona!`,isAction:!1,emotes:[],msgId:`51cac44b-9908-49d2-b424-489276e1e521`},renderedText:`I am a VIP persona!`}},vipLong:{listener:`message`,event:{service:`twitch`,data:{time:1749743844261,tags:{"badge-info":``,badges:`vip/1`,"client-nonce":`fd72ba163a9cc1a6486b2eddb0f5d893`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`51cac44b-9908-49d2-b424-489276e1e521`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743843170`,turbo:`0`,"user-id":`958683839`,"user-type":``,vip:`1`},nick:`VipPersona`,userId:`958683839`,displayName:`VipPersona`,displayColor:``,badges:[{type:`vip`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/b817aba4-fad8-49e2-b88a-7cc744dfa6ec/3`,description:`VIP`}],channel:`VipPersona`,text:`I am a VIP persona! Are you see this?`,isAction:!1,emotes:[],msgId:`51cac44b-9908-49d2-b424-489276e1e521`},renderedText:`I am a VIP persona! Are you see this?`}},artist:{listener:`message`,event:{service:`twitch`,data:{time:1749743916482,tags:{"badge-info":``,badges:`artist-badge/1`,"client-nonce":`54128d734d44e28ffc32e1ce236993f5`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`8ee7e71a-3608-486a-bd82-a82b65982ca7`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743915371`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`StarArtist`,userId:`958683839`,displayName:`StarArtist`,displayColor:``,badges:[{type:`artist-badge`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/4300a897-03dc-4e83-8c0e-c332fee7057f/3`,description:`Artist`}],channel:`StarArtist`,text:`Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.`,isAction:!1,emotes:[],msgId:`8ee7e71a-3608-486a-bd82-a82b65982ca7`},renderedText:`Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.`}},subscriber:{listener:`message`,event:{data:{tags:{badges:`subscriber/1`,color:`#ff69b4`,vip:`0`,subscriber:`1`,"user-id":`100135110`,"user-type":`subscriber`},nick:`YourSub`,userId:`100135110`,displayName:`YourSub`,displayColor:`#ff69b4`,badges:[{type:`partner`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/d12a2e27-16f6-41d0-ab77-b780518f00a3/3`,description:`Verified`}],text:`This is a subscriber's test message. I'm just a subscriber, srsly.`,emotes:[],msgId:`43285909-412c-4eee-b80d-89f1482ba53142`},renderedText:`This is a subscriber's test message. I'm just a subscriber, srsly.`}},founder:{listener:`message`,event:{service:`twitch`,data:{time:1749743750546,tags:{"badge-info":``,badges:`founder/1,subscriber/1`,"client-nonce":`a3fe71a5771d0c31466dd333c963231e`,color:``,"display-name":`sub__founder`,emotes:``,"first-msg":`0`,flags:``,id:`3d0d1a43-45e5-4652-be59-0b31dfeba796`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1749743749437`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`sub__founder`,userId:`958683839`,displayName:`sub__founder`,displayColor:``,badges:[{type:`founder`}],channel:`an1by`,text:`I finally finished it...`,isAction:!1,emotes:[],msgId:`3d0d1a43-45e5-4652-be59-0b31dfeba796`},renderedText:`I finally finished it...`}},moderator:{listener:`message`,event:{service:`twitch`,data:{time:1749743997223,tags:{"badge-info":``,badges:`moderator/1`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`3e7ba532-f181-4bcc-90f1-a3c48ca3c820`,mod:`1`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743996136`,turbo:`0`,"user-id":`958683839`,"user-type":`mod`},nick:`mediator`,userId:`958683839`,displayName:`mediator`,displayColor:``,badges:[{type:`moderator`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/3267646d-33f0-4b17-b3df-f923a41db1d0/3`,description:`Moderator`}],channel:`mediator`,text:`Did someone say... MODERATOR!?`,isAction:!1,emotes:[],msgId:`3e7ba532-f181-4bcc-90f1-a3c48ca3c820`},renderedText:`Did someone say... MODERATOR!?`}},moderatorLong:{listener:`message`,event:{service:`twitch`,data:{time:1749743997223,tags:{"badge-info":``,badges:`moderator/1`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`3e7ba532-f181-4bcc-90f1-a3c48ca3c820`,mod:`1`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743996136`,turbo:`0`,"user-id":`958683839`,"user-type":`mod`},nick:`mediator`,userId:`958683839`,displayName:`mediator`,displayColor:``,badges:[{type:`moderator`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/3267646d-33f0-4b17-b3df-f923a41db1d0/3`,description:`Moderator`}],channel:`mediator`,text:`Did someone say... MODERATOR!? Yes, I am moderator!`,isAction:!1,emotes:[],msgId:`3e7ba532-f181-4bcc-90f1-a3c48ca3c820`},renderedText:`Did someone say... MODERATOR!? Yes, I am moderator!`}},broadcaster:{listener:`message`,event:{service:`twitch`,data:{time:1749744800809,tags:{"badge-info":`subscriber/16`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`6989104421ee14c0a8c216ef1c6bb5ed`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`35a9bea7-076e-4d17-8cb7-7e65c8111b3d`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1749744799706`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`I made this chat Besplatno`,isAction:!1,emotes:[{type:`7tv`,name:`Besplatno`,id:`01FE70VRT00009TR6M9N941A28`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp`,2:`https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp`,3:`https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/3x.webp`,4:`https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp`},start:17,end:26}],msgId:`35a9bea7-076e-4d17-8cb7-7e65c8111b3d`},renderedText:`I made this chat <img src="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp" srcset="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp 1x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp 2x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp 4x" title="Besplatno" class="emote">`}},broadcasterShort:{listener:`message`,event:{service:`twitch`,data:{time:1749744800809,tags:{"badge-info":`subscriber/16`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`6989104421ee14c0a8c216ef1c6bb5ed`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`35a9bea7-076e-4d17-8cb7-7e65c8111b3d`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1749744799706`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`okak`,isAction:!1,emotes:[],msgId:`35a9bea7-076e-4d17-8cb7-7e65c8111b3d`},renderedText:`I made this chat <img src="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp" srcset="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp 1x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp 2x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp 4x" title="Besplatno" class="emote">`}},emoteSolo:{listener:`message`,event:{service:`twitch`,data:{time:1749744097330,tags:{"badge-info":``,badges:``,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`9ab645b9-7c27-4c6f-99fd-f63727ca3700`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749744096217`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`tr0l1`,userId:`958683839`,displayName:`tr0l1`,displayColor:``,badges:[],channel:`tr0l1`,text:`🤤😮💀👈👉`,isAction:!1,emotes:[{type:`emoji`,name:`1f62e`,id:`1f62e`,gif:!1,urls:{1:`https://twemoji.maxcdn.com/36x36/1f62e.png`}},{type:`emoji`,name:`1f480`,id:`1f480`,gif:!1,urls:{1:`https://twemoji.maxcdn.com/36x36/1f480.png`}},{type:`emoji`,name:`1f448`,id:`1f448`,gif:!1,urls:{1:`https://twemoji.maxcdn.com/36x36/1f448.png`}},{type:`emoji`,name:`1f449`,id:`1f449`,gif:!1,urls:{1:`https://twemoji.maxcdn.com/36x36/1f449.png`}}],msgId:`9ab645b9-7c27-4c6f-99fd-f63727ca3700`},renderedText:`🤤😮💀👈👉`}},emoteOne:{listener:`message`,event:{service:`twitch`,data:{time:1749744131183,tags:{"badge-info":``,badges:``,color:``,"display-name":`An1by`,emotes:`41:20-27/245:29-43/28087:45-51/58765:53-63/555555584:65-66/64138:10-18`,"first-msg":`0`,flags:``,id:`beb957ea-dfbd-4184-82a3-458121f44867`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749744130018`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`tr0l1`,userId:`958683839`,displayName:`tr0l1`,displayColor:``,badges:[],channel:`tr0l1`,text:`SeemsGood`,isAction:!1,emotes:[{type:`twitch`,name:`SeemsGood`,id:`64138`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0`},start:0,end:9}],msgId:`beb957ea-dfbd-4184-82a3-458121f44867`},renderedText:`<img src="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0 4x" title="SeemsGood" class="emote">`}},emoteText:{listener:`message`,event:{service:`twitch`,data:{time:1749744131183,tags:{"badge-info":``,badges:``,color:``,"display-name":`7TVUser`,emotes:`41:20-27/245:29-43/28087:45-51/58765:53-63/555555584:65-66/64138:10-18`,"first-msg":`0`,flags:``,id:`beb957ea-dfbd-4184-82a3-458121f44867`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749744130018`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`7TVUser`,userId:`958683839`,displayName:`7TVUser`,displayColor:``,badges:[],channel:`7TVUser`,text:`Not emote SeemsGood Kreygasm ResidentSleeper WutFace NotLikeThis <3`,isAction:!1,emotes:[{type:`twitch`,name:`SeemsGood`,id:`64138`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0`},start:10,end:19},{type:`twitch`,name:`Kreygasm`,id:`41`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/3.0`},start:20,end:28},{type:`twitch`,name:`ResidentSleeper`,id:`245`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/3.0`},start:29,end:44},{type:`twitch`,name:`WutFace`,id:`28087`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/3.0`},start:45,end:52},{type:`twitch`,name:`NotLikeThis`,id:`58765`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/3.0`},start:53,end:64},{type:`twitch`,name:`<3`,id:`9`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/3.0`},start:65,end:67}],msgId:`beb957ea-dfbd-4184-82a3-458121f44867`},renderedText:`Not emote <img src="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0 4x" title="SeemsGood" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/3.0 4x" title="Kreygasm" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/3.0 4x" title="ResidentSleeper" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/3.0 4x" title="WutFace" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/3.0 4x" title="NotLikeThis" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/3.0 4x" title="<3" class="emote">`}},zeroWidthEmotes:{listener:`message`,event:{service:`twitch`,data:{time:1759956619137,tags:{"badge-info":`subscriber/20`,badges:``,"client-nonce":`f7b17aea5c07c5c08fd920278fb52b5a`,color:`#DAA520`,"display-name":`7TVUser`,emotes:``,"first-msg":`0`,flags:``,id:`b44d1c53-1de9-454c-a269-bd8849cbcd2d`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1759956618295`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`7TVUser`,userId:`958683839`,displayName:`7TVUser`,displayColor:`#DAA520`,badges:[{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`7TVUser`,text:`Zero-width emotes AYAYA PETPET right there!!`,isAction:!1,emotes:[{type:`7tv`,name:`AYAYA`,id:`01GB32XE6R00018VJGJ4A9BNCV`,gif:!1,animated:!1,urls:{1:`https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp`,2:`https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/2x.webp`,3:`https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/3x.webp`,4:`https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/4x.webp`},start:18,end:23},{type:`7tv`,name:`PETPET`,id:`01FE3XY508000AA32JP519W2EW`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp`,2:`https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/2x.webp`,3:`https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/3x.webp`,4:`https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/4x.webp`},start:24,end:30}],msgId:`b44d1c53-1de9-454c-a269-bd8849cbcd2d`},renderedText:`Zero-width emotes <img src="https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp" srcset="https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp 1x, https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/2x.webp 2x, https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/4x.webp 4x" title="AYAYA" class="emote"><img src="https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp" srcset="https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp 1x, https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/2x.webp 2x, https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/4x.webp 4x" title="PETPET" class="emote">right there!!`}},sevenTv:{listener:`message`,event:{service:`twitch`,data:{time:1749744413746,tags:{"badge-info":``,badges:``,"client-nonce":`2bd56e3c058b5a4fc4e46c3e369891e6`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`4c71789c-8c02-4e25-a71f-3a7d0ef19a33`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749744412641`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`tr0l1`,userId:`958683839`,displayName:`tr0l1`,displayColor:``,badges:[],channel:`tr0l1`,text:`ало ало Инса Каори Hello everyone! Hello everyone! Hello everyone!Hello everyone! Hello everyone! Hello everyone! Hello everyone! Hello everyone!`,isAction:!1,emotes:[{type:`7tv`,name:`ало`,id:`01F6PRA3N80003BH8AEY9DWKDQ`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp`,2:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp`,3:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/3x.webp`,4:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp`},start:0,end:3},{type:`7tv`,name:`ало`,id:`01F6PRA3N80003BH8AEY9DWKDQ`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp`,2:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp`,3:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/3x.webp`,4:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp`},start:4,end:7},{type:`7tv`,name:`Инса`,id:`01JRE4VRRXWF0922HA3F9BZG6M`,gif:!1,animated:!1,urls:{1:`https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp`,2:`https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/2x.webp`,3:`https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/3x.webp`,4:`https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/4x.webp`},start:8,end:12},{type:`7tv`,name:`Каори`,id:`01GY6TCEFG000BGHWA5T6NGBRA`,gif:!1,animated:!1,urls:{1:`https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp`,2:`https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/2x.webp`,3:`https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/3x.webp`,4:`https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/4x.webp`},start:13,end:18}],msgId:`4c71789c-8c02-4e25-a71f-3a7d0ef19a33`},renderedText:`<img src="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp" srcset="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp 1x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp 2x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp 4x" title="ало" class="emote"><img src="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp" srcset="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp 1x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp 2x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp 4x" title="ало" class="emote"><img src="https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp" srcset="https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp 1x, https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/2x.webp 2x, https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/4x.webp 4x" title="Инса" class="emote"><img src="https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp" srcset="https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp 1x, https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/2x.webp 2x, https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/4x.webp 4x" title="Каори" class="emote">Hello everyone!`}},sevenTvSolo:{listener:`message`,event:{service:`twitch`,data:{time:1768321684253,tags:{"badge-info":`subscriber/23`,badges:`broadcaster/1,subscriber/0`,"client-nonce":`51cc77206bf346eda20774b75aac675d`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`e30a02bf-a3c7-40f2-9325-cdc2690d3631`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1768321684074`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`}],channel:`an1by`,text:`DurkaDance ͏`,isAction:!1,emotes:[{type:`7tv`,name:`DurkaDance`,id:`01JQBC7K2FX7HE4SFZFJEN6CWY`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp`,2:`https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/2x.webp`,3:`https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/3x.webp`,4:`https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/4x.webp`},start:0,end:10}],msgId:`e30a02bf-a3c7-40f2-9325-cdc2690d3631`},renderedText:`<img src="https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp" srcset="https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp 1x, https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/2x.webp 2x, https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/4x.webp 4x" title="DurkaDance" class="emote"> ͏`}},replyToEmotes:{listener:`message`,event:{service:`twitch`,data:{time:1761442000746,tags:{"badge-info":`subscriber/21`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`467bc72d78248ec07dfb0602744268ca`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`9efd9377-2bd3-4c69-ace4-c21760337bab`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1761442000143`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`AREYOUAGIRL Censored Emotes there DiscoDoge Кута`,isAction:!1,emotes:[{type:`7tv`,name:`AREYOUAGIRL`,id:`01F6N58M5R0004P7N4A9PK7KD9`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp`,2:`https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/2x.webp`,3:`https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/3x.webp`,4:`https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/4x.webp`},start:0,end:11},{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:12,end:20},{type:`7tv`,name:`DiscoDoge`,id:`01F6REQR2R0006GRP49Q74YFVT`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp`,2:`https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/2x.webp`,3:`https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/3x.webp`,4:`https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/4x.webp`},start:34,end:43},{type:`7tv`,name:`Кута`,id:`01GZRXWQMR0001GP2RPRY13KD2`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp`,2:`https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/2x.webp`,3:`https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/3x.webp`,4:`https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/4x.webp`},start:44,end:48}],msgId:`9efd9377-2bd3-4c69-ace4-c21760337bab`},renderedText:`<img src="https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp" srcset="https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp 1x, https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/2x.webp 2x, https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/4x.webp 4x" title="AREYOUAGIRL" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">Emotes there <img src="https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp" srcset="https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp 1x, https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/2x.webp 2x, https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/4x.webp 4x" title="DiscoDoge" class="emote"><img src="https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp" srcset="https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp 1x, https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/2x.webp 2x, https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/4x.webp 4x" title="Кута" class="emote">`}},replyFromEmotes:{listener:`message`,event:{service:`twitch`,data:{time:1761442023380,tags:{"badge-info":`subscriber/21`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`4052e6a7ed6bb6b8836aa625170c4f7b`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`f7bed8dd-5a48-4209-8617-e1a3c0720ee4`,mod:`0`,"reply-parent-display-name":`An1by`,"reply-parent-msg-body":`AREYOUAGIRL\\sCensored\\sThere\\semotes\\sDiscoDoge\\sКута`,"reply-parent-msg-id":`9efd9377-2bd3-4c69-ace4-c21760337bab`,"reply-parent-user-id":`958683839`,"reply-parent-user-login":`an1by`,"reply-thread-parent-display-name":`An1by`,"reply-thread-parent-msg-id":`9efd9377-2bd3-4c69-ace4-c21760337bab`,"reply-thread-parent-user-id":`958683839`,"reply-thread-parent-user-login":`an1by`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1761442022738`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`@An1by I'm replying to message with emotes agarge Looks good, am I right?`,isAction:!1,emotes:[{type:`7tv`,name:`agarge`,id:`01HTDV6DE8000B1F9GAE4NZ73B`,gif:!1,animated:!1,urls:{1:`https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp`,2:`https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/2x.webp`,3:`https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/3x.webp`,4:`https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/4x.webp`},start:43,end:49}],msgId:`f7bed8dd-5a48-4209-8617-e1a3c0720ee4`},renderedText:`@An1by I'm replying to message with emotes <img src="https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp" srcset="https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp 1x, https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/2x.webp 2x, https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/4x.webp 4x" title="agarge" class="emote">Looks good, am I right?`}},replyTo:{listener:`message`,event:{service:`twitch`,data:{time:1761435519083,tags:{"badge-info":`subscriber/21`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`da4c68fddba7eb1be7ae2b6a44c207a2`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`794c103d-a5d5-4ce1-bcd8-98ac6717c8e7`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1761435518511`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`I'll reply to that message`,isAction:!1,emotes:[],msgId:`794c103d-a5d5-4ce1-bcd8-98ac6717c8e7`},renderedText:`I'll reply to that message`}},replyFrom:{listener:`message`,event:{service:`twitch`,data:{time:1761435541811,tags:{"badge-info":`subscriber/21`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`b59db94320a8a01942290c61f6a27480`,color:`#DAA520`,"display-name":`An1by`,emotes:`emotesv2_f54e2bcddf4948808b845e37dd4e08de:26-36`,"first-msg":`0`,flags:``,id:`bc101ec7-5663-4ee5-9580-536ed9a5804e`,mod:`0`,"reply-parent-display-name":`An1by`,"reply-parent-msg-body":`I'll\\sreply\\sto\\sthat\\smessage`,"reply-parent-msg-id":`794c103d-a5d5-4ce1-bcd8-98ac6717c8e7`,"reply-parent-user-id":`958683839`,"reply-parent-user-login":`an1by`,"reply-thread-parent-display-name":`An1by`,"reply-thread-parent-msg-id":`794c103d-a5d5-4ce1-bcd8-98ac6717c8e7`,"reply-thread-parent-user-id":`958683839`,"reply-thread-parent-user-login":`an1by`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1761435541217`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`@An1by Replying right now akidaKrutoi`,isAction:!1,emotes:[{type:`twitch`,name:`akidaKrutoi`,id:`emotesv2_f54e2bcddf4948808b845e37dd4e08de`,gif:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/3.0`},start:26,end:36}],msgId:`bc101ec7-5663-4ee5-9580-536ed9a5804e`},renderedText:`@An1by Replying right now <img src="https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/3.0 4x" title="akidaKrutoi" class="emote">`}}},m=`onEventReceived`;function h(e){if(typeof window>`u`)return;let t=p[e.startsWith(`testMessage_`)?e.replace(`testMessage_`,``):e];t&&window.dispatchEvent(new CustomEvent(m,{detail:t}))}function g(e){if(typeof window>`u`)return;let t=f[e.startsWith(`testAlert_`)?e.replace(`testAlert_`,``):e];t&&window.dispatchEvent(new CustomEvent(m,{detail:t}))}function _(e){if(!e.startsWith(`testMessage`))return null;let t=e.replace(`testMessage`,``);return t.charAt(0).toLowerCase()+t.slice(1)}function v(e){if(!e.startsWith(`testAlert`))return null;let t=e.replace(`testAlert`,``);return t.charAt(0).toLowerCase()+t.slice(1)}var y=function(e){return e.BROADCASTER=`broadcaster`,e.LEAD_MODERATOR=`lead_moderator`,e.MODERATOR=`moderator`,e.VIP=`vip`,e.ARTIST=`artist`,e.FOUNDER=`founder`,e.SUBSCRIBER=`subscriber`,e.TURBO=`turbo`,e.DEFAULT=`default`,e}({});e.AlertQueue=class{queue=[];isShowingAlert=!1;onNextAlert;constructor(e){this.onNextAlert=e}push(e){this.queue.push(e)}processNextAlert(){if(this.queue.length===0||this.isShowingAlert)return;let e=this.queue.shift();e&&(this.isShowingAlert=!0,this.onNextAlert(this,e))}},e.TwitchUserMessageData=({badges:e=[],tags:t={}})=>{let n=t=>!!e.find(e=>e.type===t),r=t.badges??``,i=t[`user-type`]??``,a=r.includes(`subscriber/1`)||t.subscriber===`1`||n(`subscriber`),o=r.includes(`founder/1`)||n(`founder`),s=r.includes(`broadcaster/1`)||n(`broadcaster`),c=t[`first-msg`]===`1`,l=t.turbo===`1`,u=t.vip===`1`||r.includes(`vip/1`)||n(`vip`),d=r.includes(`lead_moderator/1`)||n(`lead_moderator`),f=(t.mod===`1`||r.includes(`moderator/1`)||i===`mod`)&&!d||n(`moderator`),p=f||d,m=r.includes(`artist-badge/1`)||n(`artist-badge`),h=[];return s&&h.push(y.BROADCASTER),d&&h.push(y.LEAD_MODERATOR),f&&h.push(y.MODERATOR),u&&h.push(y.VIP),m&&h.push(y.ARTIST),o&&h.push(y.FOUNDER),a&&h.push(y.SUBSCRIBER),l&&h.push(y.TURBO),h.push(y.DEFAULT),{isSubscriber:a,isBroadcaster:s,isFirstMessageChatter:c,isFounder:o,isTurbo:l,isVip:u,isAnyModerator:p,isModerator:f,isLeadModerator:d,isArtist:m,roles:h,includesBadgeType:n,getSubscriberMonths:()=>{for(let e of[`badge-info`,`badges`]){let n=t[e];if(n){let e=n.match(/^subscriber\/(\d+)$/);if(e)return parseInt(e[1],10)}}return 0},getBadgeUrlByType:t=>e.find(e=>e.type===t)?.url}},e.UserRole=y,e.classifyEvent=r,e.getCacheKey=n,e.getTestAlertKey=v,e.getTestMessageKey=_,e.normalizeIncomingEvent=u,e.parseTier=t,e.testAlert=g,e.testAlerts=f,e.testMessage=h,e.testMessages=p,e.testOnWidgetLoadDetail=d})(this.WmakeStreamelementsEvents=this.WmakeStreamelementsEvents||{});
2
+ //# sourceMappingURL=index.iife.js.map