diff --git a/app/db/seed/index.ts b/app/db/seed/index.ts index 4f6984daf..475649f44 100644 --- a/app/db/seed/index.ts +++ b/app/db/seed/index.ts @@ -1,5 +1,6 @@ import { faker } from "@faker-js/faker"; import { add, sub } from "date-fns"; +import { nanoid } from "nanoid"; import * as R from "remeda"; import { db, sql } from "~/db/sql"; import { ADMIN_DISCORD_ID, ADMIN_ID } from "~/features/admin/admin-constants"; @@ -238,6 +239,7 @@ const basicSeeds = (variation?: SeedVariation | null) => [ variation === "NO_SCRIMS" ? undefined : scrimPostRequests, associations, notifications, + liveStreams, ]; export async function seed(variation?: SeedVariation | null) { @@ -303,6 +305,7 @@ function wipeDB() { "BadgeManager", "TournamentOrganization", "SeedingSkill", + "LiveStream", ]; for (const table of tablesToDelete) { @@ -2749,3 +2752,70 @@ async function organization() { badges: [], }); } + +function liveStreams() { + const userIds = userIdsInAscendingOrderById(); + + // Add deterministic streams for E2E testing + // Users 6 and 7 are in ITZ tournament team 102 + const deterministicStreams = [ + { userId: 6, viewerCount: 150, twitch: "test_player_stream_1" }, + { userId: 7, viewerCount: 75, twitch: "test_player_stream_2" }, + // Cast-only stream (user 100 is not in ITZ tournament teams) + { userId: 100, viewerCount: 500, twitch: "test_cast_stream" }, + ]; + + for (const stream of deterministicStreams) { + sql + .prepare( + ` + insert into "LiveStream" ("userId", "viewerCount", "thumbnailUrl", "twitch") + values ($userId, $viewerCount, $thumbnailUrl, $twitch) + `, + ) + .run({ + userId: stream.userId, + viewerCount: stream.viewerCount, + thumbnailUrl: "https://picsum.photos/320/180", + twitch: stream.twitch, + }); + } + + const streamingUserIds = [ + ...userIds.slice(3, 20), + ...userIds.slice(40, 50), + ...userIds.slice(100, 110), + ].filter((id) => !deterministicStreams.some((s) => s.userId === id)); + + const shuffledStreamers = faker.helpers.shuffle(streamingUserIds); + const selectedStreamers = shuffledStreamers.slice(0, 17); + + for (const userId of selectedStreamers) { + const viewerCount = faker.helpers.weightedArrayElement([ + { value: faker.number.int({ min: 5, max: 30 }), weight: 5 }, + { value: faker.number.int({ min: 31, max: 100 }), weight: 3 }, + { value: faker.number.int({ min: 101, max: 500 }), weight: 2 }, + { value: faker.number.int({ min: 501, max: 2000 }), weight: 1 }, + ]); + + const thumbnailUrl = faker.image.urlPicsumPhotos({ + width: 320, + height: 180, + }); + + const twitch = `fake_${nanoid()}`.toLowerCase(); + sql + .prepare( + ` + insert into "LiveStream" ("userId", "viewerCount", "thumbnailUrl", "twitch") + values ($userId, $viewerCount, $thumbnailUrl, $twitch) + `, + ) + .run({ + userId, + viewerCount, + thumbnailUrl, + twitch, + }); + } +} diff --git a/app/db/tables.ts b/app/db/tables.ts index 93ef8c395..5a1982f4c 100644 --- a/app/db/tables.ts +++ b/app/db/tables.ts @@ -962,6 +962,14 @@ export interface ApiToken { createdAt: GeneratedAlways; } +export interface LiveStream { + id: GeneratedAlways; + userId: number | null; + viewerCount: number; + thumbnailUrl: string; + twitch: string | null; +} + export interface BanLog { id: GeneratedAlways; userId: number; @@ -1136,6 +1144,7 @@ export interface DB { AllTeamMember: TeamMember; ApiToken: ApiToken; Art: Art; + LiveStream: LiveStream; ArtTag: ArtTag; ArtUserMetadata: ArtUserMetadata; TaggedArt: TaggedArt; diff --git a/app/entry.server.tsx b/app/entry.server.tsx index 70507f5ce..b8c639337 100644 --- a/app/entry.server.tsx +++ b/app/entry.server.tsx @@ -9,7 +9,12 @@ import { type EntryContext, ServerRouter } from "react-router"; import { config } from "~/modules/i18n/config"; // your i18n configuration file import { i18next } from "~/modules/i18n/i18next.server"; import { resources } from "./modules/i18n/resources.server"; -import { daily, everyHourAt00, everyHourAt30 } from "./routines/list.server"; +import { + daily, + everyHourAt00, + everyHourAt30, + everyTwoMinutes, +} from "./routines/list.server"; import { logger } from "./utils/logger"; // Reject/cancel all pending promises after 5 seconds @@ -103,6 +108,12 @@ if (!global.appStartSignal && process.env.NODE_ENV === "production") { await routine.run(); } }); + + cron.schedule("*/2 * * * *", async () => { + for (const routine of everyTwoMinutes) { + await routine.run(); + } + }); } process.on("unhandledRejection", (reason: string, p: Promise) => { diff --git a/app/features/live-streams/LiveStreamRepository.server.ts b/app/features/live-streams/LiveStreamRepository.server.ts new file mode 100644 index 000000000..7d70b8f13 --- /dev/null +++ b/app/features/live-streams/LiveStreamRepository.server.ts @@ -0,0 +1,14 @@ +import { db } from "~/db/sql"; +import type { TablesInsertable } from "~/db/tables"; + +export function replaceAll( + streams: Omit[], +) { + return db.transaction().execute(async (trx) => { + await trx.deleteFrom("LiveStream").execute(); + + if (streams.length > 0) { + await trx.insertInto("LiveStream").values(streams).execute(); + } + }); +} diff --git a/app/features/tournament-bracket/components/Bracket/Match.tsx b/app/features/tournament-bracket/components/Bracket/Match.tsx index e9d0c78e2..8d829a9a3 100644 --- a/app/features/tournament-bracket/components/Bracket/Match.tsx +++ b/app/features/tournament-bracket/components/Bracket/Match.tsx @@ -1,17 +1,13 @@ import clsx from "clsx"; import { differenceInMinutes } from "date-fns"; import * as React from "react"; -import { Link, useFetcher } from "react-router"; +import { Link } from "react-router"; import { Avatar } from "~/components/Avatar"; import { SendouButton } from "~/components/elements/Button"; import { SendouPopover } from "~/components/elements/Popover"; import { useUser } from "~/features/auth/core/user"; import { TournamentStream } from "~/features/tournament/components/TournamentStream"; -import type { TournamentStreamsLoader } from "~/features/tournament/loaders/to.$id.streams.server"; -import { - useStreamingParticipants, - useTournament, -} from "~/features/tournament/routes/to.$id"; +import { useTournament } from "~/features/tournament/routes/to.$id"; import { databaseTimestampToDate } from "~/utils/dates"; import type { Unpacked } from "~/utils/types"; import { tournamentMatchPage, tournamentStreamsPage } from "~/utils/urls"; @@ -55,7 +51,7 @@ export function Match(props: MatchProps) { function MatchHeader({ match, type, roundNumber, group }: MatchProps) { const tournament = useTournament(); - const streamingParticipants = useStreamingParticipants(); + const streamingParticipants = tournament.streamingParticipantIds ?? []; const prefix = () => { if (type === "winners") return "WB "; @@ -244,19 +240,10 @@ function MatchRow({ function MatchStreams({ match }: Pick) { const tournament = useTournament(); - const fetcher = useFetcher(); - React.useEffect(() => { - if (fetcher.state !== "idle" || fetcher.data) return; - fetcher.load(`/to/${tournament.ctx.id}/streams`); - }, [fetcher, tournament.ctx.id]); - - if (!fetcher.data || !match.opponent1?.id || !match.opponent2?.id) - return ( -
- Loading streams... -
- ); + if (!match.opponent1?.id || !match.opponent2?.id) { + return null; + } const castingAccount = tournament.ctx.castedMatchesInfo?.castedMatches.find( (cm) => cm.matchId === match.id, @@ -266,13 +253,13 @@ function MatchStreams({ match }: Pick) { (teamId) => tournament.teamById(teamId)?.members.map((m) => m.userId) ?? [], ); - const streamsOfThisMatch = fetcher.data.streams.filter( + const streamsOfThisMatch = tournament.streams.filter( (stream) => (stream.userId && matchParticipants.includes(stream.userId)) || stream.twitchUserName === castingAccount, ); - if (streamsOfThisMatch.length === 0) + if (streamsOfThisMatch.length === 0) { return (
After all there seems to be no streams of this match. Check the{" "} @@ -280,9 +267,13 @@ function MatchStreams({ match }: Pick) { for all the available streams.
); + } return ( -
+
{streamsOfThisMatch.map((stream) => ( team.checkIns.length > 0) + .flatMap((team) => team.members) + .filter((member) => member.streamTwitch) + .map((member) => ({ + thumbnailUrl: member.streamThumbnailUrl!, + twitchUserName: member.streamTwitch!, + viewerCount: member.streamViewerCount!, + userId: member.userId, + })); + + const castStreams = this.ctx.castStreams.map((stream) => ({ + thumbnailUrl: stream.thumbnailUrl, + twitchUserName: stream.twitch!, + viewerCount: stream.viewerCount, + userId: null as number | null, + })); + + return [...memberStreams, ...castStreams].sort( + (a, b) => b.viewerCount - a.viewerCount, + ); + } + + get streamingParticipantIds(): number[] { + if (!this.hasStarted || this.everyBracketOver) return []; + return this.streams.filter((s) => s.userId !== null).map((s) => s.userId!); + } } diff --git a/app/features/tournament-bracket/core/summarizer.test.ts b/app/features/tournament-bracket/core/summarizer.test.ts index 04c0af2a5..4c91830f8 100644 --- a/app/features/tournament-bracket/core/summarizer.test.ts +++ b/app/features/tournament-bracket/core/summarizer.test.ts @@ -46,6 +46,9 @@ describe("tournamentSummary()", () => { plusTier: null, createdAt: 0, userId, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, })), name: `Team ${teamId}`, prefersNotToHost: 0, diff --git a/app/features/tournament-bracket/core/tests/mocks-li.ts b/app/features/tournament-bracket/core/tests/mocks-li.ts index a05e6f5c5..6d28f839e 100644 --- a/app/features/tournament-bracket/core/tests/mocks-li.ts +++ b/app/features/tournament-bracket/core/tests/mocks-li.ts @@ -7303,6 +7303,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157607, inGameName: "Zyler òへó#1344", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27529, @@ -7316,6 +7319,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157609, inGameName: "Axo òへó#2731", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25875, @@ -7329,6 +7335,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157610, inGameName: "Kiko òへó#2701", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21063, @@ -7342,6 +7351,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157611, inGameName: "koooo òへó#2940", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31597, @@ -7355,6 +7367,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157612, inGameName: "Tetra òへó#1074", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7397,6 +7412,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157629, inGameName: "JŁΞ nomad#1998", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27260, @@ -7410,6 +7428,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157711, inGameName: "JŁΞ Kσru#2146", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42704, @@ -7423,6 +7444,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157712, inGameName: "ROARRRRRRR#1111", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6211, @@ -7436,6 +7460,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157713, inGameName: "JŁ≡ Nobe_1#1045", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9379, @@ -7449,6 +7476,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157714, inGameName: "JŁΞ SHeLi#2425", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7491,6 +7521,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733161494, inGameName: "「F」Mik#3010", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31195, @@ -7504,6 +7537,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733161497, inGameName: "「F」Cotni#3521", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31395, @@ -7517,6 +7553,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733161500, inGameName: "In 「F」iniTy#1007", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 41682, @@ -7530,6 +7569,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733161502, inGameName: "「F」Slush#9876", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26103, @@ -7543,6 +7585,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733161505, inGameName: "「F」sawyer #7539", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7585,6 +7630,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733166918, inGameName: "⦾яStαrιiτε#3209", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 44033, @@ -7598,6 +7646,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733166921, inGameName: "⦾я .0#2825", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 19717, @@ -7611,6 +7662,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733166925, inGameName: "⦾я Neo✩#3314", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9404, @@ -7624,6 +7678,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733166928, inGameName: "⦾я Organic#2160", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7666,6 +7723,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733166213, inGameName: "TheChosen1#2899", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29267, @@ -7679,6 +7739,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733178388, inGameName: "Silverlime#4895", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25591, @@ -7692,6 +7755,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733426117, inGameName: "Dev#7857", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36962, @@ -7705,6 +7771,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733458896, inGameName: "PencilGlzr#8668", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37749, @@ -7718,6 +7787,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734193950, inGameName: "кя lyric!#2989", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7755,6 +7827,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733189945, inGameName: "«я.peachz♪#1561", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34355, @@ -7768,6 +7843,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733189950, inGameName: "«я.Omega#1182", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2319, @@ -7781,6 +7859,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733189952, inGameName: "《Я.ttrarat#2320", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 39480, @@ -7794,6 +7875,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733189954, inGameName: "«я.Reze★#3081", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7430, @@ -7807,6 +7891,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733189965, inGameName: "«я.zedro#2287", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7849,6 +7936,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733244862, inGameName: "½ Jxvito★#2083", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31524, @@ -7862,6 +7952,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733244865, inGameName: "½ chaervee#2718", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35674, @@ -7875,6 +7968,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733244867, inGameName: "½ kosame#2647", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7126, @@ -7888,6 +7984,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733244868, inGameName: "½ YAGI#2632", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26285, @@ -7901,6 +8000,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734054948, inGameName: "≣↑Lefish☆#3115", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7943,6 +8045,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733282085, inGameName: "o7 PieMan#9992", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5708, @@ -7956,6 +8061,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733282088, inGameName: "o7 Halø#2414", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1661, @@ -7969,6 +8077,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733282090, inGameName: "o7 Tau#3126", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27292, @@ -7982,6 +8093,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733282091, inGameName: "o7 Warrior #4277", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21588, @@ -7995,6 +8109,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733282092, inGameName: "o7 Brandon#1002", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6309, @@ -8008,6 +8125,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733282098, inGameName: "Nathan#3382", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8050,6 +8170,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733291438, inGameName: "★Alohα★#1372", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23974, @@ -8063,6 +8186,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733291442, inGameName: "↑Lex↑#2224", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24459, @@ -8076,6 +8202,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733291444, inGameName: "Gogeta SSB#1514", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 40851, @@ -8089,6 +8218,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733291446, inGameName: "zoeee♪#5119", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 18090, @@ -8102,6 +8234,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733783382, inGameName: "oomf#2618", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42350, @@ -8115,6 +8250,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734131443, inGameName: "Kp Mario#3126", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8157,6 +8295,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733439755, inGameName: "{ミ} Reyn#3321", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37000, @@ -8170,6 +8311,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733439758, inGameName: "{ミ} Bobong#1958", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37835, @@ -8183,6 +8327,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733439760, inGameName: "{ミ} Kody#7210", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26807, @@ -8196,6 +8343,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733439761, inGameName: "{ミ} Lumi#8318", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8238,6 +8388,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733485884, inGameName: "LosTheresa#3238", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30686, @@ -8251,6 +8404,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733485886, inGameName: "Los Equals#2851", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22396, @@ -8264,6 +8420,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733485888, inGameName: "Los Hammy#4656", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1961, @@ -8277,6 +8436,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733485889, inGameName: "Los SeaSlug#2211", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46305, @@ -8290,6 +8452,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733961214, inGameName: "Dr.Meowser#8095", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 18698, @@ -8303,6 +8468,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733961708, inGameName: "Ameowzing☆#1396", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8345,6 +8513,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733937993, inGameName: "☆§ darkz!#1022", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30411, @@ -8358,6 +8529,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733938000, inGameName: "☆§ Ace!#1627", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24275, @@ -8371,6 +8545,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733938003, inGameName: "☆§ Googol! #7149", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30263, @@ -8384,6 +8561,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733938006, inGameName: "Rowieeeeee#3332", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5861, @@ -8397,6 +8577,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733938008, inGameName: "☆§ Solar!#1396", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30870, @@ -8410,6 +8593,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734118113, inGameName: "QC. Phrog#1240", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8452,6 +8638,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733166818, inGameName: "Sylyx#1095", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38046, @@ -8465,6 +8654,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733166823, inGameName: "Brownies!!#2517", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42638, @@ -8478,6 +8670,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733166825, inGameName: "Rosa_#1667", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34589, @@ -8491,6 +8686,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733166826, inGameName: "SειëηΣ?#6908", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 44378, @@ -8504,6 +8702,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733594006, inGameName: "Mirage#2515", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8546,6 +8747,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733167616, inGameName: " ({ createdAt: 1733167619, inGameName: " ({ createdAt: 1733167620, inGameName: " ({ createdAt: 1733167621, inGameName: " ({ createdAt: 1734026204, inGameName: "nene#1459", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8640,6 +8856,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733201503, inGameName: "SplaTea TV#9482", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35282, @@ -8653,6 +8872,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733201506, inGameName: "Apisto#9327", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20774, @@ -8666,6 +8888,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733201506, inGameName: "βαjα#1704", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33373, @@ -8679,6 +8904,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733201507, inGameName: "Comrade#1334", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42703, @@ -8692,6 +8920,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733201508, inGameName: "gameing#2389", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31556, @@ -8705,6 +8936,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733201509, inGameName: "Klem'ntine#3028", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8747,6 +8981,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733218069, inGameName: "Lutzi#9570", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7690, @@ -8760,6 +8997,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733218071, inGameName: "Low#7104", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7959, @@ -8773,6 +9013,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733218072, inGameName: "Sual#1049", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26509, @@ -8786,6 +9029,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733218073, inGameName: "Vi#1325", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7102, @@ -8799,6 +9045,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733916151, inGameName: "Jødek#3186", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8841,6 +9090,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733319202, inGameName: "ƒ²←Tbob#2063", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21685, @@ -8854,6 +9106,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733319223, inGameName: "ƒ²←Toad#2397", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34842, @@ -8867,6 +9122,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733319226, inGameName: "f²←Glitchy#2181", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10714, @@ -8880,6 +9138,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733319227, inGameName: "ƒ²←Golonka#7170", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10028, @@ -8893,6 +9154,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733319230, inGameName: "ƒ²←kcatt#3290", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8840, @@ -8906,6 +9170,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733319232, inGameName: "ƒ²←Shii#2267", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8948,6 +9215,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733471556, inGameName: "USS Moody#5225", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36007, @@ -8961,6 +9231,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733948167, inGameName: "アリッサ#5565", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38896, @@ -8974,6 +9247,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733948266, inGameName: "Cringe#5602", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30204, @@ -8987,6 +9263,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733950474, inGameName: "m#31926", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 41285, @@ -9000,6 +9279,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733951107, inGameName: "◯=ブライセソ=◯#5387", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9042,6 +9324,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733501938, inGameName: "ミゼリ エース★#1349", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43073, @@ -9055,6 +9340,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733501942, inGameName: "ミゼリ Cronix#2518", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30495, @@ -9068,6 +9356,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733501944, inGameName: "ミゼリ。Mεgυ°✩#2219", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30488, @@ -9081,6 +9372,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733501946, inGameName: "ミゼリ Sk#5210", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45295, @@ -9094,6 +9388,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733517920, inGameName: "ミゼリ V-Trux#1581", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9136,6 +9433,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733622364, inGameName: "σ*°yoshido#3235", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30612, @@ -9149,6 +9449,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733622368, inGameName: "σ*°Crazy!?#2260", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13671, @@ -9162,6 +9465,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733622369, inGameName: "σ*°Nutella#7762", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36898, @@ -9175,6 +9481,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733622371, inGameName: "σ*°Town#1561", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -9211,6 +9520,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733635706, inGameName: "DΔ Ark#1872", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30466, @@ -9224,6 +9536,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733635709, inGameName: "♭ born#9799", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26162, @@ -9237,6 +9552,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733635711, inGameName: "e#5440", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24013, @@ -9250,6 +9568,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733635715, inGameName: "[R]yo!#9363", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9292,6 +9613,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733671856, inGameName: "nerfkuro#1333", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29433, @@ -9305,6 +9629,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733674190, inGameName: "Bandito#4064", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21181, @@ -9318,6 +9645,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733689602, inGameName: "▼hαeωon<3▼#2645", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32002, @@ -9331,6 +9661,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734136081, inGameName: "◎ 'Anon'#1493", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9368,6 +9701,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733810204, inGameName: "Goat Child#2734", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5906, @@ -9381,6 +9717,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733810212, inGameName: "Blaster#8303", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 17352, @@ -9394,6 +9733,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733810376, inGameName: "h* Frosty!#3019", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22403, @@ -9407,6 +9749,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733822106, inGameName: "ΞOceanOpal#9923", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33954, @@ -9420,6 +9765,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733865466, inGameName: "Nerdy♪Adam#1169", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9457,6 +9805,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733889961, inGameName: "arkham#4865", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32107, @@ -9470,6 +9821,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733890089, inGameName: "【Hayley】#7816", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33402, @@ -9483,6 +9837,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733947966, inGameName: "*~*flyNn#2174", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30619, @@ -9496,6 +9853,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733962086, inGameName: "Vhappy#1640", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35133, @@ -9509,6 +9869,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733962703, inGameName: "#1225", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9546,6 +9909,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733892132, inGameName: "TIF Kale#1773", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8993, @@ -9559,6 +9925,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733892135, inGameName: "amisyka#3037", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8395, @@ -9572,6 +9941,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733892138, inGameName: "TIF J+αm#1827", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3566, @@ -9585,6 +9957,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733892143, inGameName: "⇛Pampers✰#1671", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46637, @@ -9598,6 +9973,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734198005, inGameName: ".leaflet.#1292", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9640,6 +10018,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734035170, inGameName: "\tƒ(01)Avīci#3228", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31143, @@ -9653,6 +10034,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734035173, inGameName: "ƒMαrιιτιmε#6053", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10670, @@ -9666,6 +10050,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734035178, inGameName: "ƒallHole#8602", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5261, @@ -9679,6 +10066,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734035182, inGameName: "ƒ¿¡Koda!?#1726", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22577, @@ -9692,6 +10082,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734136323, inGameName: "ghostreni#2563", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9734,6 +10127,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734107844, inGameName: "Eon#2450", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14309, @@ -9747,6 +10143,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734130617, inGameName: "Goxu#6562", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23164, @@ -9760,6 +10159,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734131862, inGameName: "fish#3039", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 17310, @@ -9773,6 +10175,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734150871, inGameName: "Θ© OhkoXar#1431", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2199, @@ -9786,6 +10191,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734216771, inGameName: "Nof24#1856", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9828,6 +10236,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734132225, inGameName: "ΞTessaract#7242", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 16387, @@ -9841,6 +10252,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734132269, inGameName: "Bubble.mp4#3578", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31154, @@ -9854,6 +10268,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734132358, inGameName: "Renzo™#3392", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6051, @@ -9867,6 +10284,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734132433, inGameName: "ACECT.mp4#2681", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9904,6 +10324,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733194304, inGameName: "LN TheGish#6533", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29011, @@ -9917,6 +10340,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733194307, inGameName: "ln Arsynn#5022", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23082, @@ -9930,6 +10356,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733194308, inGameName: "ln Blubrry#2022", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21549, @@ -9943,6 +10372,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733194314, inGameName: "LN✰Melo#1231", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45036, @@ -9956,6 +10388,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733605136, inGameName: "LN Frankie #1631", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9998,6 +10433,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733195091, inGameName: "R↑ Static#1144", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26820, @@ -10011,6 +10449,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733195093, inGameName: "R↑ Steorra#1628", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3513, @@ -10024,6 +10465,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733195093, inGameName: "R↑ Zebra#1631", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10297, @@ -10037,6 +10481,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733195094, inGameName: "YRN#1115", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10079,6 +10526,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733364647, inGameName: "<↑ Espi!#2714", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8953, @@ -10092,6 +10542,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733364648, inGameName: "<↑ h#2774", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27747, @@ -10105,6 +10558,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733364650, inGameName: "<↑ Kattail#2820", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31150, @@ -10118,6 +10574,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733364733, inGameName: "<↑ DemoLaw#3133", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35354, @@ -10131,6 +10590,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733702069, inGameName: "<↑ ™toma#2584", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10173,6 +10635,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733374295, inGameName: "εᴠₒ Sniper#5010", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38686, @@ -10186,6 +10651,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733374297, inGameName: "εᴠₒGalaxyK#2711", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12005, @@ -10199,6 +10667,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733374299, inGameName: "εᴠₒWaffle#3295", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31295, @@ -10212,6 +10683,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733697589, inGameName: "εᴠ Velvet#6554", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10254,6 +10728,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733433864, inGameName: "〒 Polon™#1827", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 40636, @@ -10267,6 +10744,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733433867, inGameName: "〒 999.Revo#1281", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 44489, @@ -10280,6 +10760,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733433868, inGameName: "Fischi.jr☆TSA#1331", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34314, @@ -10293,6 +10776,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733433870, inGameName: "〒 Gabbro#1991", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28247, @@ -10306,6 +10792,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733433871, inGameName: "〒 №POGnatr#2144", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 41628, @@ -10319,6 +10808,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733438268, inGameName: "〒$illyCat.#1689", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -10355,6 +10847,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733513814, inGameName: "ヨ。Illusion#3461", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26321, @@ -10368,6 +10863,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733513817, inGameName: "ヨ。Ella :3#1250", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22324, @@ -10381,6 +10879,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733513820, inGameName: "ヨ。Swaashy#6189", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11088, @@ -10394,6 +10895,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733513821, inGameName: "ヨ。twinbe#6647", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10436,6 +10940,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733602400, inGameName: "T☆squishy#1382", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20419, @@ -10449,6 +10956,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733602403, inGameName: "combo#2339", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4248, @@ -10462,6 +10972,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733602406, inGameName: "T☆κοiκοi!#2065", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10826, @@ -10475,6 +10988,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733602409, inGameName: "Tachi Ko#2736", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28504, @@ -10488,6 +11004,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734030318, inGameName: "T☆Drewski#1157", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10530,6 +11049,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733753214, inGameName: "404 アキラ!#2667", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28446, @@ -10543,6 +11065,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733753221, inGameName: "404 PGP¹º²#2268", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30728, @@ -10556,6 +11081,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733753226, inGameName: "404 snip#2287", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32158, @@ -10569,6 +11097,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733753244, inGameName: "404 Floke#1914", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34634, @@ -10582,6 +11113,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733854036, inGameName: "404 Stick#3636", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10624,6 +11158,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733914001, inGameName: "メи Rεиzø#1066", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31189, @@ -10637,6 +11174,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733914005, inGameName: "Fx>>Saturn#1259", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10190, @@ -10650,6 +11190,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733914010, inGameName: "メи J-SON#1634", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37959, @@ -10663,6 +11206,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733914024, inGameName: "Ж «Лили» Ж#1963", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 40304, @@ -10676,6 +11222,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733914036, inGameName: "Ж Ryro Ж#3336", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35922, @@ -10689,6 +11238,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733914100, inGameName: "Rocko_spl#1058", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10731,6 +11283,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733966548, inGameName: "[BW] Tommy #2195", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35617, @@ -10744,6 +11299,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733966558, inGameName: "[BW] Nep#6339", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37669, @@ -10757,6 +11315,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733966563, inGameName: "[BW]☆⌢NB⌢☆#1633", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37436, @@ -10770,6 +11331,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733966565, inGameName: "Reg112#1956", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35811, @@ -10783,6 +11347,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733970531, inGameName: "Parxe [BW]#2048", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10825,6 +11392,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734032213, inGameName: "τァ Jupex#9503", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1925, @@ -10838,6 +11408,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734032217, inGameName: "τァ Luigeon#2301", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11391, @@ -10851,6 +11424,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734032220, inGameName: "τァ Italics#3341", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27355, @@ -10864,6 +11440,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734032222, inGameName: "τァ Plαnσ#1055", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10906,6 +11485,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734106606, inGameName: "アこ•ζκγ˜#1943", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43269, @@ -10919,6 +11501,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734106608, inGameName: "-2#1564", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37173, @@ -10932,6 +11517,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734106610, inGameName: "アこ•Elias#2365", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34448, @@ -10945,6 +11533,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734194642, inGameName: "V³Aпgel»#2225", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 16054, @@ -10958,6 +11549,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734199465, inGameName: "Autumnal!?#1691", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11000,6 +11594,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734116765, inGameName: "Puddleduck#9028", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10378, @@ -11013,6 +11610,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734116829, inGameName: "ctrlaltdog#3572", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46771, @@ -11026,6 +11626,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734117640, inGameName: "Polaris#6130", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5350, @@ -11039,6 +11642,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734129026, inGameName: "RKO*Bomb#2206", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12609, @@ -11052,6 +11658,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734134255, inGameName: "revlushaun#3043", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26044, @@ -11065,6 +11674,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734134731, inGameName: "zamuraı#9996", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11107,6 +11719,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734125312, inGameName: "KUST#2446", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43060, @@ -11120,6 +11735,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734125320, inGameName: "☆Tuna#9794", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22622, @@ -11133,6 +11751,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734125324, inGameName: "Heartble#4140", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22968, @@ -11146,6 +11767,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734125402, inGameName: "grubhub#8941", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11188,6 +11812,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734134382, inGameName: "S1MPLE#1222", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42164, @@ -11201,6 +11828,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734134394, inGameName: "✩Bubu✩#3042", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25689, @@ -11214,6 +11844,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734134419, inGameName: "モウセンゴケ#3613", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43524, @@ -11227,6 +11860,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734135118, inGameName: "「łw」JΔRΞD#2421", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26758, @@ -11240,6 +11876,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734267010, inGameName: "Lianzi#3090", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11277,6 +11916,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733156802, inGameName: "Thoma...#7962", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9112, @@ -11290,6 +11932,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733156805, inGameName: "Albedo...#3246", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3738, @@ -11303,6 +11948,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733156806, inGameName: "Firecorgi…#2846", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7434, @@ -11316,6 +11964,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733156808, inGameName: "droproller#6887", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9036, @@ -11329,6 +11980,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733156810, inGameName: "sulli...#2942", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11371,6 +12025,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157391, inGameName: "wobblynuts#2103", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38204, @@ -11384,6 +12041,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157395, inGameName: "ima div5?!#1610", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35506, @@ -11397,6 +12057,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157398, inGameName: "ヨ。Goro.UA#1965", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3741, @@ -11410,6 +12073,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157407, inGameName: "Sun#2327", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31728, @@ -11423,6 +12089,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733157410, inGameName: "‘ב)Srblue#2726", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8080, @@ -11436,6 +12105,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733865047, inGameName: "M■OmaZen#2168", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11478,6 +12150,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733162274, inGameName: "¡ κrακhεαδ#6781", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42975, @@ -11491,6 +12166,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733162328, inGameName: "¡ Tangy#2745", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20319, @@ -11504,6 +12182,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733167848, inGameName: "*Starcole#1814", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28054, @@ -11517,6 +12198,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733594188, inGameName: "¡ C-53#1362", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11559,6 +12243,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733367806, inGameName: "pen°®»#2456", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46586, @@ -11572,6 +12259,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733718486, inGameName: "ring°®»#3381", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33790, @@ -11585,6 +12275,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734040847, inGameName: "★AkiSweeti#3326", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 18632, @@ -11598,6 +12291,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734116368, inGameName: "hina°®»#3244", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11640,6 +12336,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733456080, inGameName: "SBz☆ Peace#2232", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10386, @@ -11653,6 +12352,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733456082, inGameName: "S☆Damage#8219", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22942, @@ -11666,6 +12368,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733456084, inGameName: "SBz☆Mikey#3048", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33369, @@ -11679,6 +12384,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733456085, inGameName: "SBz☆surimi#6144", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29617, @@ -11692,6 +12400,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733456249, inGameName: "SBz☆ Matt#3415", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11734,6 +12445,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733579092, inGameName: "∴イルカ∵#2729", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14170, @@ -11747,6 +12461,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733579098, inGameName: "∴ナナ∵#1150", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25419, @@ -11760,6 +12477,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733579112, inGameName: "∴ShiroZVM∵#1929", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14413, @@ -11773,6 +12493,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733608177, inGameName: "becky#3225", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -11809,6 +12532,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733769667, inGameName: "8𝄞Rosellei#9315", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38022, @@ -11822,6 +12548,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733769672, inGameName: "8♪Lightboy#3126", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 41269, @@ -11835,6 +12564,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733769675, inGameName: "「sneakee」#4337", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7935, @@ -11848,6 +12580,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733786868, inGameName: "samy☆#1800", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43856, @@ -11861,6 +12596,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733787437, inGameName: "CiaB∞♪#1282", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43551, @@ -11874,6 +12612,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733871853, inGameName: "8🎵Mr.pig #3891", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11916,6 +12657,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733794148, inGameName: "⁀Juancho、#7824", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27036, @@ -11929,6 +12673,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733794151, inGameName: "⁀Ace Astro#2380", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22820, @@ -11942,6 +12689,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733794153, inGameName: "⌒jay、#2743", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28021, @@ -11955,6 +12705,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733794154, inGameName: "⁀rascal、#1280", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1890, @@ -11968,6 +12721,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733794165, inGameName: "StarShower#1551", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29636, @@ -11981,6 +12737,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733794167, inGameName: "⁀Terra、#1345", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12023,6 +12782,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733820540, inGameName: "χ。 Yuyu#2869", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21989, @@ -12036,6 +12798,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733820548, inGameName: "K#1858a", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25242, @@ -12049,6 +12814,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733820554, inGameName: "Sigma727#2127", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43081, @@ -12062,6 +12830,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734119153, inGameName: "f(x)Eli#1434", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12099,6 +12870,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733825084, inGameName: "240 ˚ Roxy #2267", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24252, @@ -12112,6 +12886,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733825092, inGameName: "puddi#1261", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32444, @@ -12125,6 +12902,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733825098, inGameName: "320°nelus#2340", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36113, @@ -12138,6 +12918,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733825102, inGameName: "106*Nova#6620", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12180,6 +12963,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733865890, inGameName: "★ŁPρīᴋα₵нʊ#4923", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27828, @@ -12193,6 +12979,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733865934, inGameName: "mş◇Nao◇#1197", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 41975, @@ -12206,6 +12995,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733866368, inGameName: "mş◇noswet#3230", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28938, @@ -12219,6 +13011,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733866415, inGameName: "mş◇Femboy#2761", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8587, @@ -12232,6 +13027,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734198266, inGameName: "ミ》Vγτãłîç#3075", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12274,6 +13072,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733873149, inGameName: "⁰³ Smolie#2959", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7115, @@ -12287,6 +13088,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733873154, inGameName: "°³Xyюfonia#2523", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29674, @@ -12300,6 +13104,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733873160, inGameName: "°³Crescent#2342", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 39569, @@ -12313,6 +13120,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733873164, inGameName: "°³ Joryu#2761", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30031, @@ -12326,6 +13136,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734059096, inGameName: "°³Hudsonic#1758", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28866, @@ -12339,6 +13152,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734059098, inGameName: "heathcliff#2173", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12381,6 +13197,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733875608, inGameName: "ЯГ DHVF#2103", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33824, @@ -12394,6 +13213,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733875614, inGameName: "ЯГdemONdaz#1133", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35608, @@ -12407,6 +13229,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733875621, inGameName: "ЯГ^catboy^#2774", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22677, @@ -12420,6 +13245,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733875625, inGameName: "ЯГ Enoki#6301", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12462,6 +13290,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733888417, inGameName: "C ☆VOID#1573", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30030, @@ -12475,6 +13306,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733888595, inGameName: "Blixout #2868", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21454, @@ -12488,6 +13322,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733924130, inGameName: "C☆Mizuyu#1106", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42483, @@ -12501,6 +13338,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733932409, inGameName: "C☆ ᗴnzo#2034", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12538,6 +13378,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734008857, inGameName: "ØĐ Tipo#2728", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37341, @@ -12551,6 +13394,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734008860, inGameName: "ØÐ Bees#7729", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22699, @@ -12564,6 +13410,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734008861, inGameName: "ØÐ Giraffe#1937", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28145, @@ -12577,6 +13426,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734008862, inGameName: "ØĐ Madman#1438", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 39363, @@ -12590,6 +13442,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734008862, inGameName: "SMGalactic#2705", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12632,6 +13487,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734018352, inGameName: ">つ Gray#2584", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20990, @@ -12645,6 +13503,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734018468, inGameName: "peepeepoop#1111", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22469, @@ -12658,6 +13519,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734018744, inGameName: ">つ ari#6831", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 41594, @@ -12671,6 +13535,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734018745, inGameName: "Aris!#3219", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12713,6 +13580,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734019701, inGameName: "1κ DERLEON#2716", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35421, @@ -12726,6 +13596,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734019708, inGameName: "∴FATcat∵#9026", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33524, @@ -12739,6 +13612,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734019712, inGameName: "∴Wunini∵#3998", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22500, @@ -12752,6 +13628,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734021864, inGameName: "N#2648", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42081, @@ -12765,6 +13644,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734105680, inGameName: "∴JuliDuli∵#1274", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20063, @@ -12778,6 +13660,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734105830, inGameName: "moo Froody#2483", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12815,6 +13700,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734023441, inGameName: "κs/Milk#1291", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2898, @@ -12828,6 +13716,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734023445, inGameName: "κs/Camo#7584", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25763, @@ -12841,6 +13732,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734023449, inGameName: "κs/mart#8857", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3466, @@ -12854,6 +13748,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734023452, inGameName: "κs/Nova#1858", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34662, @@ -12867,6 +13764,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734023471, inGameName: "ks×Arlo#3183", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -12909,6 +13809,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734099744, inGameName: "DblCookies#1157", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7461, @@ -12922,6 +13825,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734099747, inGameName: "FFA Asri#1196", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 39098, @@ -12935,6 +13841,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734099748, inGameName: "MLG VESNA#1357", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22624, @@ -12948,6 +13857,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734099751, inGameName: "Хлебушек#2205", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28137, @@ -12961,6 +13873,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734099753, inGameName: "⭐Pitoy#1990", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13003,6 +13918,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734109256, inGameName: "Mαrc ★#2004", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29661, @@ -13016,6 +13934,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734109262, inGameName: "Oydα!★#2446", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10333, @@ -13029,6 +13950,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734109264, inGameName: "Shogunyan★#1907", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35067, @@ -13042,6 +13966,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734115341, inGameName: "メи αlεχvιç#9786", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31655, @@ -13055,6 +13982,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734118067, inGameName: "α▽Nite! ツ#1126", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 40743, @@ -13068,6 +13998,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734118251, inGameName: "Bkl#3359", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13105,6 +14038,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734125682, inGameName: "zм Painter#1599", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32430, @@ -13118,6 +14054,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734125687, inGameName: "zм fan★アハト#9121", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26701, @@ -13131,6 +14070,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734125692, inGameName: "zм★Cinna#3115", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30584, @@ -13144,6 +14086,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734125694, inGameName: "zм eggs♪#2417", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24290, @@ -13157,6 +14102,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734125695, inGameName: "zмKensa™#3419", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36575, @@ -13170,6 +14118,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734125696, inGameName: "zм lumi★#2628", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13212,6 +14163,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733515005, inGameName: "[L]ucky☆#2554", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36921, @@ -13225,6 +14179,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733515009, inGameName: "melon musk#2999", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37563, @@ -13238,6 +14195,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733515013, inGameName: "Oβιiνiση★※#9105", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37665, @@ -13251,6 +14211,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733515016, inGameName: "SteveRoger#6300", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13293,6 +14256,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733521735, inGameName: "ζ☆Pre#2676", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38912, @@ -13306,6 +14272,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733521737, inGameName: "cyanide☆#1025", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23357, @@ -13319,6 +14288,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733521742, inGameName: "ζ☆Shiber#1520", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36853, @@ -13332,6 +14304,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733521744, inGameName: "ζ☆Turtle#3399", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42599, @@ -13345,6 +14320,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734062084, inGameName: "し-Scruffy#2981", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13387,6 +14365,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733525617, inGameName: "«!» Silver#3048", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21818, @@ -13400,6 +14381,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733525636, inGameName: "«!» jamer#2432", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22991, @@ -13413,6 +14397,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733525638, inGameName: "«!» oxii#1863", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2266, @@ -13426,6 +14413,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733550589, inGameName: "«!» Show-#3347", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13468,6 +14458,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733847805, inGameName: "|+| Gyrum?#1429", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32015, @@ -13481,6 +14474,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733847808, inGameName: "|+| goldie#1823", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30663, @@ -13494,6 +14490,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733847813, inGameName: "l+lRegret#9365", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45778, @@ -13507,6 +14506,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733847820, inGameName: "|+| KO#7634", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32970, @@ -13520,6 +14522,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733847825, inGameName: "hi lol#1052", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13562,6 +14567,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733858126, inGameName: "☐ JoshI#3168", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35567, @@ -13575,6 +14583,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733858131, inGameName: "☐ Koyomi#8668", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 41108, @@ -13588,6 +14599,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733858133, inGameName: "☐ √VVu#1515", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34545, @@ -13601,6 +14615,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733858134, inGameName: "☐ Womkel#1682", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26564, @@ -13614,6 +14631,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733858136, inGameName: "☐Jelly...#3387", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13656,6 +14676,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733966096, inGameName: "§ LimnL#1167", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25741, @@ -13669,6 +14692,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733966173, inGameName: "Toast!#9282", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42874, @@ -13682,6 +14708,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733966255, inGameName: "QS§ shade#8976", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 39470, @@ -13695,6 +14724,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733995042, inGameName: "Vi♪#2860", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32878, @@ -13708,6 +14740,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734008017, inGameName: "§ rzor#3175", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13750,6 +14785,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734021147, inGameName: "⊂²⊃Lynx#2645", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45174, @@ -13763,6 +14801,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734021215, inGameName: "⊂²⊃Bisc#2044", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10222, @@ -13776,6 +14817,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734021280, inGameName: "⊂²⊃Despair#2742", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6976, @@ -13789,6 +14833,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734031699, inGameName: "⊂²⊃Camexrn#9414", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46504, @@ -13802,6 +14849,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734032940, inGameName: "⊂²⊃ J#1795", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13844,6 +14894,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734040772, inGameName: "$2 kαye#1141", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43753, @@ -13857,6 +14910,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734040792, inGameName: "$2 Henk#3060", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45806, @@ -13870,6 +14926,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734040795, inGameName: "Bodi#1083", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46648, @@ -13883,6 +14942,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734041012, inGameName: "$2 Boros#1605", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13925,6 +14987,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734033803, inGameName: "CH◆tariq#2613", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 44328, @@ -13938,6 +15003,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734033808, inGameName: "CH✦(Splat)#1396", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12235, @@ -13951,6 +15019,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734033810, inGameName: "★W⦶⦶b⦵⦵b★#1331", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29531, @@ -13964,6 +15035,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734124051, inGameName: "とづ 8#1129", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30044, @@ -13977,6 +15051,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734198626, inGameName: "Addy!#2572", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14019,6 +15096,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734099612, inGameName: "nx★Juan★#2469", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37641, @@ -14032,6 +15112,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734105791, inGameName: "Veater_27#7110", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33913, @@ -14045,6 +15128,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734106106, inGameName: "Pablitodmd#1039", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42597, @@ -14058,6 +15144,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734130054, inGameName: "marco#8993", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24572, @@ -14071,6 +15160,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734130213, inGameName: "kira#1088", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14108,6 +15200,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734113463, inGameName: "DumbKnight#2534", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33276, @@ -14121,6 +15216,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734119726, inGameName: "Bronze!#5994", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 41038, @@ -14134,6 +15232,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734119729, inGameName: "SnC Jammy#1610", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11198, @@ -14147,6 +15248,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734119850, inGameName: "Tomatty#1655", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14189,6 +15293,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734118202, inGameName: "AI thds#1117", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14927, @@ -14202,6 +15309,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734118214, inGameName: "AI Alphi#3562", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1236, @@ -14215,6 +15325,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734118218, inGameName: "Melvo#8510", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27069, @@ -14228,6 +15341,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734118221, inGameName: "Wither :3#1655", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -14264,6 +15380,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734134334, inGameName: "6pk hype#2205", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25952, @@ -14277,6 +15396,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734134336, inGameName: "6pk coneco#3350", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27611, @@ -14290,6 +15412,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734134344, inGameName: "6pk vowels#1832", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11186, @@ -14303,6 +15428,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734134349, inGameName: "6pSomesing#8428", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23481, @@ -14316,6 +15444,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734136034, inGameName: "Squidoku#3096", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14358,6 +15489,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733169181, inGameName: "SR★MB20YT#1798", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38610, @@ -14371,6 +15505,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733169320, inGameName: "SR★Phil#1761", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 40713, @@ -14384,6 +15521,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733169508, inGameName: "SR★Loha#3062", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 40766, @@ -14397,6 +15537,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733191023, inGameName: "SR★Goggles#9276", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14439,6 +15582,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733247691, inGameName: "Yolo#4117", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46538, @@ -14452,6 +15598,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733248120, inGameName: "REDACTED™#2445", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46523, @@ -14465,6 +15614,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733254364, inGameName: "яєαℓм#2823", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46501, @@ -14478,6 +15630,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733255832, inGameName: "ira#5400", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14520,6 +15675,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733452618, inGameName: "lavie♪#1025", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 17049, @@ -14533,6 +15691,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733452664, inGameName: "♪Sunshine♪#1855", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36888, @@ -14546,6 +15707,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733452675, inGameName: "LoftKnight#2145", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46546, @@ -14559,6 +15723,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733727932, inGameName: "Squiggly#1806", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42172, @@ -14572,6 +15739,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733782852, inGameName: "Verchi#2950", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -14603,6 +15773,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733481710, inGameName: "★*мvstang#2813", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 40912, @@ -14616,6 +15789,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733481731, inGameName: "★*Neven#5092", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30455, @@ -14629,6 +15805,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733481736, inGameName: "★*Miles#2639", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27649, @@ -14642,6 +15821,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733481739, inGameName: "★*Pulfis#2895", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43703, @@ -14655,6 +15837,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733502639, inGameName: "Φ; Spud ★#3135", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -14691,6 +15876,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733508949, inGameName: "skgrizz#8819", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46451, @@ -14704,6 +15892,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733525710, inGameName: "Pestilence#4777", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 44412, @@ -14717,6 +15908,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733527279, inGameName: "folly#5759", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45194, @@ -14730,6 +15924,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733528514, inGameName: "Crumbs#1223", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14772,6 +15969,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733611261, inGameName: "lepton#2586", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21755, @@ -14785,6 +15985,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733801424, inGameName: "borbo =3#1160", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27984, @@ -14798,6 +16001,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733805620, inGameName: "Orange_ =3#1571", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27990, @@ -14811,6 +16017,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733806448, inGameName: "chip =3#3160", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14848,6 +16057,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733841846, inGameName: "★S→MILENKO#1628", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 41943, @@ -14861,6 +16073,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733841861, inGameName: "Ashes360#2691", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45290, @@ -14874,6 +16089,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733841865, inGameName: "Charli#3401", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46394, @@ -14887,6 +16105,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733841867, inGameName: "Leshy#7700", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46400, @@ -14900,6 +16121,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733841868, inGameName: "⭐S->Salvo#2510", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14942,6 +16166,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733878153, inGameName: "chicken#3343", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38960, @@ -14955,6 +16182,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733878225, inGameName: "caustic#7812", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32199, @@ -14968,6 +16198,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1733931535, inGameName: "Ducky/DC#9919", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 40126, @@ -14981,6 +16214,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734124484, inGameName: "[∞B]Mochi#4755", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15023,6 +16259,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734135144, inGameName: "Perijove#1632", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 44866, @@ -15036,6 +16275,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734135149, inGameName: "Dr. Ness#3373", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 44642, @@ -15049,6 +16291,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734135638, inGameName: "Endee#4738", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45391, @@ -15062,6 +16307,9 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ createdAt: 1734136833, inGameName: "Cledesol#0674", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15188,5 +16436,6 @@ export const LOW_INK_DECEMBER_2024 = (): TournamentData => ({ 45194, 45250, 45290, 45295, 45391, 45778, 45806, 46245, 46289, 46305, 46394, 46451, 46501, 46518, 46523, 46538, 46586, 46637, 46648, 46771, ], + castStreams: [], }, }); diff --git a/app/features/tournament-bracket/core/tests/mocks-sos.ts b/app/features/tournament-bracket/core/tests/mocks-sos.ts index 7103fe95e..35d438639 100644 --- a/app/features/tournament-bracket/core/tests/mocks-sos.ts +++ b/app/features/tournament-bracket/core/tests/mocks-sos.ts @@ -2424,6 +2424,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730771673, inGameName: "dx mocher#3333", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9403, @@ -2437,6 +2440,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730771744, inGameName: "R <3#1254", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31868, @@ -2450,6 +2456,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730771772, inGameName: "Addict#4811", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13562, @@ -2463,6 +2472,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730790990, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34724, @@ -2476,6 +2488,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730848243, inGameName: "( >‿< ) #1925", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27222, @@ -2489,6 +2504,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730941117, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2546,6 +2564,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730931681, inGameName: "(?)#1719", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 331, @@ -2559,6 +2580,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730931818, inGameName: "kera#1797", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 44, @@ -2572,6 +2596,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730932211, inGameName: "dM_rshell1#2568", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 65, @@ -2585,6 +2612,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730936191, inGameName: "dM_vexen#1559", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2642,6 +2672,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730864603, inGameName: "コントロール <3#1605", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10200, @@ -2655,6 +2688,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730864607, inGameName: "Woomy#1265", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1038, @@ -2668,6 +2704,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730864614, inGameName: "Kabi#5484", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1059, @@ -2681,6 +2720,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730864617, inGameName: "Taro#2443", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 267, @@ -2694,6 +2736,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730939914, inGameName: "Hiyah#3200", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2751,6 +2796,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730932511, inGameName: "titan#1102", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9034, @@ -2764,6 +2812,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730932518, inGameName: "zephyr#2292", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 590, @@ -2777,6 +2828,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730932538, inGameName: "closure#2716", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29643, @@ -2790,6 +2844,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730933208, inGameName: "《ƒr》к∀†§#8079", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2847,6 +2904,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730922495, inGameName: "7 nova#2185", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5368, @@ -2860,6 +2920,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730922504, inGameName: "Bl!Dismaqe#2590", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 373, @@ -2873,6 +2936,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730922735, inGameName: "Niightmare#3052", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37677, @@ -2886,6 +2952,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730925935, inGameName: "M∀LISS :)#2207", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2943,6 +3012,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730788095, inGameName: "КraкenMare#2266", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11143, @@ -2956,6 +3028,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730788096, inGameName: "DRF#2937", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20311, @@ -2969,6 +3044,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730788097, inGameName: "Mewtwo :)#2309", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11815, @@ -2982,6 +3060,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730788098, inGameName: "Pepé#1340", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5001, @@ -2995,6 +3076,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730788099, inGameName: "Smork#1828", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7216, @@ -3008,6 +3092,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730788099, inGameName: "v4p0я#3011", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3070,6 +3157,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730774561, inGameName: "⦾ ▽Scribys#7872", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20026, @@ -3083,6 +3173,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730774563, inGameName: "⦾▽Mecog#1866", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5227, @@ -3096,6 +3189,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730774565, inGameName: "⦾▽Neea!#4244", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25622, @@ -3109,6 +3205,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730774567, inGameName: "⦾▽rice:3#5034", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25053, @@ -3122,6 +3221,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730774568, inGameName: "⦾▽SlimeSer#3009", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3184,6 +3286,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730935243, inGameName: "Soveliss#2381", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5947, @@ -3197,6 +3302,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730935247, inGameName: "an_Arbiter#4805", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8760, @@ -3210,6 +3318,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730935248, inGameName: "Kaiser#2891", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1548, @@ -3223,6 +3334,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730935250, inGameName: "ashura!#9386", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 163, @@ -3236,6 +3350,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730935251, inGameName: "Zon#1975", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3298,6 +3415,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730851309, inGameName: "<<∀>> Trece°#2886", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2670, @@ -3311,6 +3431,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730851310, inGameName: "Horshio #9328", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36265, @@ -3324,6 +3447,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730851312, inGameName: "Seiðr#1805", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23505, @@ -3337,6 +3463,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730908087, inGameName: "Hnm?#hnmm", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3399,6 +3528,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730870818, inGameName: "~JJaeigh~#1248", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11244, @@ -3412,6 +3544,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730870821, inGameName: "Blu?#2930", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3181, @@ -3425,6 +3560,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730870823, inGameName: "~Cakes~#2092", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11495, @@ -3438,6 +3576,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730870825, inGameName: "~Parx~#1833", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31073, @@ -3451,6 +3592,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730870827, inGameName: "~Shinds~#2929", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3508,6 +3652,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730872875, inGameName: "BIG.Mini#6901", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21487, @@ -3521,6 +3668,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730872878, inGameName: "Nep2ne#2294", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28391, @@ -3534,6 +3684,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730872879, inGameName: "SylphLux#1917", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23292, @@ -3547,6 +3700,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730872880, inGameName: "BIG Toto⭐️#1933", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27438, @@ -3560,6 +3716,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730927365, inGameName: "Coolo☆#3251", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3617,6 +3776,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730934390, inGameName: "takobon#6183", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4307, @@ -3630,6 +3792,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730934493, inGameName: "Ezio! ^#3340", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20731, @@ -3643,6 +3808,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730934504, inGameName: "MEL0MANIA★#1137", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22706, @@ -3656,6 +3824,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730934958, inGameName: "Tyflo#3737", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3713,6 +3884,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730925172, inGameName: "DeeZy#8797", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 15278, @@ -3726,6 +3900,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730925174, inGameName: "teh-c#7843", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34414, @@ -3739,6 +3916,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730925178, inGameName: "★spritzu#1225", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 863, @@ -3752,6 +3932,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730925182, inGameName: "kilokilo#2652", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31526, @@ -3765,6 +3948,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730939317, inGameName: "caravaggio#1994", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3827,6 +4013,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730526186, inGameName: "ξヨ Minty!↑#2932", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1736, @@ -3840,6 +4029,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730526191, inGameName: "Draconif#1259", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 986, @@ -3853,6 +4045,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730526191, inGameName: "Latios#2323", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2300, @@ -3866,6 +4061,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730526191, inGameName: "osa?#9356", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25464, @@ -3879,6 +4077,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730526191, inGameName: "ξヨ IRRLUS#2192", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30204, @@ -3892,6 +4093,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730838396, inGameName: "m#31926", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3954,6 +4158,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730940438, inGameName: "PANDORA#1510", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11275, @@ -3967,6 +4174,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730940441, inGameName: "HOMUNCULUS#1638", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9718, @@ -3980,6 +4190,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730940948, inGameName: "GOODBYE!!!#5140", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -4011,6 +4224,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730912708, inGameName: "Magyk♪ :•:#2624", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2088, @@ -4024,6 +4240,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730912712, inGameName: "Ichie.deco#1196", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9454, @@ -4037,6 +4256,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730920131, inGameName: "Pixel <3#1912", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2059, @@ -4050,6 +4272,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730929082, inGameName: "Cactus#3214", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4107,6 +4332,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730936919, inGameName: "shawrk#4318", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25168, @@ -4120,6 +4348,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730936940, inGameName: "Drag?#1163", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27485, @@ -4133,6 +4364,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730936960, inGameName: "BigFish♪#2829", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14007, @@ -4146,6 +4380,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730937813, inGameName: "アロハ#2443", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4203,6 +4440,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730937337, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1338, @@ -4216,6 +4456,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730937342, inGameName: "Cytrus#1239", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5679, @@ -4229,6 +4472,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730937348, inGameName: "after you…#2794", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 241, @@ -4242,6 +4488,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730937354, inGameName: "mars#1311", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4299,6 +4548,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730769135, inGameName: "FREEEWIN#3363", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33116, @@ -4312,6 +4564,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730769143, inGameName: "Andric#3010", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34014, @@ -4325,6 +4580,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730769146, inGameName: "Jay★#1846", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 44751, @@ -4338,6 +4596,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730769149, inGameName: "lc...Koki#3019", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 44198, @@ -4351,6 +4612,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730772612, inGameName: "4K#2192", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22756, @@ -4364,6 +4628,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730929021, inGameName: "↓ ceiling!#2229", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4426,6 +4693,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730836875, inGameName: "Vertigø_c#5295", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1487, @@ -4439,6 +4709,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730836878, inGameName: "BrΘck.c©m#1845", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 17310, @@ -4452,6 +4725,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730836887, inGameName: "Θ© OhkoXar#1431", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34657, @@ -4465,6 +4741,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730836891, inGameName: "NateFH#1930", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22409, @@ -4478,6 +4757,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730938882, inGameName: "Pinot Noir#3156", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4540,6 +4822,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730844165, inGameName: "Ж∵Bebrop#8946", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2672, @@ -4553,6 +4838,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730844167, inGameName: "Ж∵ĄyJαe#1696", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4504, @@ -4566,6 +4854,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730844171, inGameName: "LordEspurr#2800", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25856, @@ -4579,6 +4870,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730844174, inGameName: "¤*°4Nishi#1810", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4641,6 +4935,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730926359, inGameName: "↑MONK£¥#3265", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34071, @@ -4654,6 +4951,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730926611, inGameName: "SBz☆ Peace#2232", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23946, @@ -4667,6 +4967,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730926770, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21339, @@ -4680,6 +4983,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730927035, inGameName: "DogBoySoro#1928", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4737,6 +5043,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730928135, inGameName: "λ...flowerss#2664", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5261, @@ -4750,6 +5059,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730928142, inGameName: "ƒ¿¡Koda!?#1726", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 190, @@ -4763,6 +5075,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730928155, inGameName: "λ...tart^#2174", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12585, @@ -4776,6 +5091,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730931277, inGameName: "Chaeri#3358", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4833,6 +5151,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730880730, inGameName: "Plussy#1291", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2731, @@ -4846,6 +5167,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730880736, inGameName: "VanNoah#1555", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31764, @@ -4859,6 +5183,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730880862, inGameName: "Bara Rider#1679", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25133, @@ -4872,6 +5199,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730894461, inGameName: "☆jinx☰∵#1970", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 17855, @@ -4885,6 +5215,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730936268, inGameName: "paracelsus#2947", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -4921,6 +5254,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730939363, inGameName: "Young⇔Bob#2564", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32885, @@ -4934,6 +5270,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730939368, inGameName: "Skippy⇔Tox#5504", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1953, @@ -4947,6 +5286,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730939370, inGameName: "Bored⇔asf#1000", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 15188, @@ -4960,6 +5302,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730939376, inGameName: "91Yugo#1966", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2888, @@ -4973,6 +5318,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730939459, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5035,6 +5383,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730838132, inGameName: "Sυκμη⍺´ω`#1959", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8297, @@ -5048,6 +5399,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730838136, inGameName: "Pizzasquid #1740", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8830, @@ -5061,6 +5415,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730838136, inGameName: "Yuta...#2764", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38176, @@ -5074,6 +5431,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730903083, inGameName: "BrushMommy#1405", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5136,6 +5496,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730917380, inGameName: "ψ Nero#1025", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36215, @@ -5149,6 +5512,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730917384, inGameName: "Heaven#1583", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -5185,6 +5551,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730832667, inGameName: "Bubble.mp4#3578", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6051, @@ -5198,6 +5567,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730832669, inGameName: "ACECT.mp4#2681", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22903, @@ -5211,6 +5583,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730832670, inGameName: "NELL.mp4#6192", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23132, @@ -5224,6 +5599,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730832675, inGameName: "☆! soap c:#2845", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5281,6 +5659,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730853887, inGameName: "ミ》Auto#8936", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29120, @@ -5294,6 +5675,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730853889, inGameName: "ミ》AwesIce#4299", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35225, @@ -5307,6 +5691,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730853890, inGameName: "ミ》Kolos#1649", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8587, @@ -5320,6 +5707,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730853891, inGameName: "ミ》Vγτãłîç#3075", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23333, @@ -5333,6 +5723,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730927852, inGameName: "☆_★ rin#5714", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5395,6 +5788,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730928986, inGameName: "「F」sawyer #7539", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31395, @@ -5408,6 +5804,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730929028, inGameName: "In 「F」iniTy#1007", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31195, @@ -5421,6 +5820,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730929043, inGameName: "「F」Cotni#3521", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28700, @@ -5434,6 +5836,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730929068, inGameName: "Kanga#2476", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33402, @@ -5447,6 +5852,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730929154, inGameName: "*~*flyNn#2174", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5504,6 +5912,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730775625, inGameName: "LosTheresa#3238", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30686, @@ -5517,6 +5928,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730775627, inGameName: "Los Equals#2851", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22396, @@ -5530,6 +5944,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730775628, inGameName: "Los Hammy#4656", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1961, @@ -5543,6 +5960,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730775632, inGameName: "Los SeaSlug#2211", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5605,6 +6025,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730605037, inGameName: "н°Tusk#7435", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5187, @@ -5618,6 +6041,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730605040, inGameName: "н°Kahlium#1387", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10265, @@ -5631,6 +6057,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730605043, inGameName: "н°SodaChip#6437", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22744, @@ -5644,6 +6073,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730605046, inGameName: "н°Dυstt♪#4897", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29823, @@ -5657,6 +6089,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730936575, inGameName: "Doritos 4D#2929", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5719,6 +6154,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730862741, inGameName: "σ*°yoshido#3235", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13671, @@ -5732,6 +6170,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730862749, inGameName: "σ*°Nutella#7762", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30612, @@ -5745,6 +6186,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730862751, inGameName: "σ*°Crazy!?#2260", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36898, @@ -5758,6 +6202,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730862753, inGameName: "σ*°Town#1561", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31580, @@ -5771,6 +6218,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730862754, inGameName: "Saicadelic#2256", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5833,6 +6283,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730840221, inGameName: "はい [Masta]#2933", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31533, @@ -5846,6 +6299,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730840228, inGameName: "はいheheheha#1181", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29483, @@ -5859,6 +6315,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730840230, inGameName: "はい Mr.Miu#2064", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42118, @@ -5872,6 +6331,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730840247, inGameName: "ネオ :)#2395", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36800, @@ -5885,6 +6347,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730840250, inGameName: "ネオ【Shrimp】#2715", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -5921,6 +6386,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730770163, inGameName: "R↑ Static#1144", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26820, @@ -5934,6 +6402,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730770166, inGameName: "R↑ Steorra#1628", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31154, @@ -5947,6 +6418,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730770170, inGameName: "Renzo™#3392", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10297, @@ -5960,6 +6434,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730770171, inGameName: "R↑ Yung#3273", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3513, @@ -5973,6 +6450,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730930402, inGameName: "R↑ Zebra#1631", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25469, @@ -5986,6 +6466,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730940399, inGameName: "Nэon#2724", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -6048,6 +6531,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730753582, inGameName: "⌒★ Star#3354", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3635, @@ -6061,6 +6547,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730753589, inGameName: "⌒★ Jam#3645", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7433, @@ -6074,6 +6563,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730753592, inGameName: "soapsopa_#1192", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6647, @@ -6087,6 +6579,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730753597, inGameName: "Snivo ♪#1911", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -6123,6 +6618,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730929508, inGameName: "βαjαβlαstr#1203", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20807, @@ -6136,6 +6634,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730929511, inGameName: "SplaTea TV#9482", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42703, @@ -6149,6 +6650,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730929514, inGameName: "gameing#2389", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 42409, @@ -6162,6 +6666,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730929826, inGameName: "☆メンタリーイル☆#1319", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -6224,6 +6731,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730918770, inGameName: "[шя] Eon#1465", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11941, @@ -6237,6 +6747,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730918777, inGameName: "Elysium#1821", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 715, @@ -6250,6 +6763,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730918781, inGameName: "☆°Craft#1704", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11409, @@ -6263,6 +6779,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730918861, inGameName: "≡□> Sapphi#7100", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -6294,6 +6813,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730851475, inGameName: "Neo☆PR#2944", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29182, @@ -6307,6 +6829,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730852187, inGameName: "macha/まちゃ#1856", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9235, @@ -6320,6 +6845,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730853415, inGameName: "「TK」Tyandj#2146", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30591, @@ -6333,6 +6861,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730855938, inGameName: "Fr0sta#1091", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -6390,6 +6921,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730726309, inGameName: "DΔ Shumper#2224", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2279, @@ -6403,6 +6937,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730726312, inGameName: "DΔ Ark#1872", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26162, @@ -6416,6 +6953,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730726313, inGameName: "e#5440", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4334, @@ -6429,6 +6969,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730726315, inGameName: "240 ˚ Roxy #2267", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24013, @@ -6442,6 +6985,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730726317, inGameName: "[R]yosaan*#2427", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -6478,6 +7024,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730840643, inGameName: "MF śþí4ł_dz#1260", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26801, @@ -6491,6 +7040,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730840650, inGameName: "MF Boneley#2386", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29855, @@ -6504,6 +7056,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730840695, inGameName: "v° Draco#2626", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34594, @@ -6517,6 +7072,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730846237, inGameName: "LordLouse#1726", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33825, @@ -6530,6 +7088,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730850473, inGameName: "Σ∞| 仝Rino #1305", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -6587,6 +7148,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730827259, inGameName: "nme✰marlow#2474", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26988, @@ -6600,6 +7164,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730827265, inGameName: "nme☆tari#1818", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26989, @@ -6613,6 +7180,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730827270, inGameName: "nme✰6rew#3232", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12610, @@ -6626,6 +7196,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730827274, inGameName: "nme☆Pink#2363", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25755, @@ -6639,6 +7212,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730827431, inGameName: "→△GayShark#2051", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -6701,6 +7277,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730863477, inGameName: "ØĐ Tipo#2728", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37341, @@ -6714,6 +7293,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730863535, inGameName: "ØÐ Bees#7729", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22699, @@ -6727,6 +7309,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730863538, inGameName: "ØÐ Giraffe#1937", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28145, @@ -6740,6 +7325,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730863540, inGameName: "ØĐ Madman#1438", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 39363, @@ -6753,6 +7341,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730863556, inGameName: "SMGalactic#2705", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27113, @@ -6766,6 +7357,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730942622, inGameName: "Frenzy#1136", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -6828,6 +7422,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730907528, inGameName: "カニ strings#3288", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29467, @@ -6841,6 +7438,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730907532, inGameName: "カニ glum#2981", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10611, @@ -6854,6 +7454,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730907537, inGameName: "nme☆ash#3048", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46099, @@ -6867,6 +7470,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730921252, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -6924,6 +7530,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730932702, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45163, @@ -6937,6 +7546,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730932829, inGameName: "Siren#1425", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2620, @@ -6950,6 +7562,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730933977, inGameName: "Geeиie7#1390", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32203, @@ -6963,6 +7578,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730933999, inGameName: "MrHundread#2680", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46101, @@ -6976,6 +7594,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730936438, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7033,6 +7654,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730832003, inGameName: "LN TheGish#6533", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29011, @@ -7046,6 +7670,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730832006, inGameName: "ln Arsynn#5022", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23082, @@ -7059,6 +7686,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730832007, inGameName: "ln Blubrry#2022", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33067, @@ -7072,6 +7702,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730832008, inGameName: "CT#1817", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21549, @@ -7085,6 +7718,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730832010, inGameName: "LN✰Melo#1231", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7147,6 +7783,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730938507, inGameName: "≡□>Müdkip#1794", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20240, @@ -7160,6 +7799,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730938539, inGameName: "V↑ edenn´-#1286", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28097, @@ -7173,6 +7815,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730939272, inGameName: "Redstcne#2930", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21249, @@ -7186,6 +7831,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730941112, inGameName: "Yippity#2111", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7243,6 +7891,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730739211, inGameName: "[Typh]#1136", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23712, @@ -7256,6 +7907,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730739214, inGameName: "【BlobRoss】#2126", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27474, @@ -7269,6 +7923,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730739215, inGameName: "[Hiro]#2533", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20990, @@ -7282,6 +7939,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730739216, inGameName: "peepeepoop#1111", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8080, @@ -7295,6 +7955,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730739217, inGameName: "【OmaZen】#3391", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28671, @@ -7308,6 +7971,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730739219, inGameName: "[Vyllie]#3297", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7365,6 +8031,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730857328, inGameName: "とづ 8#1129", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3275, @@ -7378,6 +8047,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730904348, inGameName: "とづMrSaturn#2189", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35169, @@ -7391,6 +8063,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730904355, inGameName: "とづ θιθ#1490", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7008, @@ -7404,6 +8079,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730904365, inGameName: "とづvalencia#1253", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 40169, @@ -7417,6 +8095,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730904367, inGameName: "とづ《WorldG》#9475", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7479,6 +8160,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730591675, inGameName: "μ▽ Lila#4004", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23183, @@ -7492,6 +8176,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730591678, inGameName: "µ▽ Esmé!#3323", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7664, @@ -7505,6 +8192,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730591679, inGameName: "LOR ⭐•ß#2730", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30237, @@ -7518,6 +8208,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730591811, inGameName: "Erik#3177", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -7554,6 +8247,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730859986, inGameName: "»☆ROX★STAR#2212", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8552, @@ -7567,6 +8263,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730859996, inGameName: "»☆Funky#3238", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29897, @@ -7580,6 +8279,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730877839, inGameName: "𝜁𝜄 Rilosaur#3053", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1894, @@ -7593,6 +8295,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730891774, inGameName: "∞Crowboy#8452", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7650,6 +8355,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730703689, inGameName: "[UK] NVL#2046", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43850, @@ -7663,6 +8371,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730703692, inGameName: "UKMrioMyhm#3296", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45635, @@ -7676,6 +8387,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730755609, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46045, @@ -7689,6 +8403,9 @@ export const SWIM_OR_SINK_167 = ( createdAt: 1730760107, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7832,5 +8549,6 @@ export const SWIM_OR_SINK_167 = ( 40505, 41797, 42409, 42703, 43847, 43850, 44751, 45163, 45635, 45980, 46045, 46099, 46101, ], + castStreams: [], }, }); diff --git a/app/features/tournament-bracket/core/tests/mocks-zones-weekly.ts b/app/features/tournament-bracket/core/tests/mocks-zones-weekly.ts index f60b6f396..47eba1336 100644 --- a/app/features/tournament-bracket/core/tests/mocks-zones-weekly.ts +++ b/app/features/tournament-bracket/core/tests/mocks-zones-weekly.ts @@ -412,6 +412,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734656039, inGameName: "Plussy#1291", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2899, @@ -425,6 +428,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734656044, inGameName: "CHIMERA#1263", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6114, @@ -438,6 +444,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734656047, inGameName: "CountMeOut#1985", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33963, @@ -451,6 +460,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734664082, inGameName: "BIDOOFGMAX#8251", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30176, @@ -464,6 +476,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734674285, inGameName: "Bugha 33#1316", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -506,6 +521,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734423187, inGameName: "☆ SD-J ☆#2947", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21689, @@ -519,6 +537,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734424893, inGameName: "parasyka#2169", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3147, @@ -532,6 +553,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734426984, inGameName: "cookie♪#1006", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2072, @@ -545,6 +569,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734426986, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -582,6 +609,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734660846, inGameName: "Telethia#6611", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13370, @@ -595,6 +625,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734660856, inGameName: "Puma#2209", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 45, @@ -608,6 +641,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734660882, inGameName: "ShockWavee#3003", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1843, @@ -621,6 +657,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734663143, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -658,6 +697,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734683349, inGameName: "mitsi#2589", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13590, @@ -671,6 +713,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734683352, inGameName: "☆ SD-N ☆#2936", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10757, @@ -684,6 +729,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734683356, inGameName: "Wilds ♪#6274", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33047, @@ -697,6 +745,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734683966, inGameName: "2F Law#1355", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 41024, @@ -710,6 +761,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734685180, inGameName: "His Silly#2385", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -752,6 +806,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734608907, inGameName: "H! Veems#3106", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29665, @@ -765,6 +822,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734608923, inGameName: "H!PwPwPew#2889", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46006, @@ -778,6 +838,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734608925, inGameName: "H!Ozzysqid#2558", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33483, @@ -791,6 +854,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734608931, inGameName: "DrkXWolf17#3326", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11780, @@ -804,6 +870,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734659216, inGameName: "Slanted#1646", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37901, @@ -817,6 +886,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734684084, inGameName: null, plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -854,6 +926,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734397954, inGameName: "Albonchap#9998", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 43662, @@ -867,6 +942,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734397970, inGameName: "FoolLime#1864", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33491, @@ -880,6 +958,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734397973, inGameName: "snowy#2709", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46467, @@ -893,6 +974,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734398287, inGameName: "Veryneggy#1494", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 46813, @@ -906,6 +990,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734398628, inGameName: "Mikil#2961", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -948,6 +1035,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734598652, inGameName: "ЯR Dit-toe#3315", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33611, @@ -961,6 +1051,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734598655, inGameName: "ЯR Samkat #3138", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31148, @@ -974,6 +1067,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734598656, inGameName: "ЯR smart!!#1424", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 33578, @@ -987,6 +1083,9 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ createdAt: 1734612388, inGameName: "Mat#1561", plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -1105,5 +1204,6 @@ export const ZONES_WEEKLY_38 = (): TournamentData => ({ 17855, 21689, 26992, 30176, 31148, 33047, 33491, 33578, 33611, 37632, 37901, 43518, 43662, 45879, 46006, 46467, 46813, ], + castStreams: [], }, }); diff --git a/app/features/tournament-bracket/core/tests/mocks.ts b/app/features/tournament-bracket/core/tests/mocks.ts index 264972d24..7f8e5afa6 100644 --- a/app/features/tournament-bracket/core/tests/mocks.ts +++ b/app/features/tournament-bracket/core/tests/mocks.ts @@ -1547,6 +1547,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709743534, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5728, @@ -1560,6 +1563,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743542, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 185, @@ -1573,6 +1579,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743545, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9925, @@ -1586,6 +1595,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743592, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -1661,6 +1673,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709737918, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1300, @@ -1674,6 +1689,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709737981, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27958, @@ -1687,6 +1705,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709738032, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7265, @@ -1699,6 +1720,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709744756, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4603, @@ -1712,6 +1737,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746830, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -1787,6 +1815,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709743523, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 343, @@ -1800,6 +1831,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743581, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 193, @@ -1813,6 +1847,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743892, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10615, @@ -1826,6 +1863,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743925, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -1901,6 +1941,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709743262, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28485, @@ -1914,6 +1957,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743319, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8734, @@ -1927,6 +1973,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743345, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7094, @@ -1940,6 +1989,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743840, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2015,6 +2067,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709741396, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2622, @@ -2028,6 +2083,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709741401, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8139, @@ -2040,6 +2098,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709741404, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11199, @@ -2052,6 +2114,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709741421, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13227, @@ -2064,6 +2130,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709741503, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2138,6 +2208,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709711811, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8258, @@ -2150,6 +2224,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709711816, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13562, @@ -2163,6 +2241,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709711846, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25721, @@ -2175,6 +2256,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709711972, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1447, @@ -2188,6 +2273,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709744327, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2263,6 +2351,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709738831, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14489, @@ -2275,6 +2366,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709738840, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20755, @@ -2287,6 +2382,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709738848, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11056, @@ -2299,6 +2398,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709738852, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 175, @@ -2311,6 +2414,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709749164, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2385,6 +2492,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709737837, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21979, @@ -2397,6 +2508,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709737849, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11627, @@ -2409,6 +2524,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709737853, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12976, @@ -2422,6 +2541,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709737856, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2496,6 +2618,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709741719, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6508, @@ -2508,6 +2634,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709741826, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32579, @@ -2521,6 +2651,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709741942, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24585, @@ -2533,6 +2666,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743574, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27515, @@ -2546,6 +2683,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709744235, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11151, @@ -2559,6 +2699,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709747111, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2634,6 +2777,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709730354, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 379, @@ -2647,6 +2793,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709730359, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8480, @@ -2659,6 +2808,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709730361, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5229, @@ -2671,6 +2824,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709731364, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7336, @@ -2683,6 +2840,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709732359, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2757,6 +2918,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709745630, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9403, @@ -2770,6 +2935,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746488, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 18039, @@ -2782,6 +2950,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746716, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38062, @@ -2795,6 +2967,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746974, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25210, @@ -2807,6 +2982,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709747701, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -2879,6 +3058,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709592381, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29321, @@ -2891,6 +3074,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709592386, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3930, @@ -2903,6 +3090,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709592764, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1740, @@ -2915,6 +3106,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709629441, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5368, @@ -2927,6 +3122,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709674615, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29433, @@ -2939,6 +3138,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709674777, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3013,6 +3216,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709723749, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35118, @@ -3025,6 +3232,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709723767, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30730, @@ -3037,6 +3248,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709723792, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30758, @@ -3049,6 +3264,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709723958, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 76, @@ -3062,6 +3281,9 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709747537, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3136,6 +3358,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709668399, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28851, @@ -3148,6 +3374,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709668513, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13832, @@ -3160,6 +3390,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709668696, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23307, @@ -3172,6 +3406,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709668807, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20143, @@ -3184,6 +3422,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709669282, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27108, @@ -3196,6 +3438,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743110, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3270,6 +3516,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709735267, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23016, @@ -3282,6 +3532,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709735362, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6053, @@ -3294,6 +3548,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709735442, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23858, @@ -3306,6 +3564,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709741586, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3385,6 +3647,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709745849, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29904, @@ -3397,6 +3663,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709745857, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20698, @@ -3409,6 +3679,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709745932, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23820, @@ -3421,6 +3695,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746722, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3500,6 +3778,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709742258, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30220, @@ -3512,6 +3794,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709742263, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7440, @@ -3524,6 +3810,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709742273, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26665, @@ -3536,6 +3826,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709742276, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27686, @@ -3548,6 +3842,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709745042, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3620,6 +3918,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709738744, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7270, @@ -3632,6 +3934,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709738763, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 18703, @@ -3644,6 +3950,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709738768, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27578, @@ -3656,6 +3966,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709738771, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8715, @@ -3668,6 +3982,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709738778, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3742,6 +4060,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709746054, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22434, @@ -3754,6 +4076,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746062, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10992, @@ -3766,6 +4092,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746066, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2302, @@ -3778,6 +4108,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746069, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3855,6 +4189,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709744894, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35807, @@ -3867,6 +4205,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709744896, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23505, @@ -3879,6 +4221,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709744933, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 271, @@ -3891,6 +4237,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709745146, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -3965,6 +4315,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709728278, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22452, @@ -3977,6 +4331,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709728284, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11625, @@ -3989,6 +4347,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709728411, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11716, @@ -4001,6 +4363,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709730409, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4075,6 +4441,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709715006, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10883, @@ -4087,6 +4457,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709715010, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27664, @@ -4099,6 +4473,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709715013, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2137, @@ -4111,6 +4489,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709715015, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4185,6 +4567,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709660578, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12214, @@ -4197,6 +4583,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709660989, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29723, @@ -4209,6 +4599,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709668986, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28602, @@ -4221,6 +4615,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709673459, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4300,6 +4698,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709721869, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9367, @@ -4312,6 +4714,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709721879, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28191, @@ -4324,6 +4730,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709722102, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34238, @@ -4336,6 +4746,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709723277, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2781, @@ -4348,6 +4762,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709745438, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4425,6 +4843,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709743633, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6935, @@ -4437,6 +4859,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743650, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8243, @@ -4449,6 +4875,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743701, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 19002, @@ -4461,6 +4891,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743849, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4540,6 +4974,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709738747, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28822, @@ -4552,6 +4990,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709738768, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24441, @@ -4564,6 +5006,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709738774, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28629, @@ -4576,6 +5022,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709739032, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9211, @@ -4588,6 +5038,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709740549, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4667,6 +5121,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709626047, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 368, @@ -4679,6 +5137,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709626053, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1624, @@ -4691,6 +5153,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709626056, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25088, @@ -4703,6 +5169,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709626059, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 15526, @@ -4715,6 +5185,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709626392, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4789,6 +5263,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709727951, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 18143, @@ -4801,6 +5279,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709727955, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30942, @@ -4813,6 +5295,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709728867, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21583, @@ -4825,6 +5311,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709729336, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -4899,6 +5389,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709741482, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9307, @@ -4911,6 +5405,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709741787, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5735, @@ -4923,6 +5421,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709742200, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10010, @@ -4935,6 +5437,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709744132, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 17798, @@ -4947,6 +5453,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746800, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11635, @@ -4959,6 +5469,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746904, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5031,6 +5545,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709744451, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28271, @@ -5043,6 +5561,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709744453, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34715, @@ -5055,6 +5577,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709744456, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12188, @@ -5067,6 +5593,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709744458, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5146,6 +5676,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709726536, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26454, @@ -5158,6 +5692,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709726748, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5740, @@ -5170,6 +5708,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709726853, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27468, @@ -5182,6 +5724,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709743306, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5256,6 +5802,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709558706, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28194, @@ -5268,6 +5818,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709560421, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11226, @@ -5280,6 +5834,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709562784, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10370, @@ -5292,6 +5850,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709577646, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5371,6 +5933,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709744323, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35382, @@ -5383,6 +5949,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709746879, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23037, @@ -5395,6 +5965,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709747066, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27768, @@ -5407,6 +5981,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709747080, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38120, @@ -5419,6 +5997,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709749833, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5498,6 +6080,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709677397, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28178, @@ -5510,6 +6096,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709677403, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23353, @@ -5522,6 +6112,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709677405, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31658, @@ -5534,6 +6128,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709700369, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5608,6 +6206,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 1, createdAt: 1709618711, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28338, @@ -5620,6 +6222,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709620129, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30928, @@ -5632,6 +6238,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709621809, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 37658, @@ -5644,6 +6254,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709640176, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26758, @@ -5656,6 +6270,10 @@ export const PADDLING_POOL_257 = () => twitch: null, isOwner: 0, createdAt: 1709654306, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -5901,6 +6519,7 @@ export const PADDLING_POOL_257 = () => 30758, 30928, 30942, 31658, 32155, 32688, 34238, 34715, 35118, 35382, 35807, 37658, 38062, 38120, ], + castStreams: [], }, }) as TournamentData; @@ -7523,6 +8142,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708476597, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 62, @@ -7536,6 +8158,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708476600, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4275, @@ -7548,6 +8173,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708476602, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11593, @@ -7561,6 +8190,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708528985, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7636,6 +8268,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708535137, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31358, @@ -7649,6 +8284,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535159, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32579, @@ -7662,6 +8300,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535159, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27515, @@ -7675,6 +8316,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535268, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7749,6 +8393,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708533764, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27958, @@ -7762,6 +8410,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708533803, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4061, @@ -7775,6 +8426,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708534049, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38062, @@ -7788,6 +8442,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708534246, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2414, @@ -7801,6 +8458,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708536492, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -7874,6 +8534,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708537512, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4234, @@ -7886,6 +8549,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708537563, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 331, @@ -7899,6 +8566,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708537568, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 205, @@ -7912,6 +8582,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708537699, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 319, @@ -7925,6 +8598,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708545196, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8000,6 +8676,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708533309, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3400, @@ -8013,6 +8692,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708533313, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7094, @@ -8026,6 +8708,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708533341, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3161, @@ -8039,6 +8724,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708533367, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8114,6 +8802,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708430641, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13562, @@ -8127,6 +8818,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708489678, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8852, @@ -8140,6 +8834,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708489696, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23746, @@ -8152,6 +8849,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708489707, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28485, @@ -8165,6 +8866,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708531337, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8240,6 +8944,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708536306, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10578, @@ -8253,6 +8960,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708536342, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11151, @@ -8266,6 +8976,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708536362, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 222, @@ -8279,6 +8992,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708536503, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8351,6 +9067,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708526368, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10615, @@ -8364,6 +9084,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708526444, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31690, @@ -8376,6 +9099,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708527117, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6710, @@ -8389,6 +9116,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708533914, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8464,6 +9194,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708506060, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14489, @@ -8476,6 +9209,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708506068, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28725, @@ -8488,6 +9225,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708506073, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 16, @@ -8501,6 +9242,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708506080, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20755, @@ -8513,6 +9257,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708506761, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4606, @@ -8525,6 +9273,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708512496, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8599,6 +9351,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708526814, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12976, @@ -8612,6 +9368,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708526826, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21979, @@ -8624,6 +9383,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708526839, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11627, @@ -8636,6 +9399,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708526882, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8708,6 +9475,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708466421, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38080, @@ -8720,6 +9491,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708466429, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35807, @@ -8732,6 +9507,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708466434, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23128, @@ -8744,6 +9523,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708466442, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26392, @@ -8756,6 +9539,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708538756, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8830,6 +9617,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708377426, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23307, @@ -8842,6 +9633,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708377436, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28851, @@ -8854,6 +9649,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708377438, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27108, @@ -8866,6 +9665,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708377441, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23820, @@ -8878,6 +9681,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708441387, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -8950,6 +9757,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708448289, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1740, @@ -8962,6 +9773,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708448337, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3930, @@ -8974,6 +9789,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708448389, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29321, @@ -8986,6 +9805,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708448483, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29433, @@ -8998,6 +9821,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708529130, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5368, @@ -9010,6 +9837,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708529242, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9084,6 +9915,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708532602, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 15346, @@ -9096,6 +9931,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708532608, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13296, @@ -9108,6 +9947,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708532611, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13832, @@ -9120,6 +9963,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708532829, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9194,6 +10041,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708535205, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30449, @@ -9206,6 +10057,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535233, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28441, @@ -9218,6 +10073,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535987, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12619, @@ -9230,6 +10089,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708536053, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31131, @@ -9242,6 +10105,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708538642, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9316,6 +10183,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708515945, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 418, @@ -9328,6 +10199,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708515949, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23858, @@ -9340,6 +10215,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708515954, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28662, @@ -9352,6 +10231,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708536412, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9426,6 +10309,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708453334, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5072, @@ -9438,6 +10325,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708453338, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13997, @@ -9450,6 +10341,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708453341, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7735, @@ -9462,6 +10357,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708453343, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9534,6 +10433,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708522730, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7270, @@ -9546,6 +10449,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708522740, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 18703, @@ -9558,6 +10465,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708522745, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27578, @@ -9570,6 +10481,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708522748, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8715, @@ -9582,6 +10497,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708522751, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9656,6 +10575,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708375443, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27686, @@ -9668,6 +10591,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708375472, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10841, @@ -9680,6 +10607,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708459362, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23784, @@ -9692,6 +10623,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708524557, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9342, @@ -9704,6 +10639,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535255, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9778,6 +10717,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708532665, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29904, @@ -9790,6 +10733,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708532693, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11506, @@ -9802,6 +10749,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708533020, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32328, @@ -9814,6 +10765,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708534559, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -9893,6 +10848,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708364254, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2137, @@ -9905,6 +10864,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708364259, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10883, @@ -9917,6 +10880,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708364262, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27664, @@ -9929,6 +10896,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708364266, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 342, @@ -9941,6 +10912,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708536943, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10020,6 +10995,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708464101, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2535, @@ -10032,6 +11011,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708464106, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2670, @@ -10044,6 +11027,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708464107, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6202, @@ -10056,6 +11043,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708464108, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9547, @@ -10068,6 +11059,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708464111, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10145,6 +11140,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708520249, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5844, @@ -10157,6 +11156,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708521940, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9654, @@ -10169,6 +11172,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708526825, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 461, @@ -10181,6 +11188,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708526832, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10819, @@ -10193,6 +11204,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708527650, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10267,6 +11282,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708535804, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9874, @@ -10279,6 +11298,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535807, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10992, @@ -10291,6 +11314,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535808, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22434, @@ -10303,6 +11330,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535811, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10377,6 +11408,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708535891, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11625, @@ -10389,6 +11424,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535898, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22452, @@ -10401,6 +11440,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535907, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12642, @@ -10413,6 +11456,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535910, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11716, @@ -10425,6 +11472,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708535940, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10499,6 +11550,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708521749, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7440, @@ -10511,6 +11566,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708521759, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26665, @@ -10523,6 +11582,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708521763, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9719, @@ -10535,6 +11598,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708521766, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30220, @@ -10547,6 +11614,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708521774, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10621,6 +11692,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708536584, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28745, @@ -10633,6 +11708,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708536597, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32688, @@ -10645,6 +11724,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708536705, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26792, @@ -10657,6 +11740,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708537202, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10731,6 +11818,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708537772, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5528, @@ -10743,6 +11834,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708537777, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12358, @@ -10755,6 +11850,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708537780, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 19002, @@ -10767,6 +11866,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708537783, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 306, @@ -10780,6 +11883,9 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708538257, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8243, @@ -10792,6 +11898,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708543316, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10871,6 +11981,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708379916, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13736, @@ -10883,6 +11997,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708379926, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27960, @@ -10895,6 +12013,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708379930, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25814, @@ -10907,6 +12029,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708379935, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31311, @@ -10919,6 +12045,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708379937, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -10993,6 +12123,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708519753, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24441, @@ -11005,6 +12139,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708519764, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28629, @@ -11017,6 +12155,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708519774, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28822, @@ -11029,6 +12171,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708519786, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9211, @@ -11041,6 +12187,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708519793, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11120,6 +12270,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708534312, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30234, @@ -11132,6 +12286,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708534331, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35118, @@ -11144,6 +12302,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708534335, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 32156, @@ -11156,6 +12318,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708534343, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30751, @@ -11168,6 +12334,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708536150, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11245,6 +12415,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708531929, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 16634, @@ -11257,6 +12431,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708531954, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2392, @@ -11269,6 +12447,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708531966, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26726, @@ -11281,6 +12463,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708534592, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11355,6 +12541,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708477155, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14973, @@ -11367,6 +12557,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708477159, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 17137, @@ -11379,6 +12573,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708477162, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8391, @@ -11391,6 +12589,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708482782, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11470,6 +12672,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708531564, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 17940, @@ -11482,6 +12688,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708531574, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30972, @@ -11494,6 +12704,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708531640, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38902, @@ -11506,6 +12720,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708532419, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 29099, @@ -11518,6 +12736,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708533636, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26683, @@ -11530,6 +12752,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708540197, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 30767, @@ -11542,6 +12768,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708543351, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11621,6 +12851,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 1, createdAt: 1708503356, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 15135, @@ -11633,6 +12867,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708503369, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 31597, @@ -11645,6 +12883,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708503374, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 34933, @@ -11657,6 +12899,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708503381, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14927, @@ -11669,6 +12915,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708503385, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7461, @@ -11681,6 +12931,10 @@ export const PADDLING_POOL_255 = () => twitch: null, isOwner: 0, createdAt: 1708503399, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -11909,6 +13163,7 @@ export const PADDLING_POOL_255 = () => 30751, 30972, 31131, 31311, 31358, 31597, 31690, 32156, 32328, 32579, 32688, 34933, 35118, 35807, 38062, 38080, 38902, ], + castStreams: [], }, }) as TournamentData; @@ -13792,6 +15047,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707443313, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 118, @@ -13805,6 +15063,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707443316, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 133, @@ -13818,6 +15079,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707443318, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 257, @@ -13831,6 +15095,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707443321, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13893,6 +15160,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707366405, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 164, @@ -13906,6 +15176,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707366408, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 138, @@ -13919,6 +15192,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707366409, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 305, @@ -13932,6 +15208,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707366410, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -13994,6 +15273,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1706912643, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 123, @@ -14007,6 +15289,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1706912648, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1043, @@ -14020,6 +15305,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1706912653, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 702, @@ -14033,6 +15321,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1706912655, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14095,6 +15386,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707359335, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 439, @@ -14108,6 +15402,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707359339, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 81, @@ -14121,6 +15418,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707359343, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23381, @@ -14134,6 +15434,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707425048, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26278, @@ -14147,6 +15450,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707425317, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 104, @@ -14160,6 +15466,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707591637, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14222,6 +15531,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707171426, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10293, @@ -14235,6 +15547,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707171440, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5728, @@ -14248,6 +15563,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707171452, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35, @@ -14261,6 +15579,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707565905, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 99, @@ -14274,6 +15595,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707585837, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14336,6 +15660,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707342696, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 48, @@ -14349,6 +15676,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707342701, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 172, @@ -14362,6 +15692,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707342704, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 126, @@ -14375,6 +15708,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707342707, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 160, @@ -14388,6 +15724,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707342777, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14450,6 +15789,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707513942, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 957, @@ -14463,6 +15805,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707513952, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25423, @@ -14476,6 +15821,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707513955, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20583, @@ -14489,6 +15837,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707513958, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1105, @@ -14502,6 +15853,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707513961, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14, @@ -14515,6 +15869,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707513965, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14577,6 +15934,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707526815, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 451, @@ -14590,6 +15950,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707527094, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 141, @@ -14603,6 +15966,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707527181, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 260, @@ -14616,6 +15982,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707529282, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 202, @@ -14629,6 +15998,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707534529, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 276, @@ -14642,6 +16014,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707585966, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14704,6 +16079,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707583385, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 124, @@ -14717,6 +16095,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707583412, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 255, @@ -14730,6 +16111,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707583416, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 252, @@ -14743,6 +16127,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707583616, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14805,6 +16192,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707486395, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 151, @@ -14818,6 +16208,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707486402, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 15418, @@ -14831,6 +16224,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707486406, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 411, @@ -14844,6 +16240,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707486410, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -14906,6 +16305,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707513290, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3298, @@ -14919,6 +16321,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707513292, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 5337, @@ -14932,6 +16337,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707513293, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6557, @@ -14945,6 +16353,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707513294, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15007,6 +16418,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707531084, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 57, @@ -15020,6 +16434,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707531085, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1658, @@ -15033,6 +16450,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707531088, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 2801, @@ -15046,6 +16466,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707531091, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15108,6 +16531,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707568466, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 291, @@ -15121,6 +16547,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707568689, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 372, @@ -15134,6 +16563,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707569605, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 392, @@ -15147,6 +16579,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707570566, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 7326, @@ -15160,6 +16595,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707581716, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15222,6 +16660,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707481625, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 286, @@ -15235,6 +16676,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707481634, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 206, @@ -15248,6 +16692,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707481637, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11010, @@ -15261,6 +16708,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707530338, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15323,6 +16773,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707530166, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 94, @@ -15336,6 +16789,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707530170, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 232, @@ -15349,6 +16805,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707530171, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 233, @@ -15361,6 +16820,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707530172, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15423,6 +16886,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707181792, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12976, @@ -15436,6 +16902,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707181797, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 15916, @@ -15449,6 +16918,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707181801, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27958, @@ -15462,6 +16934,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707201560, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4603, @@ -15475,6 +16950,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707594734, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15537,6 +17015,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707550321, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10200, @@ -15550,6 +17031,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707550327, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 229, @@ -15563,6 +17047,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707551471, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 246, @@ -15576,6 +17063,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707578018, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14564, @@ -15589,6 +17079,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707585842, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15656,6 +17149,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707575096, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8734, @@ -15669,6 +17165,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707575127, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 16980, @@ -15682,6 +17181,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707575140, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 272, @@ -15695,6 +17197,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707576308, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6710, @@ -15708,6 +17213,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707578575, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15770,6 +17278,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707569490, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11593, @@ -15783,6 +17294,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707569503, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 50, @@ -15796,6 +17310,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707569864, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8, @@ -15809,6 +17326,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707571931, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 331, @@ -15822,6 +17342,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707576015, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 132, @@ -15835,6 +17358,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707582774, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15897,6 +17423,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707537425, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 36, @@ -15910,6 +17439,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707537428, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 335, @@ -15923,6 +17455,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707537431, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 292, @@ -15936,6 +17471,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707557483, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -15998,6 +17536,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707564691, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4061, @@ -16011,6 +17552,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707564697, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10592, @@ -16024,6 +17568,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707564698, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10812, @@ -16036,6 +17583,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707564699, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 115, @@ -16049,6 +17600,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707582778, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 12395, @@ -16061,6 +17615,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707584403, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -16128,6 +17686,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707145818, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 71, @@ -16141,6 +17702,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707145821, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 204, @@ -16154,6 +17718,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707145823, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4762, @@ -16167,6 +17734,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707145826, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6048, @@ -16180,6 +17750,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707145829, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -16236,6 +17809,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707558330, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 14489, @@ -16248,6 +17824,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707558336, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 26392, @@ -16260,6 +17840,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707558339, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28725, @@ -16272,6 +17856,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707558342, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -16334,6 +17922,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707586842, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 15403, @@ -16346,6 +17937,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707586869, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9718, @@ -16359,6 +17954,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707586905, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 18039, @@ -16371,6 +17969,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707586936, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -16432,6 +18034,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707583597, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 3258, @@ -16444,6 +18050,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707583602, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 27108, @@ -16456,6 +18066,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707583609, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20143, @@ -16468,6 +18082,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707583616, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23820, @@ -16480,6 +18098,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707586602, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28851, @@ -16492,6 +18114,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707586606, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -16553,6 +18179,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707429804, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13296, @@ -16565,6 +18195,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707429808, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 15346, @@ -16577,6 +18211,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707571232, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21099, @@ -16589,6 +18227,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707586254, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4099, @@ -16601,6 +18243,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707586657, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -16662,6 +18308,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707539973, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20859, @@ -16674,6 +18324,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707539978, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13614, @@ -16686,6 +18340,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707539980, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 22041, @@ -16699,6 +18357,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707539983, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20731, @@ -16711,6 +18372,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707539985, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -16777,6 +18442,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707507831, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 346, @@ -16789,6 +18458,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707507835, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1038, @@ -16801,6 +18474,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707507836, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 6255, @@ -16813,6 +18490,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707507840, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4097, @@ -16825,6 +18506,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707507912, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -16886,6 +18571,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707586297, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9674, @@ -16898,6 +18587,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707586302, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28482, @@ -16910,6 +18603,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707586330, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 10841, @@ -16922,6 +18619,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707587341, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 20154, @@ -16934,6 +18635,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707587544, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -16993,6 +18698,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707583885, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4307, @@ -17005,6 +18714,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707583904, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 21339, @@ -17017,6 +18730,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707583961, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1136, @@ -17029,6 +18746,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707584003, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1441, @@ -17041,6 +18762,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707586447, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 25117, @@ -17053,6 +18778,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707592366, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -17114,6 +18843,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707578076, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 168, @@ -17127,6 +18860,9 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707578078, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 1178, @@ -17139,6 +18875,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707578080, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9064, @@ -17151,6 +18891,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707578084, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 11148, @@ -17163,6 +18907,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707578089, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -17227,6 +18975,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707582953, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 23128, @@ -17239,6 +18991,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707582958, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 38080, @@ -17251,6 +19007,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707582962, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 35807, @@ -17263,6 +19023,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707582993, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -17324,6 +19088,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707575330, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 24705, @@ -17336,6 +19104,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707575334, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 9367, @@ -17348,6 +19120,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707575341, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 28191, @@ -17360,6 +19136,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707575345, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 13342, @@ -17372,6 +19152,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707575350, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [ @@ -17440,6 +19224,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 1, createdAt: 1707527645, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 8927, @@ -17452,6 +19240,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707527672, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, { userId: 4434, @@ -17464,6 +19256,10 @@ export const IN_THE_ZONE_32 = ({ twitch: null, isOwner: 0, createdAt: 1707534384, + plusTier: null, + streamTwitch: null, + streamViewerCount: null, + streamThumbnailUrl: null, }, ], checkIns: [], @@ -17556,5 +19352,6 @@ export const IN_THE_ZONE_32 = ({ 23128, 23381, 23820, 24705, 25400, 25423, 26392, 27108, 27958, 28191, 28482, 28725, 28851, 34238, 35807, 37105, 38080, ], + castStreams: [], }, }) as TournamentData; diff --git a/app/features/tournament-bracket/core/tests/test-utils.ts b/app/features/tournament-bracket/core/tests/test-utils.ts index 693b55339..0ed7e0566 100644 --- a/app/features/tournament-bracket/core/tests/test-utils.ts +++ b/app/features/tournament-bracket/core/tests/test-utils.ts @@ -77,6 +77,7 @@ export const testTournament = ({ tieBreakerMapPool: [], toSetMapPool: [], participatedUsers: [], + castStreams: [], mapPickingStyle: "AUTO_SZ", settings: { bracketProgression: [ diff --git a/app/features/tournament/TournamentRepository.server.ts b/app/features/tournament/TournamentRepository.server.ts index 9f486a34f..02bec443b 100644 --- a/app/features/tournament/TournamentRepository.server.ts +++ b/app/features/tournament/TournamentRepository.server.ts @@ -177,6 +177,7 @@ export async function findById(id: number) { ), ) .leftJoin("PlusTier", "PlusTier.userId", "User.id") + .leftJoin("LiveStream", "LiveStream.userId", "User.id") .select([ "User.id as userId", "User.username", @@ -193,6 +194,9 @@ export async function findById(id: number) { "TournamentTeamMember"."inGameName", "User"."inGameName" )`.as("inGameName"), + "LiveStream.twitch as streamTwitch", + "LiveStream.viewerCount as streamViewerCount", + "LiveStream.thumbnailUrl as streamThumbnailUrl", ]) .whereRef( "TournamentTeamMember.tournamentTeamId", @@ -286,6 +290,18 @@ export async function findById(id: number) { .groupBy("TournamentMatchGameResultParticipant.userId") .where("TournamentStage.tournamentId", "=", id), ).as("participatedUsers"), + jsonArrayFrom( + eb + .selectFrom("LiveStream") + .select([ + "LiveStream.twitch", + "LiveStream.viewerCount", + "LiveStream.thumbnailUrl", + ]) + .where( + sql`"LiveStream"."twitch" IN (SELECT value FROM json_each("Tournament"."castTwitchAccounts"))`, + ), + ).as("castStreams"), ]) .where("Tournament.id", "=", id) .$narrowType<{ author: NotNull }>() diff --git a/app/features/tournament/components/TournamentStream.tsx b/app/features/tournament/components/TournamentStream.tsx index e20bc7d45..fc14eb877 100644 --- a/app/features/tournament/components/TournamentStream.tsx +++ b/app/features/tournament/components/TournamentStream.tsx @@ -1,16 +1,15 @@ import { Avatar } from "~/components/Avatar"; import { UserIcon } from "~/components/icons/User"; +import type { Tournament } from "~/features/tournament-bracket/core/Tournament"; import { twitchThumbnailUrlToSrc } from "~/modules/twitch/utils"; -import type { SerializeFrom } from "~/utils/remix"; import { twitchUrl } from "~/utils/urls"; -import type { TournamentStreamsLoader } from "../loaders/to.$id.streams.server"; import { useTournament } from "../routes/to.$id"; export function TournamentStream({ stream, withThumbnail = true, }: { - stream: SerializeFrom["streams"][number]; + stream: Tournament["streams"][number]; withThumbnail?: boolean; }) { const tournament = useTournament(); @@ -20,7 +19,11 @@ export function TournamentStream({ const user = team?.members.find((m) => m.userId === stream.userId); return ( -
+
{withThumbnail ? ( team.checkIns.length > 0) - .flatMap((team) => team.members) - .filter((member) => member.twitch); - - const streams = await getStreams(); - - const tournamentStreams = streams.flatMap((stream) => { - const member = twitchUsersOfTournament.find( - (member) => member.twitch === stream.twitchUserName, - ); - - if (member) { - return { - ...stream, - userId: member.userId, - }; - } - - if (tournament.castTwitchAccounts?.includes(stream.twitchUserName)) { - return { - ...stream, - userId: null, - }; - } - - return []; - }); - - return tournamentStreams; -} diff --git a/app/features/tournament/loaders/to.$id.server.ts b/app/features/tournament/loaders/to.$id.server.ts index fd9a4690c..2c1000670 100644 --- a/app/features/tournament/loaders/to.$id.server.ts +++ b/app/features/tournament/loaders/to.$id.server.ts @@ -5,7 +5,6 @@ import { tournamentDataCached } from "~/features/tournament-bracket/core/Tournam import { databaseTimestampToDate } from "~/utils/dates"; import { parseParams } from "~/utils/remix.server"; import { idObject } from "~/utils/zod"; -import { streamsByTournamentId } from "../core/streams.server"; export type TournamentLoaderData = { tournament: Awaited>; @@ -28,11 +27,6 @@ export const loader = async ({ params }: LoaderFunctionArgs) => { const tournament = await tournamentDataCached({ tournamentId, user }); - const streams = - tournament.data.stage.length > 0 && !tournament.ctx.isFinalized - ? await streamsByTournamentId(tournament.ctx) - : []; - const tournamentStartedInTheLastMonth = databaseTimestampToDate(tournament.ctx.startTime) > new Date(Date.now() - 30 * 24 * 60 * 60 * 1000); @@ -58,8 +52,6 @@ export const loader = async ({ params }: LoaderFunctionArgs) => { // skip expensive rr7 data serialization (hot path loader) return JSON.stringify({ tournament, - streamingParticipants: streams.flatMap((s) => (s.userId ? [s.userId] : [])), - streamsCount: streams.length, friendCodes: showFriendCodes ? await TournamentRepository.friendCodesByTournamentId(tournamentId) : undefined, diff --git a/app/features/tournament/loaders/to.$id.streams.server.ts b/app/features/tournament/loaders/to.$id.streams.server.ts deleted file mode 100644 index 361ed0f33..000000000 --- a/app/features/tournament/loaders/to.$id.streams.server.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { LoaderFunctionArgs } from "react-router"; -import { tournamentData } from "~/features/tournament-bracket/core/Tournament.server"; -import { notFoundIfFalsy, parseParams } from "~/utils/remix.server"; -import { idObject } from "~/utils/zod"; -import { streamsByTournamentId } from "../core/streams.server"; - -export type TournamentStreamsLoader = typeof loader; - -export const loader = async ({ params }: LoaderFunctionArgs) => { - const { id: tournamentId } = parseParams({ - params, - schema: idObject, - }); - const tournament = notFoundIfFalsy(await tournamentData({ tournamentId })); - - return { - streams: await streamsByTournamentId(tournament.ctx), - }; -}; diff --git a/app/features/tournament/routes/to.$id.streams.tsx b/app/features/tournament/routes/to.$id.streams.tsx index d4da4813a..fe8a8ded7 100644 --- a/app/features/tournament/routes/to.$id.streams.tsx +++ b/app/features/tournament/routes/to.$id.streams.tsx @@ -1,22 +1,18 @@ import { useTranslation } from "react-i18next"; -import { useLoaderData } from "react-router"; import { Redirect } from "~/components/Redirect"; import { tournamentRegisterPage } from "~/utils/urls"; import { TournamentStream } from "../components/TournamentStream"; -import { loader } from "../loaders/to.$id.streams.server"; import { useTournament } from "./to.$id"; -export { loader }; export default function TournamentStreamsPage() { const { t } = useTranslation(["tournament"]); const tournament = useTournament(); - const data = useLoaderData(); if (!tournament.hasStarted || tournament.everyBracketOver) { return ; } - if (data.streams.length === 0) { + if (tournament.streams.length === 0) { return (
{t("tournament:streams.none")} @@ -27,7 +23,7 @@ export default function TournamentStreamsPage() { // TODO: link to user page, later tournament team page? return (
- {data.streams.map((stream) => ( + {tournament.streams.map((stream) => ( ))}
diff --git a/app/features/tournament/routes/to.$id.tsx b/app/features/tournament/routes/to.$id.tsx index 5b412c99e..06d714cb5 100644 --- a/app/features/tournament/routes/to.$id.tsx +++ b/app/features/tournament/routes/to.$id.tsx @@ -205,7 +205,7 @@ export function TournamentLayout() { {tournament.hasStarted && !tournament.everyBracketOver ? ( {t("tournament:tabs.streams", { - count: data.streamsCount, + count: tournament.streams.length, })} ) : null} @@ -234,7 +234,6 @@ export function TournamentLayout() { tournament, bracketExpanded, setBracketExpanded, - streamingParticipants: data.streamingParticipants, friendCodes: data.friendCodes, preparedMaps: data.preparedMaps, } satisfies TournamentContext @@ -248,7 +247,6 @@ export function TournamentLayout() { type TournamentContext = { tournament: Tournament; bracketExpanded: boolean; - streamingParticipants: number[]; setBracketExpanded: (expanded: boolean) => void; friendCode?: string; friendCodes?: TournamentLoaderData["friendCodes"]; @@ -266,10 +264,6 @@ export function useBracketExpanded() { return { bracketExpanded, setBracketExpanded }; } -export function useStreamingParticipants() { - return useOutletContext().streamingParticipants; -} - export function useTournamentFriendCodes() { return useOutletContext().friendCodes; } diff --git a/app/features/user-page/UserRepository.server.ts b/app/features/user-page/UserRepository.server.ts index 4390e5cfb..57b1dc9f7 100644 --- a/app/features/user-page/UserRepository.server.ts +++ b/app/features/user-page/UserRepository.server.ts @@ -1124,3 +1124,13 @@ export async function anyUserPrefersNoScreen( return Boolean(result); } + +export function findIdsByTwitchUsernames(twitchUsernames: string[]) { + if (twitchUsernames.length === 0) return []; + + return db + .selectFrom("User") + .select(["User.id", "User.twitch"]) + .where("User.twitch", "in", twitchUsernames) + .execute(); +} diff --git a/app/modules/twitch/utils.ts b/app/modules/twitch/utils.ts index b21329e3b..76600edf9 100644 --- a/app/modules/twitch/utils.ts +++ b/app/modules/twitch/utils.ts @@ -1,5 +1,10 @@ import invariant from "~/utils/invariant"; +export const hasTwitchEnvVars = () => { + const { TWITCH_CLIENT_ID, TWITCH_CLIENT_SECRET } = process.env; + return Boolean(TWITCH_CLIENT_ID && TWITCH_CLIENT_SECRET); +}; + export const getTwitchEnvVars = () => { const { TWITCH_CLIENT_ID, TWITCH_CLIENT_SECRET } = process.env; invariant( diff --git a/app/routines/list.server.ts b/app/routines/list.server.ts index f794538c9..d19b19269 100644 --- a/app/routines/list.server.ts +++ b/app/routines/list.server.ts @@ -6,6 +6,7 @@ import { NotifyPlusServerVotingRoutine } from "./notifyPlusServerVoting"; import { NotifyScrimStartingSoonRoutine } from "./notifyScrimStartingSoon"; import { NotifySeasonStartRoutine } from "./notifySeasonStart"; import { SetOldGroupsAsInactiveRoutine } from "./setOldGroupsAsInactive"; +import { SyncLiveStreamsRoutine } from "./syncLiveStreams"; import { UpdatePatreonDataRoutine } from "./updatePatreonData"; /** List of Routines that should occur hourly at XX:00 */ @@ -28,3 +29,6 @@ export const daily = [ DeleteOldNotificationsRoutine, CloseExpiredCommissionsRoutine, ]; + +/** List of Routines that should occur every 2 minutes */ +export const everyTwoMinutes = [SyncLiveStreamsRoutine]; diff --git a/app/routines/syncLiveStreams.ts b/app/routines/syncLiveStreams.ts new file mode 100644 index 000000000..d9f434b61 --- /dev/null +++ b/app/routines/syncLiveStreams.ts @@ -0,0 +1,41 @@ +import * as LiveStreamRepository from "~/features/live-streams/LiveStreamRepository.server"; +import * as UserRepository from "~/features/user-page/UserRepository.server"; +import { getStreams } from "~/modules/twitch"; +import { hasTwitchEnvVars } from "~/modules/twitch/utils"; +import { Routine } from "./routine.server"; + +export const SyncLiveStreamsRoutine = new Routine({ + name: "SyncLiveStreams", + func: syncLiveStreams, +}); + +async function syncLiveStreams() { + if (!hasTwitchEnvVars()) return; + + const streams = await getStreams(); + + if (streams.length === 0) { + await LiveStreamRepository.replaceAll([]); + return; + } + + const streamTwitchNames = streams.map((s) => s.twitchUserName); + const matchingUsers = + await UserRepository.findIdsByTwitchUsernames(streamTwitchNames); + + const twitchToUserId = new Map(); + for (const user of matchingUsers) { + if (user.twitch) { + twitchToUserId.set(user.twitch, user.id); + } + } + + const liveStreams = streams.map((stream) => ({ + userId: twitchToUserId.get(stream.twitchUserName) ?? null, + viewerCount: stream.viewerCount, + thumbnailUrl: stream.thumbnailUrl, + twitch: stream.twitchUserName, + })); + + await LiveStreamRepository.replaceAll(liveStreams); +} diff --git a/db-test.sqlite3 b/db-test.sqlite3 index 4218d7744..39bed1a2b 100644 Binary files a/db-test.sqlite3 and b/db-test.sqlite3 differ diff --git a/e2e/seeds/db-seed-DEFAULT.sqlite3 b/e2e/seeds/db-seed-DEFAULT.sqlite3 index 3999441d7..c3f638caa 100644 Binary files a/e2e/seeds/db-seed-DEFAULT.sqlite3 and b/e2e/seeds/db-seed-DEFAULT.sqlite3 differ diff --git a/e2e/seeds/db-seed-NO_SCRIMS.sqlite3 b/e2e/seeds/db-seed-NO_SCRIMS.sqlite3 index aeba94df0..60d8a77a2 100644 Binary files a/e2e/seeds/db-seed-NO_SCRIMS.sqlite3 and b/e2e/seeds/db-seed-NO_SCRIMS.sqlite3 differ diff --git a/e2e/seeds/db-seed-NO_SQ_GROUPS.sqlite3 b/e2e/seeds/db-seed-NO_SQ_GROUPS.sqlite3 index a71f98ccc..73841aa9b 100644 Binary files a/e2e/seeds/db-seed-NO_SQ_GROUPS.sqlite3 and b/e2e/seeds/db-seed-NO_SQ_GROUPS.sqlite3 differ diff --git a/e2e/seeds/db-seed-NO_TOURNAMENT_TEAMS.sqlite3 b/e2e/seeds/db-seed-NO_TOURNAMENT_TEAMS.sqlite3 index fc19e7fe9..c625a423c 100644 Binary files a/e2e/seeds/db-seed-NO_TOURNAMENT_TEAMS.sqlite3 and b/e2e/seeds/db-seed-NO_TOURNAMENT_TEAMS.sqlite3 differ diff --git a/e2e/seeds/db-seed-NZAP_IN_TEAM.sqlite3 b/e2e/seeds/db-seed-NZAP_IN_TEAM.sqlite3 index 146f884ca..61a9ef4be 100644 Binary files a/e2e/seeds/db-seed-NZAP_IN_TEAM.sqlite3 and b/e2e/seeds/db-seed-NZAP_IN_TEAM.sqlite3 differ diff --git a/e2e/seeds/db-seed-REG_OPEN.sqlite3 b/e2e/seeds/db-seed-REG_OPEN.sqlite3 index a5e0160ef..0ef6d0163 100644 Binary files a/e2e/seeds/db-seed-REG_OPEN.sqlite3 and b/e2e/seeds/db-seed-REG_OPEN.sqlite3 differ diff --git a/e2e/seeds/db-seed-SMALL_SOS.sqlite3 b/e2e/seeds/db-seed-SMALL_SOS.sqlite3 index b62127837..ce8c4b10d 100644 Binary files a/e2e/seeds/db-seed-SMALL_SOS.sqlite3 and b/e2e/seeds/db-seed-SMALL_SOS.sqlite3 differ diff --git a/e2e/tournament-streams.spec.ts b/e2e/tournament-streams.spec.ts new file mode 100644 index 000000000..1159922d9 --- /dev/null +++ b/e2e/tournament-streams.spec.ts @@ -0,0 +1,170 @@ +import type { Page } from "@playwright/test"; +import { + expect, + impersonate, + navigate, + seed, + startBracket, + submit, + test, +} from "~/utils/playwright"; +import { + tournamentAdminPage, + tournamentBracketsPage, + tournamentStreamsPage, +} from "~/utils/urls"; + +const navigateToMatch = async (page: Page, matchId: number) => { + await expect(async () => { + await page.locator(`[data-match-id="${matchId}"]`).click(); + await expect(page.getByTestId("match-header")).toBeVisible(); + }).toPass(); +}; + +const selectRosterIfNeeded = async (page: Page, teamIndex: 0 | 1) => { + const position = teamIndex === 0 ? "first" : "last"; + const checkbox = page.getByTestId("player-checkbox-0")[position](); + + if ((await checkbox.count()) > 0 && !(await checkbox.isDisabled())) { + await page.getByTestId("player-checkbox-0")[position]().click(); + await page.getByTestId("player-checkbox-1")[position]().click(); + await page.getByTestId("player-checkbox-2")[position]().click(); + await page.getByTestId("player-checkbox-3")[position]().click(); + await submit(page, `save-active-roster-button-${teamIndex}`); + await expect( + page.getByTestId("player-checkbox-0")[position](), + ).toBeDisabled(); + } +}; + +const reportPartialScore = async (page: Page) => { + await page.getByTestId("actions-tab").click(); + await selectRosterIfNeeded(page, 0); + await selectRosterIfNeeded(page, 1); + await page.getByTestId("winner-radio-1").click(); + await submit(page, "report-score-button"); + await expect(page.getByText("1-0")).toBeVisible(); +}; + +const backToBracket = async (page: Page) => { + await page.getByTestId("back-to-bracket-button").click(); + await expect(page.getByTestId("brackets-viewer")).toBeVisible(); +}; + +test.describe("Tournament streams", () => { + test("can set cast twitch accounts in admin", async ({ page }) => { + const tournamentId = 2; + + await seed(page); + await impersonate(page); + + await navigate({ + page, + url: tournamentAdminPage(tournamentId), + }); + + await page + .getByLabel("Twitch accounts") + .fill("test_cast_stream,another_cast"); + await submit(page, "save-cast-twitch-accounts-button"); + + // Verify persistence by navigating away and back + await navigate({ + page, + url: tournamentBracketsPage({ tournamentId }), + }); + await navigate({ + page, + url: tournamentAdminPage(tournamentId), + }); + + await expect(page.getByLabel("Twitch accounts")).toHaveValue( + "test_cast_stream,another_cast", + ); + }); + + test("can view streams on bracket popover when match is in progress", async ({ + page, + }) => { + const tournamentId = 2; + // Match 2 is team 102 (seed 2) vs team 115 (seed 15) + // Team 102 has users 6 and 7 who have deterministic streams + const matchId = 2; + + await startBracket(page, tournamentId); + + await navigateToMatch(page, matchId); + // Report partial score to set startedAt (match becomes "in progress") + await reportPartialScore(page); + await backToBracket(page); + + // The LIVE button should be visible since team 102 members are streaming + const liveButton = page.getByText("LIVE").first(); + await expect(liveButton).toBeVisible(); + + // Click the LIVE button to open the popover + await liveButton.click(); + + // Verify stream popover shows the streaming player info + await expect(page.getByTestId("stream-popover")).toBeVisible(); + // Multiple streams may be visible, verify at least one exists + await expect(page.getByTestId("tournament-stream").first()).toBeVisible(); + }); + + test("can view streams on streams page", async ({ page }) => { + const tournamentId = 2; + + await startBracket(page, tournamentId); + + await navigate({ + page, + url: tournamentStreamsPage(tournamentId), + }); + + // Verify TournamentStream components are visible + const streams = page.getByTestId("tournament-stream"); + await expect(streams.first()).toBeVisible(); + + // Verify stream info is displayed (viewer count) + await expect(page.locator("text=150").first()).toBeVisible(); + }); + + test("cast stream shows on bracket when match is set as casted", async ({ + page, + }) => { + const tournamentId = 2; + // Match 2 involves team 102 which has 4 players (no roster selection needed) + const matchId = 2; + + await seed(page); + await impersonate(page); + + // Set up cast twitch account (test_cast_stream exists as live stream in seed) + await navigate({ + page, + url: tournamentAdminPage(tournamentId), + }); + await page.getByLabel("Twitch accounts").fill("test_cast_stream"); + await submit(page, "save-cast-twitch-accounts-button"); + + // Start bracket + await navigate({ + page, + url: tournamentBracketsPage({ tournamentId }), + }); + await page.getByTestId("finalize-bracket-button").click(); + await submit(page, "confirm-finalize-bracket-button"); + + // Navigate to match and start it + await navigateToMatch(page, matchId); + await reportPartialScore(page); + + // Set match as casted + await page.getByTestId("cast-info-select").selectOption("test_cast_stream"); + await submit(page, "cast-info-submit-button"); + await backToBracket(page); + + // Verify LIVE button appears (multiple may exist from player streams) + await expect(page.getByText("LIVE").first()).toBeVisible(); + }); +}); diff --git a/migrations/114-live-streams.js b/migrations/114-live-streams.js new file mode 100644 index 000000000..c33a6a5e9 --- /dev/null +++ b/migrations/114-live-streams.js @@ -0,0 +1,21 @@ +export function up(db) { + db.transaction(() => { + db.prepare( + /*sql*/ ` + create table "LiveStream" ( + "id" integer primary key, + "userId" integer unique, + "viewerCount" integer not null, + "thumbnailUrl" text not null, + "twitch" text, + foreign key ("userId") references "User"("id") on delete cascade + ) strict + `, + ).run(); + + db.prepare(/*sql*/ `create index user_twitch on "User"("twitch")`).run(); + db.prepare( + /*sql*/ `create index livestream_twitch on "LiveStream"("twitch")`, + ).run(); + })(); +}