Canadiens’ Xhekaj, Capitals’ McIlrath fined for warm-up conduct in Game 4

The NHL continued to crack down on extracurricular activities occurring during pre-game warm-ups on Monday.

Canadiens’ Xhekaj, Capitals’ McIlrath fined for warm-up conduct in Game 4

The NHL continued to crack down on extracurricular activities occurring during pre-game warm-ups on Monday.

The league fined the Montreal Canadiens and Washington Capitals $25,000 each for unsportsmanlike conduct during warm-ups prior to Game 4. Additionally, Canadiens defenceman Arber Xhekaj was fined $4,485.42 and defenceman Dylan McIlrath was fined $2,018.23.

Both individual fines were the maximum allowable under the NHL’s collective bargaining agreement.

Xhekaj and McIlrath were both seen exchanging words as they skated near the red line before the game.

The Canadiens and Capitals’ first-round matchup has become increasingly physical as the series has progressed, including an old-school brawl in Game 3 that spilled into the Washington bench.

Xhekaj was involved in the periphery of the skirmish and was given two minutes for roughing.

The punishment comes on the heels of the Maple Leafs-Senators Warmupgate incident, where Ottawa centre Nick Cousins was fined $2,083.33 after being caught on video appearing to shoot a puck at Toronto goalie Anthony Stolarz. The Senators were also fined $25,000 in that case.

The Capitals lead the series 3-1 with Game 5 on Wednesday in Washington, D.C. Fans can watch the game on Sportsnet and Sportsnet+ at 7 p.m. ET/ 4 p.m. PT.

if (!res.ok) { throw new Error('Failed to fetch odds data'); }

const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;

return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }

async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;

const container = document.getElementById(componentId + '-odds'); if (!container) return;

try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }

if (error) { container.innerHTML = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_4e2ec5e0c5f35f8bf3d9c7e4a96edc2e', 'NHL', '02324694-f538-4a88-babf-c611f30f9fce');