@notidotbot/noti-api-client 1.4.19 → 1.4.22

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.
@@ -164,6 +164,8 @@ export interface TrackedGame {
164
164
  pingRoleId?: string | null;
165
165
  minDiscountPercent?: number | null;
166
166
  atlOnly?: boolean;
167
+ /** Scope this tracked game to specific notification kinds. Empty/omitted = all kinds. */
168
+ kinds?: GameKind[];
167
169
  }
168
170
  export interface ChangelogGame {
169
171
  dbId?: string;
@@ -182,10 +184,14 @@ export interface GameConfig {
182
184
  digestHourUTC: number | null;
183
185
  digestWeekday: number | null;
184
186
  freeGamesEnabled: boolean;
187
+ /** Master switch for free DLC/loot alerts. `freeDlcStores` narrows it (empty = all stores). */
185
188
  freeDlcEnabled: boolean;
189
+ freeDlcStores: GameStore[];
186
190
  freeGameStores: GameStore[];
187
191
  upcomingFreeEnabled: boolean;
192
+ upcomingFreeStores: GameStore[];
188
193
  freeWeekendEnabled: boolean;
194
+ freeWeekendStores: GameStore[];
189
195
  discountsEnabled: boolean;
190
196
  discountStores: GameStore[];
191
197
  minDiscountPercent: number | null;
@@ -194,6 +200,7 @@ export interface GameConfig {
194
200
  tags: string[];
195
201
  studios: string[];
196
202
  allTimeLowEnabled: boolean;
203
+ allTimeLowStores: GameStore[];
197
204
  allTimeLowMaxPriceCents: number | null;
198
205
  changelogChannelId: string | null;
199
206
  changelogPingRoleId: string | null;
@@ -4,7 +4,7 @@ export declare class APIGuildDrops {
4
4
  private web;
5
5
  constructor(web: WebDataManager);
6
6
  getGuildDrops({ auth, guildId }: GuildDropsFunctionsInput['getGuildDrops']): Promise<WebResponse<GuildDropsData>>;
7
- updateGuildDrops({ auth, guildId, kickEnabled, twitchEnabled, liveNotifications, kickChannelId, twitchChannelId, kickRoleId, twitchRoleId, kickLiveNotificationChannelId, kickLiveNotificationRoleId, twitchLiveNotificationChannelId, twitchLiveNotificationRoleId, webhook, games }: GuildDropsFunctionsInput['updateGuildDrops']): Promise<WebResponse<GuildDropsData>>;
7
+ updateGuildDrops({ auth, guildId, kickEnabled, twitchEnabled, kickLiveNotifications, twitchLiveNotifications, kickChannelId, twitchChannelId, kickRoleId, twitchRoleId, kickLiveNotificationChannelId, kickLiveNotificationRoleId, twitchLiveNotificationChannelId, twitchLiveNotificationRoleId, webhook, games }: GuildDropsFunctionsInput['updateGuildDrops']): Promise<WebResponse<GuildDropsData>>;
8
8
  }
9
9
  export type GuildDropsFunctionsInput = {
10
10
  'getGuildDrops': {
@@ -16,7 +16,8 @@ export type GuildDropsFunctionsInput = {
16
16
  guildId: string;
17
17
  kickEnabled?: boolean;
18
18
  twitchEnabled?: boolean;
19
- liveNotifications?: boolean;
19
+ kickLiveNotifications?: boolean;
20
+ twitchLiveNotifications?: boolean;
20
21
  kickChannelId?: string | null;
21
22
  kickLiveNotificationChannelId?: string | null;
22
23
  kickLiveNotificationRoleId?: string | null;
@@ -67,7 +68,8 @@ export type GameDropConfig = {
67
68
  export type GuildDropsData = {
68
69
  kickEnabled: boolean;
69
70
  twitchEnabled: boolean;
70
- liveNotifications: boolean;
71
+ kickLiveNotifications: boolean;
72
+ twitchLiveNotifications: boolean;
71
73
  kickChannelId: string | null;
72
74
  kickLiveNotificationChannelId: string | null;
73
75
  kickLiveNotificationRoleId: string | null;
@@ -14,14 +14,15 @@ class APIGuildDrops {
14
14
  endpoint: this.web.qp(`/data/guild/${guildId}/drops`),
15
15
  });
16
16
  }
17
- async updateGuildDrops({ auth, guildId, kickEnabled, twitchEnabled, liveNotifications, kickChannelId, twitchChannelId, kickRoleId, twitchRoleId, kickLiveNotificationChannelId, kickLiveNotificationRoleId, twitchLiveNotificationChannelId, twitchLiveNotificationRoleId, webhook, games }) {
17
+ async updateGuildDrops({ auth, guildId, kickEnabled, twitchEnabled, kickLiveNotifications, twitchLiveNotifications, kickChannelId, twitchChannelId, kickRoleId, twitchRoleId, kickLiveNotificationChannelId, kickLiveNotificationRoleId, twitchLiveNotificationChannelId, twitchLiveNotificationRoleId, webhook, games }) {
18
18
  return await this.web.request({
19
19
  method: 'PATCH', auth,
20
20
  endpoint: this.web.qp(`/data/guild/${guildId}/drops`),
21
21
  body: {
22
22
  kickEnabled,
23
23
  twitchEnabled,
24
- liveNotifications,
24
+ kickLiveNotifications,
25
+ twitchLiveNotifications,
25
26
  kickChannelId,
26
27
  kickLiveNotificationChannelId,
27
28
  kickLiveNotificationRoleId,
@@ -42,7 +42,8 @@ const GuildDropsSchema = zod_2.z.object({
42
42
  guildId: zod_2.z.string(),
43
43
  kickEnabled: zod_2.z.boolean(),
44
44
  twitchEnabled: zod_2.z.boolean(),
45
- liveNotifications: zod_2.z.boolean(),
45
+ kickLiveNotifications: zod_2.z.boolean(),
46
+ twitchLiveNotifications: zod_2.z.boolean(),
46
47
  kickChannelId: zod_2.z.string().nullable(),
47
48
  kickRoleId: zod_2.z.string().nullable(),
48
49
  twitchChannelId: zod_2.z.string().nullable(),
@@ -19,6 +19,12 @@ export declare const GameConfigZod: {
19
19
  digestWeekday: z.ZodNullable<z.ZodNumber>;
20
20
  freeGamesEnabled: z.ZodBoolean;
21
21
  freeDlcEnabled: z.ZodBoolean;
22
+ freeDlcStores: z.ZodArray<z.ZodEnum<{
23
+ steam: "steam";
24
+ epic: "epic";
25
+ gog: "gog";
26
+ prime: "prime";
27
+ }>>;
22
28
  freeGameStores: z.ZodArray<z.ZodEnum<{
23
29
  steam: "steam";
24
30
  epic: "epic";
@@ -26,7 +32,19 @@ export declare const GameConfigZod: {
26
32
  prime: "prime";
27
33
  }>>;
28
34
  upcomingFreeEnabled: z.ZodBoolean;
35
+ upcomingFreeStores: z.ZodArray<z.ZodEnum<{
36
+ steam: "steam";
37
+ epic: "epic";
38
+ gog: "gog";
39
+ prime: "prime";
40
+ }>>;
29
41
  freeWeekendEnabled: z.ZodBoolean;
42
+ freeWeekendStores: z.ZodArray<z.ZodEnum<{
43
+ steam: "steam";
44
+ epic: "epic";
45
+ gog: "gog";
46
+ prime: "prime";
47
+ }>>;
30
48
  discountsEnabled: z.ZodBoolean;
31
49
  discountStores: z.ZodArray<z.ZodEnum<{
32
50
  steam: "steam";
@@ -40,6 +58,12 @@ export declare const GameConfigZod: {
40
58
  tags: z.ZodArray<z.ZodString>;
41
59
  studios: z.ZodArray<z.ZodString>;
42
60
  allTimeLowEnabled: z.ZodBoolean;
61
+ allTimeLowStores: z.ZodArray<z.ZodEnum<{
62
+ steam: "steam";
63
+ epic: "epic";
64
+ gog: "gog";
65
+ prime: "prime";
66
+ }>>;
43
67
  allTimeLowMaxPriceCents: z.ZodNullable<z.ZodNumber>;
44
68
  changelogChannelId: z.ZodNullable<z.ZodString>;
45
69
  changelogPingRoleId: z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"everyone">, z.ZodLiteral<"here">]>>;
@@ -81,6 +105,12 @@ export declare const GameConfigZod: {
81
105
  pingRoleId: z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"everyone">, z.ZodLiteral<"here">]>>;
82
106
  minDiscountPercent: z.ZodNullable<z.ZodNumber>;
83
107
  atlOnly: z.ZodBoolean;
108
+ kinds: z.ZodArray<z.ZodEnum<{
109
+ free_game: "free_game";
110
+ free_dlc_or_loot: "free_dlc_or_loot";
111
+ discount: "discount";
112
+ upcoming_free: "upcoming_free";
113
+ }>>;
84
114
  }, z.core.$strip>>>;
85
115
  changelogGames: z.ZodArray<z.ZodLazy<z.ZodObject<{
86
116
  steamAppId: z.ZodNumber;
@@ -127,6 +157,12 @@ export declare const GameConfigZod: {
127
157
  pingRoleId: z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"everyone">, z.ZodLiteral<"here">]>>;
128
158
  minDiscountPercent: z.ZodNullable<z.ZodNumber>;
129
159
  atlOnly: z.ZodBoolean;
160
+ kinds: z.ZodArray<z.ZodEnum<{
161
+ free_game: "free_game";
162
+ free_dlc_or_loot: "free_dlc_or_loot";
163
+ discount: "discount";
164
+ upcoming_free: "upcoming_free";
165
+ }>>;
130
166
  }, z.core.$strip>;
131
167
  readonly GuildGameChangelogSchema: z.ZodObject<{
132
168
  steamAppId: z.ZodNumber;
@@ -31,6 +31,8 @@ const GuildTrackedGameSchema = zod_2.z.object({
31
31
  pingRoleId: zod_1.SnowFlakeOrEveryone.nullable(),
32
32
  minDiscountPercent: zod_2.z.number().min(0).max(100).nullable(),
33
33
  atlOnly: zod_2.z.boolean(),
34
+ // Scope to specific notification kinds. Empty = all kinds (backwards compatible).
35
+ kinds: (0, zod_1.NoDuplicate)(zod_2.z.array(schema_zod_1.GameKindEnum)),
34
36
  });
35
37
  // A game whose Steam patch notes / announcements the guild follows (independent of price
36
38
  // tracking).
@@ -51,11 +53,16 @@ const GuildGameConfigSchema = zod_2.z.object({
51
53
  digestHourUTC: zod_2.z.number().min(0).max(23).nullable(),
52
54
  digestWeekday: zod_2.z.number().min(0).max(6).nullable(),
53
55
  // Free-to-keep games (always free-tier), upcoming freebies, and Steam play-free weekends.
56
+ // Each `*Enabled` boolean is the master switch; the matching `*Stores` array narrows the
57
+ // type to specific stores (empty = all, same as freeGameStores).
54
58
  freeGamesEnabled: zod_2.z.boolean(),
55
59
  freeDlcEnabled: zod_2.z.boolean(),
60
+ freeDlcStores: (0, zod_1.NoDuplicate)(zod_2.z.array(schema_zod_1.GameStoreEnum)),
56
61
  freeGameStores: (0, zod_1.NoDuplicate)(zod_2.z.array(schema_zod_1.GameStoreEnum)),
57
62
  upcomingFreeEnabled: zod_2.z.boolean(),
63
+ upcomingFreeStores: (0, zod_1.NoDuplicate)(zod_2.z.array(schema_zod_1.GameStoreEnum)),
58
64
  freeWeekendEnabled: zod_2.z.boolean(),
65
+ freeWeekendStores: (0, zod_1.NoDuplicate)(zod_2.z.array(schema_zod_1.GameStoreEnum)),
59
66
  // Discount alerts — min-discount + max-price filters are free.
60
67
  discountsEnabled: zod_2.z.boolean(),
61
68
  discountStores: (0, zod_1.NoDuplicate)(zod_2.z.array(schema_zod_1.GameStoreEnum)),
@@ -67,6 +74,7 @@ const GuildGameConfigSchema = zod_2.z.object({
67
74
  studios: zod_2.z.array(zod_2.z.string()),
68
75
  // All-Time-Low alerts (PREMIUM).
69
76
  allTimeLowEnabled: zod_2.z.boolean(),
77
+ allTimeLowStores: (0, zod_1.NoDuplicate)(zod_2.z.array(schema_zod_1.GameStoreEnum)),
70
78
  allTimeLowMaxPriceCents: zod_2.z.number().min(0).nullable(),
71
79
  // Game changelogs routing (PatchBot-style).
72
80
  changelogChannelId: zod_1.SnowFlake.nullable(),
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.full.d.ts","../node_modules/.pnpm/@prisma+client@6.14.0_prisma@6.14.0_typescript@5.5.4/node_modules/@prisma/client/runtime/library.d.ts","../node_modules/.pnpm/@prisma+client@6.14.0_prisma@6.14.0_typescript@5.5.4/node_modules/.prisma/client/index.d.ts","../node_modules/.pnpm/@prisma+client@6.14.0_prisma@6.14.0_typescript@5.5.4/node_modules/.prisma/client/ts-prisma.d.ts","../node_modules/.pnpm/@prisma+client@6.14.0_prisma@6.14.0_typescript@5.5.4/node_modules/.prisma/client/default.d.ts","../node_modules/.pnpm/@prisma+client@6.14.0_prisma@6.14.0_typescript@5.5.4/node_modules/@prisma/client/default.d.ts","../node_modules/.pnpm/ts-prisma@1.3.3/node_modules/ts-prisma/dist/types.d.ts","../node_modules/.pnpm/ts-prisma@1.3.3/node_modules/ts-prisma/dist/index.d.ts","../src/other/enums.ts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/standard-schema.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/registries.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/to-json-schema.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/util.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/versions.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/schemas.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/checks.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/errors.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/core.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/parse.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/regexes.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ar.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/az.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/be.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/bg.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ca.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/cs.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/da.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/de.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/en.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/eo.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/es.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fa.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fi.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fr.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fr-CA.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/he.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/hu.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/hy.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/id.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/is.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/it.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ja.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ka.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/kh.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/km.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ko.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/lt.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/mk.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ms.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/nl.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/no.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ota.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ps.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/pl.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/pt.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ru.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/sl.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/sv.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ta.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/th.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/tr.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ua.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/uk.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ur.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/uz.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/vi.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/zh-CN.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/zh-TW.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/yo.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/index.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/doc.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/api.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema-processors.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema-generator.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/index.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/errors.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/parse.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/schemas.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/checks.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/compat.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/from-json-schema.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/iso.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/coerce.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/external.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/index.d.cts","../src/types.ts","../src/other/types.ts","../src/other/zod/schema.zod.ts","../src/other/zod/twitchStreamer.zod.ts","../src/other/zod/tiktokStreamer.zod.ts","../src/other/zod/rumbleStreamer.zod.ts","../src/other/zod/kickStreamer.zod.ts","../src/other/zod/starboard.zod.ts","../src/other/zod/r2Storage.zod.ts","../src/other/zod/client.zod.ts","../src/other/zod/guild.zod.ts","../src/other/zod/user.zod.ts","../src/other/zod/team.zod.ts","../src/other/zod/zod.ts","../src/other/zod/youtubeStreamer.zod.ts","../src/other/zod/giveaways.zod.ts","../src/other/zod/member.zod.ts","../src/other/zod/gameConfig.zod.ts","../src/other/zod/drops.zod.ts","../src/other/prisma.ts","../src/classes/guildPlatform.ts","../src/classes/guildPlatformAction.ts","../src/classes/guildStarboard.ts","../src/classes/guildGiveaway.ts","../src/classes/guildDrops.ts","../src/classes/dropsGames.ts","../src/classes/games.ts","../node_modules/.pnpm/axios@1.7.7/node_modules/axios/index.d.ts","../src/classes/telemetry.ts","../src/classes/@me.ts","../src/classes/sessions.ts","../src/classes/platform.ts","../src/classes/premium.ts","../src/classes/linked.ts","../src/classes/client.ts","../src/classes/teams.ts","../src/classes/other.ts","../src/modules/stripe.ts","../src/classes/guild.ts","../src/classes/emotes.ts","../src/classes/files.ts","../src/classes/admin.ts","../src/classes/vods.ts","../src/classes/user.ts","../src/core/utils.ts","../src/core/manager.ts","../src/index.ts","../src/other/bitfields.ts","../src/other/templates.ts","../src/other/utils.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/dom-events.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/readline/promises.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/sea.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/test.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/globals.global.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true},{"version":"9c00a480825408b6a24c63c1b71362232927247595d7c97659bc24dc68ae0757","affectsGlobalScope":true},{"version":"0c9e4447ddca10e8097a736ce41bb37ac3389ede46e419ee78c1161a14e9e8ba","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","d49d0829117db7c95f9f4a4b9ed70e4d6cb88a0bc383fe29eeb5466b045f7d00","1e47493d98dea8aee30b92aa623afcf8e35c6bc365824f2b5b4ab7895bfeb631","a9db858461e70652f6068d06e02a8723d28e78576199f23cb24d1d0e84d2cc7c","d618048f120cb229e81a53d3f999a89a02f4d5499106ef65f970b2d20bd5719a","51ebca098538b252953b1ef83c165f25b52271bfb6049cd09d197dddd4cd43c5","96f3addb3ea11b19d08cb89f473c50f8f9615aca139248b94662dd2d2f0cfeaa","f297b960111608140f549774fb64e5596de48a1f9c67a1ed68047adf0fdcb50f",{"version":"27ddd5aee91d0bcdc9ae97449d9014d9a46b74f488cc15c82f2e560c183fce30","signature":"ab05ff78b4240ccf3a01fad8890b50dbd3a6b97ab2129b51eb7ef080bef641e8"},"c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6","835fb2909ce458740fb4a49fc61709896c6864f5ce3db7f0a88f06c720d74d02","6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc","ead8e39c2e11891f286b06ae2aa71f208b1802661fcdb2425cffa4f494a68854","82919acbb38870fcf5786ec1292f0f5afe490f9b3060123e48675831bd947192","e222701788ec77bd57c28facbbd142eadf5c749a74d586bc2f317db7e33544b1","09154713fae0ed7befacdad783e5bd1970c06fc41a5f866f7f933b96312ce764","8d67b13da77316a8a2fabc21d340866ddf8a4b99e76a6c951cc45189142df652","a91c8d28d10fee7fe717ddf3743f287b68770c813c98f796b6e38d5d164bd459","68add36d9632bc096d7245d24d6b0b8ad5f125183016102a3dad4c9c2438ccb0","3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4","f6f827cd43e92685f194002d6b52a9408309cda1cec46fb7ca8489a95cbd2fd4","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","a270a1a893d1aee5a3c1c8c276cd2778aa970a2741ee2ccf29cc3210d7da80f5","add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79","8926594ee895917e90701d8cbb5fdf77fc238b266ac540f929c7253f8ad6233d","2f67911e4bf4e0717dc2ded248ce2d5e4398d945ee13889a6852c1233ea41508","d8430c275b0f59417ea8e173cfb888a4477b430ec35b595bf734f3ec7a7d729f","69364df1c776372d7df1fb46a6cb3a6bf7f55e700f533a104e3f9d70a32bec18","6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c","5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e","ed8763205f02fb65e84eff7432155258df7f93b7d938f01785cb447d043d53f3","30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65","e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761","2316301dd223d31962d917999acf8e543e0119c5d24ec984c9f22cb23247160c","58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307","e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9","d4a5b1d2ff02c37643e18db302488cd64c342b00e2786e65caac4e12bda9219b","29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd",{"version":"beb9660c1c56503cb4b0d7e0fad7883f5734b511cbdf623c943defed0e687d71","signature":"6b955093f3fdc52a0831668054c913fc75511262eb64847af36e31ecb5708128"},{"version":"28cb4161097bbde6c8889eeba50b7bc6a22a5567135e37335438061c6a1fefbe","signature":"66cacea4c2880b4be410969fe101c44c9548757563f82d0e4c70b556ee59487a"},{"version":"841b0fa3324dd0d7c3e6dc1145650723fdc35b96baad0e506892418533686bcb","signature":"663653f240c57017ce342733ed75013aed06bffa2607017194140cbe33e4d70f"},{"version":"042653ce0fadbabdb2359432afb57812427293e7278b7f73bd12b92240e61d71","signature":"7e886149c06e15a551b0a7ca929ad4070a0802c6d1bc48e863579103d3fa8780"},{"version":"57844e4eb3258e9f816ad5c8bbd0ac2bc003e49a57781eb94844e841f20a2f01","signature":"feaa6f7f61fb4fcd97bac8606339ebbeb86463a55de6b228a53ff2d444e047c8"},{"version":"3cdbe994d8ed7758d9dc50ad65de1d9b83a0c43cd3d148638450ca5f2adfffed","signature":"8043b17e22ecb3308335d4d231db13faad04cf4521a44a8f71b85e40e8dcc843"},{"version":"306a566faf3d8072b34b33394aa3f68a36ac103fcf132e566e086f1ad53b7245","signature":"e12dbdab896384092acba6f623d22407e351051dba7e74823d487111146cb795"},{"version":"a044f7925a07787ad420c58890db1d857c2096282483026074f2396f347d3cd1","signature":"495528f3fbc4a7f2ff2dcb18536d4d8b414e51cd5f433b891a1b32a6ae697ca4"},{"version":"0cb82f3e617b0f00351ac7b44892c9dc659fc1b0936d300d347923329b3fd97b","signature":"00a40998359d0dc5a0c070a1c160c42e787799a6049881f23e317fe8a30f5421"},{"version":"728c0f283943e7e59cfd46156ca25ddc90e2b1734c710f018944a01ebdb15908","signature":"126b7dc9c532b21d80ce2fa9faeb8edaabf501d24713f454d005cdd7074cd257"},{"version":"ccd52ba5d71aa6f6519e72e54b8d8d1c4168c87e98af45a089b7db4eacf7dd0b","signature":"a27bf5613e01a0e5a1e0648fcfe875f74314acc577fe7da5d951aa87fb1560b9"},{"version":"924fb784e529efe67920843f65b19685c31c07be428f864d5c74bc1081fe9605","signature":"ace526e98b36193aa0828bb900f7eb1714d42327222e368432a34dbb0d5475a8"},{"version":"067b2fd795380a4a8c6082f38d01123afa0867d81358e9353cb46f8c38ccc0a6","signature":"d7bd4ee24a8432f9adf5657b08065e30f9c781b0613e4e1ed6cea00317c39cc4"},{"version":"071794b1ad8d677a271f67ba930617d2f8f0eb617514dd0e5880da3e1d0f896f","signature":"55df2803e4e0d24d44432eec35002008bc7020fed2ed7389c35920bcd52c1974"},{"version":"49b2fe0c7074851242c71c7c66681a16891ebc44a0bb72d1f0696f4b9664bfe3","signature":"a08a49736684b5e5d4be12a7a55e5f5070e814a6698e4e22f273b6ab17a61a65"},{"version":"43ddb4be198f89d3d6f5246aabc13dee1a1eff7ec689eaafd11a0d338461eaa2","signature":"1cdc4434588d5741c0ff55b2fe33d1e289c21be27df0f40f6d953a4d22db6312"},{"version":"05cbc16c317497c2f367063da899d07d6188bc92332f0f43189da6742a2cdb90","signature":"ba14516573e92891bc24196401622c59906073e058627f41969f2cb6f7c5e035"},{"version":"5e9a1d1c3ad145ad7ff1176db77612e627562b48a03a5488102fac0d037e0094","signature":"57eb6755a0ac9eadf0e4a500fbcf0ee6016bde15cbcd97dba91ac855b27fcd1f"},{"version":"0696d408b5e5ad5ed61a2bd333afa4039c473d93c392fabe0ba0363bb76287d3","signature":"4661888eb9cb749678f87beff94b92a80217c1f60800c260047048aaed5e88e4"},{"version":"187c2136c0b23c93e82d80739880e106b3906ddf7f0faebb088305a060d8535d","signature":"c51466d0593a9abf9938bbbe981c9619088cf6b5c3be2e6342bab9b5336193dd"},{"version":"c4c3d77c29bc8b7fb4b390974ce19e32d5534053b4d8dc777694bdb11ea9f2fe","signature":"40a4f50f8794c3d04c3d229d8bdad3be951f36f489bc2e17f48173e5ed0ce4db"},{"version":"6ae6263e53ae653499e68015c90db41be1fe4d108182403d76c80f658b865719","signature":"926c66229d5a82017d71d641d154dc18325a87b6c98de9e0d9fae7598ded4932"},{"version":"9be5d3149239c45b905695e0d8533e868bbf46e284e091dcdb503476c2d20a57","signature":"6acdae50109e19f04c69a977d6bb4e8af47e7079b07f281937c94c9ce33c1838"},{"version":"a615de57261945f8b1bb5be3f6d5428463c03745d5fdc6258b504e1ff8cf5e15","signature":"3fe721fcbd9a0f94395b6a8d33647e644aea600a19f80d564298fab77c0a610a"},{"version":"68645c3cb285dae5d89824c21da2bc5cb4be1e3441e0db11faeae4aabbf6b818","signature":"3903473b60f3ae048a52250f71aeed37c5a7f86bb0b03c0aef0515b63f2b9742"},{"version":"8ac1334120cd84e74ff6d4b1b6a845f03cd97067f49bb0142d3feaf43bcc52b0","signature":"c7cef6f95bc598d935540c2df1bcfe35e6474f0d65383276470c6a2c75a8a166"},{"version":"e20d1d85b8d03bfe96e81604318948eabb86f495bdd42b48dc66ea5760b387ce","signature":"3596b2db8d188bf9d920e1e0bb7659f38278b9468a346f93cf458fb98cc289c1"},"01ba761ce6d75a4142858a053f45d64d255e057049ab1cc4d9a93e76b8b5c444",{"version":"46553d63a043f265dc0277d4e581c25f09cd85db8462f298aeabbb6426e1bcd7","signature":"529211e8512b052965f362df3e7cf74df8ee6385d43a3922645a6510c4a43c93"},{"version":"ea7b8af876696b99fa71d04aa331e245c4c2625e0a44e77711161b35933b7df0","signature":"45a4c8c3e4712fc4cb23df1dcb9ca6fc22c397882fe1d61af7f12795c83193f2"},{"version":"c055cf567e692f122833a97ed774c3962cc0f3a0d82af58c4a0fe686b8e7be4f","signature":"b2317a52014b65c76fa32c205b88e755f62e1d47908e5b26271ba17c8190f046"},{"version":"264e8692cef39b60161bf7d47fa08a5d1b81fa51718b3744faa8a3fa33c2df57","signature":"d5c8c22aa278acc2e75306110676b103538acd3badf0bb73c40c85379d696896"},{"version":"f9ad070a882d77eaf841105244a8d1e64dde4a111c45f1fe28ff5b650c86b39b","signature":"9f1597c9095427c2e3eb5e1225d816651b18455b2f4f2e4f0ae96322b50177b1"},{"version":"a035945dde63fbf5fa4fa7979ce6cd17c5c442edcc682822c2fbf119141da448","signature":"da6dd067c34f8d3da41572f34685acc8bbaa91873a589bc08020a874c5d3cb57"},{"version":"e6789ce9a5729d57ab5d8be32b0198402c839364122ddca24a67f5edd295c5db","signature":"d2bf03bb431569cd05f34e05c93d6d8a49e57f4ce47255ee0e7f764e0b47c035"},{"version":"7814cddfb09c44577ab03b1744d90994cecaeeb94cf7e9005d8d97feb12f21fb","signature":"5fc24c12d7e8245f53651bd8a30040ce4e5ab425751e2c3080cca68568b5c6e7"},{"version":"089b4a5122116e18c72d6efbb6ef6678b73141a3ba2da7320bf79f55a182d405","signature":"a63720ad8794b24944cc00c2f77497987a6c489a3c4926479044957990e53ff3"},{"version":"b5bf0380ff1498cbaab3dd56b6f5d27df1e5154730f3d6ac35bb6fc1894ec32d","signature":"ba3712d21eb23b7992d26d56f37f2f6c68630116df21072785985b819a68e0f9"},{"version":"62ab70f2246cc019c4a5bf414bc5526b045a45e8d6ef673627b7a5c4a48e456b","signature":"dde9edd7d4577c3235967d1f8c206186129870085d7c58296a0cbfc6863a1de1"},{"version":"49828d9f2e0f8e4d1d58bb5d421d9cae4a3d13931c5eb4dd65ece493bf0f4bfa","signature":"91c4746a0cc7962a03f9755f9743cc84a21c415cd588bd15ce29ab381a2edd5c"},{"version":"11a57a5b86b149ad724a79276cf59ed3047c9a566de402e30d03236ead38c0be","signature":"ac0fbda6cd3a5496bb813d1357c12219762667efbe2908b271047a63aba1a9d2"},{"version":"50e17bf94e31c6599ede130d10841a3d877c58d1a012c1913341c73fbba7a659","signature":"9228860d93a0fe68834eac9a3fbc71cfe4b76af57164268195e75d829ed04ddd"},{"version":"f573f7fbd46a3c0d24c23a2eff99fad440ead16b784d60e2fe71922cbc1235e7","signature":"0176cee77f74d5abcc971220f69d01baae566e84837d23b07ccd89637323f44b"},{"version":"b1046a11c4c8f825a7c1b06c49b724eec502cfae764207bc3121dc3e57122b8c","signature":"242aea0ac543b3c0e4d4ce58e0ce217221ab060d7f81a5412fdbc2d895e66fa8"},{"version":"2b129c1a7e28a055d69326d41c9afedd144b1038acfd7c2879c5a7fa9f2620a5","signature":"651f4335e37cd0ab7074b47dd301c07f7aa43a90f8da86f66605765b57686f13"},{"version":"5dc0c04fe33beb783d7bd9b6384b0275de207c44b38cb4424b6978a849553cb4","signature":"dd9736105d8914322921558388124c1c88df9827a00f1076cf563dd7e368643d"},{"version":"2f417baeb8a2dca64b44f33e5207f471fce5071ea1ce566d6eb9653f8964087e","signature":"991f779837c5143585e45ed6502ab9b0358904e9a009a4989f12d8681ae61789"},{"version":"f12a3ce3b11033db007bd25bca185a49452df7763d9815584b6e758f19ee62be","signature":"3ff7f41c068e63ecb355eefc99009b6e0758cde7f95621cffdf74bec4b7c9a6a"},{"version":"5e445cc679bcacc2a1a32ce4bd6795a5a7defc2a674887f83aaf09fb700c058c","signature":"2096b6080d1afce928fd6b9de50322862b1a3ce696c2d76e20c6db0916dd71f8"},{"version":"c40ff490af92ec2260fbe54a5df54864dd58b7f108785c40490632fe7a91cf36","signature":"12ffed003e27f1a71cce0607999847f51db588d71491c89fe1a71bddf86a28c6"},"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"392eadc2af403dd10b4debfbc655c089a7fa6a9750caeb770cfb30051e55e848","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"c48c503c6b3f63baf18257e9a87559b5602a4e960107c762586d2a6a62b64a18","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"1493cc4d72bfaabe2ac13e987d026a5fc99a816f6289bfca7192834a396205cf","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"abe61b580e030f1ca3ee548c8fd7b40fc686a97a056d5d1481f34c39c637345f","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc"],"root":[72,[150,176],[178,199]],"options":{"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9},"fileIdsList":[[66,67],[65],[65,69],[68],[200],[235],[236,241,270],[237,242,248,249,256,267,278],[237,238,248,256],[239,279],[240,241,249,257],[241,267,275],[242,244,248,256],[235,243],[244,245],[248],[246,248],[235,248],[248,249,250,267,278],[248,249,250,263,267,270],[233,236,283],[244,248,251,256,267,278],[248,249,251,252,256,267,275,278],[251,253,267,275,278],[200,201,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285],[248,254],[255,278,283],[244,248,256,267],[257],[258],[235,259],[256,257,260,277,283],[261],[262],[248,263,264],[263,265,279,281],[236,248,267,268,269,270],[236,267,269],[267,268],[270],[271],[235,267],[248,273,274],[273,274],[241,256,267,275],[276],[256,277],[236,251,262,278],[241,279],[267,280],[255,281],[282],[236,241,248,250,259,267,278,281,283],[267,284],[70],[210,214,278],[210,267,278],[205],[207,210,275,278],[256,275],[286],[205,286],[207,210,256,278],[202,203,206,209,236,248,267,278],[202,208],[206,210,236,270,278,286],[236,286],[226,236,286],[204,205,286],[210],[204,205,206,207,208,209,210,211,212,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232],[210,217,218],[208,210,218,219],[209],[202,205,210],[210,214,218,219],[214],[208,210,213,278],[202,207,208,210,214,217],[236,267],[205,210,226,236,283,286],[148],[139],[139,142],[134,137,139,140,141,142,143,144,145,146,147],[73,75,142],[139,140],[74,139,141],[75,77,79,80,81,82],[77,79,81,82],[77,79,81],[74,77,79,80,82],[73,75,76,77,78,79,80,81,82,83,84,134,135,136,137,138],[73,75,76,79],[75,76,79],[79,82],[73,74,76,77,78,80,81,82],[73,74,75,79,139],[79,80,81,82],[81],[85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133],[150,169,195],[150,195],[69,150,169,187,195],[69,150,169,170,195],[150,151,169,195],[150,179,195],[150,169,179,195],[150,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194],[177],[69,72,150,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,195],[71,150,169],[69,71,72,149,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168],[150],[69,149,152,163,169],[149,151],[69,149,152,153,154,155,156,157,158,159,160,161,162,164,169]],"referencedMap":[[68,1],[66,2],[67,3],[69,4],[200,5],[201,5],[235,6],[236,7],[237,8],[238,9],[239,10],[240,11],[241,12],[242,13],[243,14],[244,15],[245,15],[247,16],[246,17],[248,18],[249,19],[250,20],[234,21],[251,22],[252,23],[253,24],[286,25],[254,26],[255,27],[256,28],[257,29],[258,30],[259,31],[260,32],[261,33],[262,34],[263,35],[264,35],[265,36],[267,37],[269,38],[268,39],[270,40],[271,41],[272,42],[273,43],[274,44],[275,45],[276,46],[277,47],[278,48],[279,49],[280,50],[281,51],[282,52],[283,53],[284,54],[71,55],[217,56],[224,57],[216,56],[231,58],[208,59],[207,60],[230,61],[225,62],[228,63],[210,64],[209,65],[205,66],[204,67],[227,68],[206,69],[211,70],[215,70],[233,71],[232,70],[219,72],[220,73],[222,74],[218,75],[221,76],[226,61],[213,77],[214,78],[223,79],[203,80],[229,81],[149,82],[143,83],[147,84],[144,84],[140,83],[148,85],[145,86],[146,84],[141,87],[142,88],[136,89],[80,90],[82,91],[81,92],[139,93],[138,94],[137,95],[83,90],[75,96],[79,97],[76,98],[77,99],[85,100],[86,100],[87,100],[88,100],[89,100],[90,100],[91,100],[92,100],[93,100],[94,100],[95,100],[96,100],[97,100],[99,100],[98,100],[100,100],[101,100],[102,100],[103,100],[134,101],[104,100],[105,100],[106,100],[107,100],[108,100],[109,100],[110,100],[111,100],[112,100],[113,100],[114,100],[115,100],[116,100],[118,100],[117,100],[119,100],[120,100],[121,100],[122,100],[123,100],[124,100],[125,100],[126,100],[127,100],[128,100],[129,100],[130,100],[133,100],[131,100],[132,100],[179,102],[191,102],[184,102],[175,103],[189,103],[190,103],[176,103],[188,104],[174,103],[173,102],[170,102],[171,105],[172,102],[183,103],[186,103],[181,102],[182,106],[180,107],[185,102],[178,102],[193,108],[192,103],[195,109],[194,110],[196,111],[187,112],[169,113],[151,114],[199,114],[159,115],[168,115],[167,115],[165,115],[160,115],[156,115],[166,115],[158,115],[155,115],[152,116],[157,115],[162,115],[154,115],[153,115],[161,115],[164,115],[163,117]]},"version":"5.5.4"}
1
+ {"program":{"fileNames":["../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.full.d.ts","../node_modules/.pnpm/@prisma+client@6.14.0_prisma@6.14.0_typescript@5.5.4/node_modules/@prisma/client/runtime/library.d.ts","../node_modules/.pnpm/@prisma+client@6.14.0_prisma@6.14.0_typescript@5.5.4/node_modules/.prisma/client/index.d.ts","../node_modules/.pnpm/@prisma+client@6.14.0_prisma@6.14.0_typescript@5.5.4/node_modules/.prisma/client/ts-prisma.d.ts","../node_modules/.pnpm/@prisma+client@6.14.0_prisma@6.14.0_typescript@5.5.4/node_modules/.prisma/client/default.d.ts","../node_modules/.pnpm/@prisma+client@6.14.0_prisma@6.14.0_typescript@5.5.4/node_modules/@prisma/client/default.d.ts","../node_modules/.pnpm/ts-prisma@1.3.3/node_modules/ts-prisma/dist/types.d.ts","../node_modules/.pnpm/ts-prisma@1.3.3/node_modules/ts-prisma/dist/index.d.ts","../src/other/enums.ts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/standard-schema.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/registries.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/to-json-schema.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/util.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/versions.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/schemas.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/checks.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/errors.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/core.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/parse.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/regexes.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ar.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/az.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/be.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/bg.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ca.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/cs.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/da.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/de.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/en.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/eo.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/es.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fa.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fi.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fr.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/fr-CA.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/he.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/hu.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/hy.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/id.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/is.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/it.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ja.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ka.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/kh.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/km.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ko.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/lt.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/mk.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ms.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/nl.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/no.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ota.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ps.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/pl.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/pt.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ru.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/sl.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/sv.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ta.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/th.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/tr.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ua.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/uk.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/ur.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/uz.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/vi.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/zh-CN.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/zh-TW.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/yo.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/locales/index.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/doc.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/api.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema-processors.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema-generator.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/index.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/errors.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/parse.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/schemas.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/checks.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/compat.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/from-json-schema.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/iso.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/coerce.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/external.d.cts","../node_modules/.pnpm/zod@4.3.6/node_modules/zod/index.d.cts","../src/types.ts","../src/other/types.ts","../src/other/zod/schema.zod.ts","../src/other/zod/twitchStreamer.zod.ts","../src/other/zod/tiktokStreamer.zod.ts","../src/other/zod/rumbleStreamer.zod.ts","../src/other/zod/kickStreamer.zod.ts","../src/other/zod/starboard.zod.ts","../src/other/zod/r2Storage.zod.ts","../src/other/zod/client.zod.ts","../src/other/zod/guild.zod.ts","../src/other/zod/user.zod.ts","../src/other/zod/team.zod.ts","../src/other/zod/zod.ts","../src/other/zod/youtubeStreamer.zod.ts","../src/other/zod/giveaways.zod.ts","../src/other/zod/member.zod.ts","../src/other/zod/gameConfig.zod.ts","../src/other/zod/drops.zod.ts","../src/other/prisma.ts","../src/classes/guildPlatform.ts","../src/classes/guildPlatformAction.ts","../src/classes/guildStarboard.ts","../src/classes/guildGiveaway.ts","../src/classes/guildDrops.ts","../src/classes/dropsGames.ts","../src/classes/games.ts","../node_modules/.pnpm/axios@1.7.7/node_modules/axios/index.d.ts","../src/classes/telemetry.ts","../src/classes/@me.ts","../src/classes/sessions.ts","../src/classes/platform.ts","../src/classes/premium.ts","../src/classes/linked.ts","../src/classes/client.ts","../src/classes/teams.ts","../src/classes/other.ts","../src/modules/stripe.ts","../src/classes/guild.ts","../src/classes/emotes.ts","../src/classes/files.ts","../src/classes/admin.ts","../src/classes/vods.ts","../src/classes/user.ts","../src/core/utils.ts","../src/core/manager.ts","../src/index.ts","../src/other/bitfields.ts","../src/other/templates.ts","../src/other/utils.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/dom-events.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/readline/promises.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/sea.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/test.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/globals.global.d.ts","../node_modules/.pnpm/@types+node@20.14.7/node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true},{"version":"9c00a480825408b6a24c63c1b71362232927247595d7c97659bc24dc68ae0757","affectsGlobalScope":true},{"version":"0c9e4447ddca10e8097a736ce41bb37ac3389ede46e419ee78c1161a14e9e8ba","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","d49d0829117db7c95f9f4a4b9ed70e4d6cb88a0bc383fe29eeb5466b045f7d00","c93581a3c932f5a332ad3134881965945226801857aa12b7d97b08697fdfc707","a9db858461e70652f6068d06e02a8723d28e78576199f23cb24d1d0e84d2cc7c","d618048f120cb229e81a53d3f999a89a02f4d5499106ef65f970b2d20bd5719a","51ebca098538b252953b1ef83c165f25b52271bfb6049cd09d197dddd4cd43c5","96f3addb3ea11b19d08cb89f473c50f8f9615aca139248b94662dd2d2f0cfeaa","f297b960111608140f549774fb64e5596de48a1f9c67a1ed68047adf0fdcb50f",{"version":"27ddd5aee91d0bcdc9ae97449d9014d9a46b74f488cc15c82f2e560c183fce30","signature":"ab05ff78b4240ccf3a01fad8890b50dbd3a6b97ab2129b51eb7ef080bef641e8"},"c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6","835fb2909ce458740fb4a49fc61709896c6864f5ce3db7f0a88f06c720d74d02","6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc","ead8e39c2e11891f286b06ae2aa71f208b1802661fcdb2425cffa4f494a68854","82919acbb38870fcf5786ec1292f0f5afe490f9b3060123e48675831bd947192","e222701788ec77bd57c28facbbd142eadf5c749a74d586bc2f317db7e33544b1","09154713fae0ed7befacdad783e5bd1970c06fc41a5f866f7f933b96312ce764","8d67b13da77316a8a2fabc21d340866ddf8a4b99e76a6c951cc45189142df652","a91c8d28d10fee7fe717ddf3743f287b68770c813c98f796b6e38d5d164bd459","68add36d9632bc096d7245d24d6b0b8ad5f125183016102a3dad4c9c2438ccb0","3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4","f6f827cd43e92685f194002d6b52a9408309cda1cec46fb7ca8489a95cbd2fd4","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","a270a1a893d1aee5a3c1c8c276cd2778aa970a2741ee2ccf29cc3210d7da80f5","add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79","8926594ee895917e90701d8cbb5fdf77fc238b266ac540f929c7253f8ad6233d","2f67911e4bf4e0717dc2ded248ce2d5e4398d945ee13889a6852c1233ea41508","d8430c275b0f59417ea8e173cfb888a4477b430ec35b595bf734f3ec7a7d729f","69364df1c776372d7df1fb46a6cb3a6bf7f55e700f533a104e3f9d70a32bec18","6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c","5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e","ed8763205f02fb65e84eff7432155258df7f93b7d938f01785cb447d043d53f3","30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65","e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761","2316301dd223d31962d917999acf8e543e0119c5d24ec984c9f22cb23247160c","58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307","e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9","d4a5b1d2ff02c37643e18db302488cd64c342b00e2786e65caac4e12bda9219b","29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd",{"version":"beb9660c1c56503cb4b0d7e0fad7883f5734b511cbdf623c943defed0e687d71","signature":"6b955093f3fdc52a0831668054c913fc75511262eb64847af36e31ecb5708128"},{"version":"28cb4161097bbde6c8889eeba50b7bc6a22a5567135e37335438061c6a1fefbe","signature":"66cacea4c2880b4be410969fe101c44c9548757563f82d0e4c70b556ee59487a"},{"version":"841b0fa3324dd0d7c3e6dc1145650723fdc35b96baad0e506892418533686bcb","signature":"663653f240c57017ce342733ed75013aed06bffa2607017194140cbe33e4d70f"},{"version":"042653ce0fadbabdb2359432afb57812427293e7278b7f73bd12b92240e61d71","signature":"7e886149c06e15a551b0a7ca929ad4070a0802c6d1bc48e863579103d3fa8780"},{"version":"57844e4eb3258e9f816ad5c8bbd0ac2bc003e49a57781eb94844e841f20a2f01","signature":"feaa6f7f61fb4fcd97bac8606339ebbeb86463a55de6b228a53ff2d444e047c8"},{"version":"3cdbe994d8ed7758d9dc50ad65de1d9b83a0c43cd3d148638450ca5f2adfffed","signature":"8043b17e22ecb3308335d4d231db13faad04cf4521a44a8f71b85e40e8dcc843"},{"version":"306a566faf3d8072b34b33394aa3f68a36ac103fcf132e566e086f1ad53b7245","signature":"e12dbdab896384092acba6f623d22407e351051dba7e74823d487111146cb795"},{"version":"a044f7925a07787ad420c58890db1d857c2096282483026074f2396f347d3cd1","signature":"495528f3fbc4a7f2ff2dcb18536d4d8b414e51cd5f433b891a1b32a6ae697ca4"},{"version":"0cb82f3e617b0f00351ac7b44892c9dc659fc1b0936d300d347923329b3fd97b","signature":"00a40998359d0dc5a0c070a1c160c42e787799a6049881f23e317fe8a30f5421"},{"version":"728c0f283943e7e59cfd46156ca25ddc90e2b1734c710f018944a01ebdb15908","signature":"126b7dc9c532b21d80ce2fa9faeb8edaabf501d24713f454d005cdd7074cd257"},{"version":"ccd52ba5d71aa6f6519e72e54b8d8d1c4168c87e98af45a089b7db4eacf7dd0b","signature":"a27bf5613e01a0e5a1e0648fcfe875f74314acc577fe7da5d951aa87fb1560b9"},{"version":"924fb784e529efe67920843f65b19685c31c07be428f864d5c74bc1081fe9605","signature":"ace526e98b36193aa0828bb900f7eb1714d42327222e368432a34dbb0d5475a8"},{"version":"067b2fd795380a4a8c6082f38d01123afa0867d81358e9353cb46f8c38ccc0a6","signature":"d7bd4ee24a8432f9adf5657b08065e30f9c781b0613e4e1ed6cea00317c39cc4"},{"version":"071794b1ad8d677a271f67ba930617d2f8f0eb617514dd0e5880da3e1d0f896f","signature":"55df2803e4e0d24d44432eec35002008bc7020fed2ed7389c35920bcd52c1974"},{"version":"49b2fe0c7074851242c71c7c66681a16891ebc44a0bb72d1f0696f4b9664bfe3","signature":"a08a49736684b5e5d4be12a7a55e5f5070e814a6698e4e22f273b6ab17a61a65"},{"version":"43ddb4be198f89d3d6f5246aabc13dee1a1eff7ec689eaafd11a0d338461eaa2","signature":"1cdc4434588d5741c0ff55b2fe33d1e289c21be27df0f40f6d953a4d22db6312"},{"version":"05cbc16c317497c2f367063da899d07d6188bc92332f0f43189da6742a2cdb90","signature":"ba14516573e92891bc24196401622c59906073e058627f41969f2cb6f7c5e035"},{"version":"ba36fc4fdb71bede67da6f9e3945a74c365a6f0bcf218762c9df57aaf42edce7","signature":"a8aae2d5e14b6d47b1bd3b12e7a92a39f3a64897d8068fa3283842fdab54d111"},{"version":"9f90a368449ffff6b280e5ad945912b8aeff5bde30f842baf2f607ab4c39850d","signature":"4661888eb9cb749678f87beff94b92a80217c1f60800c260047048aaed5e88e4"},{"version":"187c2136c0b23c93e82d80739880e106b3906ddf7f0faebb088305a060d8535d","signature":"c51466d0593a9abf9938bbbe981c9619088cf6b5c3be2e6342bab9b5336193dd"},{"version":"c4c3d77c29bc8b7fb4b390974ce19e32d5534053b4d8dc777694bdb11ea9f2fe","signature":"40a4f50f8794c3d04c3d229d8bdad3be951f36f489bc2e17f48173e5ed0ce4db"},{"version":"6ae6263e53ae653499e68015c90db41be1fe4d108182403d76c80f658b865719","signature":"926c66229d5a82017d71d641d154dc18325a87b6c98de9e0d9fae7598ded4932"},{"version":"9be5d3149239c45b905695e0d8533e868bbf46e284e091dcdb503476c2d20a57","signature":"6acdae50109e19f04c69a977d6bb4e8af47e7079b07f281937c94c9ce33c1838"},{"version":"a615de57261945f8b1bb5be3f6d5428463c03745d5fdc6258b504e1ff8cf5e15","signature":"3fe721fcbd9a0f94395b6a8d33647e644aea600a19f80d564298fab77c0a610a"},{"version":"e98391305c4d4305bdbad7126c1353ac1ec5db0afc00b790a80adf14b3277a22","signature":"a5c13a84bf33a9104c4458ba2d49a9ff60dc883e92c83953512ac7cad2ef6e7b"},{"version":"8ac1334120cd84e74ff6d4b1b6a845f03cd97067f49bb0142d3feaf43bcc52b0","signature":"c7cef6f95bc598d935540c2df1bcfe35e6474f0d65383276470c6a2c75a8a166"},{"version":"ef79224dd6e96c4a8148eb520445cda277e034c5632603f88f4e295cea487f16","signature":"d192c3efd18b928b8c6ef8544e1bd5dd0b55082895549a9c6ba15970291e413c"},"01ba761ce6d75a4142858a053f45d64d255e057049ab1cc4d9a93e76b8b5c444",{"version":"46553d63a043f265dc0277d4e581c25f09cd85db8462f298aeabbb6426e1bcd7","signature":"529211e8512b052965f362df3e7cf74df8ee6385d43a3922645a6510c4a43c93"},{"version":"ea7b8af876696b99fa71d04aa331e245c4c2625e0a44e77711161b35933b7df0","signature":"45a4c8c3e4712fc4cb23df1dcb9ca6fc22c397882fe1d61af7f12795c83193f2"},{"version":"c055cf567e692f122833a97ed774c3962cc0f3a0d82af58c4a0fe686b8e7be4f","signature":"b2317a52014b65c76fa32c205b88e755f62e1d47908e5b26271ba17c8190f046"},{"version":"264e8692cef39b60161bf7d47fa08a5d1b81fa51718b3744faa8a3fa33c2df57","signature":"d5c8c22aa278acc2e75306110676b103538acd3badf0bb73c40c85379d696896"},{"version":"f9ad070a882d77eaf841105244a8d1e64dde4a111c45f1fe28ff5b650c86b39b","signature":"9f1597c9095427c2e3eb5e1225d816651b18455b2f4f2e4f0ae96322b50177b1"},{"version":"a035945dde63fbf5fa4fa7979ce6cd17c5c442edcc682822c2fbf119141da448","signature":"da6dd067c34f8d3da41572f34685acc8bbaa91873a589bc08020a874c5d3cb57"},{"version":"e6789ce9a5729d57ab5d8be32b0198402c839364122ddca24a67f5edd295c5db","signature":"d2bf03bb431569cd05f34e05c93d6d8a49e57f4ce47255ee0e7f764e0b47c035"},{"version":"7814cddfb09c44577ab03b1744d90994cecaeeb94cf7e9005d8d97feb12f21fb","signature":"5fc24c12d7e8245f53651bd8a30040ce4e5ab425751e2c3080cca68568b5c6e7"},{"version":"089b4a5122116e18c72d6efbb6ef6678b73141a3ba2da7320bf79f55a182d405","signature":"a63720ad8794b24944cc00c2f77497987a6c489a3c4926479044957990e53ff3"},{"version":"b5bf0380ff1498cbaab3dd56b6f5d27df1e5154730f3d6ac35bb6fc1894ec32d","signature":"ba3712d21eb23b7992d26d56f37f2f6c68630116df21072785985b819a68e0f9"},{"version":"62ab70f2246cc019c4a5bf414bc5526b045a45e8d6ef673627b7a5c4a48e456b","signature":"dde9edd7d4577c3235967d1f8c206186129870085d7c58296a0cbfc6863a1de1"},{"version":"49828d9f2e0f8e4d1d58bb5d421d9cae4a3d13931c5eb4dd65ece493bf0f4bfa","signature":"91c4746a0cc7962a03f9755f9743cc84a21c415cd588bd15ce29ab381a2edd5c"},{"version":"11a57a5b86b149ad724a79276cf59ed3047c9a566de402e30d03236ead38c0be","signature":"ac0fbda6cd3a5496bb813d1357c12219762667efbe2908b271047a63aba1a9d2"},{"version":"50e17bf94e31c6599ede130d10841a3d877c58d1a012c1913341c73fbba7a659","signature":"9228860d93a0fe68834eac9a3fbc71cfe4b76af57164268195e75d829ed04ddd"},{"version":"f573f7fbd46a3c0d24c23a2eff99fad440ead16b784d60e2fe71922cbc1235e7","signature":"0176cee77f74d5abcc971220f69d01baae566e84837d23b07ccd89637323f44b"},{"version":"b1046a11c4c8f825a7c1b06c49b724eec502cfae764207bc3121dc3e57122b8c","signature":"242aea0ac543b3c0e4d4ce58e0ce217221ab060d7f81a5412fdbc2d895e66fa8"},{"version":"2b129c1a7e28a055d69326d41c9afedd144b1038acfd7c2879c5a7fa9f2620a5","signature":"651f4335e37cd0ab7074b47dd301c07f7aa43a90f8da86f66605765b57686f13"},{"version":"5dc0c04fe33beb783d7bd9b6384b0275de207c44b38cb4424b6978a849553cb4","signature":"dd9736105d8914322921558388124c1c88df9827a00f1076cf563dd7e368643d"},{"version":"2f417baeb8a2dca64b44f33e5207f471fce5071ea1ce566d6eb9653f8964087e","signature":"991f779837c5143585e45ed6502ab9b0358904e9a009a4989f12d8681ae61789"},{"version":"f12a3ce3b11033db007bd25bca185a49452df7763d9815584b6e758f19ee62be","signature":"3ff7f41c068e63ecb355eefc99009b6e0758cde7f95621cffdf74bec4b7c9a6a"},{"version":"5e445cc679bcacc2a1a32ce4bd6795a5a7defc2a674887f83aaf09fb700c058c","signature":"2096b6080d1afce928fd6b9de50322862b1a3ce696c2d76e20c6db0916dd71f8"},{"version":"c40ff490af92ec2260fbe54a5df54864dd58b7f108785c40490632fe7a91cf36","signature":"12ffed003e27f1a71cce0607999847f51db588d71491c89fe1a71bddf86a28c6"},"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"392eadc2af403dd10b4debfbc655c089a7fa6a9750caeb770cfb30051e55e848","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"c48c503c6b3f63baf18257e9a87559b5602a4e960107c762586d2a6a62b64a18","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"1493cc4d72bfaabe2ac13e987d026a5fc99a816f6289bfca7192834a396205cf","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"abe61b580e030f1ca3ee548c8fd7b40fc686a97a056d5d1481f34c39c637345f","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc"],"root":[72,[150,176],[178,199]],"options":{"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9},"fileIdsList":[[66,67],[65],[65,69],[68],[200],[235],[236,241,270],[237,242,248,249,256,267,278],[237,238,248,256],[239,279],[240,241,249,257],[241,267,275],[242,244,248,256],[235,243],[244,245],[248],[246,248],[235,248],[248,249,250,267,278],[248,249,250,263,267,270],[233,236,283],[244,248,251,256,267,278],[248,249,251,252,256,267,275,278],[251,253,267,275,278],[200,201,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285],[248,254],[255,278,283],[244,248,256,267],[257],[258],[235,259],[256,257,260,277,283],[261],[262],[248,263,264],[263,265,279,281],[236,248,267,268,269,270],[236,267,269],[267,268],[270],[271],[235,267],[248,273,274],[273,274],[241,256,267,275],[276],[256,277],[236,251,262,278],[241,279],[267,280],[255,281],[282],[236,241,248,250,259,267,278,281,283],[267,284],[70],[210,214,278],[210,267,278],[205],[207,210,275,278],[256,275],[286],[205,286],[207,210,256,278],[202,203,206,209,236,248,267,278],[202,208],[206,210,236,270,278,286],[236,286],[226,236,286],[204,205,286],[210],[204,205,206,207,208,209,210,211,212,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232],[210,217,218],[208,210,218,219],[209],[202,205,210],[210,214,218,219],[214],[208,210,213,278],[202,207,208,210,214,217],[236,267],[205,210,226,236,283,286],[148],[139],[139,142],[134,137,139,140,141,142,143,144,145,146,147],[73,75,142],[139,140],[74,139,141],[75,77,79,80,81,82],[77,79,81,82],[77,79,81],[74,77,79,80,82],[73,75,76,77,78,79,80,81,82,83,84,134,135,136,137,138],[73,75,76,79],[75,76,79],[79,82],[73,74,76,77,78,80,81,82],[73,74,75,79,139],[79,80,81,82],[81],[85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133],[150,169,195],[150,195],[69,150,169,187,195],[69,150,169,170,195],[150,151,169,195],[150,179,195],[150,169,179,195],[150,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194],[177],[69,72,150,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,195],[71,150,169],[69,71,72,149,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168],[150],[69,149,152,163,169],[149,151],[69,149,152,153,154,155,156,157,158,159,160,161,162,164,169]],"referencedMap":[[68,1],[66,2],[67,3],[69,4],[200,5],[201,5],[235,6],[236,7],[237,8],[238,9],[239,10],[240,11],[241,12],[242,13],[243,14],[244,15],[245,15],[247,16],[246,17],[248,18],[249,19],[250,20],[234,21],[251,22],[252,23],[253,24],[286,25],[254,26],[255,27],[256,28],[257,29],[258,30],[259,31],[260,32],[261,33],[262,34],[263,35],[264,35],[265,36],[267,37],[269,38],[268,39],[270,40],[271,41],[272,42],[273,43],[274,44],[275,45],[276,46],[277,47],[278,48],[279,49],[280,50],[281,51],[282,52],[283,53],[284,54],[71,55],[217,56],[224,57],[216,56],[231,58],[208,59],[207,60],[230,61],[225,62],[228,63],[210,64],[209,65],[205,66],[204,67],[227,68],[206,69],[211,70],[215,70],[233,71],[232,70],[219,72],[220,73],[222,74],[218,75],[221,76],[226,61],[213,77],[214,78],[223,79],[203,80],[229,81],[149,82],[143,83],[147,84],[144,84],[140,83],[148,85],[145,86],[146,84],[141,87],[142,88],[136,89],[80,90],[82,91],[81,92],[139,93],[138,94],[137,95],[83,90],[75,96],[79,97],[76,98],[77,99],[85,100],[86,100],[87,100],[88,100],[89,100],[90,100],[91,100],[92,100],[93,100],[94,100],[95,100],[96,100],[97,100],[99,100],[98,100],[100,100],[101,100],[102,100],[103,100],[134,101],[104,100],[105,100],[106,100],[107,100],[108,100],[109,100],[110,100],[111,100],[112,100],[113,100],[114,100],[115,100],[116,100],[118,100],[117,100],[119,100],[120,100],[121,100],[122,100],[123,100],[124,100],[125,100],[126,100],[127,100],[128,100],[129,100],[130,100],[133,100],[131,100],[132,100],[179,102],[191,102],[184,102],[175,103],[189,103],[190,103],[176,103],[188,104],[174,103],[173,102],[170,102],[171,105],[172,102],[183,103],[186,103],[181,102],[182,106],[180,107],[185,102],[178,102],[193,108],[192,103],[195,109],[194,110],[196,111],[187,112],[169,113],[151,114],[199,114],[159,115],[168,115],[167,115],[165,115],[160,115],[156,115],[166,115],[158,115],[155,115],[152,116],[157,115],[162,115],[154,115],[153,115],[161,115],[164,115],[163,117]]},"version":"5.5.4"}
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.19",
2
+ "version": "1.4.22",
3
3
  "name": "@notidotbot/noti-api-client",
4
4
  "description": "Rest Api Client for NotiBot-Api.",
5
5
  "homepage": "https://github.com/NotiBot/Noti-Api-Client",
@@ -1,176 +1,178 @@
1
1
  model Drop {
2
- dbId String @id @default(uuid())
3
-
4
- // Platform-specific drop ID
5
- dropId String @unique
6
- platform PlatformEnum
7
-
8
- // Drop information
9
- name String
10
- description String? @db.VarChar(2000)
11
- imageUrl String?
12
- url String?
13
-
14
- // Timing
15
- startsAt DateTime
16
- endsAt DateTime
17
- status String // upcoming, active, ended
18
-
19
- // Organization/Creator info
20
- organizationId String?
21
- organizationName String?
22
- organizationUrl String?
23
-
24
- // Game/Category relation
25
- gameId String?
26
- game DropGame? @relation(fields: [gameId], references: [dbId], onUpdate: Cascade, onDelete: SetNull)
27
-
28
- // Platform-specific data stored as JSON for flexibility
29
- // Kick: channels array, rewards array, rule, etc.
30
- // Twitch: will have different structure
31
- platformData Json?
32
-
33
- createdAt DateTime @default(now())
34
- updatedAt DateTime @updatedAt
35
-
36
- // Relations
37
- sentDrops SentDrop[]
38
-
39
- @@unique([dropId, platform])
40
- @@index([platform, status])
41
- @@index([gameId])
42
- @@index([startsAt])
43
- @@index([endsAt])
2
+ dbId String @id @default(uuid())
3
+
4
+ // Platform-specific drop ID
5
+ dropId String @unique
6
+ platform PlatformEnum
7
+
8
+ // Drop information
9
+ name String
10
+ description String? @db.VarChar(2000)
11
+ imageUrl String?
12
+ url String?
13
+
14
+ // Timing
15
+ startsAt DateTime
16
+ endsAt DateTime
17
+ status String // upcoming, active, ended
18
+
19
+ // Organization/Creator info
20
+ organizationId String?
21
+ organizationName String?
22
+ organizationUrl String?
23
+
24
+ // Game/Category relation
25
+ gameId String?
26
+ game DropGame? @relation(fields: [gameId], references: [dbId], onUpdate: Cascade, onDelete: SetNull)
27
+
28
+ // Platform-specific data stored as JSON for flexibility
29
+ // Kick: channels array, rewards array, rule, etc.
30
+ // Twitch: will have different structure
31
+ platformData Json?
32
+
33
+ createdAt DateTime @default(now())
34
+ updatedAt DateTime @updatedAt
35
+
36
+ // Relations
37
+ sentDrops SentDrop[]
38
+
39
+ @@unique([dropId, platform])
40
+ @@index([platform, status])
41
+ @@index([gameId])
42
+ @@index([startsAt])
43
+ @@index([endsAt])
44
44
  }
45
45
 
46
46
  model DropGame {
47
- dbId String @id @default(uuid())
47
+ dbId String @id @default(uuid())
48
48
 
49
- // Game/Category information - NOT unique alone because same game can exist on multiple platforms
50
- gameId String // Platform-specific game ID (e.g., "13" for Rust on Kick, "263490" for Rust on Twitch)
51
- platform PlatformEnum
52
- name String
53
- slug String?
54
- imageUrl String?
55
- description String? @db.VarChar(2000)
49
+ // Game/Category information - NOT unique alone because same game can exist on multiple platforms
50
+ gameId String // Platform-specific game ID (e.g., "13" for Rust on Kick, "263490" for Rust on Twitch)
51
+ platform PlatformEnum
52
+ name String
53
+ slug String?
54
+ imageUrl String?
55
+ description String? @db.VarChar(2000)
56
56
 
57
- ignored Boolean @default(false) // If true, drops from this game will be ignored globally
57
+ ignored Boolean @default(false) // If true, drops from this game will be ignored globally
58
58
 
59
- // Platform-specific data
60
- platformData Json?
59
+ // Platform-specific data
60
+ platformData Json?
61
61
 
62
- createdAt DateTime @default(now())
63
- updatedAt DateTime @updatedAt
62
+ createdAt DateTime @default(now())
63
+ updatedAt DateTime @updatedAt
64
64
 
65
- // Relations
66
- drops Drop[]
67
- guildDropsGames GuildDropsGame[]
65
+ // Relations
66
+ drops Drop[]
67
+ guildDropsGames GuildDropsGame[]
68
68
 
69
- @@unique([gameId, platform]) // Same game ID can exist on different platforms
70
- @@index([platform])
71
- @@index([name]) // For searching games by name
69
+ @@unique([gameId, platform]) // Same game ID can exist on different platforms
70
+ @@index([platform])
71
+ @@index([name]) // For searching games by name
72
72
  }
73
73
 
74
74
  model GuildDrops {
75
- dbId String @id @default(uuid())
75
+ dbId String @id @default(uuid())
76
76
 
77
- guildId String @unique
77
+ guildId String @unique
78
78
 
79
- // Platform-specific enables - user can enable one or both
80
- kickEnabled Boolean @default(false)
81
- twitchEnabled Boolean @default(false)
79
+ // Platform-specific enables - user can enable one or both
80
+ kickEnabled Boolean @default(false)
81
+ twitchEnabled Boolean @default(false)
82
82
 
83
- // Basic settings
84
- liveNotifications Boolean @default(false) // Whether to send notifications when drops go live
83
+ // Basic settings — per-platform toggles for exclusive/go-live streamer drops.
84
+ // (Replaced the old shared `liveNotifications` flag so Kick and Twitch can be toggled independently.)
85
+ kickLiveNotifications Boolean @default(false) // Send Kick exclusive (go-live) streamer drops
86
+ twitchLiveNotifications Boolean @default(false) // Send Twitch exclusive (go-live) streamer drops
85
87
 
86
- // Discord notification settings
87
- kickChannelId String?
88
- kickRoleId String?
89
- twitchChannelId String?
90
- twitchRoleId String?
91
- // Platform-specific live notification overrides
92
- kickLiveNotificationChannelId String?
93
- kickLiveNotificationRoleId String?
94
- twitchLiveNotificationChannelId String?
95
- twitchLiveNotificationRoleId String?
88
+ // Discord notification settings
89
+ kickChannelId String?
90
+ kickRoleId String?
91
+ twitchChannelId String?
92
+ twitchRoleId String?
93
+ // Platform-specific live notification overrides
94
+ kickLiveNotificationChannelId String?
95
+ kickLiveNotificationRoleId String?
96
+ twitchLiveNotificationChannelId String?
97
+ twitchLiveNotificationRoleId String?
96
98
 
97
- // Webhook configuration (optional)
98
- webhook GuildDropsWebhook?
99
+ // Webhook configuration (optional)
100
+ webhook GuildDropsWebhook?
99
101
 
100
- // Game filters - which games to notify about
101
- games GuildDropsGame[]
102
+ // Game filters - which games to notify about
103
+ games GuildDropsGame[]
102
104
 
103
- createdAt DateTime @default(now())
104
- updatedAt DateTime @updatedAt
105
+ createdAt DateTime @default(now())
106
+ updatedAt DateTime @updatedAt
105
107
 
106
- @@index([kickEnabled])
107
- @@index([twitchEnabled])
108
+ @@index([kickEnabled])
109
+ @@index([twitchEnabled])
108
110
  }
109
111
 
110
112
  model GuildDropsWebhook {
111
- dbId String @id @default(uuid())
113
+ dbId String @id @default(uuid())
112
114
 
113
- avatarUrl String?
114
- username String?
115
+ avatarUrl String?
116
+ username String?
115
117
 
116
- guildDropsId String @unique
117
- guildDrops GuildDrops? @relation(fields: [guildDropsId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
118
+ guildDropsId String @unique
119
+ guildDrops GuildDrops? @relation(fields: [guildDropsId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
118
120
  }
119
121
 
120
122
  model GuildDropsGame {
121
- dbId String @id @default(uuid())
123
+ dbId String @id @default(uuid())
122
124
 
123
- gameId String
124
- game DropGame? @relation(fields: [gameId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
125
+ gameId String
126
+ game DropGame? @relation(fields: [gameId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
125
127
 
126
- guildDropsId String
127
- guildDrops GuildDrops? @relation(fields: [guildDropsId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
128
+ guildDropsId String
129
+ guildDrops GuildDrops? @relation(fields: [guildDropsId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
128
130
 
129
- channelId String?
130
- roleId String?
131
- liveNotifications Boolean? // If null, uses GuildDrops.liveNotifications
131
+ channelId String?
132
+ roleId String?
133
+ liveNotifications Boolean? // Per-game override. If null, uses the platform-level flag (GuildDrops.kickLiveNotifications / twitchLiveNotifications)
132
134
 
133
- // Per-game webhook configuration (overrides GuildDrops webhook)
134
- webhook GuildDropsGameWebhook?
135
+ // Per-game webhook configuration (overrides GuildDrops webhook)
136
+ webhook GuildDropsGameWebhook?
135
137
 
136
- createdAt DateTime @default(now())
138
+ createdAt DateTime @default(now())
137
139
 
138
- @@unique([guildDropsId, gameId])
139
- @@index([gameId])
140
+ @@unique([guildDropsId, gameId])
141
+ @@index([gameId])
140
142
  }
141
143
 
142
144
  model GuildDropsGameWebhook {
143
- dbId String @id @default(uuid())
145
+ dbId String @id @default(uuid())
144
146
 
145
- avatarUrl String?
146
- username String?
147
+ avatarUrl String?
148
+ username String?
147
149
 
148
- guildDropsGameId String @unique
149
- guildDropsGame GuildDropsGame? @relation(fields: [guildDropsGameId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
150
+ guildDropsGameId String @unique
151
+ guildDropsGame GuildDropsGame? @relation(fields: [guildDropsGameId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
150
152
  }
151
153
 
152
154
  model SentDrop {
153
- dbId String @id @default(uuid())
155
+ dbId String @id @default(uuid())
154
156
 
155
- // References
156
- dropId String
157
- drop Drop? @relation(fields: [dropId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
157
+ // References
158
+ dropId String
159
+ drop Drop? @relation(fields: [dropId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
158
160
 
159
- guildId String
160
- platform PlatformEnum
161
+ guildId String
162
+ platform PlatformEnum
161
163
 
162
- // Discord message info for potential updates/deletion
163
- channelId String?
164
- messageId String?
164
+ // Discord message info for potential updates/deletion
165
+ channelId String?
166
+ messageId String?
165
167
 
166
- // When was it sent
167
- sentAt DateTime @default(now())
168
+ // When was it sent
169
+ sentAt DateTime @default(now())
168
170
 
169
- // This will be deleted after the drop ends
170
- // The drop itself remains for SEO purposes
171
+ // This will be deleted after the drop ends
172
+ // The drop itself remains for SEO purposes
171
173
 
172
- @@unique([dropId, guildId])
173
- @@index([platform])
174
- @@index([sentAt])
175
- @@index([guildId])
174
+ @@unique([dropId, guildId])
175
+ @@index([platform])
176
+ @@index([sentAt])
177
+ @@index([guildId])
176
178
  }
@@ -11,122 +11,131 @@
11
11
  // tracked games, and digest window customization.
12
12
 
13
13
  model GuildGameConfig {
14
- dbId String @id @default(uuid())
15
-
16
- guildId String @unique
17
-
18
- enabled Boolean @default(false)
19
-
20
- // Default routing — the free-tier "one channel + one mention role" target. Every
21
- // notification falls back here unless a premium category route overrides it.
22
- notificationChannelId String?
23
- pingRoleId String?
24
-
25
- // Delivery tier. Window/day customization (digestHourUTC / digestWeekday) is premium;
26
- // free guilds get the fixed evening window on any day.
27
- deliveryMode GameDeliveryEnum @default(instant)
28
- digestHourUTC Int? // Premium. 0-23 UTC. Null = default evening window.
29
- digestWeekday Int? // Premium. 0-6 (Sun-Sat) for weekly digests. Null = any/default.
30
-
31
- // Free-to-keep games (free.new). The headline growth-loop feature — never gated.
32
- freeGamesEnabled Boolean @default(true)
33
- freeDlcEnabled Boolean @default(false)
34
- freeGameStores GameStoreEnum[]
35
- upcomingFreeEnabled Boolean @default(false)
36
- freeWeekendEnabled Boolean @default(false) // Steam play-for-free windows (NOT free to keep)
37
-
38
- // Discount alerts (deal.new). Min-discount + max-price filters are free.
39
- discountsEnabled Boolean @default(false)
40
- discountStores GameStoreEnum[]
41
- minDiscountPercent Int? // 0-100. price.discountPercent >= n
42
- maxPriceCents Int? // price.finalCents <= n
43
-
44
- // Category / studio filters (free, multi-select). Empty = no filter (match all).
45
- // Matched case-insensitively against item.genres / item.tags / developers+publishers.
46
- genres String[]
47
- tags String[]
48
- studios String[]
49
-
50
- // All-Time-Low alerts (PREMIUM) deal.lowest events / flags.allTimeLow.
51
- allTimeLowEnabled Boolean @default(false)
52
- allTimeLowMaxPriceCents Int?
53
-
54
- // Game changelogs (PatchBot-style) — independent of price tracking.
55
- changelogChannelId String?
56
- changelogPingRoleId String?
57
-
58
- categoryRoutes GuildGameCategoryRoute[]
59
- trackedGames GuildTrackedGame[]
60
- changelogGames GuildGameChangelog[]
14
+ dbId String @id @default(uuid())
15
+
16
+ guildId String @unique
17
+
18
+ enabled Boolean @default(false)
19
+
20
+ // Default routing — the free-tier "one channel + one mention role" target. Every
21
+ // notification falls back here unless a premium category route overrides it.
22
+ notificationChannelId String?
23
+ pingRoleId String?
24
+
25
+ // Delivery tier. Window/day customization (digestHourUTC / digestWeekday) is premium;
26
+ // free guilds get the fixed evening window on any day.
27
+ deliveryMode GameDeliveryEnum @default(instant)
28
+ digestHourUTC Int? // Premium. 0-23 UTC. Null = default evening window.
29
+ digestWeekday Int? // Premium. 0-6 (Sun-Sat) for weekly digests. Null = any/default.
30
+
31
+ // Free-to-keep games (free.new). The headline growth-loop feature — never gated.
32
+ // Each `*Enabled` boolean is the master switch for its type; the matching `*Stores`
33
+ // array narrows it to specific stores (empty = all stores, same as freeGameStores).
34
+ freeGamesEnabled Boolean @default(true)
35
+ freeDlcEnabled Boolean @default(false)
36
+ freeDlcStores GameStoreEnum[]
37
+ freeGameStores GameStoreEnum[]
38
+ upcomingFreeEnabled Boolean @default(false)
39
+ upcomingFreeStores GameStoreEnum[]
40
+ freeWeekendEnabled Boolean @default(false) // Steam play-for-free windows (NOT free to keep)
41
+ freeWeekendStores GameStoreEnum[]
42
+
43
+ // Discount alerts (deal.new). Min-discount + max-price filters are free.
44
+ discountsEnabled Boolean @default(false)
45
+ discountStores GameStoreEnum[]
46
+ minDiscountPercent Int? // 0-100. price.discountPercent >= n
47
+ maxPriceCents Int? // price.finalCents <= n
48
+
49
+ // Category / studio filters (free, multi-select). Empty = no filter (match all).
50
+ // Matched case-insensitively against item.genres / item.tags / developers+publishers.
51
+ genres String[]
52
+ tags String[]
53
+ studios String[]
54
+
55
+ // All-Time-Low alerts (PREMIUM) — deal.lowest events / flags.allTimeLow.
56
+ allTimeLowEnabled Boolean @default(false)
57
+ allTimeLowStores GameStoreEnum[]
58
+ allTimeLowMaxPriceCents Int?
59
+
60
+ // Game changelogs (PatchBot-style) — independent of price tracking.
61
+ changelogChannelId String?
62
+ changelogPingRoleId String?
63
+
64
+ categoryRoutes GuildGameCategoryRoute[]
65
+ trackedGames GuildTrackedGame[]
66
+ changelogGames GuildGameChangelog[]
61
67
  }
62
68
 
63
69
  // PREMIUM: per-category channel/role routing. The first route (lowest `priority`) whose
64
70
  // match criteria the event satisfies wins; webhook identity is also premium-only.
65
71
  model GuildGameCategoryRoute {
66
- dbId String @id @default(uuid())
72
+ dbId String @id @default(uuid())
67
73
 
68
- // Match criteria (empty array / null = "any").
69
- kinds GameKindEnum[]
70
- stores GameStoreEnum[]
71
- flags GameFlagEnum[]
72
- genres String[]
73
- tags String[]
74
- minDiscountPercent Int?
74
+ // Match criteria (empty array / null = "any").
75
+ kinds GameKindEnum[]
76
+ stores GameStoreEnum[]
77
+ flags GameFlagEnum[]
78
+ genres String[]
79
+ tags String[]
80
+ minDiscountPercent Int?
75
81
 
76
- // Routing target for matching events.
77
- channelId String?
78
- pingRoleId String?
82
+ // Routing target for matching events.
83
+ channelId String?
84
+ pingRoleId String?
79
85
 
80
- // Custom webhook identity (premium). When set, the notification is posted via a webhook
81
- // with this name/avatar instead of the bot user.
82
- webhookEnabled Boolean? @default(false)
83
- webhookUsername String?
84
- webhookAvatarUrl String?
86
+ // Custom webhook identity (premium). When set, the notification is posted via a webhook
87
+ // with this name/avatar instead of the bot user.
88
+ webhookEnabled Boolean? @default(false)
89
+ webhookUsername String?
90
+ webhookAvatarUrl String?
85
91
 
86
- priority Int @default(0)
92
+ priority Int @default(0)
87
93
 
88
- gameConfigId String
89
- gameConfig GuildGameConfig? @relation(fields: [gameConfigId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
94
+ gameConfigId String
95
+ gameConfig GuildGameConfig? @relation(fields: [gameConfigId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
90
96
 
91
- @@unique([gameConfigId, priority])
97
+ @@unique([gameConfigId, priority])
92
98
  }
93
99
 
94
100
  // A specific followed game. Tracked games are registered on the API watchlist so even a 5%
95
101
  // discount is tracked. Free guilds: 2 per guild; premium: unlimited (API cap 500 global).
96
102
  model GuildTrackedGame {
97
- dbId String @id @default(uuid())
103
+ dbId String @id @default(uuid())
98
104
 
99
- steamAppId Int? // resolved to a CheapShark id by the API; null for Epic-only titles
100
- title String? // normalized-title match for games without a Steam appid
101
- itemId String? // canonical deal id once observed (steam:730 / epic:...)
105
+ steamAppId Int? // resolved to a CheapShark id by the API; null for Epic-only titles
106
+ title String? // normalized-title match for games without a Steam appid
107
+ itemId String? // canonical deal id once observed (steam:730 / epic:...)
102
108
 
103
- // Optional per-game routing override (else uses the guild default channel/role).
104
- channelId String?
105
- pingRoleId String?
109
+ // Optional per-game routing override (else uses the guild default channel/role).
110
+ channelId String?
111
+ pingRoleId String?
106
112
 
107
- minDiscountPercent Int?
108
- atlOnly Boolean @default(false)
113
+ minDiscountPercent Int?
114
+ atlOnly Boolean @default(false)
115
+ // Scope this tracked game to specific notification kinds. Empty = all kinds (free / DLC /
116
+ // discount / upcoming), preserving the pre-`kinds` behaviour.
117
+ kinds GameKindEnum[]
109
118
 
110
- gameConfigId String
111
- gameConfig GuildGameConfig? @relation(fields: [gameConfigId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
119
+ gameConfigId String
120
+ gameConfig GuildGameConfig? @relation(fields: [gameConfigId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
112
121
 
113
- @@unique([gameConfigId, steamAppId])
114
- @@unique([gameConfigId, title])
122
+ @@unique([gameConfigId, steamAppId])
123
+ @@unique([gameConfigId, title])
115
124
  }
116
125
 
117
126
  // A game whose Steam patch notes / announcements this guild follows (changelog.new).
118
127
  model GuildGameChangelog {
119
- dbId String @id @default(uuid())
128
+ dbId String @id @default(uuid())
120
129
 
121
- steamAppId Int
122
- title String?
130
+ steamAppId Int
131
+ title String?
123
132
 
124
- // Optional per-game routing override (else uses the guild's default changelog channel/role).
125
- channelId String?
126
- pingRoleId String?
133
+ // Optional per-game routing override (else uses the guild's default changelog channel/role).
134
+ channelId String?
135
+ pingRoleId String?
127
136
 
128
- gameConfigId String
129
- gameConfig GuildGameConfig? @relation(fields: [gameConfigId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
137
+ gameConfigId String
138
+ gameConfig GuildGameConfig? @relation(fields: [gameConfigId], references: [dbId], onUpdate: Cascade, onDelete: Cascade)
130
139
 
131
- @@unique([gameConfigId, steamAppId])
132
- }
140
+ @@unique([gameConfigId, steamAppId])
141
+ }