From aecbd157d792584a59256f7b3dfd8e60eaa5924e Mon Sep 17 00:00:00 2001 From: silva guimaraes Date: Wed, 16 Jul 2025 19:27:49 -0300 Subject: [PATCH 01/10] concurrent requests with lwt --- bin/main.ml | 2 +- lib/dune | 2 +- lib/lib.ml | 176 ++++++++++++++++++++++++++++++++++------------------ 3 files changed, 118 insertions(+), 62 deletions(-) diff --git a/bin/main.ml b/bin/main.ml index 9855986..18c21ad 100644 --- a/bin/main.ml +++ b/bin/main.ml @@ -134,7 +134,7 @@ let pp (day : Unix.tm) matches = ppd_matches let f () = - let fetched = Lib.fetch_all tournaments in + let fetched = Lwt_main.run @@ Lib.fetch_all tournaments in let today = Unix.time () |> Unix.localtime in let tomorrow = Unix.time () +. (60. *. 60. *. 24.) |> Unix.localtime in let header = "### schedules" in diff --git a/lib/dune b/lib/dune index 8527db5..77d0aee 100644 --- a/lib/dune +++ b/lib/dune @@ -2,4 +2,4 @@ (name api) (public_name api) (libraries cohttp cohttp-lwt-unix cohttp-curl-lwt yojson ppx_deriving_yojson.runtime) - (preprocess (pps ppx_yojson_conv ppx_deriving.show ppx_expect))) + (preprocess (pps ppx_yojson_conv ppx_deriving.show ppx_expect lwt_ppx))) diff --git a/lib/lib.ml b/lib/lib.ml index 7b4b2e5..c5eae0b 100644 --- a/lib/lib.ml +++ b/lib/lib.ml @@ -1,5 +1,7 @@ open Ppx_yojson_conv_lib.Yojson_conv.Primitives open Printf +open Lwt.Infix + type api_status = { code : int; @@ -30,10 +32,10 @@ type api_tournament_info = { name : string; slug : string } [@@yojson.allow_extra_fields] [@@deriving yojson, show] type api_score = { - current : int; - period1 : int; - period2 : int; - normaltime : int; + current : int [@default 0]; + period1 : int [@default 0]; + period2 : int [@default 0]; + normaltime : int [@default 0]; } [@@yojson.allow_extra_fields] [@@deriving yojson, show] @@ -48,8 +50,8 @@ type api_match = { tournament : api_tournament_info; homeTeam : api_team; awayTeam : api_team; - (* homeScore: api_team; *) - (* awayScore: api_team; *) + homeScore : api_score; + awayScore : api_score; status : api_status; time : api_time; startTimestamp : int; @@ -60,16 +62,16 @@ type api_events = { events : api_match list } [@@yojson.allow_extra_fields] [@@deriving yojson, show] type half = - | FirstHalf of { injury_time1 : int option } - | HalfTime of { injury_time1 : int } + | FirstHalf of { injury_time1 : int option; period_start_timestamp : int } + | HalfTime of { injury_time1 : int option } | SecondHalf of { - injury_time1 : int; - (* second_half_start_timestamp: int; *) + injury_time1 : int option; injury_time2 : int option; + period_start_timestamp : int; } [@@deriving show] -type time = { start_timestamp : int; half : half } [@@deriving show] +type score = { home_score : int; away_score : int } [@@deriving show] type status = | NotStarted of { start_timestamp : int } @@ -77,8 +79,8 @@ type status = | Postponed | Canceled | Delayed - | InProgress of time - | Completed of time + | InProgress of { score : score; start_timestamp : int; half : half } + | Completed of { score : score; start_timestamp : int } [@@deriving show] (* TODO: round info *) @@ -165,7 +167,7 @@ let ( let* ) = Lwt.bind exception Status_Not_found (* TODO: handle "resolution failed: name resolution failed" *) -let get url : string = +let get url = let http_get url = Stdlib.flush Stdlib.stdout; let req_headers = @@ -183,11 +185,10 @@ let get url : string = Lwt.return (Ok b) else Lwt.return @@ Error (Cohttp.Code.reason_phrase_of_code code) in - Lwt_main.run - (let* result = http_get url in + let* result = http_get url in match result with | Error str -> failwith str - | Ok result -> Lwt.return result) + | Ok r -> Lwt.return r let matches_of_api_events (e : api_events) = e.events @@ -196,59 +197,114 @@ let matches_of_api_events (e : api_events) = home_team = m.homeTeam; away_team = m.awayTeam; status = - (let typ = m.status.typ in - let h = - match m.time with - | { - injuryTime1 = x; - injuryTime2 = None; - currentPeriodStartTimestamp = _; - } -> - FirstHalf { injury_time1 = x } - | { - injuryTime1 = Some x; - injuryTime2 = y; - currentPeriodStartTimestamp = _; - } -> - SecondHalf { injury_time1 = x; injury_time2 = y } - | { - injuryTime1 = None; - injuryTime2 = Some y; - currentPeriodStartTimestamp = _; - } -> - SecondHalf { injury_time1 = 0; injury_time2 = Some y } - in - let t = { start_timestamp = m.startTimestamp; half = h } in - match typ with - | "notstarted" -> - NotStarted { start_timestamp = m.startTimestamp } - | "postponed" -> Postponed - | "canceled" -> Canceled - | "suspended" -> Suspended { start_timestamp = m.startTimestamp } - | "inprogress" -> InProgress t - | "finished" -> Completed t - | "delayed" -> Delayed - | _ -> failwith (sprintf "unrecognized match type: %s" typ)); + (match (m.status.description, m.status.typ, m.time) with + | ( "Halftime", + "inprogress", + { + injuryTime1 = x; + injuryTime2 = _; + currentPeriodStartTimestamp = _; + } ) -> + InProgress + { + start_timestamp = m.startTimestamp; + half = HalfTime { injury_time1 = x }; + score = + { + home_score = m.homeScore.current; + away_score = m.awayScore.current; + }; + } + | ( "1st half", + "inprogress", + { + injuryTime1 = x; + injuryTime2 = None; + currentPeriodStartTimestamp = Some z; + } ) -> + InProgress + { + start_timestamp = m.startTimestamp; + half = + FirstHalf + { injury_time1 = x; period_start_timestamp = z }; + score = + { + home_score = m.homeScore.current; + away_score = m.awayScore.current; + }; + } + | ( "2nd half", + "inprogress", + { + injuryTime1 = x; + injuryTime2 = y; + currentPeriodStartTimestamp = Some z; + } ) -> + InProgress + { + start_timestamp = m.startTimestamp; + half = + SecondHalf + { + injury_time1 = x; + injury_time2 = y; + period_start_timestamp = z; + }; + score = + { + home_score = m.homeScore.current; + away_score = m.awayScore.current; + }; + } + | "AP", "finished", _ + | "AET", "finished", _ + | "Ended", "finished", _ -> + Completed + { + start_timestamp = m.startTimestamp; + score = + { + home_score = m.homeScore.current; + away_score = m.awayScore.current; + }; + } + | _, "notstarted", _ -> + NotStarted { start_timestamp = m.startTimestamp } + | _, "canceled", _ -> Canceled + | _, "postponed", _ -> Postponed + | _, "suspended", _ -> + Suspended { start_timestamp = m.startTimestamp } + | a, b, _ -> + failwith + @@ Printf.sprintf "impossible: %s %s %s" a b + (show_api_time m.time)); }) + let fetch_matches ctx = let g order (* "last" for previous matches "next" for future matches *) = - try - sprintf - (* TLS fingerprinting is in place and it's been used to block our requests once + try%lwt + let url = + sprintf + (* TLS fingerprinting is in place and it's been used to block our requests once their systems detect we've been abusing their private API. TLS handshakes can only happen with secure connections using HTTPS, so using plain HTTP makes it impossible for that to happen, which they do generously accept. *) - "http://www.sofascore.com/api/v1/unique-tournament/%d/season/%d/events/%s/0" - ctx.id ctx.season order - |> get |> Yojson.Safe.from_string |> api_events_of_yojson - |> matches_of_api_events + "http://www.sofascore.com/api/v1/unique-tournament/%d/season/%d/events/%s/0" + ctx.id ctx.season order + in + + get url >|= Yojson.Safe.from_string >|= api_events_of_yojson >|= matches_of_api_events with - | Status_Not_found -> [] + | Status_Not_found -> Lwt.return [] | Ppx_yojson_conv_lib__Yojson_conv.Of_yojson_error (exn, _) -> failwith @@ Printexc.to_string exn in - Tournament.make ctx (List.append (g "last") (g "next")) + let* last = g "last" in + let* next = g "next" in + Lwt.return @@ Tournament.make ctx @@ List.append last next -let fetch_all tournaments = tournaments |> List.map fetch_matches +let fetch_all tournaments = + tournaments |> List.map fetch_matches |> Lwt.all From 530f83865d4a6b840e1132c79c6d324ed0cde3c1 Mon Sep 17 00:00:00 2001 From: silva guimaraes Date: Thu, 17 Jul 2025 05:46:20 -0300 Subject: [PATCH 02/10] depends --- api.opam | 1 + dune-project | 1 + 2 files changed, 2 insertions(+) diff --git a/api.opam b/api.opam index cea7e74..d906f9e 100644 --- a/api.opam +++ b/api.opam @@ -14,6 +14,7 @@ depends: [ "ocaml" "ppx_deriving_yojson" "cohttp-curl-lwt" + "lwt_ppx" "cohttp-lwt-unix" "lwt_ssl" "ppx_expect" diff --git a/dune-project b/dune-project index 36cdbce..5ffeaec 100644 --- a/dune-project +++ b/dune-project @@ -23,6 +23,7 @@ ocaml ppx_deriving_yojson cohttp-curl-lwt + lwt_ppx cohttp-lwt-unix lwt_ssl ppx_expect From 53a566d37a23c874774232f42133c5a3f665467e Mon Sep 17 00:00:00 2001 From: silva guimaraes Date: Thu, 17 Jul 2025 06:03:52 -0300 Subject: [PATCH 03/10] captcha --- lib/lib.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lib.ml b/lib/lib.ml index c5eae0b..fd36502 100644 --- a/lib/lib.ml +++ b/lib/lib.ml @@ -173,7 +173,7 @@ let get url = let req_headers = Cohttp.Header.( add (init ()) "X-Captcha" - "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NTI0OTgxMTR9.sZk2yhTk5TeWu_kXE7RO__LDYKlPgZuaA7KKFsB_0GQ") + "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NTI4MjkzNzd9.TL1wEObA1UEKHuK7X954DHByN7_2_Mm1MW25ywqe-Z8") in let* resp, body = Cohttp_lwt_unix.Client.get ~headers:req_headers @@ Uri.of_string url From 116ed0068b7fbd42364cbb9e8f12c3c1a867e511 Mon Sep 17 00:00:00 2001 From: silva guimaraes Date: Mon, 21 Jul 2025 17:44:16 -0300 Subject: [PATCH 04/10] website --- bin/main.ml | 2 +- lib/lib.ml | 308 +++++++++++++++++++---- website/dune | 6 + website/main.ml | 456 +++++++++++++++++++++++++++++++++++ website/static/ae_mainbg.gif | Bin 0 -> 62 bytes 5 files changed, 729 insertions(+), 43 deletions(-) create mode 100644 website/dune create mode 100644 website/main.ml create mode 100644 website/static/ae_mainbg.gif diff --git a/bin/main.ml b/bin/main.ml index 18c21ad..914fb86 100644 --- a/bin/main.ml +++ b/bin/main.ml @@ -134,7 +134,7 @@ let pp (day : Unix.tm) matches = ppd_matches let f () = - let fetched = Lwt_main.run @@ Lib.fetch_all tournaments in + let fetched = Lwt_main.run @@ Lib.fetch_all_tournaments tournaments in let today = Unix.time () |> Unix.localtime in let tomorrow = Unix.time () +. (60. *. 60. *. 24.) |> Unix.localtime in let header = "### schedules" in diff --git a/lib/lib.ml b/lib/lib.ml index fd36502..33bf2b2 100644 --- a/lib/lib.ml +++ b/lib/lib.ml @@ -2,7 +2,6 @@ open Ppx_yojson_conv_lib.Yojson_conv.Primitives open Printf open Lwt.Infix - type api_status = { code : int; description : string; @@ -10,8 +9,13 @@ type api_status = { } [@@deriving yojson, show] -type api_country = { alpha2 : string; alpha3 : string; name : string } -[@@yojson.allow_extra_fields] [@@deriving yojson, show] +type api_country = { + alpha2 : string; + alpha3 : string; + name : string; + slug : string; +} +[@@deriving yojson, show] type api_team_colors = { primary : string; secondary : string; text : string } [@@deriving yojson, show] @@ -19,23 +23,27 @@ type api_team_colors = { primary : string; secondary : string; text : string } type api_team = { id : int; name : string; - short_name : string option; [@key "shortName"] [@yojson.option] + shortName : string option; [@yojson.option] gender : string; teamColors : api_team_colors; country : api_country; } [@@yojson.allow_extra_fields] [@@deriving yojson, show] -let team_name x = match x.short_name with Some x -> x | None -> x.name +let team_name x = match x.shortName with Some x -> x | None -> x.name -type api_tournament_info = { name : string; slug : string } +type api_tournament = { + name : string; + slug : string; + country : api_country option; [@yojson.option] +} [@@yojson.allow_extra_fields] [@@deriving yojson, show] type api_score = { - current : int [@default 0]; - period1 : int [@default 0]; - period2 : int [@default 0]; - normaltime : int [@default 0]; + current : int; [@default 0] + period1 : int; [@default 0] + period2 : int; [@default 0] + normaltime : int; [@default 0] } [@@yojson.allow_extra_fields] [@@deriving yojson, show] @@ -47,7 +55,7 @@ type api_time = { [@@yojson.allow_extra_fields] [@@deriving yojson, show] type api_match = { - tournament : api_tournament_info; + tournament : api_tournament; homeTeam : api_team; awayTeam : api_team; homeScore : api_score; @@ -62,15 +70,88 @@ type api_events = { events : api_match list } [@@yojson.allow_extra_fields] [@@deriving yojson, show] type half = - | FirstHalf of { injury_time1 : int option; period_start_timestamp : int } - | HalfTime of { injury_time1 : int option } - | SecondHalf of { + | First_Half of { injury_time1 : int option; period_start_timestamp : int } + | Half_Time of { injury_time1 : int option } + | Second_Half of { injury_time1 : int option; injury_time2 : int option; period_start_timestamp : int; } + | First_Extra of { + injury_time1 : int option; + injury_time2 : int option; + period_start_timestamp : int; + } + | Extra_Time_Half_Time of { + injury_time1 : int option; + injury_time2 : int option; + } + | Second_Extra of { + injury_time1 : int option; + injury_time2 : int option; + period_start_timestamp : int; + } + | Extra_Time_Await + | Penalties [@@deriving show] +type api_standing_rows = { + team : api_team; + position : int; + matches : int; + points : int; + wins : int option; [@yojon.option] [@default None] + scoresFor : int option; [@yojon.option] [@default None] + scoresAgainst : int option; [@yojon.option] [@default None] + losses : int option; [@yojon.option] [@default None] + draws : int option; [@yojon.option] [@default None] + pointsPerGame : float option; [@yojon.option] [@default None] + pointsPrevPrevSeason : int option; [@yojon.option] [@default None] + pointsPrevSeason : int option; [@yojon.option] [@default None] + pointsCurrSeason : int option; [@yojon.option] [@default None] +} +[@@yojson.allow_extra_fields] [@@deriving yojson, show] + +type api_standing = { + name : string; + rows : api_standing_rows list; + updatedAtTimestamp : int; +} +[@@yojson.allow_extra_fields] [@@deriving yojson, show] + +type api_standings_total = { standings : api_standing list } +[@@deriving yojson, show] + +type normal_table_row = { + team : api_team; + position : int; + matches : int; + points : int; + wins : int; + scoresFor : int; + scoresAgainst : int; + losses : int; + draws : int; +} + +type promedios_table_row = { + team : api_team; + position : int; + matches : int; + points : int; + pointsPerGame : float; + pointsPrevPrevSeason : int; + pointsPrevSeason : int; + pointsCurrSeason : int; +} + +type table_rows = + | Normal of normal_table_row list + | Promedios of promedios_table_row list + +type table = { name : string; rows : table_rows } + +(* TODO penalties *) type score = { home_score : int; away_score : int } [@@deriving show] type status = @@ -98,7 +179,7 @@ type tournament_scrape_context = { let mmod a b = ((a mod b) + b) mod b -let is_conmebol x = +let is_conmebol (x : api_team) = match x.country.alpha2 with | "AR" | "BO" | "BR" | "CL" | "CO" | "EC" | "PY" | "PE" | "UY" | "VE" -> true | _ -> false @@ -173,7 +254,7 @@ let get url = let req_headers = Cohttp.Header.( add (init ()) "X-Captcha" - "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NTI4MjkzNzd9.TL1wEObA1UEKHuK7X954DHByN7_2_Mm1MW25ywqe-Z8") + "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NTI4NjM5MjV9.Zv5y-Ba5Kck1JPV2xTBgcfhX0YGhKq-ShTQEGAKG8Uw") in let* resp, body = Cohttp_lwt_unix.Client.get ~headers:req_headers @@ Uri.of_string url @@ -186,9 +267,44 @@ let get url = else Lwt.return @@ Error (Cohttp.Code.reason_phrase_of_code code) in let* result = http_get url in - match result with - | Error str -> failwith str - | Ok r -> Lwt.return r + match result with Error str -> failwith str | Ok r -> Lwt.return r + +let tables_of_api_standings_total (s : api_standings_total) : table list = + let must_some = function None -> failwith "impossible" | Some x -> x in + let table_of_api_standing (x : api_standing) = + let row = List.nth x.rows 0 in + match row.wins with + | Some _ -> + let of_normal (x : api_standing_rows) = + { + team = x.team; + position = x.position; + matches = x.matches; + points = x.points; + wins = must_some x.wins; + scoresFor = must_some x.scoresFor; + scoresAgainst = must_some x.scoresAgainst; + losses = must_some x.losses; + draws = must_some x.draws; + } + in + { name = x.name; rows = Normal (List.map of_normal x.rows) } + | None -> + let of_promedios (x : api_standing_rows) = + { + team = x.team; + position = x.position; + matches = x.matches; + points = x.points; + pointsPerGame = must_some x.pointsPerGame; + pointsPrevPrevSeason = must_some x.pointsPrevPrevSeason; + pointsPrevSeason = must_some x.pointsPrevSeason; + pointsCurrSeason = must_some x.pointsCurrSeason; + } + in + { name = x.name; rows = Promedios (List.map of_promedios x.rows) } + in + List.map table_of_api_standing s.standings let matches_of_api_events (e : api_events) = e.events @@ -208,7 +324,7 @@ let matches_of_api_events (e : api_events) = InProgress { start_timestamp = m.startTimestamp; - half = HalfTime { injury_time1 = x }; + half = Half_Time { injury_time1 = x }; score = { home_score = m.homeScore.current; @@ -226,7 +342,7 @@ let matches_of_api_events (e : api_events) = { start_timestamp = m.startTimestamp; half = - FirstHalf + First_Half { injury_time1 = x; period_start_timestamp = z }; score = { @@ -245,7 +361,7 @@ let matches_of_api_events (e : api_events) = { start_timestamp = m.startTimestamp; half = - SecondHalf + Second_Half { injury_time1 = x; injury_time2 = y; @@ -257,6 +373,105 @@ let matches_of_api_events (e : api_events) = away_score = m.awayScore.current; }; } + | ( "1st extra", + "inprogress", + { + injuryTime1 = x; + injuryTime2 = y; + currentPeriodStartTimestamp = Some z; + } ) -> + InProgress + { + start_timestamp = m.startTimestamp; + half = + First_Extra + { + injury_time1 = x; + injury_time2 = y; + period_start_timestamp = z; + }; + score = + { + home_score = m.homeScore.current; + away_score = m.awayScore.current; + }; + } + | ( "Extra time halftime", + "inprogress", + { + injuryTime1 = x; + injuryTime2 = y; + currentPeriodStartTimestamp = _; + } ) -> + InProgress + { + start_timestamp = m.startTimestamp; + half = + Extra_Time_Half_Time + { injury_time1 = x; injury_time2 = y }; + score = + { + home_score = m.homeScore.current; + away_score = m.awayScore.current; + }; + } + | ( "2nd extra", + "inprogress", + { + injuryTime1 = x; + injuryTime2 = y; + currentPeriodStartTimestamp = Some z; + } ) -> + InProgress + { + start_timestamp = m.startTimestamp; + half = + Second_Extra + { + injury_time1 = x; + injury_time2 = y; + period_start_timestamp = z; + }; + score = + { + home_score = m.homeScore.current; + away_score = m.awayScore.current; + }; + } + | ( "Penalties", + "inprogress", + { + injuryTime1 = _; + injuryTime2 = _; + currentPeriodStartTimestamp = _; + } ) -> + InProgress + { + start_timestamp = m.startTimestamp; + half = Penalties; + score = + { + home_score = m.homeScore.current; + away_score = m.awayScore.current; + }; + } + | ( "Awaiting extra time", + "inprogress", + { + injuryTime1 = _; + injuryTime2 = _; + currentPeriodStartTimestamp = _; + } ) -> + InProgress + { + start_timestamp = m.startTimestamp; + half = Extra_Time_Await; + score = + { + home_score = m.homeScore.normaltime; + away_score = m.awayScore.normaltime; + }; + } | "AP", "finished", _ | "AET", "finished", _ | "Ended", "finished", _ -> @@ -281,30 +496,39 @@ let matches_of_api_events (e : api_events) = (show_api_time m.time)); }) - -let fetch_matches ctx = - let g order (* "last" for previous matches "next" for future matches *) = - try%lwt - let url = - sprintf - (* TLS fingerprinting is in place and it's been used to block our requests once +let fetch ctx order (* "last" for previous matches "next" for future matches *) + = + try%lwt + let url = + sprintf + (* TLS fingerprinting is in place and it's been used to block our requests once their systems detect we've been abusing their private API. TLS handshakes can only happen with secure connections using HTTPS, so using plain HTTP makes it impossible for that to happen, which they do generously accept. *) - "http://www.sofascore.com/api/v1/unique-tournament/%d/season/%d/events/%s/0" - ctx.id ctx.season order - in + "http://www.sofascore.com/api/v1/unique-tournament/%d/season/%d/events/%s/0" + ctx.id ctx.season + (match order with `Last -> "last" | `Next -> "next") + in + get url >|= Yojson.Safe.from_string >|= api_events_of_yojson + >|= matches_of_api_events + with + | Status_Not_found -> Lwt.return [] + | Ppx_yojson_conv_lib__Yojson_conv.Of_yojson_error (exn, _) -> raise exn - get url >|= Yojson.Safe.from_string >|= api_events_of_yojson >|= matches_of_api_events - with - | Status_Not_found -> Lwt.return [] - | Ppx_yojson_conv_lib__Yojson_conv.Of_yojson_error (exn, _) -> - failwith @@ Printexc.to_string exn - in - let* last = g "last" in - let* next = g "next" in +let fetch_all_matches ctx = + let* last = fetch ctx `Last in + let* next = fetch ctx `Next in Lwt.return @@ Tournament.make ctx @@ List.append last next -let fetch_all tournaments = - tournaments |> List.map fetch_matches |> Lwt.all +let fetch_all_tournaments tournaments = + tournaments |> List.map fetch_all_matches |> Lwt.all + +let standings context = + let url = + sprintf + "https://www.sofascore.com/api/v1/unique-tournament/%d/season/%d/standings/total" + context.id context.season + in + get url >|= Yojson.Safe.from_string >|= api_standings_total_of_yojson + >|= tables_of_api_standings_total diff --git a/website/dune b/website/dune new file mode 100644 index 0000000..1e68279 --- /dev/null +++ b/website/dune @@ -0,0 +1,6 @@ +(executable + (public_name website) + (name main) + (libraries api dream tyxml) + (preprocess (pps tyxml-ppx)) + ) diff --git a/website/main.ml b/website/main.ml new file mode 100644 index 0000000..e48adf7 --- /dev/null +++ b/website/main.ml @@ -0,0 +1,456 @@ + +open Printf +open Api + + +let context: Lib.tournament_scrape_context list = [ + { + id = 384; + season = 70083; + name = "LIBERTADORES"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 480; + season = 70070; + name = "SUDAMERICANA"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 373; + season = 71944; + name = "COPA DO BRASIL"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 1596; + season = 69430; + name = "COPA DO NORDESTE"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 1024; + season = 70664; + name = "COPA ARGENTINA"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 325; + season = 72034; + name = "BRAZIL 1"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 155; + season = 77826; + name = "ARGENTINA 1, CLAUSURA"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 278; + season = 71306; + name = "URUGUAY 1"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 11536; + season = 77825; + name = "COLOMBIA 1"; + filter_foreigners = false; + timezone_offset = Some ~-5; + }; + { + id = 1335; + season = 76050; + name = "COPA COLOMBIA"; + filter_foreigners = false; + timezone_offset = Some ~-5; + }; + { + id = 11653; + season = 71131; + name = "CHILE 1"; + filter_foreigners = false; + timezone_offset = Some ~-4; + }; + { + id = 390; + season = 72603; + name = "BRAZIL 2"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 1221; + season = 71100; + name = "COPA CHILE"; + filter_foreigners = false; + timezone_offset = Some ~-4; + }; + { + id = 11541; + season = 69831; + name = "PARAGUAY 1, CLAUSURA"; + filter_foreigners = false; + timezone_offset = None; + }; +] +;; + +let ( let& ) a b = + match a with + | None -> None + | Some x -> b x +;; + +let ( let* ) = Lwt.bind ;; + +let my_header () = + let open Tyxml.Html in + header ~a:[a_style "padding: var(--main-margin); px; margin: var(--main-margin); "] [ + div [ + a ~a:[a_href "/"; a_style "text-decoration-color: unset; color: unset"] [txt "index"] + ] ; + div [ + let ts = Unix.localtime @@ Unix.time () in + txt @@ sprintf "last updated: %02d:%02d:%02d" ts.tm_hour ts.tm_min ts.tm_sec + ] + ]; +;; + +let my_head title' = + let open Tyxml.Html in + (head (title (txt title')) [ + style [ txt {| + :root { + --main-bg: #eee; --main-margin: 3px; + --celeste: #9ed1ff; + } + * { + margin: 0; + } + html, body { + height: 100%; font-size: 13px; + } + a { + text-decoration-color: unset; + color: unset; + } + .match-table:last-child { + border-bottom: 0 !important + } + .standing tbody tr:nth-child(odd) { + background-color: var(--celeste); + } + td { + padding: var(--main-margin); + text-align: center; + } + td:nth-child(2), thead td { + text-align: left; + } + |}] + ]) +;; + +let box ?style elements = + let s = + match style with + | Some x -> x + | None -> "" + in + let attr = + [Tyxml.Html.a_style @@ "padding: var(--main-margin); border-radius: var(--main-margin); \ + margin: var(--main-margin); " ^ s] + in + Tyxml.Html.div ~a:attr elements +;; + +let greet (tournaments: Lib.Tournament.t list) = + let open Tyxml.Html in + let filter_day day mon (x: Unix.tm) = + x.tm_mday = day && x.tm_mon = mon + in + let today = + Unix.time () |> Unix.localtime + in + html + (my_head "index") + (body [ + my_header (); + main ~a:[a_style "margin: auto; display: flex; flex-direction: row;"] + (tournaments + |> List.filter_map @@ fun x -> (x + |> Lib.Tournament.matches + |> List.filter_map (fun (match': Lib.match') -> + let& ts = + match match'.status with + | Delayed | Suspended _ | Postponed | Canceled -> None + | InProgress { start_timestamp; half = _; score = _ } -> Some start_timestamp + | NotStarted { start_timestamp } -> Some start_timestamp + | Completed { start_timestamp; score = _ } -> Some start_timestamp + in + let match_ts = + Unix.localtime @@ float_of_int ts + in + if not @@ filter_day today.tm_mday today.tm_mon match_ts + then None + else + Some ( + div ~a:[a_class ["match-table"] ; + a_style "display: flex; justify-content: space-between; \ + border-bottom: 1px black solid; margin-bottom: calc(var(--main-margin) * 2); padding; \ + var(--main-margin)"] + [ + div ~a:[a_style "display: flex; width: 145px; justify-content: space-between;"] [ + div ~a:[] [ + div ~a:[a_style "white-space: nowrap"] [txt @@ Lib.team_name match'.home_team]; + div ~a:[a_style "white-space: nowrap"] [txt @@ Lib.team_name match'.away_team]; + ] ; + (match match'.status with + | NotStarted _ | Delayed | Suspended _ | Postponed | Canceled -> div [] + | Completed {score = {home_score; away_score}; start_timestamp = _} -> + (* print_string (Lib.show_api_score home_score) ; *) + div ~a:[] [ + div ~a:[] [txt @@ string_of_int home_score]; + div ~a:[] [txt @@ string_of_int away_score]; + ] + | InProgress {score = {home_score; away_score}; start_timestamp = _; half = _} -> + div ~a:[] [ + div ~a:[] [txt @@ string_of_int home_score]; + div ~a:[] [txt @@ string_of_int away_score]; + ]) + ] ; + let status_attr = [a_style "text-align: right; min-width: 87px"] in + let attr = [a_style "color: red; font-weight: bold; text-align: right; min-width: 87px"] in + match match'.status with + | Delayed | Suspended _ | Postponed | Canceled -> failwith "impossible" + | Completed _ -> div ~a:status_attr [ txt "finished" ] + | NotStarted _ -> + let text = + sprintf "%02d:%02d" match_ts.tm_hour match_ts.tm_min + in + div ~a:[] [ txt text ] + | InProgress { start_timestamp = _; half; score = _} -> + match half with + | First_Half { injury_time1; period_start_timestamp } -> + let duration = (Unix.time ()) -. (float_of_int period_start_timestamp) in + let duration_minutes = (duration /. 60.) in + let text = + if duration_minutes < 45. then + sprintf "1T %02.0f'" duration_minutes + else + match injury_time1 with + | Some it -> + sprintf "1T 45+%02d/%02d'" (int_of_float duration_minutes - 45) it + | None -> + sprintf "1T 45+%02d/??'" (int_of_float duration_minutes - 45) + in + div ~a:attr [ txt text ] + | Half_Time _ -> + div ~a:[a_style "color: red; font-weight: bold"] [ txt "HT" ] + | Second_Half { injury_time1 = _ ; injury_time2 ; period_start_timestamp } -> + let duration = (Unix.time ()) -. (float_of_int period_start_timestamp) in + let duration_minutes = (duration /. 60.) in + let text = + if duration_minutes < 45. then + sprintf "2T %02.0f'" duration_minutes + else + (match injury_time2 with + | Some it -> + sprintf "2T 45+%02d/%02d'" (int_of_float duration_minutes - 45) it + | None -> + sprintf "2T 45+%02d/??'" (int_of_float duration_minutes - 45)) + in + div ~a:attr [ txt text ] + | First_Extra { injury_time1 = _ ; injury_time2 = _ ; period_start_timestamp } -> + let duration = (Unix.time ()) -. (float_of_int period_start_timestamp) in + let duration_minutes = (duration /. 60.) in + let text = sprintf "1ET %02.0f'" duration_minutes + in + div ~a:attr [ txt text ] + | Extra_Time_Await -> + div ~a:attr [ txt "HT..?" ] + | Extra_Time_Half_Time { injury_time1 = _ ; injury_time2 = _ } -> + div ~a:attr [ txt "ET HT" ] + | Second_Extra { injury_time1 = _ ; injury_time2 = _ ; period_start_timestamp } -> + let duration = (Unix.time ()) -. (float_of_int period_start_timestamp) in + let duration_minutes = (duration /. 60.) in + let text = sprintf "2ET %02.0f'" duration_minutes + in + div ~a:attr [ txt text ] + | Penalties -> + div ~a:attr [ txt "PEN" ] ; + ] + )) + |> fun y -> + if List.length y = 0 then None else + Some (box ~style:"min-width: 200px;" + [ + header [ + a ~a:[a_href @@ sprintf "/tournament/%d" x.context.id] [h3 [txt x.context.name]]; + h4 [txt @@ sprintf "(%d/%d) Today" today.tm_mon today.tm_mday]; + ]; + main y + ] + ))) + ; + footer []; + ]) +;; + +let tournament_page (tournament: Lib.Tournament.t) (tables: Lib.table list) = + let open Tyxml.Html in + let my_table (t: Lib.table) = + let attr = + [a_style "border-collapse: collapse; border: 1px solid black; height: min-content"; + a_class ["standing"]] + in + let tab = + match t.rows with + | Lib.Normal rows -> + table ~a:attr ~thead:(thead [ + tr [ + td [txt "#"] ; + td [txt "Name"] ; + td [txt "P"] ; + td [txt "M"] ; + td [txt "W"] ; + td [txt "D"] ; + td [txt "L"] ; + td [txt "GF"] ; + td [txt "Diff"] ; + td [txt "GA"] ; + ] + ]) + (rows + |> List.map (fun ({team; points; matches; wins; scoresFor; + scoresAgainst; losses; draws; position}: Lib.normal_table_row) -> + let is_playing = + tournament.matches + |> List.find_map (fun (x: Lib.match') -> + match x.status with + | InProgress y -> + let is_home = x.home_team.id = team.id in + if is_home || x.away_team.id = team.id then + Some (is_home, y.score) else None + | _ -> None + ) + in + let attr = + match is_playing with + | Some _ -> [a_style "color: red; font-weight: bold"] + | None -> [] + in + tr [ + td ~a:attr [txt @@ string_of_int position] ; + td ~a:attr [ + div ~a:[a_style "display: flex; justify-content: space-between;"] @@ + (div [ txt @@ team.name ]) :: match is_playing with + | None -> [] + | Some (is_home, score) -> [ + let style = + "color: white; padding: 0 var(--main-margin) 0 var(--main-margin); \ + margin-left: var(--main-margin);" ^ + match is_home, Int.compare score.home_score score.away_score with + | false, -1 | true, 1 -> "background-color: green;" + | false, 1 | true, -1 -> "background-color: red;" + | false, 0 | true, 0 -> "background-color: grey;" + | _ -> failwith "impossible" + in + div ~a:[a_style style + ] [ + span [txt @@ string_of_int score.home_score ]; + span [txt "-"]; + span [txt @@ string_of_int score.away_score ]; + ] ] + ] ; + td ~a:attr [txt @@ string_of_int points] ; + td ~a:attr [txt @@ string_of_int matches] ; + td ~a:attr [txt @@ string_of_int wins] ; + td ~a:attr [txt @@ string_of_int draws] ; + td ~a:attr [txt @@ string_of_int losses] ; + td ~a:attr [txt @@ string_of_int scoresFor] ; + td ~a:attr [txt @@ string_of_int @@ scoresFor - scoresAgainst] ; + td ~a:attr [txt @@ string_of_int scoresAgainst] ; + ] + ) + ) + | Lib.Promedios rows -> + table ~a:attr ~thead:(thead [ + tr [ + td [txt "#"] ; + td [txt "Name"] ; + td [txt "PPG"] ; + td [txt "P"] ; + td [txt "M"] ; + td [txt "PPS"] ; + td [txt "PS"] ; + td [txt "CS"] ; + ] + ]) + (rows + |> List.map (fun ({team; points; matches; position; pointsPerGame; pointsPrevPrevSeason; + pointsPrevSeason; pointsCurrSeason;}: Lib.promedios_table_row) -> + tr [ + td [txt @@ string_of_int position] ; + td [txt @@ team.name] ; + td [txt @@ string_of_float pointsPerGame] ; + td [txt @@ string_of_int points] ; + td [txt @@ string_of_int matches] ; + td [txt @@ string_of_int pointsPrevPrevSeason] ; + td [txt @@ string_of_int pointsPrevSeason] ; + td [txt @@ string_of_int pointsCurrSeason] ; + ] + ) + ) + in + div [ + h3 ~a:[a_style "margin-bottom: var(--main-margin)"] [txt t.name] ; + tab ; + ] + in + html + (my_head "index") + (body [ + my_header () ; + main [ + box [h3 [txt tournament.context.name]] ; + box ~style:"display: flex; flex-direction: row; gap: calc(var(--main-margin) * 2)" @@ + List.map my_table tables + ]; + footer [] + ] + ) +;; + +let html_to_string html = Format.asprintf "%a" (Tyxml.Html.pp ()) html ;; + +Lwt_main.run begin + Dream.serve + @@ Dream.logger + @@ Dream.router + [ + Dream.get "/" begin fun _ -> + let* data = Lib.fetch_all_tournaments context in + Dream.html @@ html_to_string @@ greet data + end ; + Dream.get "/tournament/:id" begin fun request -> + let id' = int_of_string @@ Dream.param request "id" in + let ctx = + List.find (fun ({id; _}: Lib.tournament_scrape_context) -> id = id') context + in + let* matches = Lib.fetch ctx `Last in + let* standings = Lib.standings ctx in + Dream.html @@ html_to_string @@ tournament_page (Lib.Tournament.make ctx matches) standings + end + ] + end diff --git a/website/static/ae_mainbg.gif b/website/static/ae_mainbg.gif new file mode 100644 index 0000000000000000000000000000000000000000..f7a4519c46dd40eb9145edc21ec0bc985ab28417 GIT binary patch literal 62 zcmZ?wbhEHb Date: Sat, 26 Jul 2025 20:19:28 -0300 Subject: [PATCH 05/10] bugfix --- lib/lib.ml | 52 +++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 43 insertions(+), 9 deletions(-) diff --git a/lib/lib.ml b/lib/lib.ml index 33bf2b2..fa1ea02 100644 --- a/lib/lib.ml +++ b/lib/lib.ml @@ -309,6 +309,21 @@ let tables_of_api_standings_total (s : api_standings_total) : table list = let matches_of_api_events (e : api_events) = e.events |> List.map (fun (m : api_match) -> + let period_start_timestamp = + match m.time with + | { + currentPeriodStartTimestamp = Some x; + injuryTime1 = _; + injuryTime2 = _; + } -> + x + | { + currentPeriodStartTimestamp = None; + injuryTime1 = _; + injuryTime2 = _; + } -> + m.startTimestamp + in { home_team = m.homeTeam; away_team = m.awayTeam; @@ -336,14 +351,13 @@ let matches_of_api_events (e : api_events) = { injuryTime1 = x; injuryTime2 = None; - currentPeriodStartTimestamp = Some z; + currentPeriodStartTimestamp = _; } ) -> InProgress { start_timestamp = m.startTimestamp; half = - First_Half - { injury_time1 = x; period_start_timestamp = z }; + First_Half { injury_time1 = x; period_start_timestamp }; score = { home_score = m.homeScore.current; @@ -355,7 +369,7 @@ let matches_of_api_events (e : api_events) = { injuryTime1 = x; injuryTime2 = y; - currentPeriodStartTimestamp = Some z; + currentPeriodStartTimestamp = _; } ) -> InProgress { @@ -365,7 +379,7 @@ let matches_of_api_events (e : api_events) = { injury_time1 = x; injury_time2 = y; - period_start_timestamp = z; + period_start_timestamp; }; score = { @@ -378,7 +392,7 @@ let matches_of_api_events (e : api_events) = { injuryTime1 = x; injuryTime2 = y; - currentPeriodStartTimestamp = Some z; + currentPeriodStartTimestamp = _; } ) -> InProgress { @@ -388,7 +402,7 @@ let matches_of_api_events (e : api_events) = { injury_time1 = x; injury_time2 = y; - period_start_timestamp = z; + period_start_timestamp; }; score = { @@ -420,7 +434,7 @@ let matches_of_api_events (e : api_events) = { injuryTime1 = x; injuryTime2 = y; - currentPeriodStartTimestamp = Some z; + currentPeriodStartTimestamp = _; } ) -> InProgress { @@ -430,7 +444,7 @@ let matches_of_api_events (e : api_events) = { injury_time1 = x; injury_time2 = y; - period_start_timestamp = z; + period_start_timestamp; }; score = { @@ -438,6 +452,23 @@ let matches_of_api_events (e : api_events) = away_score = m.awayScore.current; }; } + | ( "Awaiting penalties", + "inprogress", + { + injuryTime1 = _; + injuryTime2 = _; + currentPeriodStartTimestamp = _; + } ) -> + InProgress + { + start_timestamp = m.startTimestamp; + half = Penalties; + score = + { + home_score = m.homeScore.current; + away_score = m.awayScore.current; + }; + } | ( "Penalties", "inprogress", { @@ -496,6 +527,9 @@ let matches_of_api_events (e : api_events) = (show_api_time m.time)); }) +(* https://www.sofascore.com/api/v1/unique-tournament/480/season/70070/rounds *) +(* https://www.sofascore.com/api/v1/unique-tournament/480/season/70070/events/round/636/slug/playoff-round *) + let fetch ctx order (* "last" for previous matches "next" for future matches *) = try%lwt From 9515fa9af986cc642acd01342f3eaa5ffbb61cb9 Mon Sep 17 00:00:00 2001 From: silva guimaraes Date: Sun, 3 Aug 2025 20:24:59 -0300 Subject: [PATCH 06/10] wrong timestamp --- bin/main.ml | 17 ++++++++++++++++- lib/lib.ml | 43 +++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 57 insertions(+), 3 deletions(-) diff --git a/bin/main.ml b/bin/main.ml index 914fb86..8773720 100644 --- a/bin/main.ml +++ b/bin/main.ml @@ -7,6 +7,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 357; season = 69619; name = "CWC"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = true; timezone_offset = None; }; @@ -14,6 +15,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 384; season = 70083; name = "LIBERTADORES"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -21,6 +23,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 480; season = 70070; name = "SUDAMERICANA"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -28,6 +31,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 373; season = 71944; name = "COPA DO BRASIL"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -35,6 +39,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 1596; season = 69430; name = "COPA DO NORDESTE"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -42,6 +47,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 1024; season = 70664; name = "COPA ARGENTINA"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -49,6 +55,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 325; season = 72034; name = "BRA1"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -56,6 +63,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 155; season = 77826; name = "ARG1"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -63,6 +71,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 278; season = 71306; name = "URY1"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -70,6 +79,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 11536; season = 77825; name = "COL1"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = Some ~-5; }; @@ -77,6 +87,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 1335; season = 76050; name = "COPA COLOMBIA"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = Some ~-5; }; @@ -84,6 +95,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 11653; season = 71131; name = "CHL1"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = Some ~-4; }; @@ -91,6 +103,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 390; season = 72603; name = "BRA2"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -98,6 +111,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 1221; season = 71100; name = "COPA CHILE"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = Some ~-4; }; @@ -105,6 +119,7 @@ let tournaments : Lib.tournament_scrape_context list = id = 11541; season = 69831; name = "PRY1"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -130,7 +145,7 @@ let pp (day : Unix.tm) matches = in if ppd_matches = "" then "" else - sprintf ">%s %02d/%02d:\n%s" (weekday day.tm_wday) day.tm_mday day.tm_mon + sprintf ">%s %02d/%02d:\n%s" (weekday day.tm_wday) day.tm_mday (succ day.tm_mon) ppd_matches let f () = diff --git a/lib/lib.ml b/lib/lib.ml index fa1ea02..83475ba 100644 --- a/lib/lib.ml +++ b/lib/lib.ml @@ -62,6 +62,7 @@ type api_match = { awayScore : api_score; status : api_status; time : api_time; + id : int; startTimestamp : int; } [@@yojson.allow_extra_fields] [@@deriving yojson, show] @@ -122,6 +123,24 @@ type api_standing = { type api_standings_total = { standings : api_standing list } [@@deriving yojson, show] +type api_short_match = { winnerCode : int } [@@deriving yojson] + +(* type api_team_events_table = (string * api_short_match list) Hashtbl.t *) +(* [@@deriving yojson] *) +(**) +(* type api_team_events_total = { *) +(* tournamentTeamEvents : (string, api_team_events_table) Hashtbl.t *) +(* } *) +(* [@@deriving yojson] *) + +type match_info = { tournament : string } [@@deriving yojson] + +(* type inner_map = (string, match_info list) Hashtbl.t *) +(* [@@deriving yojson] *) +(**) +(* type outer_map = (string, inner_map) Hashtbl.t *) +(* [@@deriving yojson] *) + type normal_table_row = { team : api_team; position : int; @@ -165,13 +184,19 @@ type status = [@@deriving show] (* TODO: round info *) -type match' = { status : status; home_team : api_team; away_team : api_team } +type match' = { + status : status; + home_team : api_team; + away_team : api_team; + api_id : int; +} [@@deriving show] type tournament_scrape_context = { id : int; season : int; name : string; + emoji : string; filter_foreigners : bool; timezone_offset : int option (* assumes UTC-3 if None *); } @@ -254,7 +279,7 @@ let get url = let req_headers = Cohttp.Header.( add (init ()) "X-Captcha" - "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NTI4NjM5MjV9.Zv5y-Ba5Kck1JPV2xTBgcfhX0YGhKq-ShTQEGAKG8Uw") + "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NTQzMTc2MTJ9.sMoqrrTQMoq1JJRJqn-pbOtPIOlOfh5gjrniyUKX_04") in let* resp, body = Cohttp_lwt_unix.Client.get ~headers:req_headers @@ Uri.of_string url @@ -325,6 +350,7 @@ let matches_of_api_events (e : api_events) = m.startTimestamp in { + api_id = m.id; home_team = m.homeTeam; away_team = m.awayTeam; status = @@ -521,6 +547,7 @@ let matches_of_api_events (e : api_events) = | _, "postponed", _ -> Postponed | _, "suspended", _ -> Suspended { start_timestamp = m.startTimestamp } + | _, "delayed", _ -> Delayed | a, b, _ -> failwith @@ Printf.sprintf "impossible: %s %s %s" a b @@ -558,6 +585,10 @@ let fetch_all_matches ctx = let fetch_all_tournaments tournaments = tournaments |> List.map fetch_all_matches |> Lwt.all +let fetch_match_details id = + let url = sprintf "https://www.sofascore.com/api/v1/event/%d" id in + get url >|= Yojson.Safe.from_string + let standings context = let url = sprintf @@ -566,3 +597,11 @@ let standings context = in get url >|= Yojson.Safe.from_string >|= api_standings_total_of_yojson >|= tables_of_api_standings_total + +(* let last_five_matches context = *) +(* let url = *) +(* sprintf "https://www.sofascore.com/api/v1/unique-tournament/%d/season/%d/team-events/total" *) +(* context.id context.season *) +(* in *) +(* (* get url >|= Yojson.Safe.from_string >|= *) *) +(* ;; *) From 3e6abd1ea111e420813f7d7fbbd085e6d89b8059 Mon Sep 17 00:00:00 2001 From: silva guimaraes Date: Sun, 3 Aug 2025 20:27:46 -0300 Subject: [PATCH 07/10] emoji --- website/main.ml | 118 ++++++++++++++++++++++++++++++++++-------------- 1 file changed, 83 insertions(+), 35 deletions(-) diff --git a/website/main.ml b/website/main.ml index e48adf7..046622e 100644 --- a/website/main.ml +++ b/website/main.ml @@ -8,6 +8,7 @@ let context: Lib.tournament_scrape_context list = [ id = 384; season = 70083; name = "LIBERTADORES"; + emoji = "🌎"; filter_foreigners = false; timezone_offset = None; }; @@ -15,6 +16,7 @@ let context: Lib.tournament_scrape_context list = [ id = 480; season = 70070; name = "SUDAMERICANA"; + emoji = "🌎"; filter_foreigners = false; timezone_offset = None; }; @@ -22,20 +24,7 @@ let context: Lib.tournament_scrape_context list = [ id = 373; season = 71944; name = "COPA DO BRASIL"; - filter_foreigners = false; - timezone_offset = None; - }; - { - id = 1596; - season = 69430; - name = "COPA DO NORDESTE"; - filter_foreigners = false; - timezone_offset = None; - }; - { - id = 1024; - season = 70664; - name = "COPA ARGENTINA"; + emoji = "πŸ‡§πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -43,6 +32,31 @@ let context: Lib.tournament_scrape_context list = [ id = 325; season = 72034; name = "BRAZIL 1"; + emoji = "πŸ‡§πŸ‡·"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 390; + season = 72603; + name = "BRAZIL 2"; + emoji = "πŸ‡§πŸ‡·"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 1596; + season = 69430; + name = "COPA DO NORDESTE"; + emoji = "πŸ‡§πŸ‡·"; + filter_foreigners = false; + timezone_offset = None; + }; + { + id = 1024; + season = 70664; + name = "COPA ARGENTINA"; + emoji = "πŸ‡¦πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -50,6 +64,7 @@ let context: Lib.tournament_scrape_context list = [ id = 155; season = 77826; name = "ARGENTINA 1, CLAUSURA"; + emoji = "πŸ‡¦πŸ‡·"; filter_foreigners = false; timezone_offset = None; }; @@ -57,6 +72,7 @@ let context: Lib.tournament_scrape_context list = [ id = 278; season = 71306; name = "URUGUAY 1"; + emoji = "πŸ‡ΊπŸ‡Ύ"; filter_foreigners = false; timezone_offset = None; }; @@ -64,6 +80,7 @@ let context: Lib.tournament_scrape_context list = [ id = 11536; season = 77825; name = "COLOMBIA 1"; + emoji = "πŸ‡¨πŸ‡΄"; filter_foreigners = false; timezone_offset = Some ~-5; }; @@ -71,6 +88,7 @@ let context: Lib.tournament_scrape_context list = [ id = 1335; season = 76050; name = "COPA COLOMBIA"; + emoji = "πŸ‡¨πŸ‡΄"; filter_foreigners = false; timezone_offset = Some ~-5; }; @@ -78,20 +96,15 @@ let context: Lib.tournament_scrape_context list = [ id = 11653; season = 71131; name = "CHILE 1"; + emoji = "πŸ‡¨πŸ‡±"; filter_foreigners = false; timezone_offset = Some ~-4; }; - { - id = 390; - season = 72603; - name = "BRAZIL 2"; - filter_foreigners = false; - timezone_offset = None; - }; { id = 1221; season = 71100; name = "COPA CHILE"; + emoji = "πŸ‡¨πŸ‡±"; filter_foreigners = false; timezone_offset = Some ~-4; }; @@ -99,6 +112,7 @@ let context: Lib.tournament_scrape_context list = [ id = 11541; season = 69831; name = "PARAGUAY 1, CLAUSURA"; + emoji = "πŸ‡΅πŸ‡Ύ"; filter_foreigners = false; timezone_offset = None; }; @@ -131,7 +145,8 @@ let my_head title' = (head (title (txt title')) [ style [ txt {| :root { - --main-bg: #eee; --main-margin: 3px; + --main-bg: #eee; + --main-margin: 3px; --celeste: #9ed1ff; } * { @@ -144,9 +159,17 @@ let my_head title' = text-decoration-color: unset; color: unset; } + .match-table { + text-decoration: none; + transition: background-color 0.035s; + } .match-table:last-child { border-bottom: 0 !important } + .match-table:hover { + background-color: var(--main-bg); + border-radius 3px 3px; + } .standing tbody tr:nth-child(odd) { background-color: var(--celeste); } @@ -157,6 +180,9 @@ let my_head title' = td:nth-child(2), thead td { text-align: left; } + td:nth-child(3) { + font-weight: bold; + } |}] ]) ;; @@ -171,7 +197,7 @@ let box ?style elements = [Tyxml.Html.a_style @@ "padding: var(--main-margin); border-radius: var(--main-margin); \ margin: var(--main-margin); " ^ s] in - Tyxml.Html.div ~a:attr elements + Tyxml.Html.section ~a:attr elements ;; let greet (tournaments: Lib.Tournament.t list) = @@ -186,7 +212,7 @@ let greet (tournaments: Lib.Tournament.t list) = (my_head "index") (body [ my_header (); - main ~a:[a_style "margin: auto; display: flex; flex-direction: row;"] + main ~a:[a_style "margin: auto; display: flex; flex-direction: row; flex-wrap: wrap"] (tournaments |> List.filter_map @@ fun x -> (x |> Lib.Tournament.matches @@ -205,10 +231,9 @@ let greet (tournaments: Lib.Tournament.t list) = then None else Some ( - div ~a:[a_class ["match-table"] ; - a_style "display: flex; justify-content: space-between; \ - border-bottom: 1px black solid; margin-bottom: calc(var(--main-margin) * 2); padding; \ - var(--main-margin)"] + a ~a:[a_class ["match-table"] ; a_href @@ sprintf "/match/%d" match'.api_id ; + a_style "display: flex; justify-content: space-between; border-bottom: 1px black solid; \ + padding-top: calc(var(--main-margin) * 2);"] [ div ~a:[a_style "display: flex; width: 145px; justify-content: space-between;"] [ div ~a:[] [ @@ -296,7 +321,8 @@ let greet (tournaments: Lib.Tournament.t list) = Some (box ~style:"min-width: 200px;" [ header [ - a ~a:[a_href @@ sprintf "/tournament/%d" x.context.id] [h3 [txt x.context.name]]; + a ~a:[a_href @@ sprintf "/tournament/%d" x.context.id] + [h3 [txt @@ sprintf "%s %s" x.context.emoji x.context.name]]; h4 [txt @@ sprintf "(%d/%d) Today" today.tm_mon today.tm_mday]; ]; main y @@ -307,11 +333,26 @@ let greet (tournaments: Lib.Tournament.t list) = ]) ;; +let match_details_page _ = + let open Tyxml.Html in + html + (my_head "index") + (body [ + my_header () ; + main [ + box + [ ] + ]; + footer [] + ] + ) +;; + let tournament_page (tournament: Lib.Tournament.t) (tables: Lib.table list) = let open Tyxml.Html in let my_table (t: Lib.table) = let attr = - [a_style "border-collapse: collapse; border: 1px solid black; height: min-content"; + [a_style "border-collapse: collapse; border: 1px solid black; height: min-content;"; a_class ["standing"]] in let tab = @@ -354,7 +395,7 @@ let tournament_page (tournament: Lib.Tournament.t) (tables: Lib.table list) = td ~a:attr [txt @@ string_of_int position] ; td ~a:attr [ div ~a:[a_style "display: flex; justify-content: space-between;"] @@ - (div [ txt @@ team.name ]) :: match is_playing with + (div ~a:[a_style "text-wrap: nowrap"] [ txt @@ team.name ]) :: match is_playing with | None -> [] | Some (is_home, score) -> [ let style = @@ -414,7 +455,7 @@ let tournament_page (tournament: Lib.Tournament.t) (tables: Lib.table list) = ) in div [ - h3 ~a:[a_style "margin-bottom: var(--main-margin)"] [txt t.name] ; + h3 ~a:[a_style "margin-bottom: var(--main-margin); text-wrap: nowrap;"] [txt t.name] ; tab ; ] in @@ -423,9 +464,11 @@ let tournament_page (tournament: Lib.Tournament.t) (tables: Lib.table list) = (body [ my_header () ; main [ - box [h3 [txt tournament.context.name]] ; - box ~style:"display: flex; flex-direction: row; gap: calc(var(--main-margin) * 2)" @@ - List.map my_table tables + box + [ + h3 ~a:[] [txt @@ sprintf "%s %s" tournament.context.emoji tournament.context.name]; + div (List.rev @@ List.map my_table tables) + ] ]; footer [] ] @@ -443,6 +486,11 @@ Lwt_main.run begin let* data = Lib.fetch_all_tournaments context in Dream.html @@ html_to_string @@ greet data end ; + Dream.get "/match/:id" begin fun request -> + let id' = int_of_string @@ Dream.param request "id" in + let* data = Lib.fetch_match_details id' in + Dream.html @@ html_to_string @@ match_details_page data + end ; Dream.get "/tournament/:id" begin fun request -> let id' = int_of_string @@ Dream.param request "id" in let ctx = From bb4cf6a9c6a5818c73da5400749e0562d99137b1 Mon Sep 17 00:00:00 2001 From: silva guimaraes Date: Fri, 8 Aug 2025 16:45:51 -0300 Subject: [PATCH 08/10] commit --- .ocamlinit | 1 + Dockerfile | 1 + README.md | 6 + changelog.txt | 24 + foo.json | 14507 ++++++++++++++++++++++++++++++++++++++++++++++++ lib/foobar.ml | 46 + 6 files changed, 14585 insertions(+) create mode 100644 .ocamlinit create mode 100644 Dockerfile create mode 100644 README.md create mode 100644 changelog.txt create mode 100644 foo.json create mode 100644 lib/foobar.ml diff --git a/.ocamlinit b/.ocamlinit new file mode 100644 index 0000000..cc14f36 --- /dev/null +++ b/.ocamlinit @@ -0,0 +1 @@ +open Lwt.Infix diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5f11a5b --- /dev/null +++ b/Dockerfile @@ -0,0 +1 @@ +FROM ocaml/opam:debian diff --git a/README.md b/README.md new file mode 100644 index 0000000..7cdba71 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ + +# TODO + +- [ ] (2025-07-16) Lista de eventos com todos os gols por timestamp do dia. +- [ ] (2025-07-16) Tabelas de classificaΓ§Γ£o. +- [ ] (2025-07-16) AtualizaΓ§Γ£o em tempo real. diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 0000000..b7a088e --- /dev/null +++ b/changelog.txt @@ -0,0 +1,24 @@ +##### changelog: +2024-06-14 - rentry page initial release. +2024-06-16 - included ecuador as a conmebol country. + - fix formatting issues when there are no matches or all matches are concluded at a day. +2024-06-17 - added copa america. +2024-06-19 - added stats. + - added flag frequency counter. +2024-06-20 - tracking of multiple threads for stats. + - added posts per hour counter. +2024-06-21 - whitelist concacaf countries in copa america. +2024-08-?? - remove stats. +2025-01-06 - temporary script sunset. +2025-03-26 - update hardcoded queries. revives the script. + - mitigate the views counter inflation with a third-party counter. +2025-04-06 - reorder copa chile. +2025-06-04 - second attempt at reviving the script. +2025-06-07 - added copa colombia. +2025-06-14 - added club world cup filtering foreign clubs. +2025-06-27 - rewrite the script in ocaml. +2025-07-04 - updated PRY1. +2025-07-09 - added copa nordeste. +2025-07-11 - updated ARG1 and COL1. +2025-07-12 - use short team names. + diff --git a/foo.json b/foo.json new file mode 100644 index 0000000..a927133 --- /dev/null +++ b/foo.json @@ -0,0 +1,14507 @@ +{ + "tournamentTeamEvents": { + "83": { + "2020": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "ZOsvP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Fortaleza", + "slug": "fortaleza", + "shortName": "Fortaleza", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 186811, + "nameCode": "FOR", + "disabled": false, + "national": false, + "type": 0, + "id": 2020, + "teamColors": { + "primary": "#0000ff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", + "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" + } + } + }, + "awayTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 2, + "period2": 1, + "normaltime": 3 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472873, + "slug": "fortaleza-red-bull-bragantino", + "startTimestamp": 1753565400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "fOsvP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Fortaleza", + "slug": "fortaleza", + "shortName": "Fortaleza", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 186811, + "nameCode": "FOR", + "disabled": false, + "national": false, + "type": 0, + "id": 2020, + "teamColors": { + "primary": "#0000ff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", + "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" + } + } + }, + "awayTeam": { + "name": "Bahia", + "slug": "bahia", + "shortName": "Bahia", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 227979, + "nameCode": "BAH", + "disabled": false, + "national": false, + "type": 0, + "id": 1955, + "teamColors": { + "primary": "#ffffff", + "secondary": "#333399", + "text": "#333399" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627", + "ru": "\u0411\u0430\u0438\u044f" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472853, + "slug": "fortaleza-bahia", + "startTimestamp": 1752951600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "bPsvP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Fortaleza", + "slug": "fortaleza", + "shortName": "Fortaleza", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 186811, + "nameCode": "FOR", + "disabled": false, + "national": false, + "type": 0, + "id": 2020, + "teamColors": { + "primary": "#0000ff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", + "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" + } + } + }, + "awayTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472790, + "slug": "fortaleza-ceara", + "startTimestamp": 1752449400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "tOsvP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Fortaleza", + "slug": "fortaleza", + "shortName": "Fortaleza", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 186811, + "nameCode": "FOR", + "disabled": false, + "national": false, + "type": 0, + "id": 2020, + "teamColors": { + "primary": "#0000ff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", + "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" + } + } + }, + "awayTeam": { + "name": "Santos", + "slug": "santos", + "shortName": "Santos", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 424579, + "nameCode": "SAN", + "disabled": false, + "national": false, + "type": 0, + "id": 1968, + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", + "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 3, + "display": 3, + "period1": 2, + "period2": 1, + "normaltime": 3 + }, + "hasXg": true, + "id": 13472750, + "slug": "fortaleza-santos", + "startTimestamp": 1749767400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "vPsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Fortaleza", + "slug": "fortaleza", + "shortName": "Fortaleza", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 186811, + "nameCode": "FOR", + "disabled": false, + "national": false, + "type": 0, + "id": 2020, + "teamColors": { + "primary": "#0000ff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", + "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" + } + } + }, + "homeScore": { + "current": 5, + "display": 5, + "period1": 1, + "period2": 4, + "normaltime": 5 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472675, + "slug": "flamengo-fortaleza", + "startTimestamp": 1748813400, + "finalResultOnly": false + }], + "1999": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "ZOsvP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Fortaleza", + "slug": "fortaleza", + "shortName": "Fortaleza", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 186811, + "nameCode": "FOR", + "disabled": false, + "national": false, + "type": 0, + "id": 2020, + "teamColors": { + "primary": "#0000ff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", + "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" + } + } + }, + "awayTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 2, + "period2": 1, + "normaltime": 3 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472873, + "slug": "fortaleza-red-bull-bragantino", + "startTimestamp": 1753565400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "ZOsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "awayTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472859, + "slug": "flamengo-red-bull-bragantino", + "startTimestamp": 1753317000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "mOsZO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "awayTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472852, + "slug": "red-bull-bragantino-vitoria", + "startTimestamp": 1753038000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "GOsZO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "awayTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472815, + "slug": "red-bull-bragantino-sao-paulo", + "startTimestamp": 1752712200, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "hOsZO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "awayTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472766, + "slug": "red-bull-bragantino-corinthians", + "startTimestamp": 1752444000, + "finalResultOnly": false + }], + "1958": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "hOsiO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 346727, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472866, + "slug": "botafogo-corinthians", + "startTimestamp": 1753565400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "iOsjO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Sport Recife", + "slug": "sport-recife", + "shortName": "Sport", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 109573, + "nameCode": "SRE", + "disabled": false, + "national": false, + "type": 0, + "id": 1959, + "teamColors": { + "primary": "#cc0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", + "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" + }, + "shortNameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a" + } + } + }, + "awayTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 346727, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472854, + "slug": "sport-recife-botafogo", + "startTimestamp": 1753043400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "iOsmO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 346727, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472803, + "slug": "vitoria-botafogo", + "startTimestamp": 1752712200, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "iOszO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Vasco da Gama", + "slug": "vasco-da-gama", + "shortName": "Vasco", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 325188, + "nameCode": "VDG", + "disabled": false, + "national": false, + "type": 0, + "id": 1974, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", + "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648" + } + } + }, + "awayTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 346727, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472762, + "slug": "vasco-da-gama-botafogo", + "startTimestamp": 1752355800, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "iOsbP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 346727, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 1, + "period2": 2, + "normaltime": 3 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13788130, + "slug": "ceara-botafogo", + "startTimestamp": 1749078000, + "finalResultOnly": false + }], + "1957": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "hOsiO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 346727, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472866, + "slug": "botafogo-corinthians", + "startTimestamp": 1753565400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "eOshO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "awayTeam": { + "name": "Cruzeiro", + "slug": "cruzeiro", + "shortName": "Cruzeiro", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 272192, + "nameCode": "CRU", + "disabled": false, + "national": false, + "type": 0, + "id": 1954, + "teamColors": { + "primary": "#0033cc", + "secondary": "#0033cc", + "text": "#0033cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", + "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472857, + "slug": "corinthians-cruzeiro", + "startTimestamp": 1753309800, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "hOsGO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "awayTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472845, + "slug": "sao-paulo-corinthians", + "startTimestamp": 1752969600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "hOsbP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "awayTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472829, + "slug": "ceara-corinthians", + "startTimestamp": 1752705000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "hOsZO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "awayTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472766, + "slug": "red-bull-bragantino-corinthians", + "startTimestamp": 1752444000, + "finalResultOnly": false + }], + "1959": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "jOstO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Sport Recife", + "slug": "sport-recife", + "shortName": "Sport", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 109573, + "nameCode": "SRE", + "disabled": false, + "national": false, + "type": 0, + "id": 1959, + "teamColors": { + "primary": "#cc0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", + "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" + }, + "shortNameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a" + } + } + }, + "awayTeam": { + "name": "Santos", + "slug": "santos", + "shortName": "Santos", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 424579, + "nameCode": "SAN", + "disabled": false, + "national": false, + "type": 0, + "id": 1968, + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", + "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472874, + "slug": "santos-sport-recife", + "startTimestamp": 1753565400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "jOsmO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "awayTeam": { + "name": "Sport Recife", + "slug": "sport-recife", + "shortName": "Sport", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 109573, + "nameCode": "SRE", + "disabled": false, + "national": false, + "type": 0, + "id": 1959, + "teamColors": { + "primary": "#cc0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", + "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" + }, + "shortNameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472862, + "slug": "vitoria-sport-recife", + "startTimestamp": 1753317000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "iOsjO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Sport Recife", + "slug": "sport-recife", + "shortName": "Sport", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 109573, + "nameCode": "SRE", + "disabled": false, + "national": false, + "type": 0, + "id": 1959, + "teamColors": { + "primary": "#cc0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", + "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" + }, + "shortNameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a" + } + } + }, + "awayTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 346727, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472854, + "slug": "sport-recife-botafogo", + "startTimestamp": 1753043400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "jOsFO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Juventude", + "slug": "juventude", + "shortName": "Juventude", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 72882, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 1980, + "teamColors": { + "primary": "#006600", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + }, + "shortNameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + } + } + }, + "awayTeam": { + "name": "Sport Recife", + "slug": "sport-recife", + "shortName": "Sport", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 109573, + "nameCode": "SRE", + "disabled": false, + "national": false, + "type": 0, + "id": 1959, + "teamColors": { + "primary": "#cc0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", + "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" + }, + "shortNameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472794, + "slug": "juventude-sport-recife", + "startTimestamp": 1752534000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "jOsHOi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Mirassol", + "slug": "mirassol", + "shortName": "Mirassol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 40541, + "nameCode": "MIR", + "disabled": false, + "national": false, + "type": 0, + "id": 21982, + "teamColors": { + "primary": "#e8c728", + "secondary": "#174c30", + "text": "#174c30" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + }, + "shortNameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + } + } + }, + "awayTeam": { + "name": "Sport Recife", + "slug": "sport-recife", + "shortName": "Sport", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 109573, + "nameCode": "SRE", + "disabled": false, + "national": false, + "type": 0, + "id": 1959, + "teamColors": { + "primary": "#cc0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", + "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" + }, + "shortNameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472692, + "slug": "mirassol-sport-recife", + "startTimestamp": 1748786400, + "finalResultOnly": false + }], + "1968": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "jOstO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Sport Recife", + "slug": "sport-recife", + "shortName": "Sport", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 109573, + "nameCode": "SRE", + "disabled": false, + "national": false, + "type": 0, + "id": 1959, + "teamColors": { + "primary": "#cc0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", + "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" + }, + "shortNameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a" + } + } + }, + "awayTeam": { + "name": "Santos", + "slug": "santos", + "shortName": "Santos", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 424579, + "nameCode": "SAN", + "disabled": false, + "national": false, + "type": 0, + "id": 1968, + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", + "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472874, + "slug": "santos-sport-recife", + "startTimestamp": 1753565400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "qOstO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Santos", + "slug": "santos", + "shortName": "Santos", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 424579, + "nameCode": "SAN", + "disabled": false, + "national": false, + "type": 0, + "id": 1968, + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", + "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" + } + } + }, + "awayTeam": { + "name": "Internacional", + "slug": "internacional", + "shortName": "Internacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 230209, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 1966, + "teamColors": { + "primary": "#cc0000", + "secondary": "#cc0000", + "text": "#cc0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", + "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" + }, + "shortNameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472858, + "slug": "santos-internacional", + "startTimestamp": 1753317000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "tOsHOi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Mirassol", + "slug": "mirassol", + "shortName": "Mirassol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 40541, + "nameCode": "MIR", + "disabled": false, + "national": false, + "type": 0, + "id": 21982, + "teamColors": { + "primary": "#e8c728", + "secondary": "#174c30", + "text": "#174c30" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + }, + "shortNameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + } + } + }, + "awayTeam": { + "name": "Santos", + "slug": "santos", + "shortName": "Santos", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 424579, + "nameCode": "SAN", + "disabled": false, + "national": false, + "type": 0, + "id": 1968, + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", + "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" + } + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 0, + "period2": 3, + "normaltime": 3 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472848, + "slug": "mirassol-santos", + "startTimestamp": 1752960600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "tOsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Santos", + "slug": "santos", + "shortName": "Santos", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 424579, + "nameCode": "SAN", + "disabled": false, + "national": false, + "type": 0, + "id": 1968, + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", + "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" + } + } + }, + "awayTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472811, + "slug": "flamengo-santos", + "startTimestamp": 1752706800, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "tOsvP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Fortaleza", + "slug": "fortaleza", + "shortName": "Fortaleza", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 186811, + "nameCode": "FOR", + "disabled": false, + "national": false, + "type": 0, + "id": 2020, + "teamColors": { + "primary": "#0000ff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", + "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" + } + } + }, + "awayTeam": { + "name": "Santos", + "slug": "santos", + "shortName": "Santos", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 424579, + "nameCode": "SAN", + "disabled": false, + "national": false, + "type": 0, + "id": 1968, + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", + "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 3, + "display": 3, + "period1": 2, + "period2": 1, + "normaltime": 3 + }, + "hasXg": true, + "id": 13472750, + "slug": "fortaleza-santos", + "startTimestamp": 1749767400, + "finalResultOnly": false + }], + "21982": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "mOsHOi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Mirassol", + "slug": "mirassol", + "shortName": "Mirassol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 40541, + "nameCode": "MIR", + "disabled": false, + "national": false, + "type": 0, + "id": 21982, + "teamColors": { + "primary": "#e8c728", + "secondary": "#174c30", + "text": "#174c30" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + }, + "shortNameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + } + } + }, + "awayTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472869, + "slug": "mirassol-vitoria", + "startTimestamp": 1753565400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "bPsHOi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "awayTeam": { + "name": "Mirassol", + "slug": "mirassol", + "shortName": "Mirassol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 40541, + "nameCode": "MIR", + "disabled": false, + "national": false, + "type": 0, + "id": 21982, + "teamColors": { + "primary": "#e8c728", + "secondary": "#174c30", + "text": "#174c30" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + }, + "shortNameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472863, + "slug": "mirassol-ceara", + "startTimestamp": 1753308000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "tOsHOi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Mirassol", + "slug": "mirassol", + "shortName": "Mirassol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 40541, + "nameCode": "MIR", + "disabled": false, + "national": false, + "type": 0, + "id": 21982, + "teamColors": { + "primary": "#e8c728", + "secondary": "#174c30", + "text": "#174c30" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + }, + "shortNameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + } + } + }, + "awayTeam": { + "name": "Santos", + "slug": "santos", + "shortName": "Santos", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 424579, + "nameCode": "SAN", + "disabled": false, + "national": false, + "type": 0, + "id": 1968, + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", + "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" + } + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 0, + "period2": 3, + "normaltime": 3 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472848, + "slug": "mirassol-santos", + "startTimestamp": 1752960600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "nOsHOi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 602881, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" + } + } + }, + "awayTeam": { + "name": "Mirassol", + "slug": "mirassol", + "shortName": "Mirassol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 40541, + "nameCode": "MIR", + "disabled": false, + "national": false, + "type": 0, + "id": 21982, + "teamColors": { + "primary": "#e8c728", + "secondary": "#174c30", + "text": "#174c30" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + }, + "shortNameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472807, + "slug": "mirassol-palmeiras", + "startTimestamp": 1752703200, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "jOsHOi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Mirassol", + "slug": "mirassol", + "shortName": "Mirassol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 40541, + "nameCode": "MIR", + "disabled": false, + "national": false, + "type": 0, + "id": 21982, + "teamColors": { + "primary": "#e8c728", + "secondary": "#174c30", + "text": "#174c30" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + }, + "shortNameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + } + } + }, + "awayTeam": { + "name": "Sport Recife", + "slug": "sport-recife", + "shortName": "Sport", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 109573, + "nameCode": "SRE", + "disabled": false, + "national": false, + "type": 0, + "id": 1959, + "teamColors": { + "primary": "#cc0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", + "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" + }, + "shortNameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472692, + "slug": "mirassol-sport-recife", + "startTimestamp": 1748786400, + "finalResultOnly": false + }], + "1962": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "mOsHOi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Mirassol", + "slug": "mirassol", + "shortName": "Mirassol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 40541, + "nameCode": "MIR", + "disabled": false, + "national": false, + "type": 0, + "id": 21982, + "teamColors": { + "primary": "#e8c728", + "secondary": "#174c30", + "text": "#174c30" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + }, + "shortNameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + } + } + }, + "awayTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472869, + "slug": "mirassol-vitoria", + "startTimestamp": 1753565400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "jOsmO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "awayTeam": { + "name": "Sport Recife", + "slug": "sport-recife", + "shortName": "Sport", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 109573, + "nameCode": "SRE", + "disabled": false, + "national": false, + "type": 0, + "id": 1959, + "teamColors": { + "primary": "#cc0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", + "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" + }, + "shortNameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472862, + "slug": "vitoria-sport-recife", + "startTimestamp": 1753317000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "mOsZO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "awayTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472852, + "slug": "red-bull-bragantino-vitoria", + "startTimestamp": 1753038000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "iOsmO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 346727, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472803, + "slug": "vitoria-botafogo", + "startTimestamp": 1752712200, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "mOsqO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Internacional", + "slug": "internacional", + "shortName": "Internacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 230209, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 1966, + "teamColors": { + "primary": "#cc0000", + "secondary": "#cc0000", + "text": "#cc0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", + "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" + }, + "shortNameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" + } + } + }, + "awayTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472782, + "slug": "internacional-vitoria", + "startTimestamp": 1752348600, + "finalResultOnly": false + }], + "1980": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "FOsGO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Juventude", + "slug": "juventude", + "shortName": "Juventude", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 72882, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 1980, + "teamColors": { + "primary": "#006600", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + }, + "shortNameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + } + } + }, + "awayTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472864, + "slug": "sao-paulo-juventude", + "startTimestamp": 1753394400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "eOsFO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Cruzeiro", + "slug": "cruzeiro", + "shortName": "Cruzeiro", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 272192, + "nameCode": "CRU", + "disabled": false, + "national": false, + "type": 0, + "id": 1954, + "teamColors": { + "primary": "#0033cc", + "secondary": "#0033cc", + "text": "#0033cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", + "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" + } + } + }, + "awayTeam": { + "name": "Juventude", + "slug": "juventude", + "shortName": "Juventude", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 72882, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 1980, + "teamColors": { + "primary": "#006600", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + }, + "shortNameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + } + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 1, + "period2": 3, + "normaltime": 4 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472850, + "slug": "juventude-cruzeiro", + "startTimestamp": 1753038000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "jOsFO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Juventude", + "slug": "juventude", + "shortName": "Juventude", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 72882, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 1980, + "teamColors": { + "primary": "#006600", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + }, + "shortNameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + } + } + }, + "awayTeam": { + "name": "Sport Recife", + "slug": "sport-recife", + "shortName": "Sport", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 109573, + "nameCode": "SRE", + "disabled": false, + "national": false, + "type": 0, + "id": 1959, + "teamColors": { + "primary": "#cc0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", + "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" + }, + "shortNameTranslation": { + "ar": "\u0633\u0628\u0648\u0631\u062a" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472794, + "slug": "juventude-sport-recife", + "startTimestamp": 1752534000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "FOsBtc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Juventude", + "slug": "juventude", + "shortName": "Juventude", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 72882, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 1980, + "teamColors": { + "primary": "#006600", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + }, + "shortNameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + } + } + }, + "awayTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 259586, + "nameCode": "GRM", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472712, + "slug": "gremio-juventude", + "startTimestamp": 1748804400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "FOsZO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "awayTeam": { + "name": "Juventude", + "slug": "juventude", + "shortName": "Juventude", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 72882, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 1980, + "teamColors": { + "primary": "#006600", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + }, + "shortNameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13473432, + "slug": "red-bull-bragantino-juventude", + "startTimestamp": 1748300400, + "finalResultOnly": false + }], + "1981": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "FOsGO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Juventude", + "slug": "juventude", + "shortName": "Juventude", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 72882, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 1980, + "teamColors": { + "primary": "#006600", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + }, + "shortNameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + } + } + }, + "awayTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472864, + "slug": "sao-paulo-juventude", + "startTimestamp": 1753394400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "hOsGO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "awayTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472845, + "slug": "sao-paulo-corinthians", + "startTimestamp": 1752969600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "GOsZO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "awayTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472815, + "slug": "red-bull-bragantino-sao-paulo", + "startTimestamp": 1752712200, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "GOsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472758, + "slug": "flamengo-sao-paulo", + "startTimestamp": 1752348600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "zOsGO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "awayTeam": { + "name": "Vasco da Gama", + "slug": "vasco-da-gama", + "shortName": "Vasco", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 325188, + "nameCode": "VDG", + "disabled": false, + "national": false, + "type": 0, + "id": 1974, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", + "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 3, + "display": 3, + "period1": 2, + "period2": 1, + "normaltime": 3 + }, + "hasXg": true, + "id": 13472729, + "slug": "sao-paulo-vasco-da-gama", + "startTimestamp": 1749774600, + "finalResultOnly": false + }], + "1966": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "qOstO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Santos", + "slug": "santos", + "shortName": "Santos", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 424579, + "nameCode": "SAN", + "disabled": false, + "national": false, + "type": 0, + "id": 1968, + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", + "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" + } + } + }, + "awayTeam": { + "name": "Internacional", + "slug": "internacional", + "shortName": "Internacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 230209, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 1966, + "teamColors": { + "primary": "#cc0000", + "secondary": "#cc0000", + "text": "#cc0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", + "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" + }, + "shortNameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472858, + "slug": "santos-internacional", + "startTimestamp": 1753317000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "qOsbP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Internacional", + "slug": "internacional", + "shortName": "Internacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 230209, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 1966, + "teamColors": { + "primary": "#cc0000", + "secondary": "#cc0000", + "text": "#cc0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", + "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" + }, + "shortNameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" + } + } + }, + "awayTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472851, + "slug": "ceara-internacional", + "startTimestamp": 1753020000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "mOsqO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Internacional", + "slug": "internacional", + "shortName": "Internacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 230209, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 1966, + "teamColors": { + "primary": "#cc0000", + "secondary": "#cc0000", + "text": "#cc0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", + "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" + }, + "shortNameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" + } + } + }, + "awayTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472782, + "slug": "internacional-vitoria", + "startTimestamp": 1752348600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "qOsCO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Atl\u00e9tico Mineiro", + "slug": "atletico-mineiro", + "shortName": "Atl\u00e9tico-MG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 283146, + "nameCode": "ATL", + "disabled": false, + "national": false, + "type": 0, + "id": 1977, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" + } + } + }, + "awayTeam": { + "name": "Internacional", + "slug": "internacional", + "shortName": "Internacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 230209, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 1966, + "teamColors": { + "primary": "#cc0000", + "secondary": "#cc0000", + "text": "#cc0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", + "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" + }, + "shortNameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472737, + "slug": "atletico-mineiro-internacional", + "startTimestamp": 1749774600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "lOsqO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Internacional", + "slug": "internacional", + "shortName": "Internacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 230209, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 1966, + "teamColors": { + "primary": "#cc0000", + "secondary": "#cc0000", + "text": "#cc0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", + "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" + }, + "shortNameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" + } + } + }, + "awayTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 373847, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472700, + "slug": "internacional-fluminense", + "startTimestamp": 1748820600, + "finalResultOnly": false + }], + "5981": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "ZOsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "awayTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472859, + "slug": "flamengo-red-bull-bragantino", + "startTimestamp": 1753317000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "lOsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 373847, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472836, + "slug": "flamengo-fluminense", + "startTimestamp": 1753050600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "tOsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Santos", + "slug": "santos", + "shortName": "Santos", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 424579, + "nameCode": "SAN", + "disabled": false, + "national": false, + "type": 0, + "id": 1968, + "teamColors": { + "primary": "#ffffff", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", + "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" + } + } + }, + "awayTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472811, + "slug": "flamengo-santos", + "startTimestamp": 1752706800, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "GOsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472758, + "slug": "flamengo-sao-paulo", + "startTimestamp": 1752348600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "vPsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Fortaleza", + "slug": "fortaleza", + "shortName": "Fortaleza", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 186811, + "nameCode": "FOR", + "disabled": false, + "national": false, + "type": 0, + "id": 2020, + "teamColors": { + "primary": "#0000ff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", + "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" + } + } + }, + "homeScore": { + "current": 5, + "display": 5, + "period1": 1, + "period2": 4, + "normaltime": 5 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472675, + "slug": "flamengo-fortaleza", + "startTimestamp": 1748813400, + "finalResultOnly": false + }], + "1954": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "eOshO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "awayTeam": { + "name": "Cruzeiro", + "slug": "cruzeiro", + "shortName": "Cruzeiro", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 272192, + "nameCode": "CRU", + "disabled": false, + "national": false, + "type": 0, + "id": 1954, + "teamColors": { + "primary": "#0033cc", + "secondary": "#0033cc", + "text": "#0033cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", + "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472857, + "slug": "corinthians-cruzeiro", + "startTimestamp": 1753309800, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "eOsFO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Cruzeiro", + "slug": "cruzeiro", + "shortName": "Cruzeiro", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 272192, + "nameCode": "CRU", + "disabled": false, + "national": false, + "type": 0, + "id": 1954, + "teamColors": { + "primary": "#0033cc", + "secondary": "#0033cc", + "text": "#0033cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", + "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" + } + } + }, + "awayTeam": { + "name": "Juventude", + "slug": "juventude", + "shortName": "Juventude", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 72882, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 1980, + "teamColors": { + "primary": "#006600", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + }, + "shortNameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + } + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 1, + "period2": 3, + "normaltime": 4 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472850, + "slug": "juventude-cruzeiro", + "startTimestamp": 1753038000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "eOslO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 373847, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "awayTeam": { + "name": "Cruzeiro", + "slug": "cruzeiro", + "shortName": "Cruzeiro", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 272192, + "nameCode": "CRU", + "disabled": false, + "national": false, + "type": 0, + "id": 1954, + "teamColors": { + "primary": "#0033cc", + "secondary": "#0033cc", + "text": "#0033cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", + "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472798, + "slug": "fluminense-cruzeiro", + "startTimestamp": 1752791400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "eOsBtc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Cruzeiro", + "slug": "cruzeiro", + "shortName": "Cruzeiro", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 272192, + "nameCode": "CRU", + "disabled": false, + "national": false, + "type": 0, + "id": 1954, + "teamColors": { + "primary": "#0033cc", + "secondary": "#0033cc", + "text": "#0033cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", + "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" + } + } + }, + "awayTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 259586, + "nameCode": "GRM", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" + } + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 2, + "period2": 2, + "normaltime": 4 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472778, + "slug": "gremio-cruzeiro", + "startTimestamp": 1752449400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "eOsmO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Vit\u00f3ria", + "slug": "vitoria", + "shortName": "Vit\u00f3ria", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 124462, + "nameCode": "VIT", + "disabled": false, + "national": false, + "type": 0, + "id": 1962, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", + "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" + }, + "shortNameTranslation": { + "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" + } + } + }, + "awayTeam": { + "name": "Cruzeiro", + "slug": "cruzeiro", + "shortName": "Cruzeiro", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 272192, + "nameCode": "CRU", + "disabled": false, + "national": false, + "type": 0, + "id": 1954, + "teamColors": { + "primary": "#0033cc", + "secondary": "#0033cc", + "text": "#0033cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", + "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472746, + "slug": "vitoria-cruzeiro", + "startTimestamp": 1749765600, + "finalResultOnly": false + }], + "1961": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "lOsnO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 373847, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "awayTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 602881, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472855, + "slug": "palmeiras-fluminense", + "startTimestamp": 1753308000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "lOsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 373847, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472836, + "slug": "flamengo-fluminense", + "startTimestamp": 1753050600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "eOslO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 373847, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "awayTeam": { + "name": "Cruzeiro", + "slug": "cruzeiro", + "shortName": "Cruzeiro", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 272192, + "nameCode": "CRU", + "disabled": false, + "national": false, + "type": 0, + "id": 1954, + "teamColors": { + "primary": "#0033cc", + "secondary": "#0033cc", + "text": "#0033cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", + "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472798, + "slug": "fluminense-cruzeiro", + "startTimestamp": 1752791400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "lOsqO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Internacional", + "slug": "internacional", + "shortName": "Internacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 230209, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 1966, + "teamColors": { + "primary": "#cc0000", + "secondary": "#cc0000", + "text": "#cc0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", + "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" + }, + "shortNameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" + } + } + }, + "awayTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 373847, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472700, + "slug": "internacional-fluminense", + "startTimestamp": 1748820600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "lOszO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 373847, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "awayTeam": { + "name": "Vasco da Gama", + "slug": "vasco-da-gama", + "shortName": "Vasco", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 325188, + "nameCode": "VDG", + "disabled": false, + "national": false, + "type": 0, + "id": 1974, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", + "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "hasXg": true, + "id": 13473428, + "slug": "vasco-da-gama-fluminense", + "startTimestamp": 1748122200, + "finalResultOnly": false + }], + "1963": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "lOsnO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 373847, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "awayTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 602881, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472855, + "slug": "palmeiras-fluminense", + "startTimestamp": 1753308000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "nOsCO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 602881, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" + } + } + }, + "awayTeam": { + "name": "Atl\u00e9tico Mineiro", + "slug": "atletico-mineiro", + "shortName": "Atl\u00e9tico-MG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 283146, + "nameCode": "ATL", + "disabled": false, + "national": false, + "type": 0, + "id": 1977, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" + } + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 1, + "period2": 2, + "normaltime": 3 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472842, + "slug": "atletico-mineiro-palmeiras", + "startTimestamp": 1753043400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "nOsHOi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 602881, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" + } + } + }, + "awayTeam": { + "name": "Mirassol", + "slug": "mirassol", + "shortName": "Mirassol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 40541, + "nameCode": "MIR", + "disabled": false, + "national": false, + "type": 0, + "id": 21982, + "teamColors": { + "primary": "#e8c728", + "secondary": "#174c30", + "text": "#174c30" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + }, + "shortNameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472807, + "slug": "mirassol-palmeiras", + "startTimestamp": 1752703200, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "eOsnO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Cruzeiro", + "slug": "cruzeiro", + "shortName": "Cruzeiro", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 272192, + "nameCode": "CRU", + "disabled": false, + "national": false, + "type": 0, + "id": 1954, + "teamColors": { + "primary": "#0033cc", + "secondary": "#0033cc", + "text": "#0033cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", + "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" + } + } + }, + "awayTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 602881, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472696, + "slug": "palmeiras-cruzeiro", + "startTimestamp": 1748817000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "nOsGuc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 602881, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" + } + } + }, + "awayTeam": { + "name": "Flamengo", + "slug": "flamengo", + "shortName": "Flamengo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 882110, + "nameCode": "FLA", + "disabled": false, + "national": false, + "type": 0, + "id": 5981, + "teamColors": { + "primary": "#ff0000", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", + "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13473430, + "slug": "flamengo-palmeiras", + "startTimestamp": 1748199600, + "finalResultOnly": false + }], + "2001": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "bPsHOi", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "awayTeam": { + "name": "Mirassol", + "slug": "mirassol", + "shortName": "Mirassol", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 40541, + "nameCode": "MIR", + "disabled": false, + "national": false, + "type": 0, + "id": 21982, + "teamColors": { + "primary": "#e8c728", + "secondary": "#174c30", + "text": "#174c30" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + }, + "shortNameTranslation": { + "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472863, + "slug": "mirassol-ceara", + "startTimestamp": 1753308000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "qOsbP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Internacional", + "slug": "internacional", + "shortName": "Internacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 230209, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 1966, + "teamColors": { + "primary": "#cc0000", + "secondary": "#cc0000", + "text": "#cc0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", + "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" + }, + "shortNameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" + } + } + }, + "awayTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472851, + "slug": "ceara-internacional", + "startTimestamp": 1753020000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "hOsbP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "awayTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472829, + "slug": "ceara-corinthians", + "startTimestamp": 1752705000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "bPsvP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Fortaleza", + "slug": "fortaleza", + "shortName": "Fortaleza", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 186811, + "nameCode": "FOR", + "disabled": false, + "national": false, + "type": 0, + "id": 2020, + "teamColors": { + "primary": "#0000ff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", + "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" + } + } + }, + "awayTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472790, + "slug": "fortaleza-ceara", + "startTimestamp": 1752449400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "iOsbP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 346727, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "awayTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 1, + "period2": 2, + "normaltime": 3 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13788130, + "slug": "ceara-botafogo", + "startTimestamp": 1749078000, + "finalResultOnly": false + }], + "1977": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "nOsCO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Palmeiras", + "slug": "palmeiras", + "shortName": "Palmeiras", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 602881, + "nameCode": "PAL", + "disabled": false, + "national": false, + "type": 0, + "id": 1963, + "teamColors": { + "primary": "#339966", + "secondary": "#336633", + "text": "#336633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", + "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" + } + } + }, + "awayTeam": { + "name": "Atl\u00e9tico Mineiro", + "slug": "atletico-mineiro", + "shortName": "Atl\u00e9tico-MG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 283146, + "nameCode": "ATL", + "disabled": false, + "national": false, + "type": 0, + "id": 1977, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" + } + } + }, + "homeScore": { + "current": 3, + "display": 3, + "period1": 1, + "period2": 2, + "normaltime": 3 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472842, + "slug": "atletico-mineiro-palmeiras", + "startTimestamp": 1753043400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "fOsCO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Bahia", + "slug": "bahia", + "shortName": "Bahia", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 227979, + "nameCode": "BAH", + "disabled": false, + "national": false, + "type": 0, + "id": 1955, + "teamColors": { + "primary": "#ffffff", + "secondary": "#333399", + "text": "#333399" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627", + "ru": "\u0411\u0430\u0438\u044f" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627" + } + } + }, + "awayTeam": { + "name": "Atl\u00e9tico Mineiro", + "slug": "atletico-mineiro", + "shortName": "Atl\u00e9tico-MG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 283146, + "nameCode": "ATL", + "disabled": false, + "national": false, + "type": 0, + "id": 1977, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472786, + "slug": "atletico-mineiro-bahia", + "startTimestamp": 1752364800, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "qOsCO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Atl\u00e9tico Mineiro", + "slug": "atletico-mineiro", + "shortName": "Atl\u00e9tico-MG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 283146, + "nameCode": "ATL", + "disabled": false, + "national": false, + "type": 0, + "id": 1977, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" + } + } + }, + "awayTeam": { + "name": "Internacional", + "slug": "internacional", + "shortName": "Internacional", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 230209, + "nameCode": "INT", + "disabled": false, + "national": false, + "type": 0, + "id": 1966, + "teamColors": { + "primary": "#cc0000", + "secondary": "#cc0000", + "text": "#cc0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", + "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" + }, + "shortNameTranslation": { + "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13472737, + "slug": "atletico-mineiro-internacional", + "startTimestamp": 1749774600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "COsbP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Cear\u00e1", + "slug": "ceara", + "shortName": "Cear\u00e1", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 92947, + "nameCode": "CEA", + "disabled": false, + "national": false, + "type": 0, + "id": 2001, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627", + "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" + }, + "shortNameTranslation": { + "ar": "\u0633\u064a\u0627\u0631\u0627" + } + } + }, + "awayTeam": { + "name": "Atl\u00e9tico Mineiro", + "slug": "atletico-mineiro", + "shortName": "Atl\u00e9tico-MG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 283146, + "nameCode": "ATL", + "disabled": false, + "national": false, + "type": 0, + "id": 1977, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472708, + "slug": "ceara-atletico-mineiro", + "startTimestamp": 1748813400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "hOsCO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Atl\u00e9tico Mineiro", + "slug": "atletico-mineiro", + "shortName": "Atl\u00e9tico-MG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 283146, + "nameCode": "ATL", + "disabled": false, + "national": false, + "type": 0, + "id": 1977, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" + } + } + }, + "awayTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13473434, + "slug": "atletico-mineiro-corinthians", + "startTimestamp": 1748131200, + "finalResultOnly": false + }], + "1974": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "zOsBtc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Vasco da Gama", + "slug": "vasco-da-gama", + "shortName": "Vasco", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 325188, + "nameCode": "VDG", + "disabled": false, + "national": false, + "type": 0, + "id": 1974, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", + "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648" + } + } + }, + "awayTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 259586, + "nameCode": "GRM", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472839, + "slug": "gremio-vasco-da-gama", + "startTimestamp": 1752957000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "iOszO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Vasco da Gama", + "slug": "vasco-da-gama", + "shortName": "Vasco", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 325188, + "nameCode": "VDG", + "disabled": false, + "national": false, + "type": 0, + "id": 1974, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", + "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648" + } + } + }, + "awayTeam": { + "name": "Botafogo", + "slug": "botafogo", + "shortName": "Botafogo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 346727, + "nameCode": "BOT", + "disabled": false, + "national": false, + "type": 0, + "id": 1958, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", + "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" + }, + "shortNameTranslation": { + "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472762, + "slug": "vasco-da-gama-botafogo", + "startTimestamp": 1752355800, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "zOsGO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "awayTeam": { + "name": "Vasco da Gama", + "slug": "vasco-da-gama", + "shortName": "Vasco", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 325188, + "nameCode": "VDG", + "disabled": false, + "national": false, + "type": 0, + "id": 1974, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", + "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 3, + "display": 3, + "period1": 2, + "period2": 1, + "normaltime": 3 + }, + "hasXg": true, + "id": 13472729, + "slug": "sao-paulo-vasco-da-gama", + "startTimestamp": 1749774600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "zOsZO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Vasco da Gama", + "slug": "vasco-da-gama", + "shortName": "Vasco", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 325188, + "nameCode": "VDG", + "disabled": false, + "national": false, + "type": 0, + "id": 1974, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", + "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648" + } + } + }, + "awayTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472680, + "slug": "red-bull-bragantino-vasco-da-gama", + "startTimestamp": 1748736000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "lOszO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Fluminense", + "slug": "fluminense", + "shortName": "Fluminense", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 373847, + "nameCode": "FLU", + "disabled": false, + "national": false, + "type": 0, + "id": 1961, + "teamColors": { + "primary": "#660000", + "secondary": "#006633", + "text": "#006633" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", + "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" + }, + "shortNameTranslation": { + "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" + } + } + }, + "awayTeam": { + "name": "Vasco da Gama", + "slug": "vasco-da-gama", + "shortName": "Vasco", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 325188, + "nameCode": "VDG", + "disabled": false, + "national": false, + "type": 0, + "id": 1974, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", + "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 1, + "period2": 1, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "hasXg": true, + "id": 13473428, + "slug": "vasco-da-gama-fluminense", + "startTimestamp": 1748122200, + "finalResultOnly": false + }], + "5926": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "zOsBtc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Vasco da Gama", + "slug": "vasco-da-gama", + "shortName": "Vasco", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 325188, + "nameCode": "VDG", + "disabled": false, + "national": false, + "type": 0, + "id": 1974, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", + "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0627\u0633\u0643\u0648" + } + } + }, + "awayTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 259586, + "nameCode": "GRM", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472839, + "slug": "gremio-vasco-da-gama", + "startTimestamp": 1752957000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "eOsBtc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Cruzeiro", + "slug": "cruzeiro", + "shortName": "Cruzeiro", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 272192, + "nameCode": "CRU", + "disabled": false, + "national": false, + "type": 0, + "id": 1954, + "teamColors": { + "primary": "#0033cc", + "secondary": "#0033cc", + "text": "#0033cc" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", + "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" + } + } + }, + "awayTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 259586, + "nameCode": "GRM", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" + } + } + }, + "homeScore": { + "current": 4, + "display": 4, + "period1": 2, + "period2": 2, + "normaltime": 4 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472778, + "slug": "gremio-cruzeiro", + "startTimestamp": 1752449400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "hOsBtc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 259586, + "nameCode": "GRM", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" + } + } + }, + "awayTeam": { + "name": "Corinthians", + "slug": "corinthians", + "shortName": "Corinthians", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 578052, + "nameCode": "COR", + "disabled": false, + "national": false, + "type": 0, + "id": 1957, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", + "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" + }, + "shortNameTranslation": { + "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472741, + "slug": "gremio-corinthians", + "startTimestamp": 1749769200, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "FOsBtc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Juventude", + "slug": "juventude", + "shortName": "Juventude", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 72882, + "nameCode": "JUV", + "disabled": false, + "national": false, + "type": 0, + "id": 1980, + "teamColors": { + "primary": "#006600", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + }, + "shortNameTranslation": { + "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" + } + } + }, + "awayTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 259586, + "nameCode": "GRM", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 2, + "display": 2, + "period1": 2, + "period2": 0, + "normaltime": 2 + }, + "hasXg": true, + "id": 13472712, + "slug": "gremio-juventude", + "startTimestamp": 1748804400, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "fOsBtc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 259586, + "nameCode": "GRM", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" + } + } + }, + "awayTeam": { + "name": "Bahia", + "slug": "bahia", + "shortName": "Bahia", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 227979, + "nameCode": "BAH", + "disabled": false, + "national": false, + "type": 0, + "id": 1955, + "teamColors": { + "primary": "#ffffff", + "secondary": "#333399", + "text": "#333399" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627", + "ru": "\u0411\u0430\u0438\u044f" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13473435, + "slug": "gremio-bahia", + "startTimestamp": 1748181600, + "finalResultOnly": false + }], + "1955": [{ + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "fOsvP", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 3, + "homeTeam": { + "name": "Fortaleza", + "slug": "fortaleza", + "shortName": "Fortaleza", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 186811, + "nameCode": "FOR", + "disabled": false, + "national": false, + "type": 0, + "id": 2020, + "teamColors": { + "primary": "#0000ff", + "secondary": "#ff0000", + "text": "#ff0000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", + "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" + }, + "shortNameTranslation": { + "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" + } + } + }, + "awayTeam": { + "name": "Bahia", + "slug": "bahia", + "shortName": "Bahia", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 227979, + "nameCode": "BAH", + "disabled": false, + "national": false, + "type": 0, + "id": 1955, + "teamColors": { + "primary": "#ffffff", + "secondary": "#333399", + "text": "#333399" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627", + "ru": "\u0411\u0430\u0438\u044f" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 1, + "period2": 0, + "normaltime": 1 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472853, + "slug": "fortaleza-bahia", + "startTimestamp": 1752951600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "fOsCO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Bahia", + "slug": "bahia", + "shortName": "Bahia", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 227979, + "nameCode": "BAH", + "disabled": false, + "national": false, + "type": 0, + "id": 1955, + "teamColors": { + "primary": "#ffffff", + "secondary": "#333399", + "text": "#333399" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627", + "ru": "\u0411\u0430\u0438\u044f" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627" + } + } + }, + "awayTeam": { + "name": "Atl\u00e9tico Mineiro", + "slug": "atletico-mineiro", + "shortName": "Atl\u00e9tico-MG", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 283146, + "nameCode": "ATL", + "disabled": false, + "national": false, + "type": 0, + "id": 1977, + "teamColors": { + "primary": "#000000", + "secondary": "#ffffff", + "text": "#ffffff" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", + "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" + }, + "shortNameTranslation": { + "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472786, + "slug": "atletico-mineiro-bahia", + "startTimestamp": 1752364800, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "fOsZO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 2, + "homeTeam": { + "name": "Red Bull Bragantino", + "slug": "red-bull-bragantino", + "shortName": "RB Bragantino", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 140241, + "nameCode": "RBB", + "disabled": false, + "national": false, + "type": 0, + "id": 1999, + "teamColors": { + "primary": "#363636", + "secondary": "#d8d8d6", + "text": "#d8d8d6" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", + "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" + }, + "shortNameTranslation": { + "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" + } + } + }, + "awayTeam": { + "name": "Bahia", + "slug": "bahia", + "shortName": "Bahia", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 227979, + "nameCode": "BAH", + "disabled": false, + "national": false, + "type": 0, + "id": 1955, + "teamColors": { + "primary": "#ffffff", + "secondary": "#333399", + "text": "#333399" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627", + "ru": "\u0411\u0430\u0438\u044f" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627" + } + } + }, + "homeScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "awayScore": { + "current": 3, + "display": 3, + "period1": 2, + "period2": 1, + "normaltime": 3 + }, + "hasXg": true, + "id": 13472733, + "slug": "red-bull-bragantino-bahia", + "startTimestamp": 1749765600, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "fOsGO", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Bahia", + "slug": "bahia", + "shortName": "Bahia", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 227979, + "nameCode": "BAH", + "disabled": false, + "national": false, + "type": 0, + "id": 1955, + "teamColors": { + "primary": "#ffffff", + "secondary": "#333399", + "text": "#333399" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627", + "ru": "\u0411\u0430\u0438\u044f" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627" + } + } + }, + "awayTeam": { + "name": "S\u00e3o Paulo", + "slug": "sao-paulo", + "shortName": "S\u00e3o Paulo", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 441269, + "nameCode": "SPA", + "disabled": false, + "national": false, + "type": 0, + "id": 1981, + "teamColors": { + "primary": "#ffffff", + "secondary": "#000000", + "text": "#000000" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", + "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" + }, + "shortNameTranslation": { + "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" + } + } + }, + "homeScore": { + "current": 2, + "display": 2, + "period1": 0, + "period2": 2, + "normaltime": 2 + }, + "awayScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "hasXg": true, + "id": 13472704, + "slug": "sao-paulo-bahia", + "startTimestamp": 1748727000, + "finalResultOnly": false + }, { + "tournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "uniqueTournament": { + "name": "Brasileir\u00e3o Betano", + "slug": "brasileirao-serie-a", + "primaryColorHex": "#C7FF00", + "secondaryColorHex": "#969696", + "category": { + "name": "Brazil", + "slug": "brazil", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "id": 13, + "flag": "brazil", + "alpha2": "BR" + }, + "userCount": 315115, + "id": 325, + "displayInverseHomeAwayTeams": false, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", + "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "priority": 507, + "isLive": false, + "id": 83, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", + "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", + "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" + }, + "shortNameTranslation": {} + } + }, + "customId": "fOsBtc", + "status": { + "code": 100, + "description": "Ended", + "type": "finished" + }, + "winnerCode": 1, + "homeTeam": { + "name": "Gr\u00eamio", + "slug": "gremio", + "shortName": "Gr\u00eamio", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 259586, + "nameCode": "GRM", + "disabled": false, + "national": false, + "type": 0, + "id": 5926, + "teamColors": { + "primary": "#3399ff", + "secondary": "#000033", + "text": "#000033" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", + "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" + }, + "shortNameTranslation": { + "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" + } + } + }, + "awayTeam": { + "name": "Bahia", + "slug": "bahia", + "shortName": "Bahia", + "gender": "M", + "sport": { + "name": "Football", + "slug": "football", + "id": 1 + }, + "userCount": 227979, + "nameCode": "BAH", + "disabled": false, + "national": false, + "type": 0, + "id": 1955, + "teamColors": { + "primary": "#ffffff", + "secondary": "#333399", + "text": "#333399" + }, + "fieldTranslations": { + "nameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627", + "ru": "\u0411\u0430\u0438\u044f" + }, + "shortNameTranslation": { + "ar": "\u0628\u0627\u0647\u064a\u0627" + } + } + }, + "homeScore": { + "current": 1, + "display": 1, + "period1": 0, + "period2": 1, + "normaltime": 1 + }, + "awayScore": { + "current": 0, + "display": 0, + "period1": 0, + "period2": 0, + "normaltime": 0 + }, + "hasXg": true, + "id": 13473435, + "slug": "gremio-bahia", + "startTimestamp": 1748181600, + "finalResultOnly": false + }] + } + } +} \ No newline at end of file diff --git a/lib/foobar.ml b/lib/foobar.ml new file mode 100644 index 0000000..af43965 --- /dev/null +++ b/lib/foobar.ml @@ -0,0 +1,46 @@ +type match' = + string (* home team *) * int (* goal difference *) * string (* away team *) + +let matches = + [ + ("foo", 1, "car"); + ("foo", 0, "bar"); + ("foo", 1, "far"); + ("car", 1, "bar"); + ("foo", ~-1, "bar"); + ("tar", 1, "fir"); + ("bar", 1, "qux"); + ("jor", ~-1, "far"); + ("xir", 1, "kar"); + ("car", ~-1, "qux"); + ("far", 1, "qux"); + ("car", 1, "foo"); + ] + +let way a b = + let rec aux (at : string) (visited : string list) (accum : match' list) = + if at = b then [ List.rev accum ] + else + let matches = + matches |> List.filter (function _, score, _ -> score <> 0) + in + let h = + matches + |> List.filter (function home, score, away -> + score > 0 && home = at && not (List.exists (( = ) away) visited)) + |> List.map (function (_, _, away) as x -> + aux away (at :: visited) (x :: accum)) + |> List.concat + in + let a = + matches + |> List.filter (function home, score, away -> + score < 0 && away = at && not (List.exists (( = ) home) visited)) + |> List.map (function (home, _, _) as x -> + aux home (at :: visited) (x :: accum)) + |> List.concat + in + a @ h + in + aux a [] [] + From c53f7f2a42a4b0827d96276787efae0b44a7d84a Mon Sep 17 00:00:00 2001 From: silva guimaraes Date: Sun, 17 Aug 2025 17:58:38 -0300 Subject: [PATCH 09/10] fix --- lib/lib.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lib.ml b/lib/lib.ml index 83475ba..b81f46e 100644 --- a/lib/lib.ml +++ b/lib/lib.ml @@ -15,7 +15,7 @@ type api_country = { name : string; slug : string; } -[@@deriving yojson, show] +[@@yojson.allow_extra_fields] [@@deriving yojson, show] type api_team_colors = { primary : string; secondary : string; text : string } [@@deriving yojson, show] From 9f964d536fb2d4f47ed7101dcdf93c262b451338 Mon Sep 17 00:00:00 2001 From: silva guimaraes Date: Sun, 17 Aug 2025 18:00:16 -0300 Subject: [PATCH 10/10] fix --- foo.json | 14507 ----------------------------------------------------- 1 file changed, 14507 deletions(-) delete mode 100644 foo.json diff --git a/foo.json b/foo.json deleted file mode 100644 index a927133..0000000 --- a/foo.json +++ /dev/null @@ -1,14507 +0,0 @@ -{ - "tournamentTeamEvents": { - "83": { - "2020": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "ZOsvP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Fortaleza", - "slug": "fortaleza", - "shortName": "Fortaleza", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 186811, - "nameCode": "FOR", - "disabled": false, - "national": false, - "type": 0, - "id": 2020, - "teamColors": { - "primary": "#0000ff", - "secondary": "#ff0000", - "text": "#ff0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", - "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" - } - } - }, - "awayTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "homeScore": { - "current": 3, - "display": 3, - "period1": 2, - "period2": 1, - "normaltime": 3 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472873, - "slug": "fortaleza-red-bull-bragantino", - "startTimestamp": 1753565400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "fOsvP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Fortaleza", - "slug": "fortaleza", - "shortName": "Fortaleza", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 186811, - "nameCode": "FOR", - "disabled": false, - "national": false, - "type": 0, - "id": 2020, - "teamColors": { - "primary": "#0000ff", - "secondary": "#ff0000", - "text": "#ff0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", - "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" - } - } - }, - "awayTeam": { - "name": "Bahia", - "slug": "bahia", - "shortName": "Bahia", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 227979, - "nameCode": "BAH", - "disabled": false, - "national": false, - "type": 0, - "id": 1955, - "teamColors": { - "primary": "#ffffff", - "secondary": "#333399", - "text": "#333399" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627", - "ru": "\u0411\u0430\u0438\u044f" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472853, - "slug": "fortaleza-bahia", - "startTimestamp": 1752951600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "bPsvP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Fortaleza", - "slug": "fortaleza", - "shortName": "Fortaleza", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 186811, - "nameCode": "FOR", - "disabled": false, - "national": false, - "type": 0, - "id": 2020, - "teamColors": { - "primary": "#0000ff", - "secondary": "#ff0000", - "text": "#ff0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", - "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" - } - } - }, - "awayTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472790, - "slug": "fortaleza-ceara", - "startTimestamp": 1752449400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "tOsvP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Fortaleza", - "slug": "fortaleza", - "shortName": "Fortaleza", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 186811, - "nameCode": "FOR", - "disabled": false, - "national": false, - "type": 0, - "id": 2020, - "teamColors": { - "primary": "#0000ff", - "secondary": "#ff0000", - "text": "#ff0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", - "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" - } - } - }, - "awayTeam": { - "name": "Santos", - "slug": "santos", - "shortName": "Santos", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 424579, - "nameCode": "SAN", - "disabled": false, - "national": false, - "type": 0, - "id": 1968, - "teamColors": { - "primary": "#ffffff", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", - "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "awayScore": { - "current": 3, - "display": 3, - "period1": 2, - "period2": 1, - "normaltime": 3 - }, - "hasXg": true, - "id": 13472750, - "slug": "fortaleza-santos", - "startTimestamp": 1749767400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "vPsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "Fortaleza", - "slug": "fortaleza", - "shortName": "Fortaleza", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 186811, - "nameCode": "FOR", - "disabled": false, - "national": false, - "type": 0, - "id": 2020, - "teamColors": { - "primary": "#0000ff", - "secondary": "#ff0000", - "text": "#ff0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", - "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" - } - } - }, - "homeScore": { - "current": 5, - "display": 5, - "period1": 1, - "period2": 4, - "normaltime": 5 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472675, - "slug": "flamengo-fortaleza", - "startTimestamp": 1748813400, - "finalResultOnly": false - }], - "1999": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "ZOsvP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Fortaleza", - "slug": "fortaleza", - "shortName": "Fortaleza", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 186811, - "nameCode": "FOR", - "disabled": false, - "national": false, - "type": 0, - "id": 2020, - "teamColors": { - "primary": "#0000ff", - "secondary": "#ff0000", - "text": "#ff0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", - "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" - } - } - }, - "awayTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "homeScore": { - "current": 3, - "display": 3, - "period1": 2, - "period2": 1, - "normaltime": 3 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472873, - "slug": "fortaleza-red-bull-bragantino", - "startTimestamp": 1753565400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "ZOsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "awayTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472859, - "slug": "flamengo-red-bull-bragantino", - "startTimestamp": 1753317000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "mOsZO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "awayTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472852, - "slug": "red-bull-bragantino-vitoria", - "startTimestamp": 1753038000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "GOsZO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "awayTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472815, - "slug": "red-bull-bragantino-sao-paulo", - "startTimestamp": 1752712200, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "hOsZO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "awayTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472766, - "slug": "red-bull-bragantino-corinthians", - "startTimestamp": 1752444000, - "finalResultOnly": false - }], - "1958": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "hOsiO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Botafogo", - "slug": "botafogo", - "shortName": "Botafogo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 346727, - "nameCode": "BOT", - "disabled": false, - "national": false, - "type": 0, - "id": 1958, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", - "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" - }, - "shortNameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472866, - "slug": "botafogo-corinthians", - "startTimestamp": 1753565400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "iOsjO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Sport Recife", - "slug": "sport-recife", - "shortName": "Sport", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 109573, - "nameCode": "SRE", - "disabled": false, - "national": false, - "type": 0, - "id": 1959, - "teamColors": { - "primary": "#cc0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", - "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" - }, - "shortNameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a" - } - } - }, - "awayTeam": { - "name": "Botafogo", - "slug": "botafogo", - "shortName": "Botafogo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 346727, - "nameCode": "BOT", - "disabled": false, - "national": false, - "type": 0, - "id": 1958, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", - "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" - }, - "shortNameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472854, - "slug": "sport-recife-botafogo", - "startTimestamp": 1753043400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "iOsmO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Botafogo", - "slug": "botafogo", - "shortName": "Botafogo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 346727, - "nameCode": "BOT", - "disabled": false, - "national": false, - "type": 0, - "id": 1958, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", - "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" - }, - "shortNameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472803, - "slug": "vitoria-botafogo", - "startTimestamp": 1752712200, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "iOszO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Vasco da Gama", - "slug": "vasco-da-gama", - "shortName": "Vasco", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 325188, - "nameCode": "VDG", - "disabled": false, - "national": false, - "type": 0, - "id": 1974, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", - "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648" - } - } - }, - "awayTeam": { - "name": "Botafogo", - "slug": "botafogo", - "shortName": "Botafogo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 346727, - "nameCode": "BOT", - "disabled": false, - "national": false, - "type": 0, - "id": 1958, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", - "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" - }, - "shortNameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472762, - "slug": "vasco-da-gama-botafogo", - "startTimestamp": 1752355800, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "iOsbP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Botafogo", - "slug": "botafogo", - "shortName": "Botafogo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 346727, - "nameCode": "BOT", - "disabled": false, - "national": false, - "type": 0, - "id": 1958, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", - "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" - }, - "shortNameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "homeScore": { - "current": 3, - "display": 3, - "period1": 1, - "period2": 2, - "normaltime": 3 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13788130, - "slug": "ceara-botafogo", - "startTimestamp": 1749078000, - "finalResultOnly": false - }], - "1957": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "hOsiO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Botafogo", - "slug": "botafogo", - "shortName": "Botafogo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 346727, - "nameCode": "BOT", - "disabled": false, - "national": false, - "type": 0, - "id": 1958, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", - "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" - }, - "shortNameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472866, - "slug": "botafogo-corinthians", - "startTimestamp": 1753565400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "eOshO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "awayTeam": { - "name": "Cruzeiro", - "slug": "cruzeiro", - "shortName": "Cruzeiro", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 272192, - "nameCode": "CRU", - "disabled": false, - "national": false, - "type": 0, - "id": 1954, - "teamColors": { - "primary": "#0033cc", - "secondary": "#0033cc", - "text": "#0033cc" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", - "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472857, - "slug": "corinthians-cruzeiro", - "startTimestamp": 1753309800, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "hOsGO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "awayTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 2, - "period2": 0, - "normaltime": 2 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472845, - "slug": "sao-paulo-corinthians", - "startTimestamp": 1752969600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "hOsbP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "awayTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472829, - "slug": "ceara-corinthians", - "startTimestamp": 1752705000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "hOsZO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "awayTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472766, - "slug": "red-bull-bragantino-corinthians", - "startTimestamp": 1752444000, - "finalResultOnly": false - }], - "1959": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "jOstO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Sport Recife", - "slug": "sport-recife", - "shortName": "Sport", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 109573, - "nameCode": "SRE", - "disabled": false, - "national": false, - "type": 0, - "id": 1959, - "teamColors": { - "primary": "#cc0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", - "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" - }, - "shortNameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a" - } - } - }, - "awayTeam": { - "name": "Santos", - "slug": "santos", - "shortName": "Santos", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 424579, - "nameCode": "SAN", - "disabled": false, - "national": false, - "type": 0, - "id": 1968, - "teamColors": { - "primary": "#ffffff", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", - "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472874, - "slug": "santos-sport-recife", - "startTimestamp": 1753565400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "jOsmO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "awayTeam": { - "name": "Sport Recife", - "slug": "sport-recife", - "shortName": "Sport", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 109573, - "nameCode": "SRE", - "disabled": false, - "national": false, - "type": 0, - "id": 1959, - "teamColors": { - "primary": "#cc0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", - "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" - }, - "shortNameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472862, - "slug": "vitoria-sport-recife", - "startTimestamp": 1753317000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "iOsjO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Sport Recife", - "slug": "sport-recife", - "shortName": "Sport", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 109573, - "nameCode": "SRE", - "disabled": false, - "national": false, - "type": 0, - "id": 1959, - "teamColors": { - "primary": "#cc0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", - "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" - }, - "shortNameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a" - } - } - }, - "awayTeam": { - "name": "Botafogo", - "slug": "botafogo", - "shortName": "Botafogo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 346727, - "nameCode": "BOT", - "disabled": false, - "national": false, - "type": 0, - "id": 1958, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", - "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" - }, - "shortNameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472854, - "slug": "sport-recife-botafogo", - "startTimestamp": 1753043400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "jOsFO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Juventude", - "slug": "juventude", - "shortName": "Juventude", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 72882, - "nameCode": "JUV", - "disabled": false, - "national": false, - "type": 0, - "id": 1980, - "teamColors": { - "primary": "#006600", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - }, - "shortNameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - } - } - }, - "awayTeam": { - "name": "Sport Recife", - "slug": "sport-recife", - "shortName": "Sport", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 109573, - "nameCode": "SRE", - "disabled": false, - "national": false, - "type": 0, - "id": 1959, - "teamColors": { - "primary": "#cc0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", - "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" - }, - "shortNameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472794, - "slug": "juventude-sport-recife", - "startTimestamp": 1752534000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "jOsHOi", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Mirassol", - "slug": "mirassol", - "shortName": "Mirassol", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 40541, - "nameCode": "MIR", - "disabled": false, - "national": false, - "type": 0, - "id": 21982, - "teamColors": { - "primary": "#e8c728", - "secondary": "#174c30", - "text": "#174c30" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - }, - "shortNameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - } - } - }, - "awayTeam": { - "name": "Sport Recife", - "slug": "sport-recife", - "shortName": "Sport", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 109573, - "nameCode": "SRE", - "disabled": false, - "national": false, - "type": 0, - "id": 1959, - "teamColors": { - "primary": "#cc0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", - "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" - }, - "shortNameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472692, - "slug": "mirassol-sport-recife", - "startTimestamp": 1748786400, - "finalResultOnly": false - }], - "1968": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "jOstO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Sport Recife", - "slug": "sport-recife", - "shortName": "Sport", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 109573, - "nameCode": "SRE", - "disabled": false, - "national": false, - "type": 0, - "id": 1959, - "teamColors": { - "primary": "#cc0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", - "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" - }, - "shortNameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a" - } - } - }, - "awayTeam": { - "name": "Santos", - "slug": "santos", - "shortName": "Santos", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 424579, - "nameCode": "SAN", - "disabled": false, - "national": false, - "type": 0, - "id": 1968, - "teamColors": { - "primary": "#ffffff", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", - "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472874, - "slug": "santos-sport-recife", - "startTimestamp": 1753565400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "qOstO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Santos", - "slug": "santos", - "shortName": "Santos", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 424579, - "nameCode": "SAN", - "disabled": false, - "national": false, - "type": 0, - "id": 1968, - "teamColors": { - "primary": "#ffffff", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", - "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" - } - } - }, - "awayTeam": { - "name": "Internacional", - "slug": "internacional", - "shortName": "Internacional", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 230209, - "nameCode": "INT", - "disabled": false, - "national": false, - "type": 0, - "id": 1966, - "teamColors": { - "primary": "#cc0000", - "secondary": "#cc0000", - "text": "#cc0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", - "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" - }, - "shortNameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472858, - "slug": "santos-internacional", - "startTimestamp": 1753317000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "tOsHOi", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Mirassol", - "slug": "mirassol", - "shortName": "Mirassol", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 40541, - "nameCode": "MIR", - "disabled": false, - "national": false, - "type": 0, - "id": 21982, - "teamColors": { - "primary": "#e8c728", - "secondary": "#174c30", - "text": "#174c30" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - }, - "shortNameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - } - } - }, - "awayTeam": { - "name": "Santos", - "slug": "santos", - "shortName": "Santos", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 424579, - "nameCode": "SAN", - "disabled": false, - "national": false, - "type": 0, - "id": 1968, - "teamColors": { - "primary": "#ffffff", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", - "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" - } - } - }, - "homeScore": { - "current": 3, - "display": 3, - "period1": 0, - "period2": 3, - "normaltime": 3 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472848, - "slug": "mirassol-santos", - "startTimestamp": 1752960600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "tOsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Santos", - "slug": "santos", - "shortName": "Santos", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 424579, - "nameCode": "SAN", - "disabled": false, - "national": false, - "type": 0, - "id": 1968, - "teamColors": { - "primary": "#ffffff", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", - "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" - } - } - }, - "awayTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472811, - "slug": "flamengo-santos", - "startTimestamp": 1752706800, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "tOsvP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Fortaleza", - "slug": "fortaleza", - "shortName": "Fortaleza", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 186811, - "nameCode": "FOR", - "disabled": false, - "national": false, - "type": 0, - "id": 2020, - "teamColors": { - "primary": "#0000ff", - "secondary": "#ff0000", - "text": "#ff0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", - "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" - } - } - }, - "awayTeam": { - "name": "Santos", - "slug": "santos", - "shortName": "Santos", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 424579, - "nameCode": "SAN", - "disabled": false, - "national": false, - "type": 0, - "id": 1968, - "teamColors": { - "primary": "#ffffff", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", - "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "awayScore": { - "current": 3, - "display": 3, - "period1": 2, - "period2": 1, - "normaltime": 3 - }, - "hasXg": true, - "id": 13472750, - "slug": "fortaleza-santos", - "startTimestamp": 1749767400, - "finalResultOnly": false - }], - "21982": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "mOsHOi", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Mirassol", - "slug": "mirassol", - "shortName": "Mirassol", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 40541, - "nameCode": "MIR", - "disabled": false, - "national": false, - "type": 0, - "id": 21982, - "teamColors": { - "primary": "#e8c728", - "secondary": "#174c30", - "text": "#174c30" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - }, - "shortNameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - } - } - }, - "awayTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472869, - "slug": "mirassol-vitoria", - "startTimestamp": 1753565400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "bPsHOi", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "awayTeam": { - "name": "Mirassol", - "slug": "mirassol", - "shortName": "Mirassol", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 40541, - "nameCode": "MIR", - "disabled": false, - "national": false, - "type": 0, - "id": 21982, - "teamColors": { - "primary": "#e8c728", - "secondary": "#174c30", - "text": "#174c30" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - }, - "shortNameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 2, - "period2": 0, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472863, - "slug": "mirassol-ceara", - "startTimestamp": 1753308000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "tOsHOi", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Mirassol", - "slug": "mirassol", - "shortName": "Mirassol", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 40541, - "nameCode": "MIR", - "disabled": false, - "national": false, - "type": 0, - "id": 21982, - "teamColors": { - "primary": "#e8c728", - "secondary": "#174c30", - "text": "#174c30" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - }, - "shortNameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - } - } - }, - "awayTeam": { - "name": "Santos", - "slug": "santos", - "shortName": "Santos", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 424579, - "nameCode": "SAN", - "disabled": false, - "national": false, - "type": 0, - "id": 1968, - "teamColors": { - "primary": "#ffffff", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", - "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" - } - } - }, - "homeScore": { - "current": 3, - "display": 3, - "period1": 0, - "period2": 3, - "normaltime": 3 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472848, - "slug": "mirassol-santos", - "startTimestamp": 1752960600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "nOsHOi", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Palmeiras", - "slug": "palmeiras", - "shortName": "Palmeiras", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 602881, - "nameCode": "PAL", - "disabled": false, - "national": false, - "type": 0, - "id": 1963, - "teamColors": { - "primary": "#339966", - "secondary": "#336633", - "text": "#336633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", - "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" - } - } - }, - "awayTeam": { - "name": "Mirassol", - "slug": "mirassol", - "shortName": "Mirassol", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 40541, - "nameCode": "MIR", - "disabled": false, - "national": false, - "type": 0, - "id": 21982, - "teamColors": { - "primary": "#e8c728", - "secondary": "#174c30", - "text": "#174c30" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - }, - "shortNameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472807, - "slug": "mirassol-palmeiras", - "startTimestamp": 1752703200, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "jOsHOi", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Mirassol", - "slug": "mirassol", - "shortName": "Mirassol", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 40541, - "nameCode": "MIR", - "disabled": false, - "national": false, - "type": 0, - "id": 21982, - "teamColors": { - "primary": "#e8c728", - "secondary": "#174c30", - "text": "#174c30" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - }, - "shortNameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - } - } - }, - "awayTeam": { - "name": "Sport Recife", - "slug": "sport-recife", - "shortName": "Sport", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 109573, - "nameCode": "SRE", - "disabled": false, - "national": false, - "type": 0, - "id": 1959, - "teamColors": { - "primary": "#cc0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", - "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" - }, - "shortNameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472692, - "slug": "mirassol-sport-recife", - "startTimestamp": 1748786400, - "finalResultOnly": false - }], - "1962": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "mOsHOi", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Mirassol", - "slug": "mirassol", - "shortName": "Mirassol", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 40541, - "nameCode": "MIR", - "disabled": false, - "national": false, - "type": 0, - "id": 21982, - "teamColors": { - "primary": "#e8c728", - "secondary": "#174c30", - "text": "#174c30" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - }, - "shortNameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - } - } - }, - "awayTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472869, - "slug": "mirassol-vitoria", - "startTimestamp": 1753565400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "jOsmO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "awayTeam": { - "name": "Sport Recife", - "slug": "sport-recife", - "shortName": "Sport", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 109573, - "nameCode": "SRE", - "disabled": false, - "national": false, - "type": 0, - "id": 1959, - "teamColors": { - "primary": "#cc0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", - "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" - }, - "shortNameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472862, - "slug": "vitoria-sport-recife", - "startTimestamp": 1753317000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "mOsZO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "awayTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472852, - "slug": "red-bull-bragantino-vitoria", - "startTimestamp": 1753038000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "iOsmO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Botafogo", - "slug": "botafogo", - "shortName": "Botafogo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 346727, - "nameCode": "BOT", - "disabled": false, - "national": false, - "type": 0, - "id": 1958, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", - "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" - }, - "shortNameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472803, - "slug": "vitoria-botafogo", - "startTimestamp": 1752712200, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "mOsqO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Internacional", - "slug": "internacional", - "shortName": "Internacional", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 230209, - "nameCode": "INT", - "disabled": false, - "national": false, - "type": 0, - "id": 1966, - "teamColors": { - "primary": "#cc0000", - "secondary": "#cc0000", - "text": "#cc0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", - "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" - }, - "shortNameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" - } - } - }, - "awayTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472782, - "slug": "internacional-vitoria", - "startTimestamp": 1752348600, - "finalResultOnly": false - }], - "1980": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "FOsGO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Juventude", - "slug": "juventude", - "shortName": "Juventude", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 72882, - "nameCode": "JUV", - "disabled": false, - "national": false, - "type": 0, - "id": 1980, - "teamColors": { - "primary": "#006600", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - }, - "shortNameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - } - } - }, - "awayTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472864, - "slug": "sao-paulo-juventude", - "startTimestamp": 1753394400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "eOsFO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Cruzeiro", - "slug": "cruzeiro", - "shortName": "Cruzeiro", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 272192, - "nameCode": "CRU", - "disabled": false, - "national": false, - "type": 0, - "id": 1954, - "teamColors": { - "primary": "#0033cc", - "secondary": "#0033cc", - "text": "#0033cc" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", - "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" - } - } - }, - "awayTeam": { - "name": "Juventude", - "slug": "juventude", - "shortName": "Juventude", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 72882, - "nameCode": "JUV", - "disabled": false, - "national": false, - "type": 0, - "id": 1980, - "teamColors": { - "primary": "#006600", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - }, - "shortNameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - } - } - }, - "homeScore": { - "current": 4, - "display": 4, - "period1": 1, - "period2": 3, - "normaltime": 4 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472850, - "slug": "juventude-cruzeiro", - "startTimestamp": 1753038000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "jOsFO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Juventude", - "slug": "juventude", - "shortName": "Juventude", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 72882, - "nameCode": "JUV", - "disabled": false, - "national": false, - "type": 0, - "id": 1980, - "teamColors": { - "primary": "#006600", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - }, - "shortNameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - } - } - }, - "awayTeam": { - "name": "Sport Recife", - "slug": "sport-recife", - "shortName": "Sport", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 109573, - "nameCode": "SRE", - "disabled": false, - "national": false, - "type": 0, - "id": 1959, - "teamColors": { - "primary": "#cc0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a \u0631\u064a\u0633\u064a\u0641\u064a", - "ru": "\u0421\u043f\u043e\u0440\u0442 \u0420\u0435\u0441\u0438\u0444\u0438" - }, - "shortNameTranslation": { - "ar": "\u0633\u0628\u0648\u0631\u062a" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472794, - "slug": "juventude-sport-recife", - "startTimestamp": 1752534000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "FOsBtc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Juventude", - "slug": "juventude", - "shortName": "Juventude", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 72882, - "nameCode": "JUV", - "disabled": false, - "national": false, - "type": 0, - "id": 1980, - "teamColors": { - "primary": "#006600", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - }, - "shortNameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - } - } - }, - "awayTeam": { - "name": "Gr\u00eamio", - "slug": "gremio", - "shortName": "Gr\u00eamio", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 259586, - "nameCode": "GRM", - "disabled": false, - "national": false, - "type": 0, - "id": 5926, - "teamColors": { - "primary": "#3399ff", - "secondary": "#000033", - "text": "#000033" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", - "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" - }, - "shortNameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 2, - "period2": 0, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472712, - "slug": "gremio-juventude", - "startTimestamp": 1748804400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "FOsZO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "awayTeam": { - "name": "Juventude", - "slug": "juventude", - "shortName": "Juventude", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 72882, - "nameCode": "JUV", - "disabled": false, - "national": false, - "type": 0, - "id": 1980, - "teamColors": { - "primary": "#006600", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - }, - "shortNameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13473432, - "slug": "red-bull-bragantino-juventude", - "startTimestamp": 1748300400, - "finalResultOnly": false - }], - "1981": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "FOsGO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Juventude", - "slug": "juventude", - "shortName": "Juventude", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 72882, - "nameCode": "JUV", - "disabled": false, - "national": false, - "type": 0, - "id": 1980, - "teamColors": { - "primary": "#006600", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - }, - "shortNameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - } - } - }, - "awayTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472864, - "slug": "sao-paulo-juventude", - "startTimestamp": 1753394400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "hOsGO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "awayTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 2, - "period2": 0, - "normaltime": 2 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472845, - "slug": "sao-paulo-corinthians", - "startTimestamp": 1752969600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "GOsZO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "awayTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472815, - "slug": "red-bull-bragantino-sao-paulo", - "startTimestamp": 1752712200, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "GOsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472758, - "slug": "flamengo-sao-paulo", - "startTimestamp": 1752348600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "zOsGO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "awayTeam": { - "name": "Vasco da Gama", - "slug": "vasco-da-gama", - "shortName": "Vasco", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 325188, - "nameCode": "VDG", - "disabled": false, - "national": false, - "type": 0, - "id": 1974, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", - "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 3, - "display": 3, - "period1": 2, - "period2": 1, - "normaltime": 3 - }, - "hasXg": true, - "id": 13472729, - "slug": "sao-paulo-vasco-da-gama", - "startTimestamp": 1749774600, - "finalResultOnly": false - }], - "1966": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "qOstO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Santos", - "slug": "santos", - "shortName": "Santos", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 424579, - "nameCode": "SAN", - "disabled": false, - "national": false, - "type": 0, - "id": 1968, - "teamColors": { - "primary": "#ffffff", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", - "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" - } - } - }, - "awayTeam": { - "name": "Internacional", - "slug": "internacional", - "shortName": "Internacional", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 230209, - "nameCode": "INT", - "disabled": false, - "national": false, - "type": 0, - "id": 1966, - "teamColors": { - "primary": "#cc0000", - "secondary": "#cc0000", - "text": "#cc0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", - "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" - }, - "shortNameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472858, - "slug": "santos-internacional", - "startTimestamp": 1753317000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "qOsbP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Internacional", - "slug": "internacional", - "shortName": "Internacional", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 230209, - "nameCode": "INT", - "disabled": false, - "national": false, - "type": 0, - "id": 1966, - "teamColors": { - "primary": "#cc0000", - "secondary": "#cc0000", - "text": "#cc0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", - "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" - }, - "shortNameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" - } - } - }, - "awayTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472851, - "slug": "ceara-internacional", - "startTimestamp": 1753020000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "mOsqO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Internacional", - "slug": "internacional", - "shortName": "Internacional", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 230209, - "nameCode": "INT", - "disabled": false, - "national": false, - "type": 0, - "id": 1966, - "teamColors": { - "primary": "#cc0000", - "secondary": "#cc0000", - "text": "#cc0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", - "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" - }, - "shortNameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" - } - } - }, - "awayTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472782, - "slug": "internacional-vitoria", - "startTimestamp": 1752348600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "qOsCO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Atl\u00e9tico Mineiro", - "slug": "atletico-mineiro", - "shortName": "Atl\u00e9tico-MG", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 283146, - "nameCode": "ATL", - "disabled": false, - "national": false, - "type": 0, - "id": 1977, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", - "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" - } - } - }, - "awayTeam": { - "name": "Internacional", - "slug": "internacional", - "shortName": "Internacional", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 230209, - "nameCode": "INT", - "disabled": false, - "national": false, - "type": 0, - "id": 1966, - "teamColors": { - "primary": "#cc0000", - "secondary": "#cc0000", - "text": "#cc0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", - "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" - }, - "shortNameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472737, - "slug": "atletico-mineiro-internacional", - "startTimestamp": 1749774600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "lOsqO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Internacional", - "slug": "internacional", - "shortName": "Internacional", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 230209, - "nameCode": "INT", - "disabled": false, - "national": false, - "type": 0, - "id": 1966, - "teamColors": { - "primary": "#cc0000", - "secondary": "#cc0000", - "text": "#cc0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", - "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" - }, - "shortNameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" - } - } - }, - "awayTeam": { - "name": "Fluminense", - "slug": "fluminense", - "shortName": "Fluminense", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 373847, - "nameCode": "FLU", - "disabled": false, - "national": false, - "type": 0, - "id": 1961, - "teamColors": { - "primary": "#660000", - "secondary": "#006633", - "text": "#006633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", - "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472700, - "slug": "internacional-fluminense", - "startTimestamp": 1748820600, - "finalResultOnly": false - }], - "5981": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "ZOsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "awayTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472859, - "slug": "flamengo-red-bull-bragantino", - "startTimestamp": 1753317000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "lOsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "Fluminense", - "slug": "fluminense", - "shortName": "Fluminense", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 373847, - "nameCode": "FLU", - "disabled": false, - "national": false, - "type": 0, - "id": 1961, - "teamColors": { - "primary": "#660000", - "secondary": "#006633", - "text": "#006633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", - "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472836, - "slug": "flamengo-fluminense", - "startTimestamp": 1753050600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "tOsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Santos", - "slug": "santos", - "shortName": "Santos", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 424579, - "nameCode": "SAN", - "disabled": false, - "national": false, - "type": 0, - "id": 1968, - "teamColors": { - "primary": "#ffffff", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633", - "ru": "\u0424\u041a \u0421\u0430\u043d\u0442\u043e\u0441" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0646\u062a\u0648\u0633" - } - } - }, - "awayTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472811, - "slug": "flamengo-santos", - "startTimestamp": 1752706800, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "GOsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472758, - "slug": "flamengo-sao-paulo", - "startTimestamp": 1752348600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "vPsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "Fortaleza", - "slug": "fortaleza", - "shortName": "Fortaleza", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 186811, - "nameCode": "FOR", - "disabled": false, - "national": false, - "type": 0, - "id": 2020, - "teamColors": { - "primary": "#0000ff", - "secondary": "#ff0000", - "text": "#ff0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", - "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" - } - } - }, - "homeScore": { - "current": 5, - "display": 5, - "period1": 1, - "period2": 4, - "normaltime": 5 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472675, - "slug": "flamengo-fortaleza", - "startTimestamp": 1748813400, - "finalResultOnly": false - }], - "1954": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "eOshO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "awayTeam": { - "name": "Cruzeiro", - "slug": "cruzeiro", - "shortName": "Cruzeiro", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 272192, - "nameCode": "CRU", - "disabled": false, - "national": false, - "type": 0, - "id": 1954, - "teamColors": { - "primary": "#0033cc", - "secondary": "#0033cc", - "text": "#0033cc" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", - "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472857, - "slug": "corinthians-cruzeiro", - "startTimestamp": 1753309800, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "eOsFO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Cruzeiro", - "slug": "cruzeiro", - "shortName": "Cruzeiro", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 272192, - "nameCode": "CRU", - "disabled": false, - "national": false, - "type": 0, - "id": 1954, - "teamColors": { - "primary": "#0033cc", - "secondary": "#0033cc", - "text": "#0033cc" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", - "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" - } - } - }, - "awayTeam": { - "name": "Juventude", - "slug": "juventude", - "shortName": "Juventude", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 72882, - "nameCode": "JUV", - "disabled": false, - "national": false, - "type": 0, - "id": 1980, - "teamColors": { - "primary": "#006600", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - }, - "shortNameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - } - } - }, - "homeScore": { - "current": 4, - "display": 4, - "period1": 1, - "period2": 3, - "normaltime": 4 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472850, - "slug": "juventude-cruzeiro", - "startTimestamp": 1753038000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "eOslO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Fluminense", - "slug": "fluminense", - "shortName": "Fluminense", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 373847, - "nameCode": "FLU", - "disabled": false, - "national": false, - "type": 0, - "id": 1961, - "teamColors": { - "primary": "#660000", - "secondary": "#006633", - "text": "#006633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", - "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" - } - } - }, - "awayTeam": { - "name": "Cruzeiro", - "slug": "cruzeiro", - "shortName": "Cruzeiro", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 272192, - "nameCode": "CRU", - "disabled": false, - "national": false, - "type": 0, - "id": 1954, - "teamColors": { - "primary": "#0033cc", - "secondary": "#0033cc", - "text": "#0033cc" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", - "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 2, - "period2": 0, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472798, - "slug": "fluminense-cruzeiro", - "startTimestamp": 1752791400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "eOsBtc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Cruzeiro", - "slug": "cruzeiro", - "shortName": "Cruzeiro", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 272192, - "nameCode": "CRU", - "disabled": false, - "national": false, - "type": 0, - "id": 1954, - "teamColors": { - "primary": "#0033cc", - "secondary": "#0033cc", - "text": "#0033cc" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", - "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" - } - } - }, - "awayTeam": { - "name": "Gr\u00eamio", - "slug": "gremio", - "shortName": "Gr\u00eamio", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 259586, - "nameCode": "GRM", - "disabled": false, - "national": false, - "type": 0, - "id": 5926, - "teamColors": { - "primary": "#3399ff", - "secondary": "#000033", - "text": "#000033" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", - "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" - }, - "shortNameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" - } - } - }, - "homeScore": { - "current": 4, - "display": 4, - "period1": 2, - "period2": 2, - "normaltime": 4 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472778, - "slug": "gremio-cruzeiro", - "startTimestamp": 1752449400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "eOsmO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Vit\u00f3ria", - "slug": "vitoria", - "shortName": "Vit\u00f3ria", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 124462, - "nameCode": "VIT", - "disabled": false, - "national": false, - "type": 0, - "id": 1962, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627", - "ru": "\u0412\u0438\u0442\u043e\u0440\u0438\u0430 \u0411\u0410" - }, - "shortNameTranslation": { - "ar": "\u0641\u064a\u062a\u0648\u0631\u064a\u0627" - } - } - }, - "awayTeam": { - "name": "Cruzeiro", - "slug": "cruzeiro", - "shortName": "Cruzeiro", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 272192, - "nameCode": "CRU", - "disabled": false, - "national": false, - "type": 0, - "id": 1954, - "teamColors": { - "primary": "#0033cc", - "secondary": "#0033cc", - "text": "#0033cc" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", - "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472746, - "slug": "vitoria-cruzeiro", - "startTimestamp": 1749765600, - "finalResultOnly": false - }], - "1961": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "lOsnO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Fluminense", - "slug": "fluminense", - "shortName": "Fluminense", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 373847, - "nameCode": "FLU", - "disabled": false, - "national": false, - "type": 0, - "id": 1961, - "teamColors": { - "primary": "#660000", - "secondary": "#006633", - "text": "#006633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", - "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" - } - } - }, - "awayTeam": { - "name": "Palmeiras", - "slug": "palmeiras", - "shortName": "Palmeiras", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 602881, - "nameCode": "PAL", - "disabled": false, - "national": false, - "type": 0, - "id": 1963, - "teamColors": { - "primary": "#339966", - "secondary": "#336633", - "text": "#336633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", - "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472855, - "slug": "palmeiras-fluminense", - "startTimestamp": 1753308000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "lOsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "Fluminense", - "slug": "fluminense", - "shortName": "Fluminense", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 373847, - "nameCode": "FLU", - "disabled": false, - "national": false, - "type": 0, - "id": 1961, - "teamColors": { - "primary": "#660000", - "secondary": "#006633", - "text": "#006633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", - "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472836, - "slug": "flamengo-fluminense", - "startTimestamp": 1753050600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "eOslO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Fluminense", - "slug": "fluminense", - "shortName": "Fluminense", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 373847, - "nameCode": "FLU", - "disabled": false, - "national": false, - "type": 0, - "id": 1961, - "teamColors": { - "primary": "#660000", - "secondary": "#006633", - "text": "#006633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", - "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" - } - } - }, - "awayTeam": { - "name": "Cruzeiro", - "slug": "cruzeiro", - "shortName": "Cruzeiro", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 272192, - "nameCode": "CRU", - "disabled": false, - "national": false, - "type": 0, - "id": 1954, - "teamColors": { - "primary": "#0033cc", - "secondary": "#0033cc", - "text": "#0033cc" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", - "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 2, - "period2": 0, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472798, - "slug": "fluminense-cruzeiro", - "startTimestamp": 1752791400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "lOsqO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Internacional", - "slug": "internacional", - "shortName": "Internacional", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 230209, - "nameCode": "INT", - "disabled": false, - "national": false, - "type": 0, - "id": 1966, - "teamColors": { - "primary": "#cc0000", - "secondary": "#cc0000", - "text": "#cc0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", - "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" - }, - "shortNameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" - } - } - }, - "awayTeam": { - "name": "Fluminense", - "slug": "fluminense", - "shortName": "Fluminense", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 373847, - "nameCode": "FLU", - "disabled": false, - "national": false, - "type": 0, - "id": 1961, - "teamColors": { - "primary": "#660000", - "secondary": "#006633", - "text": "#006633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", - "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472700, - "slug": "internacional-fluminense", - "startTimestamp": 1748820600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "lOszO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Fluminense", - "slug": "fluminense", - "shortName": "Fluminense", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 373847, - "nameCode": "FLU", - "disabled": false, - "national": false, - "type": 0, - "id": 1961, - "teamColors": { - "primary": "#660000", - "secondary": "#006633", - "text": "#006633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", - "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" - } - } - }, - "awayTeam": { - "name": "Vasco da Gama", - "slug": "vasco-da-gama", - "shortName": "Vasco", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 325188, - "nameCode": "VDG", - "disabled": false, - "national": false, - "type": 0, - "id": 1974, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", - "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "hasXg": true, - "id": 13473428, - "slug": "vasco-da-gama-fluminense", - "startTimestamp": 1748122200, - "finalResultOnly": false - }], - "1963": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "lOsnO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Fluminense", - "slug": "fluminense", - "shortName": "Fluminense", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 373847, - "nameCode": "FLU", - "disabled": false, - "national": false, - "type": 0, - "id": 1961, - "teamColors": { - "primary": "#660000", - "secondary": "#006633", - "text": "#006633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", - "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" - } - } - }, - "awayTeam": { - "name": "Palmeiras", - "slug": "palmeiras", - "shortName": "Palmeiras", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 602881, - "nameCode": "PAL", - "disabled": false, - "national": false, - "type": 0, - "id": 1963, - "teamColors": { - "primary": "#339966", - "secondary": "#336633", - "text": "#336633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", - "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472855, - "slug": "palmeiras-fluminense", - "startTimestamp": 1753308000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "nOsCO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Palmeiras", - "slug": "palmeiras", - "shortName": "Palmeiras", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 602881, - "nameCode": "PAL", - "disabled": false, - "national": false, - "type": 0, - "id": 1963, - "teamColors": { - "primary": "#339966", - "secondary": "#336633", - "text": "#336633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", - "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" - } - } - }, - "awayTeam": { - "name": "Atl\u00e9tico Mineiro", - "slug": "atletico-mineiro", - "shortName": "Atl\u00e9tico-MG", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 283146, - "nameCode": "ATL", - "disabled": false, - "national": false, - "type": 0, - "id": 1977, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", - "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" - } - } - }, - "homeScore": { - "current": 3, - "display": 3, - "period1": 1, - "period2": 2, - "normaltime": 3 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472842, - "slug": "atletico-mineiro-palmeiras", - "startTimestamp": 1753043400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "nOsHOi", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Palmeiras", - "slug": "palmeiras", - "shortName": "Palmeiras", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 602881, - "nameCode": "PAL", - "disabled": false, - "national": false, - "type": 0, - "id": 1963, - "teamColors": { - "primary": "#339966", - "secondary": "#336633", - "text": "#336633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", - "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" - } - } - }, - "awayTeam": { - "name": "Mirassol", - "slug": "mirassol", - "shortName": "Mirassol", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 40541, - "nameCode": "MIR", - "disabled": false, - "national": false, - "type": 0, - "id": 21982, - "teamColors": { - "primary": "#e8c728", - "secondary": "#174c30", - "text": "#174c30" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - }, - "shortNameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472807, - "slug": "mirassol-palmeiras", - "startTimestamp": 1752703200, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "eOsnO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Cruzeiro", - "slug": "cruzeiro", - "shortName": "Cruzeiro", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 272192, - "nameCode": "CRU", - "disabled": false, - "national": false, - "type": 0, - "id": 1954, - "teamColors": { - "primary": "#0033cc", - "secondary": "#0033cc", - "text": "#0033cc" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", - "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" - } - } - }, - "awayTeam": { - "name": "Palmeiras", - "slug": "palmeiras", - "shortName": "Palmeiras", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 602881, - "nameCode": "PAL", - "disabled": false, - "national": false, - "type": 0, - "id": 1963, - "teamColors": { - "primary": "#339966", - "secondary": "#336633", - "text": "#336633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", - "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 2, - "period2": 0, - "normaltime": 2 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472696, - "slug": "palmeiras-cruzeiro", - "startTimestamp": 1748817000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "nOsGuc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Palmeiras", - "slug": "palmeiras", - "shortName": "Palmeiras", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 602881, - "nameCode": "PAL", - "disabled": false, - "national": false, - "type": 0, - "id": 1963, - "teamColors": { - "primary": "#339966", - "secondary": "#336633", - "text": "#336633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", - "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" - } - } - }, - "awayTeam": { - "name": "Flamengo", - "slug": "flamengo", - "shortName": "Flamengo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 882110, - "nameCode": "FLA", - "disabled": false, - "national": false, - "type": 0, - "id": 5981, - "teamColors": { - "primary": "#ff0000", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648", - "ru": "\u0424\u041a \u0424\u043b\u0430\u043c\u0435\u043d\u0433\u043e \u0420\u0416" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0627\u0645\u064a\u0646\u063a\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13473430, - "slug": "flamengo-palmeiras", - "startTimestamp": 1748199600, - "finalResultOnly": false - }], - "2001": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "bPsHOi", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "awayTeam": { - "name": "Mirassol", - "slug": "mirassol", - "shortName": "Mirassol", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 40541, - "nameCode": "MIR", - "disabled": false, - "national": false, - "type": 0, - "id": 21982, - "teamColors": { - "primary": "#e8c728", - "secondary": "#174c30", - "text": "#174c30" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - }, - "shortNameTranslation": { - "ar": "\u0645\u064a\u0631\u0627\u0633\u0648\u0644" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 2, - "period2": 0, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472863, - "slug": "mirassol-ceara", - "startTimestamp": 1753308000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "qOsbP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Internacional", - "slug": "internacional", - "shortName": "Internacional", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 230209, - "nameCode": "INT", - "disabled": false, - "national": false, - "type": 0, - "id": 1966, - "teamColors": { - "primary": "#cc0000", - "secondary": "#cc0000", - "text": "#cc0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", - "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" - }, - "shortNameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" - } - } - }, - "awayTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472851, - "slug": "ceara-internacional", - "startTimestamp": 1753020000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "hOsbP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "awayTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472829, - "slug": "ceara-corinthians", - "startTimestamp": 1752705000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "bPsvP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Fortaleza", - "slug": "fortaleza", - "shortName": "Fortaleza", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 186811, - "nameCode": "FOR", - "disabled": false, - "national": false, - "type": 0, - "id": 2020, - "teamColors": { - "primary": "#0000ff", - "secondary": "#ff0000", - "text": "#ff0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", - "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" - } - } - }, - "awayTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472790, - "slug": "fortaleza-ceara", - "startTimestamp": 1752449400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "iOsbP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Botafogo", - "slug": "botafogo", - "shortName": "Botafogo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 346727, - "nameCode": "BOT", - "disabled": false, - "national": false, - "type": 0, - "id": 1958, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", - "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" - }, - "shortNameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" - } - } - }, - "awayTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "homeScore": { - "current": 3, - "display": 3, - "period1": 1, - "period2": 2, - "normaltime": 3 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13788130, - "slug": "ceara-botafogo", - "startTimestamp": 1749078000, - "finalResultOnly": false - }], - "1977": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "nOsCO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Palmeiras", - "slug": "palmeiras", - "shortName": "Palmeiras", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 602881, - "nameCode": "PAL", - "disabled": false, - "national": false, - "type": 0, - "id": 1963, - "teamColors": { - "primary": "#339966", - "secondary": "#336633", - "text": "#336633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633", - "ru": "\u041f\u0430\u043b\u043c\u0435\u0439\u0440\u0430\u0441" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0644\u0645\u064a\u064a\u0631\u0627\u0633" - } - } - }, - "awayTeam": { - "name": "Atl\u00e9tico Mineiro", - "slug": "atletico-mineiro", - "shortName": "Atl\u00e9tico-MG", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 283146, - "nameCode": "ATL", - "disabled": false, - "national": false, - "type": 0, - "id": 1977, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", - "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" - } - } - }, - "homeScore": { - "current": 3, - "display": 3, - "period1": 1, - "period2": 2, - "normaltime": 3 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472842, - "slug": "atletico-mineiro-palmeiras", - "startTimestamp": 1753043400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "fOsCO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Bahia", - "slug": "bahia", - "shortName": "Bahia", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 227979, - "nameCode": "BAH", - "disabled": false, - "national": false, - "type": 0, - "id": 1955, - "teamColors": { - "primary": "#ffffff", - "secondary": "#333399", - "text": "#333399" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627", - "ru": "\u0411\u0430\u0438\u044f" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627" - } - } - }, - "awayTeam": { - "name": "Atl\u00e9tico Mineiro", - "slug": "atletico-mineiro", - "shortName": "Atl\u00e9tico-MG", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 283146, - "nameCode": "ATL", - "disabled": false, - "national": false, - "type": 0, - "id": 1977, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", - "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472786, - "slug": "atletico-mineiro-bahia", - "startTimestamp": 1752364800, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "qOsCO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Atl\u00e9tico Mineiro", - "slug": "atletico-mineiro", - "shortName": "Atl\u00e9tico-MG", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 283146, - "nameCode": "ATL", - "disabled": false, - "national": false, - "type": 0, - "id": 1977, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", - "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" - } - } - }, - "awayTeam": { - "name": "Internacional", - "slug": "internacional", - "shortName": "Internacional", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 230209, - "nameCode": "INT", - "disabled": false, - "national": false, - "type": 0, - "id": 1966, - "teamColors": { - "primary": "#cc0000", - "secondary": "#cc0000", - "text": "#cc0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644", - "ru": "\u0418\u043d\u0442\u0435\u0440\u043d\u0430c\u044c\u043e\u043d\u0430\u043b" - }, - "shortNameTranslation": { - "ar": "\u0625\u0646\u062a\u0631\u0646\u0627\u0633\u064a\u0648\u0646\u0627\u0644" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13472737, - "slug": "atletico-mineiro-internacional", - "startTimestamp": 1749774600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "COsbP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Cear\u00e1", - "slug": "ceara", - "shortName": "Cear\u00e1", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 92947, - "nameCode": "CEA", - "disabled": false, - "national": false, - "type": 0, - "id": 2001, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627", - "ru": "\u0424\u041a \u0421\u0435\u0430\u0440\u0430" - }, - "shortNameTranslation": { - "ar": "\u0633\u064a\u0627\u0631\u0627" - } - } - }, - "awayTeam": { - "name": "Atl\u00e9tico Mineiro", - "slug": "atletico-mineiro", - "shortName": "Atl\u00e9tico-MG", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 283146, - "nameCode": "ATL", - "disabled": false, - "national": false, - "type": 0, - "id": 1977, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", - "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472708, - "slug": "ceara-atletico-mineiro", - "startTimestamp": 1748813400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "hOsCO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Atl\u00e9tico Mineiro", - "slug": "atletico-mineiro", - "shortName": "Atl\u00e9tico-MG", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 283146, - "nameCode": "ATL", - "disabled": false, - "national": false, - "type": 0, - "id": 1977, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", - "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" - } - } - }, - "awayTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13473434, - "slug": "atletico-mineiro-corinthians", - "startTimestamp": 1748131200, - "finalResultOnly": false - }], - "1974": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "zOsBtc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Vasco da Gama", - "slug": "vasco-da-gama", - "shortName": "Vasco", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 325188, - "nameCode": "VDG", - "disabled": false, - "national": false, - "type": 0, - "id": 1974, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", - "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648" - } - } - }, - "awayTeam": { - "name": "Gr\u00eamio", - "slug": "gremio", - "shortName": "Gr\u00eamio", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 259586, - "nameCode": "GRM", - "disabled": false, - "national": false, - "type": 0, - "id": 5926, - "teamColors": { - "primary": "#3399ff", - "secondary": "#000033", - "text": "#000033" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", - "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" - }, - "shortNameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472839, - "slug": "gremio-vasco-da-gama", - "startTimestamp": 1752957000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "iOszO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Vasco da Gama", - "slug": "vasco-da-gama", - "shortName": "Vasco", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 325188, - "nameCode": "VDG", - "disabled": false, - "national": false, - "type": 0, - "id": 1974, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", - "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648" - } - } - }, - "awayTeam": { - "name": "Botafogo", - "slug": "botafogo", - "shortName": "Botafogo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 346727, - "nameCode": "BOT", - "disabled": false, - "national": false, - "type": 0, - "id": 1958, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648", - "ru": "\u0424\u041a \u0411\u043e\u0442\u0430\u0444\u043e\u0433\u043e" - }, - "shortNameTranslation": { - "ar": "\u0628\u0648\u062a\u0627\u0641\u0648\u063a\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472762, - "slug": "vasco-da-gama-botafogo", - "startTimestamp": 1752355800, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "zOsGO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "awayTeam": { - "name": "Vasco da Gama", - "slug": "vasco-da-gama", - "shortName": "Vasco", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 325188, - "nameCode": "VDG", - "disabled": false, - "national": false, - "type": 0, - "id": 1974, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", - "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 3, - "display": 3, - "period1": 2, - "period2": 1, - "normaltime": 3 - }, - "hasXg": true, - "id": 13472729, - "slug": "sao-paulo-vasco-da-gama", - "startTimestamp": 1749774600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "zOsZO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Vasco da Gama", - "slug": "vasco-da-gama", - "shortName": "Vasco", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 325188, - "nameCode": "VDG", - "disabled": false, - "national": false, - "type": 0, - "id": 1974, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", - "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648" - } - } - }, - "awayTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 2, - "period2": 0, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472680, - "slug": "red-bull-bragantino-vasco-da-gama", - "startTimestamp": 1748736000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "lOszO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Fluminense", - "slug": "fluminense", - "shortName": "Fluminense", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 373847, - "nameCode": "FLU", - "disabled": false, - "national": false, - "type": 0, - "id": 1961, - "teamColors": { - "primary": "#660000", - "secondary": "#006633", - "text": "#006633" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a", - "ru": "\u0424\u043b\u0443\u043c\u0438\u043d\u0435\u043d\u0441\u0435" - }, - "shortNameTranslation": { - "ar": "\u0641\u0644\u0648\u0645\u064a\u0646\u064a\u0646\u0633\u064a" - } - } - }, - "awayTeam": { - "name": "Vasco da Gama", - "slug": "vasco-da-gama", - "shortName": "Vasco", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 325188, - "nameCode": "VDG", - "disabled": false, - "national": false, - "type": 0, - "id": 1974, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", - "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 1, - "period2": 1, - "normaltime": 2 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "hasXg": true, - "id": 13473428, - "slug": "vasco-da-gama-fluminense", - "startTimestamp": 1748122200, - "finalResultOnly": false - }], - "5926": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "zOsBtc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Vasco da Gama", - "slug": "vasco-da-gama", - "shortName": "Vasco", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 325188, - "nameCode": "VDG", - "disabled": false, - "national": false, - "type": 0, - "id": 1974, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648 \u062f\u0627 \u063a\u0627\u0645\u0627", - "ru": "\u0412\u0430\u0441\u043a\u043e \u0434\u0430 \u0413\u0430\u043c\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0627\u0633\u0643\u0648" - } - } - }, - "awayTeam": { - "name": "Gr\u00eamio", - "slug": "gremio", - "shortName": "Gr\u00eamio", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 259586, - "nameCode": "GRM", - "disabled": false, - "national": false, - "type": 0, - "id": 5926, - "teamColors": { - "primary": "#3399ff", - "secondary": "#000033", - "text": "#000033" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", - "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" - }, - "shortNameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472839, - "slug": "gremio-vasco-da-gama", - "startTimestamp": 1752957000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "eOsBtc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Cruzeiro", - "slug": "cruzeiro", - "shortName": "Cruzeiro", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 272192, - "nameCode": "CRU", - "disabled": false, - "national": false, - "type": 0, - "id": 1954, - "teamColors": { - "primary": "#0033cc", - "secondary": "#0033cc", - "text": "#0033cc" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648", - "ru": "\u041a\u0440\u0443\u0437\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0643\u0631\u0648\u0632\u064a\u0631\u0648" - } - } - }, - "awayTeam": { - "name": "Gr\u00eamio", - "slug": "gremio", - "shortName": "Gr\u00eamio", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 259586, - "nameCode": "GRM", - "disabled": false, - "national": false, - "type": 0, - "id": 5926, - "teamColors": { - "primary": "#3399ff", - "secondary": "#000033", - "text": "#000033" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", - "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" - }, - "shortNameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" - } - } - }, - "homeScore": { - "current": 4, - "display": 4, - "period1": 2, - "period2": 2, - "normaltime": 4 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472778, - "slug": "gremio-cruzeiro", - "startTimestamp": 1752449400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "hOsBtc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Gr\u00eamio", - "slug": "gremio", - "shortName": "Gr\u00eamio", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 259586, - "nameCode": "GRM", - "disabled": false, - "national": false, - "type": 0, - "id": 5926, - "teamColors": { - "primary": "#3399ff", - "secondary": "#000033", - "text": "#000033" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", - "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" - }, - "shortNameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" - } - } - }, - "awayTeam": { - "name": "Corinthians", - "slug": "corinthians", - "shortName": "Corinthians", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 578052, - "nameCode": "COR", - "disabled": false, - "national": false, - "type": 0, - "id": 1957, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632", - "ru": "\u041a\u043e\u0440\u0438\u043d\u0442\u0438\u0430\u043d\u0441" - }, - "shortNameTranslation": { - "ar": "\u0643\u0648\u0631\u064a\u0646\u062b\u064a\u0627\u0646\u0632" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472741, - "slug": "gremio-corinthians", - "startTimestamp": 1749769200, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "FOsBtc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Juventude", - "slug": "juventude", - "shortName": "Juventude", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 72882, - "nameCode": "JUV", - "disabled": false, - "national": false, - "type": 0, - "id": 1980, - "teamColors": { - "primary": "#006600", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - }, - "shortNameTranslation": { - "ar": "\u062c\u0648\u0641\u0646\u062a\u0648\u062f" - } - } - }, - "awayTeam": { - "name": "Gr\u00eamio", - "slug": "gremio", - "shortName": "Gr\u00eamio", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 259586, - "nameCode": "GRM", - "disabled": false, - "national": false, - "type": 0, - "id": 5926, - "teamColors": { - "primary": "#3399ff", - "secondary": "#000033", - "text": "#000033" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", - "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" - }, - "shortNameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 2, - "display": 2, - "period1": 2, - "period2": 0, - "normaltime": 2 - }, - "hasXg": true, - "id": 13472712, - "slug": "gremio-juventude", - "startTimestamp": 1748804400, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "fOsBtc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Gr\u00eamio", - "slug": "gremio", - "shortName": "Gr\u00eamio", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 259586, - "nameCode": "GRM", - "disabled": false, - "national": false, - "type": 0, - "id": 5926, - "teamColors": { - "primary": "#3399ff", - "secondary": "#000033", - "text": "#000033" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", - "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" - }, - "shortNameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" - } - } - }, - "awayTeam": { - "name": "Bahia", - "slug": "bahia", - "shortName": "Bahia", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 227979, - "nameCode": "BAH", - "disabled": false, - "national": false, - "type": 0, - "id": 1955, - "teamColors": { - "primary": "#ffffff", - "secondary": "#333399", - "text": "#333399" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627", - "ru": "\u0411\u0430\u0438\u044f" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13473435, - "slug": "gremio-bahia", - "startTimestamp": 1748181600, - "finalResultOnly": false - }], - "1955": [{ - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "fOsvP", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 3, - "homeTeam": { - "name": "Fortaleza", - "slug": "fortaleza", - "shortName": "Fortaleza", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 186811, - "nameCode": "FOR", - "disabled": false, - "national": false, - "type": 0, - "id": 2020, - "teamColors": { - "primary": "#0000ff", - "secondary": "#ff0000", - "text": "#ff0000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627", - "ru": "\u0424\u043e\u0440\u0442\u0430\u043b\u0435\u0437\u0430" - }, - "shortNameTranslation": { - "ar": "\u0641\u0648\u0631\u062a\u0627\u0644\u064a\u0632\u0627" - } - } - }, - "awayTeam": { - "name": "Bahia", - "slug": "bahia", - "shortName": "Bahia", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 227979, - "nameCode": "BAH", - "disabled": false, - "national": false, - "type": 0, - "id": 1955, - "teamColors": { - "primary": "#ffffff", - "secondary": "#333399", - "text": "#333399" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627", - "ru": "\u0411\u0430\u0438\u044f" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 1, - "period2": 0, - "normaltime": 1 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472853, - "slug": "fortaleza-bahia", - "startTimestamp": 1752951600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "fOsCO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Bahia", - "slug": "bahia", - "shortName": "Bahia", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 227979, - "nameCode": "BAH", - "disabled": false, - "national": false, - "type": 0, - "id": 1955, - "teamColors": { - "primary": "#ffffff", - "secondary": "#333399", - "text": "#333399" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627", - "ru": "\u0411\u0430\u0438\u044f" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627" - } - } - }, - "awayTeam": { - "name": "Atl\u00e9tico Mineiro", - "slug": "atletico-mineiro", - "shortName": "Atl\u00e9tico-MG", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 283146, - "nameCode": "ATL", - "disabled": false, - "national": false, - "type": 0, - "id": 1977, - "teamColors": { - "primary": "#000000", - "secondary": "#ffffff", - "text": "#ffffff" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u064a\u0646\u064a\u0631\u0648", - "ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0438\u043d\u0435\u0439\u0440\u043e" - }, - "shortNameTranslation": { - "ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648-\u0625\u0645 \u062c\u064a" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472786, - "slug": "atletico-mineiro-bahia", - "startTimestamp": 1752364800, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "fOsZO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 2, - "homeTeam": { - "name": "Red Bull Bragantino", - "slug": "red-bull-bragantino", - "shortName": "RB Bragantino", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 140241, - "nameCode": "RBB", - "disabled": false, - "national": false, - "type": 0, - "id": 1999, - "teamColors": { - "primary": "#363636", - "secondary": "#d8d8d6", - "text": "#d8d8d6" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0631\u064a\u062f \u0628\u0648\u0644 \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648", - "ru": "\u0420\u0435\u0434 \u0411\u0443\u043b\u043b \u0411\u0440\u0430\u0433\u0430\u043d\u0442\u0438\u043d\u043e" - }, - "shortNameTranslation": { - "ar": "\u0625\u0631 \u0628\u064a \u0628\u0631\u0627\u063a\u0627\u0646\u062a\u064a\u0646\u0648" - } - } - }, - "awayTeam": { - "name": "Bahia", - "slug": "bahia", - "shortName": "Bahia", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 227979, - "nameCode": "BAH", - "disabled": false, - "national": false, - "type": 0, - "id": 1955, - "teamColors": { - "primary": "#ffffff", - "secondary": "#333399", - "text": "#333399" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627", - "ru": "\u0411\u0430\u0438\u044f" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627" - } - } - }, - "homeScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "awayScore": { - "current": 3, - "display": 3, - "period1": 2, - "period2": 1, - "normaltime": 3 - }, - "hasXg": true, - "id": 13472733, - "slug": "red-bull-bragantino-bahia", - "startTimestamp": 1749765600, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "fOsGO", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Bahia", - "slug": "bahia", - "shortName": "Bahia", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 227979, - "nameCode": "BAH", - "disabled": false, - "national": false, - "type": 0, - "id": 1955, - "teamColors": { - "primary": "#ffffff", - "secondary": "#333399", - "text": "#333399" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627", - "ru": "\u0411\u0430\u0438\u044f" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627" - } - } - }, - "awayTeam": { - "name": "S\u00e3o Paulo", - "slug": "sao-paulo", - "shortName": "S\u00e3o Paulo", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 441269, - "nameCode": "SPA", - "disabled": false, - "national": false, - "type": 0, - "id": 1981, - "teamColors": { - "primary": "#ffffff", - "secondary": "#000000", - "text": "#000000" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648", - "ru": "\u0424\u041a \u0421\u0430\u043d-\u041f\u0430\u0443\u043b\u0443" - }, - "shortNameTranslation": { - "ar": "\u0633\u0627\u0648 \u0628\u0627\u0648\u0644\u0648" - } - } - }, - "homeScore": { - "current": 2, - "display": 2, - "period1": 0, - "period2": 2, - "normaltime": 2 - }, - "awayScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "hasXg": true, - "id": 13472704, - "slug": "sao-paulo-bahia", - "startTimestamp": 1748727000, - "finalResultOnly": false - }, { - "tournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "uniqueTournament": { - "name": "Brasileir\u00e3o Betano", - "slug": "brasileirao-serie-a", - "primaryColorHex": "#C7FF00", - "secondaryColorHex": "#969696", - "category": { - "name": "Brazil", - "slug": "brazil", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "id": 13, - "flag": "brazil", - "alpha2": "BR" - }, - "userCount": 315115, - "id": 325, - "displayInverseHomeAwayTeams": false, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0637\u0648\u0644\u0629 \u0628\u064a\u062a\u0627\u0646\u0648 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a\u0629", - "hi": "\u092c\u094d\u0930\u093e\u091c\u093c\u0940\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "priority": 507, - "isLive": false, - "id": 83, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644\u064a \u0627\u0644\u0645\u0645\u062a\u0627\u0632 \u0628\u064a\u062a\u0627\u0646\u0648", - "hi": "\u092c\u094d\u0930\u093e\u0938\u093f\u0932\u0947\u0907\u0930\u093e\u0913 \u092c\u0947\u091f\u093e\u0928\u094b", - "bn": "\u09ac\u09cd\u09b0\u09be\u09b8\u09bf\u09b2\u09bf\u09b0\u09be\u0993 \u09ac\u09c7\u09a4\u09be\u09a8\u09cb" - }, - "shortNameTranslation": {} - } - }, - "customId": "fOsBtc", - "status": { - "code": 100, - "description": "Ended", - "type": "finished" - }, - "winnerCode": 1, - "homeTeam": { - "name": "Gr\u00eamio", - "slug": "gremio", - "shortName": "Gr\u00eamio", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 259586, - "nameCode": "GRM", - "disabled": false, - "national": false, - "type": 0, - "id": 5926, - "teamColors": { - "primary": "#3399ff", - "secondary": "#000033", - "text": "#000033" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648", - "ru": "\u0413\u0440\u0435\u043c\u0438\u043e" - }, - "shortNameTranslation": { - "ar": "\u063a\u0631\u064a\u0645\u064a\u0648" - } - } - }, - "awayTeam": { - "name": "Bahia", - "slug": "bahia", - "shortName": "Bahia", - "gender": "M", - "sport": { - "name": "Football", - "slug": "football", - "id": 1 - }, - "userCount": 227979, - "nameCode": "BAH", - "disabled": false, - "national": false, - "type": 0, - "id": 1955, - "teamColors": { - "primary": "#ffffff", - "secondary": "#333399", - "text": "#333399" - }, - "fieldTranslations": { - "nameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627", - "ru": "\u0411\u0430\u0438\u044f" - }, - "shortNameTranslation": { - "ar": "\u0628\u0627\u0647\u064a\u0627" - } - } - }, - "homeScore": { - "current": 1, - "display": 1, - "period1": 0, - "period2": 1, - "normaltime": 1 - }, - "awayScore": { - "current": 0, - "display": 0, - "period1": 0, - "period2": 0, - "normaltime": 0 - }, - "hasXg": true, - "id": 13473435, - "slug": "gremio-bahia", - "startTimestamp": 1748181600, - "finalResultOnly": false - }] - } - } -} \ No newline at end of file